/* ═══════════════════════════════════════
   BAYNEX — LIGHT THEME STYLESHEET
   Navy #183749 | Gold #D8C198 | #50432E
   Font: Satoshi
═══════════════════════════════════════ */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400,300&display=swap');

:root {
  --navy:       #183749;
  --navy-dark:  #0f2330;
  --navy-mid:   #1e4460;
  --gold:       #D8C198;
  --gold-dark:  #50432E;
  --gold-mid:   #b09870;
  --cream:      #f7f3eb;
  --cream-dark: #ede8dc;
  --muted:      #5a7080;
  --white:      #ffffff;
  --light-bg:   #f5f7f9;
  --light-bg2:  #eef1f4;
  --border:     #dde3e8;
  --text:       #1a2e3b;
  --text-light: #6b8494;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Satoshi',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200; height:76px;
  display:flex; align-items:center; justify-content:space-between; padding:0 6%;
  background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border); box-shadow:0 2px 20px rgba(24,55,73,0.06);
}
.logo-wrap img { height:44px; width:auto; display:block; }
.nav-links { display:flex; gap:2rem; list-style:none; align-items:center; }
.nav-links a { font-size:0.78rem; font-weight:600; letter-spacing:0.09em; text-transform:uppercase; color:var(--text-light); text-decoration:none; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--navy); }
.nav-cta { color:var(--white) !important; background:var(--navy) !important; padding:0.5rem 1.4rem; transition:background .2s !important; }
.nav-cta:hover { background:var(--navy-mid) !important; }
.nav-dropdown { position:relative; }
.nav-dropdown>a::after { content:' ▾'; font-size:0.52rem; opacity:.6; }
.dropdown-menu { display:none; position:absolute; top:calc(100% + 8px); left:0; background:var(--white); border:1px solid var(--border); min-width:240px; padding:.4rem 0; box-shadow:0 16px 40px rgba(24,55,73,0.12); z-index:300; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display:block; animation:dropFadeIn .18s ease; }
.dropdown-menu a { display:block; padding:.72rem 1.4rem; font-size:0.74rem; font-weight:500; letter-spacing:0.07em; text-transform:uppercase; color:var(--text-light); text-decoration:none; transition:color .2s, background .2s, padding-left .18s; border-left:3px solid transparent; }
.dropdown-menu a:hover { color:var(--navy); background:var(--light-bg); padding-left:1.8rem; border-left-color:var(--gold-dark); }
@keyframes dropFadeIn { from{opacity:0;transform:translateY(-6px);}to{opacity:1;transform:translateY(0);} }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { width:24px; height:2px; background:var(--navy); display:block; transition:transform .25s, opacity .25s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display:none; position:fixed; top:76px; left:0; right:0; bottom:0; background:var(--white); z-index:199; padding:1.5rem 6%; flex-direction:column; gap:0; overflow-y:auto; border-top:1px solid var(--border); }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:.9rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--text); text-decoration:none; padding:.9rem 0; border-bottom:1px solid var(--border); }
.mobile-menu a:hover { color:var(--navy); }
.mobile-menu a.mm-sub { font-size:.78rem; padding-left:1rem; color:var(--text-light); }

/* ── PAGE HERO ── */
.page-hero { background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,var(--navy-mid) 100%); padding:150px 6% 95px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(255,255,255,0.03) 80px),repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(255,255,255,0.03) 80px); pointer-events:none; }
.page-hero::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:80px; background:linear-gradient(to top,var(--white) 0%,transparent 100%); pointer-events:none; }
.page-hero-inner { position:relative; z-index:2; max-width:720px; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; margin-bottom:1.2rem; }
.breadcrumb a, .breadcrumb span { font-size:0.68rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.75); text-decoration:none; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { color:rgba(255,255,255,0.2); }
.page-tag { display:inline-flex; align-items:center; gap:.6rem; font-size:0.66rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; }
.page-tag::before { content:''; width:26px; height:1px; background:var(--gold); }
.page-hero h1 { font-size:clamp(2.3rem,4.8vw,3.8rem); font-weight:700; line-height:1.1; color:#ffffff; margin-bottom:1.2rem; text-shadow:0 2px 12px rgba(0,0,0,0.2); }
.page-hero h1 em { font-style:normal; color:var(--gold); }
.page-hero .hero-lead { font-size:.97rem; line-height:1.8; font-weight:400; color:rgba(255,255,255,0.85); max-width:540px; }

/* ── TYPOGRAPHY ── */
.eyebrow { display:inline-flex; align-items:center; gap:.6rem; font-size:0.66rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:.9rem; }
.eyebrow::before { content:''; width:24px; height:1px; background:var(--gold-dark); }
.eyebrow.light { color:var(--gold); }
.eyebrow.light::before { background:var(--gold); }
h2 { font-size:clamp(1.9rem,3.3vw,2.7rem); font-weight:700; line-height:1.1; color:var(--navy); }
h2.light { color:#fff; }
h3 { font-size:1.2rem; font-weight:700; color:var(--navy); }
.section-sub { font-size:.93rem; line-height:1.8; font-weight:400; color:var(--text-light); margin-top:.9rem; }
.section-sub.light { color:rgba(255,255,255,.6); }

/* ── BUTTONS ── */
.btn-gold { display:inline-block; padding:.8rem 1.9rem; background:var(--navy); color:var(--white); font-family:'Satoshi',sans-serif; font-size:0.76rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; cursor:pointer; border:none; transition:background .2s, transform .15s, box-shadow .2s; }
.btn-gold:hover { background:var(--navy-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(24,55,73,0.2); }
.btn-ghost { display:inline-block; padding:.8rem 1.9rem; background:transparent; border:2px solid var(--navy); color:var(--navy); font-family:'Satoshi',sans-serif; font-size:0.76rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; cursor:pointer; transition:all .2s; }
.btn-ghost:hover { background:var(--navy); color:var(--white); }
.btn-navy { display:inline-block; padding:.8rem 1.9rem; background:var(--gold-dark); color:var(--white); font-family:'Satoshi',sans-serif; font-size:0.76rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; cursor:pointer; border:none; transition:background .2s; }
.btn-navy:hover { background:var(--gold-mid); }
.btn-ghost-white { display:inline-block; padding:.8rem 1.9rem; background:transparent; border:2px solid rgba(255,255,255,0.7); color:#ffffff; font-family:'Satoshi',sans-serif; font-size:0.76rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; cursor:pointer; transition:all .2s; }
.btn-ghost-white:hover { background:rgba(255,255,255,0.15); border-color:#fff; color:#fff; }

/* ── GRIDS ── */
.card-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.card-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.card { background:var(--white); padding:2.2rem 2rem; border:1px solid var(--border); transition:all .25s; }
.card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(24,55,73,0.1); border-color:var(--navy); }
.card-icon { width:46px; height:46px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:1.3rem; transition:background .25s; }
.card:hover .card-icon { background:var(--gold-dark); }
.card-icon svg { width:20px; height:20px; fill:var(--white); }

/* ── SERVICE FEATURES GRID ── */
.service-features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.5rem; }
.sf-card { background:var(--white); border:1px solid var(--border); padding:2rem 1.8rem; transition:all .3s; position:relative; overflow:hidden; }
.sf-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--navy),var(--navy-mid)); transform:scaleX(0); transition:transform .3s; transform-origin:left; }
.sf-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(24,55,73,0.1); border-color:var(--navy); }
.sf-card:hover::before { transform:scaleX(1); }
.sf-card-icon { width:48px; height:48px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
.sf-card-icon svg { width:22px; height:22px; fill:var(--white); }
.sf-card h4 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:.6rem; }
.sf-card p { font-size:.82rem; line-height:1.72; color:var(--text-light); font-weight:400; }
.sf-card-num { position:absolute; top:1.2rem; right:1.5rem; font-size:2.4rem; font-weight:700; color:rgba(24,55,73,0.05); line-height:1; }

/* ── GET IN TOUCH SECTION ── */
.git-section { background:var(--light-bg); padding:90px 6%; position:relative; overflow:hidden; border-top:1px solid var(--border); }
.git-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1.2fr; gap:70px; align-items:start; }
.git-contact-item { display:flex; align-items:center; gap:1rem; padding:1rem 1.2rem; border:1px solid var(--border); text-decoration:none; transition:all .2s; margin-bottom:.6rem; background:var(--white); }
.git-contact-item:hover { border-color:var(--navy); box-shadow:0 4px 16px rgba(24,55,73,0.08); transform:translateX(4px); }
.git-contact-icon { width:40px; height:40px; background:var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.git-contact-icon svg { fill:var(--white); }
.git-contact-label { font-size:.62rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-light); margin-bottom:.15rem; }
.git-contact-value { font-size:.9rem; font-weight:600; color:var(--navy); }
.git-form-wrap { background:var(--white); border:1px solid var(--border); padding:2.5rem; box-shadow:0 8px 32px rgba(24,55,73,0.06); }
.git-form-title { font-size:.62rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--navy); margin-bottom:1.6rem; padding-bottom:1rem; border-bottom:2px solid var(--navy); }

/* ── FOOTER ── */
footer { background:var(--navy); padding:65px 6% 32px; border-top:3px solid var(--gold-dark); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-brand .footer-logo-img { height:40px; width:auto; margin-bottom:1.1rem; display:block; filter:brightness(1.8); }
.footer-brand p { font-size:.8rem; line-height:1.78; color:rgba(255,255,255,.5); font-weight:400; }
.footer-col h4 { font-size:.62rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.footer-col ul a { font-size:.82rem; color:rgba(255,255,255,.55); text-decoration:none; transition:color .2s; }
.footer-col ul a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-copy { font-size:.68rem; color:rgba(255,255,255,.35); letter-spacing:.04em; }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size:.68rem; color:rgba(255,255,255,.35); text-decoration:none; transition:color .2s; }
.footer-legal a:hover { color:var(--gold); }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,0.08); display:inline-flex; align-items:center; justify-content:center; text-decoration:none; transition:background .2s; margin-right:.6rem; }
.footer-social a:hover { background:var(--gold-dark); }
.footer-social a svg { fill:rgba(255,255,255,0.6); width:15px; height:15px; }
.footer-social a:hover svg { fill:var(--gold); }

/* ── FORM ── */
.form-grid { display:flex; flex-direction:column; gap:1rem; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { display:flex; flex-direction:column; gap:.38rem; }
.field label { font-size:.62rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--navy); }
.field input, .field select, .field textarea { background:var(--white); border:1.5px solid var(--border); padding:.8rem 1rem; font-size:.87rem; font-family:'Satoshi',sans-serif; color:var(--text); outline:none; transition:border-color .2s; resize:none; }
.field input::placeholder, .field textarea::placeholder { color:var(--text-light); }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--navy); }
.field select { appearance:none; cursor:pointer; color:var(--text); }
.field select option { background:var(--white); color:var(--text); }

/* ── BOOKING WIDGET ── */
#booking-widget { background:var(--white); }
#booking-widget input, #booking-widget select, #booking-widget textarea { background:var(--light-bg); border:1.5px solid var(--border); color:var(--text); }
#booking-widget input::placeholder, #booking-widget textarea::placeholder { color:var(--text-light); }
#booking-widget input:focus, #booking-widget select:focus { border-color:var(--navy); }
#booking-widget .field label { color:var(--navy); }
#cal-grid button:not([disabled]) { background:var(--light-bg); color:var(--navy); }
#cal-grid button:not([disabled]):hover { background:var(--light-bg2); }
#booking-summary { background:var(--light-bg); color:var(--navy); border:1px solid var(--border); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }
@keyframes lineGrow { from{width:0;opacity:0;}to{width:100%;opacity:.35;} }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(24,55,73,0.3);}50%{box-shadow:0 0 0 12px rgba(24,55,73,0);} }
.reveal { opacity:0; transform:translateY(26px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.anim-1{animation:fadeUp .7s ease .1s forwards;opacity:0;} .anim-2{animation:fadeUp .7s ease .25s forwards;opacity:0;}
.anim-3{animation:fadeUp .7s ease .4s forwards;opacity:0;} .anim-4{animation:fadeUp .7s ease .55s forwards;opacity:0;}
.anim-5{animation:fadeUp .7s ease .7s forwards;opacity:0;}
.process-step{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease;}
.process-step.visible{opacity:1;transform:translateY(0);}
.process-step-1.visible{transition-delay:.05s;}.process-step-2.visible{transition-delay:.25s;}
.process-step-3.visible{transition-delay:.45s;}.process-step-4.visible{transition-delay:.65s;}
.process-dot{transition:box-shadow .3s;}
.process-step.visible .process-dot{animation:pulseDot 1.8s ease .8s 1;}
.process-line-anim{position:absolute;top:27px;left:calc(12.5% + 27px);right:calc(12.5% + 27px);height:1px;background:transparent;overflow:visible;}
.process-line-anim::after{content:'';display:block;position:absolute;top:0;left:0;height:100%;width:0;background:linear-gradient(90deg,var(--gold-dark),var(--gold-mid),var(--gold-dark));transition:width 1.2s ease .3s;}
.process-line-anim.visible::after{width:100%;opacity:.5;}

/* ── RESPONSIVE ── */
@media(max-width:1024px){.footer-top{grid-template-columns:1fr 1fr;}.service-features-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:900px){
  .nav-links{display:none;}.hamburger{display:flex;}.card-grid-3{grid-template-columns:1fr 1fr;gap:1rem;}
  .form-row-2{grid-template-columns:1fr;}.two-col{grid-template-columns:1fr !important;gap:36px;}
  .process-grid{grid-template-columns:1fr 1fr !important;gap:2rem;}.process-line,.process-line-anim{display:none !important;}
  .hero-grid{grid-template-columns:1fr !important;}.hero-card-wrap{display:none;}
  .cta-banner{flex-direction:column;gap:1.5rem;}.git-inner{grid-template-columns:1fr !important;gap:40px;}
}
@media(max-width:600px){.card-grid-3,.card-grid-2{grid-template-columns:1fr;}.footer-top{grid-template-columns:1fr;gap:2rem;}.service-features-grid{grid-template-columns:1fr;}}

/* ═══════════════════════════════════════
   ENHANCED MOBILE RESPONSIVE — BAYNEX
   ═══════════════════════════════════════ */

/* ── BTN GHOST WHITE ── */
.btn-ghost-white {
  display:inline-block; padding:.8rem 1.9rem; background:transparent;
  border:2px solid rgba(255,255,255,0.65); color:#ffffff;
  font-family:'Satoshi',sans-serif; font-size:0.76rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; text-decoration:none;
  cursor:pointer; transition:all .22s;
}
.btn-ghost-white:hover { background:rgba(255,255,255,0.12); border-color:#fff; }

/* ── HERO SLIDE TEXT ── */
#hero-slide-text { display:inline-block; transition:opacity .35s ease, transform .35s ease; }

/* ── HERO CARD IMPROVEMENTS ── */
.hero-service-link {
  display:flex; align-items:center; gap:.9rem; padding:.9rem 0;
  border-bottom:1px solid var(--border); text-decoration:none; transition:background .18s;
}
.hero-service-link:last-child { border-bottom:none; }
.hero-service-icon {
  width:32px; height:32px; background:var(--light-bg2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-service-icon svg { width:14px; height:14px; }
.hsl-title { font-size:.84rem; font-weight:600; color:var(--navy); }
.hsl-sub   { font-size:.73rem; color:var(--text-light); }
.hsl-arrow { width:14px; height:14px; fill:var(--gold-dark); margin-left:auto; opacity:0; transition:opacity .2s, transform .2s; flex-shrink:0; }
.hero-service-link:hover { background:var(--light-bg); padding-left:.6rem; padding-right:.6rem; margin:0 -.6rem; }
.hero-service-link:hover .hsl-title { color:var(--gold-dark); }
.hero-service-link:hover .hsl-arrow { opacity:1; transform:translateX(3px); }

/* ── ICON FEATURE ── */
.icon-feature {
  display:flex; gap:1.2rem; align-items:flex-start;
  padding:1.3rem 1.4rem; border:1px solid var(--border); background:var(--white);
  transition:border-color .25s, box-shadow .25s, transform .22s;
}
.icon-feature:hover { border-color:var(--navy); box-shadow:0 6px 24px rgba(24,55,73,0.09); transform:translateX(4px); }
.icon-feature-box {
  width:42px; height:42px; background:var(--navy);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; border-radius:2px;
}
.icon-feature-box svg { width:18px; height:18px; fill:var(--gold); }
.icon-feature-title { font-size:.9rem; font-weight:700; color:var(--navy); margin-bottom:.25rem; }
.icon-feature-desc  { font-size:.8rem; line-height:1.65; font-weight:400; color:var(--text-light); }

/* ── PROCESS ICON WRAP ── */
.process-icon-wrap {
  width:62px; height:62px; border-radius:50%; background:var(--white);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.2rem; border:2px solid rgba(216,193,152,0.25);
  position:relative; z-index:1; transition:all .3s;
  box-shadow:0 4px 16px rgba(24,55,73,0.07);
}
.process-icon-wrap svg { width:22px; height:22px; fill:var(--gold-mid); transition:fill .3s; }
.process-num {
  position:absolute; top:-7px; right:-7px; width:22px; height:22px;
  border-radius:50%; background:var(--gold); color:var(--navy);
  font-size:.6rem; font-weight:800; display:flex; align-items:center; justify-content:center;
}
.process-step.visible .process-icon-wrap {
  border-color:var(--gold); background:var(--navy);
  animation:pulseDot 1.8s ease .8s 1;
}
.process-step.visible .process-icon-wrap svg { fill:var(--gold); }

/* ── HERO STAT BAR ── */
.hero-stat-bar {
  display:flex; gap:0; margin-top:2.5rem; padding-top:1.8rem;
  border-top:1px solid rgba(255,255,255,0.12);
}
.hero-stat { flex:1; padding-right:1.6rem; border-right:1px solid rgba(255,255,255,0.12); margin-right:1.6rem; }
.hero-stat:last-child { border-right:none; margin-right:0; }
.hero-stat-num { font-size:1.55rem; font-weight:800; color:#fff; line-height:1; margin-bottom:.22rem; }
.hero-stat-label { font-size:.63rem; font-weight:600; letter-spacing:.11em; text-transform:uppercase; color:rgba(255,255,255,.52); }

/* ── MOBILE SERVICES STRIP ── */
.mobile-services-strip { display:none; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); margin-top:1.8rem; border-radius:3px; overflow:hidden; }
.mobile-services-strip a { display:flex; align-items:center; gap:.8rem; padding:.8rem 1rem; text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.07); transition:background .2s; }
.mobile-services-strip a:last-child { border-bottom:none; }
.mobile-services-strip a:hover { background:rgba(255,255,255,0.06); }
.mobile-services-strip .ms-icon { width:26px; height:26px; background:rgba(216,193,152,0.14); display:flex; align-items:center; justify-content:center; flex-shrink:0; border-radius:2px; }
.mobile-services-strip .ms-icon svg { width:12px; height:12px; fill:var(--gold); }
.mobile-services-strip span { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.82); }

/* ═══ ENHANCED RESPONSIVE ═══ */

@media(max-width:1100px){
  .hero-stat-bar { margin-top:2rem; }
  .hero-stat-num { font-size:1.3rem; }
}

@media(max-width:900px){
  /* Nav */
  .nav-links { display:none; }
  .hamburger { display:flex; }

  /* Hero */
  .hero-grid { grid-template-columns:1fr !important; gap:2rem !important; }
  .hero-card-wrap { display:none !important; }
  .mobile-services-strip { display:block; }
  section[style*="min-height:100vh"] { padding-bottom:60px !important; }
  .hero-stat-bar { flex-wrap:wrap; gap:.8rem 0; border-top:1px solid rgba(255,255,255,0.12); padding-top:1.5rem; margin-top:1.8rem; }
  .hero-stat { flex:0 0 50%; padding-right:0; border-right:none; margin-right:0; margin-bottom:.5rem; }

  /* Sections */
  .two-col { grid-template-columns:1fr !important; gap:40px !important; }
  .form-row-2 { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr 1fr !important; gap:2.5rem !important; }
  .process-line, .process-line-anim { display:none !important; }
  .card-grid-3 { grid-template-columns:1fr 1fr !important; }
  .cta-banner { flex-direction:column; gap:1.5rem; }
  .git-inner { grid-template-columns:1fr !important; gap:40px; }

  /* Icon features */
  .icon-feature { padding:1rem 1.1rem; }
  .icon-feature-box { width:38px; height:38px; }
  .icon-feature-box svg { width:15px; height:15px; }
}

@media(max-width:680px){
  /* Typography */
  h1 { font-size:clamp(2rem,8vw,3rem) !important; }
  h2 { font-size:clamp(1.6rem,5vw,2.2rem); }

  /* Hero stats stacked */
  .hero-stat { flex:0 0 50%; }
  .hero-stat-num { font-size:1.2rem; }

  /* Service cards */
  .card-grid-3 { grid-template-columns:1fr !important; }

  /* Section padding */
  section[style*="padding:90px 6%"],
  section[style*="padding:90px 6%;"] { padding:60px 5% !important; }

  /* CTA banner */
  .cta-banner { padding:50px 5% !important; }
  .cta-banner > div:last-child { flex-direction:column; width:100%; }
  .cta-banner a { width:100%; text-align:center; }

  /* Footer */
  .footer-top { grid-template-columns:1fr !important; gap:2rem !important; }
  .footer-bottom { flex-direction:column; gap:.8rem; text-align:center; }

  /* Process */
  .process-grid { grid-template-columns:1fr !important; gap:2rem !important; }
  .process-icon-wrap { width:52px; height:52px; }
  .process-icon-wrap svg { width:18px; height:18px; }

  /* Booking form */
  #booking-widget { padding:1.6rem 1.2rem !important; }
  #booking-widget [style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr !important; }
}

@media(max-width:460px){
  nav { padding:0 5%; }
  section { padding-left:5% !important; padding-right:5% !important; }
  .hero-stat { flex:0 0 100%; }
  h1 { font-size:clamp(1.9rem,9vw,2.6rem) !important; }
  .btn-gold, .btn-ghost-white, .btn-navy { padding:.75rem 1.4rem; font-size:.72rem; }
  .cta-banner a { font-size:.7rem; padding:.75rem 1.2rem; }
  .git-contact-item { padding:.8rem 1rem; }
  .icon-feature { gap:.9rem; padding:.9rem 1rem; }
}

/* ── ENSURE HERO BACKGROUND STAYS DARK FOR TEXT LEGIBILITY ── */
.hero-grid > div > h1 { color:#ffffff !important; }
.hero-grid > div > p { color:rgba(255,255,255,0.78) !important; }

/* ── ABOUT PAGE SERVICE LIST ROWS ── */
a.reveal[href*="service-"] {
  transition: background .2s, border-left-color .2s, transform .2s !important;
}
a.reveal[href*="service-"]:hover {
  transform: translateX(4px);
}

/* ── VALUES CARD ICONS ── */
.reveal .sf-card-icon,
.reveal [style*="width:44px;height:44px;background:var(--navy)"] {
  transition: background .25s, transform .25s;
}
.reveal:hover [style*="width:44px;height:44px;background:var(--navy)"] {
  background: var(--navy-mid);
  transform: scale(1.05);
}

/* ── FIX ICON-FEATURE INNER TEXT DIV ── */
.icon-feature > div:last-child {
  flex: 1;
}
.icon-feature > div:last-child p:first-child {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.icon-feature > div:last-child p:last-child {
  font-size: .82rem;
  line-height: 1.68;
  font-weight: 400;
  color: var(--text-light);
}

/* ── SERVICES PAGE IMAGE STRIP TEXT FIX ── */
.services-strip-overlay { color: #ffffff !important; }

/* ── NAV LOGO SIZE ── */
.logo-wrap img { height: 56px !important; width: auto !important; }

/* ── PROCESS ENHANCED ── */
@keyframes stepBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.14); }
  70%  { transform: scale(0.96); }
  100% { transform: scale(1.04); }
}
.process-step.visible .process-icon-wrap {
  animation: stepBounce .55s ease forwards;
  border-color: var(--gold) !important;
  background: var(--navy) !important;
}
.process-step-1.visible .process-icon-wrap { animation-delay: .05s; }
.process-step-2.visible .process-icon-wrap { animation-delay: .35s; }
.process-step-3.visible .process-icon-wrap { animation-delay: .65s; }
.process-step-4.visible .process-icon-wrap { animation-delay: .95s; }

/* ═══ ANIMATED ICONS — ALL PAGES (v4 enhancement) ═══ */
.card-icon-animated { padding:0; background:none; }
.cia-inner {
  width:52px; height:52px; background:var(--navy);
  display:flex; align-items:center; justify-content:center; border-radius:4px;
}
.cia-inner svg { width:22px; height:22px; fill:var(--gold); }

@keyframes ciSpin   { 0%{transform:rotate(0);}100%{transform:rotate(360deg);} }
@keyframes ciBounce { 0%,100%{transform:translateY(0);}40%{transform:translateY(-8px);}70%{transform:translateY(3px);} }
@keyframes ciPulse  { 0%,100%{transform:scale(1);}40%{transform:scale(1.25);}70%{transform:scale(0.9);} }
@keyframes ciRise   { 0%,100%{transform:translateY(0);}35%{transform:translateY(-7px) scale(1.1);}65%{transform:translateY(3px) scale(0.95);} }
@keyframes ciWiggle { 0%,100%{transform:rotate(0);}20%{transform:rotate(-12deg);}50%{transform:rotate(10deg);}75%{transform:rotate(-5deg);} }

.card:hover .ci-spin   { animation: ciSpin   0.7s ease; }
.card:hover .ci-bounce { animation: ciBounce 0.7s ease; }
.card:hover .ci-pulse  { animation: ciPulse  0.7s ease; }
.card:hover .ci-rise   { animation: ciRise   0.7s ease; }
.card:hover .ci-wiggle { animation: ciWiggle 0.7s ease; }

/* auto-play once on load */
.ci-spin   { animation: ciSpin   0.8s ease 1s 1; }
.ci-bounce { animation: ciBounce 0.8s ease 1.3s 1; }
.ci-pulse  { animation: ciPulse  0.8s ease 1.6s 1; }
.ci-rise   { animation: ciRise   0.8s ease 1.9s 1; }
.ci-wiggle { animation: ciWiggle 0.8s ease 2.2s 1; }

/* Process step continuous animations */
.proc-icon-anim { width:100%;height:100%;display:flex;align-items:center;justify-content:center; }
.proc-icon-anim svg { width:22px;height:22px;fill:var(--gold); }

@keyframes procFloat { 0%,100%{transform:translateY(0);}30%{transform:translateY(-5px);}60%{transform:translateY(2px);} }
@keyframes procSway  { 0%,100%{transform:rotate(0);}20%{transform:rotate(-10deg);}50%{transform:rotate(8deg);}75%{transform:rotate(-5deg);} }
@keyframes procPop   { 0%,100%{transform:scale(1);}25%{transform:scale(1.22);}50%{transform:scale(0.92);}70%{transform:scale(1.10);} }
@keyframes procRise  { 0%,100%{transform:translateY(0) scale(1);}35%{transform:translateY(-6px) scale(1.1);}65%{transform:translateY(3px) scale(0.95);} }

.proc-float { animation: procFloat 2.8s ease-in-out infinite; }
.proc-sway  { animation: procSway  3.2s ease-in-out infinite; }
.proc-pop   { animation: procPop   2.6s ease-in-out infinite; }
.proc-rise  { animation: procRise  3.0s ease-in-out infinite; }

/* Hero What We Do Card animations */
@keyframes biSpin   { 0%,80%,100%{transform:rotate(0);}85%{transform:rotate(-15deg);}90%{transform:rotate(20deg);}95%{transform:rotate(-8deg);} }
@keyframes biBounce { 0%,70%,100%{transform:translateY(0);}75%{transform:translateY(-5px);}82%{transform:translateY(2px);}88%{transform:translateY(-3px);}94%{transform:translateY(1px);} }
@keyframes biPulse  { 0%,60%,100%{transform:scale(1);}65%{transform:scale(1.2);}72%{transform:scale(0.92);}78%{transform:scale(1.08);}85%{transform:scale(0.97);} }
@keyframes biRise   { 0%,65%,100%{transform:translateY(0);}70%{transform:translateY(-6px);}80%{transform:translateY(0);}88%{transform:translateY(-3px);}95%{transform:translateY(0);} }
@keyframes biWiggle { 0%,75%,100%{transform:rotate(0);}78%{transform:rotate(-12deg);}84%{transform:rotate(10deg);}90%{transform:rotate(-6deg);}96%{transform:rotate(4deg);} }

.bi-spin   { animation: biSpin   2.8s ease infinite; }
.bi-bounce { animation: biBounce 3.2s ease infinite; }
.bi-pulse  { animation: biPulse  2.6s ease infinite; }
.bi-rise   { animation: biRise   3.0s ease infinite; }
.bi-wiggle { animation: biWiggle 3.4s ease infinite; }

/* Footer brand description white */
.footer-brand p { color: #ffffff !important; }

/* Section-sub darker globally */
.section-sub { color: #3a5a6e; }
