/* Contact page specific styles */

.contact-hero {
  text-align: center;
  margin-bottom: 48px;
}

.contact-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: var(--light-muted);
  line-height: 1.6;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Contact form */
.contact-form {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--light-text);
}

.form-control {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0b1220;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 0.2rem rgba(91,140,255,0.25);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background: var(--primary-600);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.form-message {
  margin-top: 20px;
  display: none;
}

.form-message.success {
  padding: 16px;
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 8px;
  color: #065f46;
}

.form-message.error {
  padding: 16px;
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: 8px;
  color: #991b1b;
}

/* Contact info */
.contact-info {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--light-text);
}

.contact-details p {
  color: var(--light-muted);
  margin: 0;
  line-height: 1.5;
}

/* FAQ section */
.faq-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}

.faq-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  /* No specific styling needed for individual FAQ items */
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-answer {
  font-size: 14px;
  color: var(--light-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-info {
    padding: 24px;
  }

  .contact-form h2,
  .contact-info h2 {
    font-size: 20px;
  }
}
