:root {
  --dark: #071522;
  --dark2: #102b40;
  --gold: #f4b83f;
  --gold2: #ffe09a;
  --bg: #f5f8fb;
  --text: #102131;
  --muted: #6b7c89;
  --border: #dfe7ee;
  --blue: #1769e8;
  --green: #168044;
  --shadow: 0 16px 45px rgba(7, 21, 34, 0.09);
}

.contact-hero {
  min-height: 410px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 26, 0.96),
      rgba(4, 16, 26, 0.65),
      rgba(4, 16, 26, 0.3)
    ),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1800&q=88")
      center/cover;
}
.contact-hero:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 184, 63, 0.18),
    transparent 67%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 65px 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}
.contact-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -2.5px;
  margin: 12px 0 15px;
}
.contact-hero p {
  max-width: 610px;
  color: #d2dce2;
  font-size: 13px;
  line-height: 1.8;
}

.quick-wrap {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border-radius: 12px;
  transition: 0.25s;
}
.quick-item:hover {
  background: #f5f8fa;
}
.quick-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 11px;
  background: #fff5d8;
  color: #d59a20;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.quick-item h6 {
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 4px;
}
.quick-item p {
  font-size: 9px;
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 78px 0;
}
.section-head {
  max-width: 670px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.3px;
  margin: 9px 0 12px;
}
.section-head p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}

.form-card,
.info-card,
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.form-card {
  padding: 28px;
}
.form-card h2,
.info-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 7px;
}
.form-sub {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.form-label {
  font-size: 9px;
  font-weight: 800;
  color: #657585;
  margin-bottom: 6px;
}
.form-control,
.form-select {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 11px;
  padding: 11px 12px;
}
.form-control:focus,
.form-select:focus {
  border-color: #9abcf0;
  box-shadow: 0 0 0 3px #edf4ff;
}
textarea.form-control {
  min-height: 125px;
  resize: vertical;
}
.contact-info {
  display: grid;
  gap: 12px;
}
.info-item {
  display: flex;
  gap: 13px;
  padding: 17px;
  background: #f6f9fb;
  border-radius: 11px;
}
.info-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: #fff;
  color: #d49b20;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.info-item h6 {
  font-size: 11px;
  font-weight: 800;
  margin: 1px 0 5px;
}
.info-item p,
.info-item a {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.info-item a:hover {
  color: var(--blue);
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: #5f7080;
  display: grid;
  place-items: center;
}
.socials a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.map-section {
  padding-top: 0;
}
.map-box {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #dce7e4;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-card {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 310px;
  background: #fff;
  border-radius: 14px;
  padding: 19px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}
.map-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}
.map-card p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.map-card .mini {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 9px;
}
.map-card .mini i {
  color: #d69d21;
}

.location-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 21px;
  transition: 0.3s;
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.location-card .loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff5d8;
  color: #d49b20;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.location-card h5 {
  font-size: 14px;
  font-weight: 800;
}
.location-card p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.location-card a {
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
}

.faq-card {
  overflow: hidden;
  box-shadow: none;
}
.accordion-button {
  font-size: 11px;
  font-weight: 800;
  padding: 18px 20px;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--text) !important;
}
.accordion-button:not(.collapsed) {
  color: #b37b11 !important;
}
.accordion-body {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 20px 20px;
}
.accordion-item {
  border-color: var(--border);
}

.cta {
  padding: 70px 0;
  background: #edf3f7;
}
.cta-box {
  background: linear-gradient(120deg, #081a29, #153a54);
  border-radius: 21px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-box:after {
  content: "";
  position: absolute;
  right: -180px;
  top: -190px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 184, 63, 0.18),
    transparent 68%
  );
}
.cta-box > * {
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
}
.cta-box p {
  font-size: 11px;
  color: #aebbc4;
  max-width: 570px;
}

footer {
  background: var(--dark);
  color: #aab7c0;
  padding: 48px 0 20px;
}
footer h6 {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
footer a {
  display: block;
  color: #aab7c0;
  font-size: 10px;
  margin-top: 9px;
}
footer a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .dn-nav .nav-link {
    padding: 10px 0 !important;
  }
  .quick-wrap {
    margin-top: -28px;
  }
  .map-card {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .contact-hero {
    min-height: 500px;
  }
  .hero-content {
    padding: 60px 0;
  }
  .contact-hero h1 {
    letter-spacing: -1.8px;
  }
  .section {
    padding: 58px 0;
  }
  .section-head h2 {
    font-size: 29px;
  }
  .quick-item {
    padding: 14px 12px;
  }
  .form-card,
  .info-card {
    padding: 20px;
  }
  .map-box {
    height: 520px;
  }
  .map-card {
    left: 12px;
    right: 12px;
    top: 12px;
    width: auto;
  }
  .cta-box {
    padding: 30px 23px;
  }
  .cta-box h2 {
    font-size: 28px;
  }
}
