/* =========================================================
   GEOAREA CONTACT PAGE
========================================================= */

.ghc-page {
  --ghc-navy: #0f172a;
  --ghc-blue: #2563eb;
  --ghc-green: #16a34a;
  --ghc-gold: #f4c768;
  --ghc-text: #334155;
  --ghc-muted: #64748b;
  --ghc-border: #e5e7eb;
  --ghc-soft: #f6f8fc;

  overflow: hidden;
  background: #fff;
  color: var(--ghc-text);
}

.ghc-page *,
.ghc-page *::before,
.ghc-page *::after {
  box-sizing: border-box;
}

.ghc-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}


/* HERO */

.ghc-hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, .38), transparent 35%),
    linear-gradient(135deg, #0b1220, #172554 58%, #1d4ed8);
}

.ghc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 420px;
  gap: 70px;
  align-items: center;
}

.ghc-eyebrow,
.ghc-kicker,
.ghc-section-heading > span,
.ghc-panel-heading > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ghc-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghc-eyebrow {
  color: var(--ghc-gold);
}

.ghc-hero h1 {
  max-width: 830px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  line-height: 1.07;
  letter-spacing: -.035em;
}

.ghc-hero-content > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.8;
}

.ghc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.ghc-btn {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.ghc-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ghc-btn-primary {
  background: var(--ghc-green);
  color: #fff;
}

.ghc-btn-primary:hover {
  background: #15803d;
  color: #fff;
}

.ghc-btn-secondary {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ghc-btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.ghc-btn-light {
  background: #fff;
  color: var(--ghc-navy);
}

.ghc-hero-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.ghc-hero-card > span {
  color: var(--ghc-gold);
  font-size: 12px;
  font-weight: 900;
}

.ghc-hero-card > strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.35;
}

.ghc-hero-card ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.ghc-hero-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, .76);
  font-weight: 750;
}

.ghc-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 950;
}


/* COMMON */

.ghc-section {
  padding: 90px 0;
}

.ghc-section-soft {
  background: var(--ghc-soft);
}

.ghc-section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.ghc-section-heading h2,
.ghc-panel-heading h2,
.ghc-faq-intro h2 {
  margin: 0;
  color: var(--ghc-navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.ghc-section-heading > p,
.ghc-panel-heading > p,
.ghc-faq-intro > p {
  margin: 16px 0 0;
  color: var(--ghc-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}


/* CONTACT CARDS */

.ghc-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ghc-contact-card {
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--ghc-border);
  border-radius: 24px;
  display: block;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.ghc-contact-card:hover {
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .1);
}

.ghc-contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #eaf1ff;
  color: var(--ghc-blue);
  font-size: 19px;
  font-weight: 950;
}

.ghc-contact-card > span,
.ghc-contact-card > small {
  display: block;
  color: var(--ghc-muted);
  font-size: 12px;
  font-weight: 750;
}

.ghc-contact-card > strong {
  display: block;
  margin: 8px 0 9px;
  color: var(--ghc-navy);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.45;
}


/* FORM */

.ghc-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 46px;
  align-items: start;
}

.ghc-form-panel {
  padding: 38px;
  border: 1px solid #e1e7ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.ghc-form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.ghc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ghc-form label {
  display: grid;
  gap: 8px;
}

.ghc-form label > span {
  color: var(--ghc-text);
  font-size: 13px;
  font-weight: 850;
}

.ghc-form input,
.ghc-form select,
.ghc-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 15px;
  background: #fff;
  color: var(--ghc-navy);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.ghc-form input,
.ghc-form select {
  height: 56px;
  padding: 0 17px;
}

.ghc-form textarea {
  min-height: 170px;
  padding: 16px 17px;
  resize: vertical;
  line-height: 1.6;
}

.ghc-form input:focus,
.ghc-form select:focus,
.ghc-form textarea:focus {
  border-color: var(--ghc-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.ghc-terms {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
}

.ghc-terms input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.ghc-terms > span {
  color: var(--ghc-muted) !important;
  line-height: 1.6;
}

.ghc-terms a {
  color: var(--ghc-blue);
  text-decoration: none;
}

.ghc-submit {
  min-height: 56px;
  padding: 0 26px;
  justify-self: start;
  border: 0;
  border-radius: 15px;
  background: var(--ghc-green);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
}

.ghc-submit:hover {
  background: #15803d;
}

.ghc-message {
  margin-top: 24px;
  padding: 15px 17px;
  border-radius: 14px;
  font-weight: 800;
}

.ghc-message-success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.ghc-message-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}


/* SIDE CARDS */

.ghc-side {
  display: grid;
  gap: 20px;
}

.ghc-side-card {
  padding: 28px;
  border: 1px solid #dfe7f1;
  border-radius: 24px;
  background: #fff;
}

.ghc-side-card > span {
  color: var(--ghc-blue);
  font-size: 12px;
  font-weight: 900;
}

.ghc-side-card h3 {
  margin: 11px 0 0;
  color: var(--ghc-navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.35;
}

.ghc-hours {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.ghc-hours > div {
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}

.ghc-hours > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ghc-hours strong,
.ghc-hours span {
  display: block;
}

.ghc-hours strong {
  color: var(--ghc-navy);
  font-size: 14px;
}

.ghc-hours span {
  margin-top: 4px;
  color: var(--ghc-muted);
  font-size: 13px;
}

.ghc-side-dark {
  border-color: var(--ghc-navy);
  background: var(--ghc-navy);
}

.ghc-side-dark > span {
  color: var(--ghc-gold);
}

.ghc-side-dark h3 {
  color: #fff;
}

.ghc-side-dark ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.ghc-side-dark li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 750;
}

.ghc-side-dark li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
}


/* MAP */

.ghc-map-section {
  padding: 90px 0;
  background: #fff;
}

.ghc-map-wrap {
  overflow: hidden;
  border: 1px solid var(--ghc-border);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.ghc-map-wrap iframe {
  display: block;
}


/* FAQ */

.ghc-faq-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 60px;
}

.ghc-faq-intro {
  position: sticky;
  top: 160px;
}

.ghc-faq-list {
  display: grid;
  gap: 12px;
}

.ghc-faq-list details {
  overflow: hidden;
  border: 1px solid var(--ghc-border);
  border-radius: 18px;
  background: #fff;
}

.ghc-faq-list summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  color: var(--ghc-navy);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.ghc-faq-list summary::-webkit-details-marker {
  display: none;
}

.ghc-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3fb;
  color: var(--ghc-blue);
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

.ghc-faq-list details[open] summary::after {
  content: "−";
}

.ghc-faq-list details > div {
  padding: 0 22px 22px;
}

.ghc-faq-list details p {
  margin: 0;
  color: var(--ghc-muted);
  line-height: 1.75;
}


/* FINAL CTA */

.ghc-final-cta {
  padding: 62px 0;
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
}

.ghc-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ghc-final-inner span {
  color: var(--ghc-gold);
  font-size: 13px;
  font-weight: 900;
}

.ghc-final-inner h2 {
  max-width: 800px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.2;
}


/* RESPONSIVE */

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

  .ghc-hero-card {
    max-width: 620px;
  }

  .ghc-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ghc-main-grid {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 850px) {
  .ghc-section,
  .ghc-map-section {
    padding: 70px 0;
  }

  .ghc-main-grid,
  .ghc-faq-layout {
    grid-template-columns: 1fr;
  }

  .ghc-faq-intro {
    position: static;
  }

  .ghc-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .ghc-container {
    width: min(100% - 28px, 1320px);
  }

  .ghc-hero {
    padding: 58px 0;
  }

  .ghc-hero h1 {
    font-size: 38px;
  }

  .ghc-hero-content > p {
    font-size: 16px;
  }

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

  .ghc-form-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .ghc-hero-actions {
    display: grid;
  }

  .ghc-btn,
  .ghc-submit {
    width: 100%;
  }

  .ghc-submit {
    justify-self: stretch;
  }
}
.ghc-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
