/* ===== CONTACT PAGE STYLES ===== */

/* --- Contact Hero --- */
.contact-hero {
  background: var(--off-white);
  padding: 140px 0 60px;
  text-align: center;
}

.contact-hero-content .section-label {
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Contact Form Wrapper --- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.contact-form-wrapper .form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Success Message --- */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* --- Contact Info Sidebar --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.contact-info-item a {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 600;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Social Card --- */
.contact-social-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: var(--transition);
}

.contact-social-links a:hover {
  background: var(--gray-100);
  color: var(--blue);
}

.contact-social-links a svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 120px 0 40px;
  }

  .contact-section {
    padding: 48px 0 64px;
  }

  .contact-form-wrapper {
    padding: 16px;
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }

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

  .contact-info {
    flex-direction: column;
  }

  .contact-info-card {
    min-width: auto;
  }
}
