/* =============================================================
   Almond Eyecare — Main Stylesheet
   Enqueued via functions.php > almondeyecare_enqueue_assets()
   ============================================================= */

/* ── CSS Variables ── */
:root {
  --gold:      #be7a23;
  --gold-dark: #9e6518;
  --gold-lite: #d4922f;
  --blue:      #5b6bf8;
  --navy:      #0f172a;
  --navy-mid:  #1e293b;
  --slate:     #334155;
  --muted:     #64748b;
  --white:     #ffffff;
  --bg:        #f8fafc;
  --bg-grey:   #f1f5f9;
  --border:    #e2e8f0;
  --sh-sm:     0 1px 3px rgba(15,23,42,.08),0 1px 2px rgba(15,23,42,.04);
  --sh-md:     0 4px 20px rgba(15,23,42,.10);
  --sh-lg:     0 20px 52px rgba(15,23,42,.14);
  --r:         6px;
  --r-md:      10px;
  --nav-h:     76px;
  --ease:      200ms ease;
  --fh:        'Lexend', sans-serif;
  --fb:        'Source Sans 3', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--navy); background: #fff; line-height: 1.6; overflow-x: hidden; font-size: 17px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none !important; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--blue); color: #fff;
  padding: 8px 18px; border-radius: 0 0 var(--r) var(--r);
  font-family: var(--fh); font-weight: 600; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ── Typography ── */
h1 { font-family: var(--fh); font-weight: 800; font-size: clamp(2.4rem,5vw,3.8rem) !important; line-height: 1.1; letter-spacing: -.025em; }
h2 { font-family: var(--fh); font-weight: 700; font-size: clamp(1.75rem,3.5vw,2.5rem) !important; line-height: 1.18; letter-spacing: -.02em; }
h3 { font-family: var(--fh); font-weight: 600; font-size: clamp(1rem,1.8vw,1.2rem) !important; line-height: 1.3; }
p { line-height: 1.75; }

.eyebrow {
  display: inline-block; font-family: var(--fh); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem;
}
.lead { font-family: var(--fb); font-size: 1.08rem; color: var(--muted); line-height: 1.75; max-width: 600px; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section--grey  { background: var(--bg-grey); }
.section--cream { background: var(--bg); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .lead { margin: 14px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fh); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; padding: 14px 28px;
  border-radius: var(--r); transition: all var(--ease);
  cursor: pointer; white-space: nowrap; min-height: 48px; border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 4px 16px rgba(190,122,35,.28); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 6px 22px rgba(190,122,35,.38); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--slate); background: var(--bg); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-white { background: #fff; color: var(--gold); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--bg); border-color: var(--bg); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1rem; border-radius: var(--r-md); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border); transition: box-shadow .3s;
}
.nav__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 10px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; margin-top:-24px}
.nav__logo img { width: 60px; }
.nav__logo-name { font-family: var(--fh); font-weight: 800; font-size: .95rem; color: var(--navy); line-height: 1.1; letter-spacing: -.01em; margin-left: 5px; }
.nav__logo-sub { font-family: var(--fb); font-size: .6rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 24px; justify-content: end; width: 100%; }
.nav__link { font-family: var(--fh); font-size: .83rem; font-weight: 500; color: var(--slate); transition: color var(--ease); }
.nav__link:hover { color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__email {
  font-family: var(--fh); font-size: .8rem; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 6px; transition: color var(--ease);
}
.nav__email svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }
.nav__email:hover { color: var(--gold); }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: var(--r); cursor: pointer; }
.nav__bar { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.nav__mob {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; padding: 14px 20px; flex-direction: column; gap: 3px;
  box-shadow: var(--sh-lg); z-index: 99; border-top: 1px solid var(--border);
}
.nav__mob.open { display: flex; }
.nav__mob-link { font-family: var(--fh); font-size: .93rem; font-weight: 500; color: var(--slate); padding: 11px 14px; border-radius: var(--r); transition: all var(--ease); }
.nav__mob-link:hover { background: var(--bg-grey); color: var(--gold); }
.nav__mob-group { border-top: 1px solid var(--border); margin-top: 2px; }
.nav__mob-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--fh); font-size: .82rem; font-weight: 600; color: var(--slate);
  padding: 12px 14px; border-radius: var(--r); background: none; border: none;
  cursor: pointer; text-align: left; transition: all var(--ease);
}
.nav__mob-head:hover { background: var(--bg-grey); color: var(--gold); }
.nav__mob-group.open .nav__mob-head { color: var(--gold); }
.nav__mob-chevron { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; transition: transform .22s ease; }
.nav__mob-group.open .nav__mob-chevron { transform: rotate(180deg); }
.nav__mob-items { display: none; flex-direction: column; gap: 1px; padding-bottom: 6px; }
.nav__mob-group.open .nav__mob-items { display: flex; }
.nav__mob-sub { font-family: var(--fh); font-size: .86rem; font-weight: 500; color: var(--slate); padding: 9px 14px 9px 24px; border-radius: var(--r); display: block; transition: all var(--ease); }
.nav__mob-sub:hover { background: var(--bg-grey); color: var(--gold); }

/* ── Nav Dropdowns ── */
.nav__item { position: relative; }
.nav__drop {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: var(--r-md); padding: 7px;
  min-width: 220px; box-shadow: var(--sh-lg); border: 1.5px solid var(--border);
  opacity: 0; pointer-events: none; z-index: 200;
  transition: opacity .17s ease, transform .17s ease;
}
.nav__item:hover .nav__drop,
.nav__item.open .nav__drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav__drop::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: var(--border);
}
.nav__drop::after {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-bottom-color: #fff;
}
.nav__drop-link {
  display: block; padding: 8px 13px; border-radius: 5px;
  font-family: var(--fh); font-size: .81rem; font-weight: 500; color: var(--slate);
  transition: all var(--ease);
}
.nav__drop-link:hover { background: var(--bg-grey); color: var(--gold); }
.nav__drop-div { height: 1px; background: var(--border); margin: 5px 8px; }
.nav__link-arr { display: inline-flex; align-items: center; gap: 3px; }
.nav__link-arr svg { width: 11px; height: 11px; stroke: currentColor; transition: transform .2s; }
.nav__item:hover .nav__link-arr svg { transform: rotate(180deg); }

/* ── Partners ── */
.partners { padding: 56px 0; background: var(--bg-grey); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners__label { text-align: center; font-family: var(--fh); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; }
.partners__row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .45; filter: grayscale(1); transition: all .25s ease; cursor: default; }
.partner:hover { opacity: 1; filter: grayscale(0); }
.partner__logo { height: 52px; display: flex; align-items: center; justify-content: center; }
.partner__logo img{width: 80px;}
.partner__name { font-family: var(--fh); font-size: .63rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); text-align: center; max-width: 88px; line-height: 1.4; }

/* ── Hero ── */
.hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero__in { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; padding: 42px 0 80px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(190,122,35,.08); border: 1.5px solid rgba(190,122,35,.22);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 22px;
}
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero__badge-txt { font-family: var(--fh); font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .07em; text-transform: uppercase; }
.hero__title { color: var(--navy); margin-bottom: 18px; }
.hero__title span { color: var(--gold); }
.hero__sub { font-size: 1.1rem; color: var(--muted); line-height: 1.78; margin-bottom: 34px; max-width: 520px; }
.hero__btns { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 42px; }
.hero__stats { display: flex; gap: 36px; padding-top: 30px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero__stat-num { font-family: var(--fh); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__stat-lbl { font-family: var(--fb); font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* Hero panel */
.hero__panel { background: var(--navy); border-radius: 12px; padding: 32px 28px; }
.hero__panel-h { font-family: var(--fh); font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 22px; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; }
.hero__panel-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.hero__panel-item { display: flex; align-items: flex-start; gap: 12px; }
.hero__panel-tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(190,122,35,.15); border: 1.5px solid rgba(190,122,35,.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.hero__panel-tick svg { width: 11px; height: 11px; stroke: var(--gold); }
.hero__panel-item p { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.5; }
.hero__panel-item strong { font-family: var(--fh); font-weight: 600; color: #fff; display: block; }
.hero__panel-div { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.hero__panel-nhs { display: flex; align-items: center; gap: 12px; }
.hero__panel-nhs-ico { width: 40px; height: 40px; border-radius: var(--r); background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__panel-nhs-ico svg { width: 20px; height: 20px; stroke: #fff; }
.hero__panel-nhs-title { font-family: var(--fh); font-size: .92rem; font-weight: 700; color: #fff; }
.hero__panel-nhs p { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ── Trust Bar ── */
.trust { background: var(--gold); padding: 15px 0; }
.trust__in { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust__item { display: flex; align-items: center; gap: 8px; }
.trust__item svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.9); flex-shrink: 0; }
.trust__txt { font-family: var(--fh); font-size: .78rem; font-weight: 600; color: #fff; letter-spacing: .02em; }
.trust__div { width: 1px; height: 18px; background: rgba(255,255,255,.3); }

/* ── Who We Help ── */
.who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.who-card {
  background: #fff; border-radius: var(--r-md); padding: 34px 26px;
  border: 1.5px solid var(--border); position: relative; overflow: hidden;
  transition: all .22s ease; cursor: default;
}
.who-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }
.who-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.who-num { font-family: var(--fh); font-size: 2.8rem; font-weight: 900; color: rgba(190,122,35,.1); line-height: 1; margin-bottom: 14px; letter-spacing: -.04em; }
.who-card h3 { font-size: 1.1rem; margin-bottom: 11px; color: var(--navy); }
.who-card p { font-size: .91rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.who-cta { font-family: var(--fh); font-size: .82rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; transition: gap var(--ease); }
.who-cta:hover { gap: 10px; }

/* ── Testimonials ── */
.testi-featured {
  background: var(--navy); border-radius: 12px; padding: 52px 56px; margin-bottom: 24px; position: relative;
}
.testi-featured::before {
  content: '\201C'; position: absolute; top: 10px; left: 32px;
  font-size: 9rem; line-height: 1; font-family: var(--fh); font-weight: 900;
  color: rgba(190,122,35,.2); pointer-events: none;
}
.testi-featured blockquote {
  font-family: var(--fh); font-size: clamp(1.08rem,2.5vw,1.45rem); font-weight: 500;
  color: #fff; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 1;
}
.testi-featured cite { display: flex; align-items: center; gap: 14px; font-style: normal; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: .88rem; font-weight: 700; color: #fff;
}
.testi-name { font-family: var(--fh); font-size: .92rem; font-weight: 700; color: #fff; }
.testi-role { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card { background: #fff; border-radius: var(--r-md); padding: 26px 22px; border: 1.5px solid var(--border); }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { width: 15px; height: 15px; fill: var(--gold); }
.testi-q { font-size: .89rem; color: var(--slate); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-card cite { font-style: normal; display: flex; align-items: center; gap: 10px; }
.testi-card .testi-av { width: 38px; height: 38px; font-size: .78rem; }
.testi-card .testi-name { font-size: .84rem; color: var(--navy); }
.testi-card .testi-role { font-size: .74rem; }

/* ── Services ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  background: #fff; border-radius: var(--r-md); padding: 28px 22px;
  border: 1.5px solid var(--border); transition: all .22s ease;
}
.svc-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }
.svc-ico { width: 46px; height: 46px; border-radius: var(--r); background: rgba(190,122,35,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-ico svg { width: 22px; height: 22px; stroke: var(--gold); }
.svc-card h3 { font-size: .98rem; margin-bottom: 8px; color: var(--navy); }
.svc-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── How It Works ── */
.hiw { background: var(--navy); }
.hiw .eyebrow { color: var(--gold-lite); }
.hiw h2 { color: #fff; }
.hiw .lead { color: rgba(255,255,255,.5); margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md); padding: 28px 20px; }
.step__n { font-family: var(--fh); font-size: 2.5rem; font-weight: 900; color: rgba(190,122,35,.25); line-height: 1; margin-bottom: 14px; letter-spacing: -.04em; }
.step__ico { margin-bottom: 12px; }
.step__ico svg { width: 24px; height: 24px; stroke: var(--gold-lite); }
.step h3 { font-size: .95rem; color: #fff; margin-bottom: 7px; }
.step p { font-size: .84rem; color: rgba(255,255,255,.52); line-height: 1.65; }

/* ── Eligibility ── */
.elig__in { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.elig__content h2 { text-align: left; margin-bottom: 12px; }
.elig__content .lead { text-align: left; margin: 0 0 26px; }
.elig__perks { display: flex; flex-direction: column; gap: 10px; }
.elig__perk { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--slate); }
.elig__perk svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.elig__card { background: #fff; border-radius: var(--r-md); padding: 34px 30px; box-shadow: var(--sh-lg); border: 1.5px solid var(--border); }
.elig__card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.elig__card-sub { font-size: .87rem; color: var(--muted); margin-bottom: 20px; }
.elig__opts { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.elig__opt { display: flex; align-items: flex-start; gap: 12px; padding: 12px 13px; border-radius: var(--r); border: 1.5px solid var(--border); background: var(--bg); cursor: pointer; transition: all var(--ease); }
.elig__opt:hover { border-color: var(--gold); background: rgba(190,122,35,.04); }
.elig__opt.on { border-color: var(--gold); background: rgba(190,122,35,.06); }
.elig__opt input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; margin-top: 1px; cursor: pointer; }
.elig__opt-txt { font-size: .87rem; font-weight: 500; line-height: 1.4; }
.elig__res { display: none; padding: 12px 15px; border-radius: var(--r); font-size: .87rem; font-weight: 600; margin-bottom: 15px; }
.elig__res.yes { display: block; background: rgba(34,197,94,.08); border: 1.5px solid rgba(34,197,94,.3); color: #15803d; }
.elig__res.maybe { display: block; background: rgba(190,122,35,.08); border: 1.5px solid rgba(190,122,35,.3); color: var(--gold-dark); }

/* ── Areas ── */
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.area-card { background: #fff; border-radius: var(--r-md); padding: 20px 18px; border: 1.5px solid var(--border); transition: all var(--ease); cursor: pointer; }
.area-card:hover { border-color: var(--blue); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.area-badge { display: inline-block; font-family: var(--fh); font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 4px; margin-bottom: 7px; letter-spacing: .05em; text-transform: uppercase; }
.area-badge--blue { background: var(--blue); color: #fff; }
.area-badge--gold { background: var(--gold); color: #fff; }
.area-badge--slate { background: var(--slate); color: #fff; }
.area-region { font-family: var(--fh); font-size: .96rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.area-towns { font-size: .79rem; color: var(--muted); line-height: 1.6; }

/* ── CTA Band ── */
.cta-band { background: var(--gold); padding: 68px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 13px; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 34px; }
.cta-band__btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Booking ── */
.booking { background: var(--bg); }
.booking__in { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.booking__left h2 { text-align: left; margin-bottom: 13px; }
.booking__left .lead { text-align: left; margin: 0 0 28px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-ico { width: 40px; height: 40px; border-radius: var(--r); background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-ico svg { width: 17px; height: 17px; stroke: #fff; }
.contact-lbl { font-family: var(--fh); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.contact-val { font-family: var(--fh); font-size: .9rem; font-weight: 600; color: var(--navy); }
.bform { background: #fff; border-radius: var(--r-md); padding: 38px 34px; box-shadow: var(--sh-lg); border: 1.5px solid var(--border); }
.bform h3 { font-size: 1.2rem; margin-bottom: 4px; }
.bform-sub { font-size: .87rem; color: var(--muted); margin-bottom: 22px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-family: var(--fh); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.fg .req { color: #ef4444; margin-left: 2px; }
.fc {
  font-family: var(--fb); font-size: .93rem; color: var(--navy);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 11px 13px; width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease); min-height: 46px; appearance: none;
}
.fc:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(190,122,35,.12); background: #fff; }
.fc::placeholder { color: #94a3b8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.radio-grp { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pill { display: flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--r); cursor: pointer; font-family: var(--fh); font-size: .8rem; font-weight: 600; transition: all var(--ease); }
.radio-pill input { accent-color: var(--gold); cursor: pointer; }
.radio-pill:has(input:checked) { border-color: var(--gold); background: rgba(190,122,35,.06); color: var(--gold-dark); }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-btn { margin-top: 18px; width: 100%; justify-content: center; }
.form-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }
.form-ok { display: none; text-align: center; padding: 40px 16px; }
.form-ok-ico { width: 58px; height: 58px; border-radius: 50%; background: rgba(34,197,94,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-ok-ico svg { width: 28px; height: 28px; stroke: #15803d; }

/* ── Footer ── */
.footer { background: var(--navy); padding: 58px 0 24px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 24px; }
.footer__logo-name { font-family: var(--fh); font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.footer__logo-sub { font-family: var(--fb); font-size: .6rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.footer__desc { font-size: .87rem; color: rgba(255,255,255,.48); line-height: 1.72; margin: 13px 0 20px; }
.footer__socials { display: flex; gap: 8px; }
.soc-link { width: 36px; height: 36px; border-radius: var(--r); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all var(--ease); cursor: pointer; }
.soc-link:hover { background: var(--gold); border-color: var(--gold); }
.soc-link svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.7); }
.soc-link:hover svg { stroke: #fff; }
.footer__col-title { font-family: var(--fh); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 15px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__lnk { font-size: .86rem; color: rgba(255,255,255,.48); transition: color var(--ease); cursor: pointer; }
.footer__lnk:hover { color: rgba(255,255,255,.9); }
.footer__bot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__copy { font-size: .79rem; color: rgba(255,255,255,.32); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .79rem; color: rgba(255,255,255,.32); transition: color var(--ease); }
.footer__legal a:hover { color: rgba(255,255,255,.75); }
.footer-logo { width: 50px; }

/* ── Scroll Reveal ── */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
  .rv.in { opacity: 1; transform: none; }
  .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .elig__in { grid-template-columns: 1fr; gap: 40px; }
  .booking__in { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .testi-featured { padding: 40px 34px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .section { padding: 62px 0; }
  .sec-head { margin-bottom: 36px; }
  .nav__links, .nav__email, .nav__cta-btn { display: none; }
  .nav__logo{margin-top:0px;}
  .nav__burger { display: flex; padding-bottom: 10px; padding-top:10px}
  .who-grid, .svc-grid, .steps, .testi-grid { grid-template-columns: 1fr; }
  .testi-featured { padding: 30px 22px; }
  .testi-featured::before { font-size: 6rem; }
  .testi-featured blockquote { font-size: 1rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bform { padding: 24px 18px; }
  .partners__row { gap: 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 20px; }
  .footer__bot { flex-direction: column; text-align: center; }
  .trust__div { display: none; }
  .trust__in { gap: 12px 22px; }
  .hero__in { padding: 0px 0 62px; }
  .cta-band { padding: 52px 0; }
}

/* ── Responsive: Small Mobile ── */
@media (max-width: 480px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 22px; }
  .cta-band__btns { flex-direction: column; }
  .cta-band__btns .btn { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
.hero__content, .bform{width:100%; overflow:hidden;}
.elig__card{width:100%; overflow:hidden;}
}
