.contact-page {
  font-family:
    'Outfit',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4,
.contact-page h5,
.contact-page h6 {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    sans-serif;
  line-height: 1.2;
  color: var(--text-color);
}

.contact-page h1 {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.1;
}
.contact-page h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.contact-page h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
.contact-page h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

/* === Hero Section === */
.contact-page .hero-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-page .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-page .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
}

.contact-page .hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page .hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact-page .hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(229, 238, 128, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-color);
}

.contact-page .hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.contact-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact-page .btn-hero-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-page .btn-hero-primary:hover {
  background: #d5de70;
  color: var(--text-color);
}

.contact-page .btn-hero-outline {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--text-color);
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-page .btn-hero-outline:hover {
  background: #f9fafb;
  color: var(--text-color);
}

/* === Why Choose Us Section === */
.contact-page .why-section {
  background: #f9fafb;
  padding: 5rem 0;
}

.contact-page .why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page .why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-page .why-header p {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-page .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-page .why-card {
  text-align: center;
}

.contact-page .why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.contact-page .why-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--text-color);
}

.contact-page .why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-page .why-card p {
  color: #4b5563;
}

/* === Contact Form Section === */
.contact-page .form-section {
  padding: 4rem 0;
}

.contact-page .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page .info-side > * + * {
  margin-top: 2rem;
}

.contact-page .info-side h2 {
  margin-bottom: 1rem;
}

.contact-page .info-desc {
  color: #4b5563;
  font-size: 1.125rem;
}

.contact-page .info-cards > * + * {
  margin-top: 1.5rem;
}

.contact-page .info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-page .info-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(229, 238, 128, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text-color);
}

.contact-page .info-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-page .info-card p {
  color: #4b5563;
  margin: 0;
}

.contact-page .info-card p.small {
  font-size: 0.875rem;
}

.contact-page .info-card a {
  color: #4b5563;
  text-decoration: none;
}

.contact-page .info-card a:hover {
  color: var(--text-color);
}

.contact-page .info-image {
  display: none;
  margin-top: 3rem;
}

.contact-page .info-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
}

/* Form card */
.contact-page .form-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.contact-page .form-fields > * + * {
  margin-top: 1.5rem;
}

.contact-page .form-label {
  display: block;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-page .form-input,
.contact-page .form-select,
.contact-page .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: none;
  border-radius: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  outline: none;
  transition: box-shadow 0.2s;
}

.contact-page .form-input:focus,
.contact-page .form-select:focus,
.contact-page .form-textarea:focus {
  box-shadow: 0 0 0 2px rgba(229, 238, 128, 0.5);
}

.contact-page .form-input::placeholder,
.contact-page .form-textarea::placeholder {
  color: #9ca3af;
}

.contact-page .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-page .form-textarea {
  resize: none;
}

.contact-page .btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-page .btn-submit:hover {
  background: #d5de70;
}

.contact-page .btn-submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Success alert */
.contact-page .alert-success {
  background: rgba(229, 238, 128, 0.2);
  border: 1px solid rgba(229, 238, 128, 0.5);
  color: var(--text-color);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* === FAQ Section === */
.contact-page .faq-section {
  padding: 5rem 0;
  background: white;
}

.contact-page .faq-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page .faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-page .faq-header p {
  color: #4b5563;
  font-size: 1.125rem;
}

.contact-page .faq-list > * + * {
  margin-top: 1rem;
}

.contact-page .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.2s;
}

.contact-page .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-color);
  transition: background 0.2s;
}

.contact-page .faq-question:hover {
  background: #f9fafb;
}

.contact-page .faq-question span {
  padding-right: 2rem;
}

.contact-page .faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #4b5563;
  transition: transform 0.2s;
}

.contact-page .faq-chevron.open {
  transform: rotate(180deg);
}

.contact-page .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #4b5563;
  line-height: 1.625;
  display: none;
}

.contact-page .faq-answer.open {
  display: block;
}

.contact-page .faq-cta {
  margin-top: 3rem;
  text-align: center;
}

.contact-page .faq-cta p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.contact-page .btn-faq {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-page .btn-faq:hover {
  background: #d5de70;
  color: var(--text-color);
}

/* === Responsive === */
@media (min-width: 768px) {
  .contact-page .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-page .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .form-card {
    padding: 2.5rem;
  }

  .contact-page .info-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-page h1 {
    font-size: 2.5rem;
  }
  .contact-page h2 {
    font-size: 2rem;
  }
  .contact-page h3 {
    font-size: 1.25rem;
  }

  .contact-page .hero-section {
    padding: 3rem 0;
  }

  .contact-page .why-section {
    padding: 3rem 0;
  }

  .contact-page .why-header {
    margin-bottom: 2rem;
  }

  .contact-page .faq-section {
    padding: 3rem 0;
  }

  .contact-page .faq-header {
    margin-bottom: 2rem;
  }
}
