.contact-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 154, 40, 0.14), transparent 26%),
    linear-gradient(90deg, #fff7ea 0%, #fff7ea 62%, #f4dec0 100%);
  padding: 64px 0;
  border-bottom: 1px solid #ead8c1;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 760px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -1px;
}

.contact-hero-copy h1 span {
  display: block;
  color: var(--maroon);
}

.contact-hero-copy > p {
  max-width: 680px;
  margin-top: 24px;
  color: #46566d;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-hero-box {
  background: #ffffff;
  border: 1px solid #ead8c1;
  padding: 34px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

.contact-hero-box span {
  display: inline-flex;
  color: var(--maroon);
  background: #fff2e1;
  border: 1px solid #e6c28f;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-hero-box h2 {
  color: var(--blue);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.contact-hero-box p {
  color: #667085;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

/* CONTACT INFO */

.contact-info-section {
  background: #fffaf3;
  padding: 62px 0;
}

.contact-heading {
  margin-bottom: 34px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #ead8c1;
  padding: 26px;
  min-height: 250px;
  transition: 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.info-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7a05b;
  border-radius: 50%;
  color: var(--maroon);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}

.info-card h3 {
  color: #1f2937;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 10px;
}

.info-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 14px;
}

.info-card a,
.info-card strong {
  color: var(--maroon);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
  word-break: break-word;
}

/* FAQ */

.contact-faq {
  background: #ffffff;
  padding: 64px 0;
  border-top: 1px solid #efe0cc;
  border-bottom: 1px solid #efe0cc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.faq-card {
  background: #fffaf3;
  border: 1px solid #ead8c1;
  padding: 24px;
  min-height: 190px;
  transition: 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.faq-card h3 {
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.faq-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

/* CTA */

.contact-cta {
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.95), rgba(7, 27, 49, 0.9)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=85");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  margin-bottom: 12px;
}

.contact-cta-box {
  background: #ffffff;
  border: 1px solid #ead8c1;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.contact-cta-box h2 {
  max-width: 760px;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.contact-cta-box p {
  color: #5a667a;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-cta-box p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon);
  color: white;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.contact-cta-box a:hover {
  background: var(--maroon-dark);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-box {
    max-width: 620px;
  }

  .contact-info-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  .contact-hero {
    padding: 42px 0;
  }

  .contact-hero-copy h1 {
    font-size: 40px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info-section,
  .contact-faq,
  .contact-cta {
    padding: 46px 0;
  }

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

  .info-card,
  .faq-card {
    min-height: auto;
  }

  .contact-hero-box,
  .contact-cta-box {
    padding: 24px;
  }
}