@charset "utf-8";
/* CSS Document */

:root{
  --blue-primary:#007BFF;
  --blue-dark:#0A1E3F;
  --blue-light:#EAF4FF;
  --silver:#CED4DA;
  --accent:#7AD83B;
  --text:#0b1220;
  --white:#fff;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.12);
  --nav-h:72px;
}

*{box-sizing:border-box}
html,body{margin:0;overflow-x: hidden;}
body{font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:#fff}

/* ---------------------------------------------------
   NAV (overlay on hero, dropdowns, mobile drawer)
--------------------------------------------------- */
:root{ --nav-h: 68px; }

/* Header */
.site-header{
  position: fixed; inset: 0 0 auto 0; height: auto; z-index: 1000;
  background: linear-gradient(to bottom, rgba(10,30,63,.90), rgba(10,30,63,.35) 60%, transparent);
  backdrop-filter: saturate(120%) blur(6px);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.nav-wrap{
  height:100%; min-height: var(--nav-h); max-width:1200px; margin:0 auto; padding:0 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}

/* Brand */
.brand{ display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:700; }
.brand-mark{ width:28px; height:28px; }
.brand-text{ letter-spacing:.2px; }

/* Desktop nav */
.site-nav{ display:flex; }
.nav-list{ display:flex; align-items:center; gap:18px; list-style:none; margin:0; padding:0; }
.nav-link{ color:#e9f0ff; text-decoration:none; padding:8px 6px; border-radius:8px; padding-block: 6px; line-height: 1.1; }
.nav-link:hover{ color:#fff; }
.nav-link.active{ background:rgba(255,255,255,.12); color:#fff; }

/* Dropdowns */
.has-children{ position:relative; }
.nav-parent{ display:flex; align-items:center; gap:6px; }
.sub-toggle{ background:transparent; border:none; color:#fff; padding:4px; display:grid; place-items:center; border-radius:6px; cursor:pointer; padding-block: 4px; }
.chev{ transition: transform .2s ease; opacity:.9; }
.has-children.open .chev{ transform: rotate(180deg); }

.sub-menu{
  position:absolute; top:100%; left:0; min-width:220px; margin-top:10px;
  background:#0f2a59; border:1px solid rgba(255,255,255,.18); border-radius:12px; padding:8px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  display:none;
}
.has-children.open .sub-menu{ display:block; }
.sub-link{ display:block; color:#fff; text-decoration:none; padding:8px 10px; border-radius:8px; }
.sub-link:hover, .sub-link.active{ background:rgba(255,255,255,.12); }

/* Mobile */
.nav-toggle{
  background:transparent; color:#fff; border:1px solid rgba(255,255,255,.35);
  padding:8px 10px; border-radius:10px; display:none; align-items:center; gap:8px;
}
.nav-toggle-box{ width:16px; height:2px; background:#fff; box-shadow:0 5px 0 #fff, 0 -5px 0 #fff; display:inline-block; }

@media (max-width: 980px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    position: fixed; inset: var(--nav-h) 0 0 auto; width: min(420px, 92vw);
    background:#0b1e4a; border-left:1px solid rgba(255,255,255,.18);
    transform: translateX(100%); transition: transform .25s ease;
  }
  .site-nav.open{ transform: translateX(0); }
  .nav-list{ flex-direction: column; align-items: stretch; gap: 6px; padding: 14px; }
  .sub-menu{ position: static; display: none; margin: 6px 0 0; box-shadow: none; border-radius: 10px; }
  .has-children.open .sub-menu{ display:block; }
  .nav-link{ padding:10px 12px; }
}

/* Optional: solid header after scroll (if you add the tiny JS) */
.site-header.solid{
  background: #0b1e4a; box-shadow: 0 6px 16px rgba(0,0,0,.25);
}


/* Right-side CTA container */
.nav-cta { margin-left: 12px; flex-shrink: 0; }

/* Phone button look */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  background: var(--brand-accent, #7AD83B);
  color: #0A1E3F;
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}
.btn-call:hover { filter: brightness(0.95); }
.btn-call:active { filter: brightness(0.9); }
.phone-ic { display: block; }

/* Keep desktop CTA visible; add a mobile-only CTA inside the menu */
.nav-cta-mobile { display: none; }

/* Ensure nav sits between brand and CTA cleanly */
.site-nav { margin-left: auto; }

/* Mobile: hide header CTA and show it inside menu */
@media (max-width: 980px){
  .nav-cta { display: none; }
  .nav-cta-mobile { display: block; margin: 4px 0 10px; }
  .nav-cta-mobile .btn-call { width: 100%; justify-content: center; }
}

/* Optional: CSS variable bridge to PHP brand color */
:root { --brand-accent: #7AD83B; }





/* buttons */
.btn{display:inline-block;padding:12px 18px;border-radius:999px;text-decoration:none;border:1px solid transparent;transition:transform .15s ease, box-shadow .2s ease}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--blue-primary);color:#fff;box-shadow:var(--shadow)}
.btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn-call{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.btn-quote{background:#1a7efc;color:#fff}

/* hero */
.hero{min-height:100vh;display:grid;place-items:center;padding-top:var(--nav-h)}
.hero-bg{position:fixed;inset:0;z-index:-2;background:#071225}
.hero-bg::before{
  content:"";position:absolute;inset:0;
  background:url('/assets/img/hero-glass-03.webp') center/cover no-repeat fixed;
  filter:brightness(.8) contrast(1.05) saturate(1.1);
}
.hero-glass{position:absolute;inset:0;background:radial-gradient(1200px 600px at 75% 25%, rgba(0,123,255,.25), transparent 60%), linear-gradient( to bottom right, rgba(255,255,255,.08), rgba(0,0,0,.25) )}
.hero-inner{max-width:960px;margin:0 24px;text-align:center;color:#fff}
.overline{letter-spacing:.12em;text-transform:uppercase;color:#cfe3ff;margin:0 0 10px}
.hero h1{font-family:Poppins,Inter,sans-serif;font-weight:700;font-size:clamp(36px,6vw,64px);margin:0 0 12px;line-height:1.05}
.sub{max-width:700px;margin:0 auto 22px;color:#dfe9ff}
.cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* shine effect on headline */
.shine{position:relative;display:inline-block}
.shine::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.6) 50%, transparent 70%);
  transform:translateX(-120%);mix-blend-mode:screen;filter:blur(2px);
  animation:shine 4s ease-in-out 1.2s infinite;
}
@keyframes shine{to{transform:translateX(120%)}}



/* ——— HERO readability upgrades ——— */

/* Give the text a soft lift and add a subtle glass pad behind the copy */
.hero-inner{
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.45); /* applies to all hero text */
}
.hero-inner::before{
  content:"";
  position:absolute;
  inset:-14px -18px -16px;                /* breathing room around text block */
  background: linear-gradient(180deg,
               rgba(7,18,37,.54),
               rgba(7,18,37,.24));
  border-radius: 18px;
  backdrop-filter: blur(2px) saturate(1.05);
  box-shadow: 0 12px 48px rgba(0,0,0,.28);
  z-index:-1;
}

/* Paragraph tuning */
.sub{
  color: rgba(255,255,255,.96);
  line-height: 1.65;
  max-width: 760px;                       /* a bit wider for balance */
}

/* (Optional) slightly deepen the global hero overlay for consistency */
.hero-glass{
  background:
    radial-gradient(1200px 600px at 75% 25%, rgba(0,123,255,.22), transparent 60%),
    linear-gradient(to bottom, rgba(7,18,37,.55), rgba(7,18,37,.18) 48%, rgba(7,18,37,.48));
}

/* Prevent any horizontal scrollbar from the shine sweep */
.hero{ overflow-x: hidden; }

/* ——— CTA contrast: outline → outline-light ——— */

#hero .btn-outline{
  background: transparent;
  color: #fff!important;
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
#hero .btn-outline:hover{
  background: rgba(255,255,255,.14);
  border-color: #fff;
  transform: translateY(-1px);
}
.btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}





/* footer */
.site-foot{padding:30px 16px;background:var(--blue-dark);color:#cfe3ff;}
.foot-inner{max-width:1200px;margin:0 auto;display:flex;gap:16px;justify-content:space-between;flex-wrap:wrap}



/* containers */
/* 1) Make container only handle horizontal padding by default */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;              /* remove vertical padding */
}

/* 2) Give sections their vertical spacing explicitly */
.section{ padding:64px 0; }
.section--lg{ padding:88px 0; }
.section--sm{ padding:40px 0; }

/* 3) Ensure the header stays tight */
.site-header .container,
.site-header .nav-wrap{
  padding-block:0;             /* no top/bottom in the header */
}

.section-title{font-family:Poppins,Inter,sans-serif;font-weight:700;font-size:clamp(28px,3.4vw,40px);margin:0 0 6px}
.section-sub{color:#667; margin:0 0 28px}

/* grid cards */
.choose .grid,
.services .grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.choose .card,.services .svc{
  background:#fff;border:1px solid #e9eef5;border-radius:var(--radius);
  padding:20px; box-shadow:var(--shadow);
}
.choose .ic{font-size:24px;line-height:1;margin-bottom:8px}
.choose h3,.services h3{margin:0 0 6px;font-size:18px}

/* services cta */
.services .cta{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}

/* ---------------------------------------------------
   Connect / Contact Section (light + pane texture + sheen)
--------------------------------------------------- */
.connect{
  position: relative;
  isolation: isolate;                 /* contain blend modes */
  background: linear-gradient(135deg, #f7fbff, #d2e4ff);
  color: #0d2250;
  padding: 80px 0;
}

/* Window-pane texture (visible) */
.connect::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(13,34,80,.18) 2px, transparent 2px) 0 0 / 110px 100%,
    linear-gradient(to bottom, rgba(13,34,80,.18) 2px, transparent 2px) 0 0 / 110px 110px;
  opacity:.25;
  mix-blend-mode:normal;
  pointer-events:none;
  z-index:0;
}

/* Moving light sweep (subtle animation) */
.connect::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.55) 45%,
      rgba(255,255,255,0) 90%);
  background-size: 300% 100%;
  background-position: -200% 0;
  mix-blend-mode:screen;
  animation: connect-sweep 7s linear infinite;
  pointer-events:none;
  z-index:0;
}
@keyframes connect-sweep{
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@media (prefers-reduced-motion: reduce){
  .connect::before{ animation: none; }
}

/* Layout */
.connect .connect-grid{
  position: relative; z-index: 1;     /* above textures */
  display:grid; gap:30px;
  grid-template-columns: 1.1fr 1fr;
  align-items:start;
}
@media (max-width: 900px){
  .connect .connect-grid{ grid-template-columns:1fr; }
}

/* Copy */
.connect .section-title{
  font-weight: 800;
  margin-bottom: 12px;
  color: #0a1e4f;
}
.connect .section-sub{
  font-size: 17px;
  color: #2d3f63;
  margin-bottom: 20px;
  line-height: 1.6;
}
.connect .bullets{
  list-style:none; margin:6px 0 18px; padding:0;
}
.connect .bullets li{
  margin:6px 0; font-size:15px; color:#203761;
}

/* CTAs */
.connect .cta{ display:flex; gap:12px; flex-wrap:wrap; }
.connect .btn-call{
  background:#0f6fff; color:#fff;
  border:1px solid #5aa1ff;
  box-shadow:0 10px 24px rgba(26,126,252,.3);
}
.connect .btn-call:hover{ background:#0b49c9; }
.connect .btn-quote{
  background:transparent; color:#0d2250; border:1px solid #0f6fff;
}
.connect .btn-quote:hover{
  background:#0f6fff; color:#fff;
}

/* Quote Form (light card) */
.quote-form{
  background:#fff; color:#0d2250;
  border:1px solid #d9e5ff;
  border-radius:16px; padding:18px;
  box-shadow:0 8px 24px rgba(13,34,80,.1);
}
.quote-form .row{
  display:grid; gap:12px;
  grid-template-columns:1fr 1fr;
  margin-bottom:12px;
}
@media (max-width: 900px){
  .quote-form .row{ grid-template-columns:1fr; }
}
.quote-form label{ display:grid; gap:6px; font-size:14px; }
.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid #ccd9f5;
  background:#f7faff; color:#0d2250;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder{ color:#8593b5; }
.quote-form .recap{ opacity:.8; font-size:12px; margin-top:10px; }

/* Submit button inherits your global .btn/.btn-primary styles */




/* ---------------------------------------------------
   One Liner Section (Light Version)
--------------------------------------------------- */
.one-line-section {
  background: linear-gradient(180deg, #f7fbff, #e8f2ff);
  color: #0d2250;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Layout grid */
.one-line-section .container {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  align-items: center;
  gap: 40px;
}

/* Text block */
.one-line-section .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.one-line-section .overline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #1e4ea8;
  margin-bottom: 10px;
  font-weight: 600;
}

.one-line-section .headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d2250;
}

.one-line-section .paragraph {
  font-size: 17px;
  line-height: 1.6;
  color: #324b78;
  margin-bottom: 28px;
  max-width: 600px;
}

/* CTA buttons */
.one-line-section .cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.one-line-section .btn-primary {
  background: #1e6fff;
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px rgba(15,111,255,.25);
}

.one-line-section .btn-primary:hover {
  background: #0f5ae0;
}

.one-line-section .btn-outline-light {
  background: transparent;
  border: 1px solid #1e6fff;
  color: #1e6fff;
}

.one-line-section .btn-outline-light:hover {
  background: rgba(30,111,255,0.1);
}

/* Image / video block */
.one-line-section .image-block {
  display:flex;
  justify-content:center;
  align-items:center;
}

.one-line-section .ol-media {
  width:100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mid screens */
@media (max-width: 1200px) {
  .one-line-section .ol-media { max-width: 620px; max-height: 360px; }
}

/* Mobile layout */
@media (max-width: 900px) {
  .one-line-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .one-line-section .text-block {
    align-items: center;
  }
  .one-line-section .ol-media {
    margin-top: 25px;
    border-radius: 12px;
    max-width: 560px;
    max-height: 320px;
  }
}

/* --- One Liner: glossy divider at the top --- */
.one-line-section{
  position: relative;          /* ensure the pseudo sits inside */
  overflow-x: clip;            /* belt-and-suspenders: no h-scroll */
}

.one-line-section::before{
  content: '';
  position: absolute;
  inset: 0 0 auto 0;           /* top edge only */
  height: 14px;                /* thickness of the highlight */
  pointer-events: none;
  /* soft gloss line that fades left/right and downward */
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 12%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.65) 88%, rgba(255,255,255,0) 100%),
    radial-gradient(100% 60% at 50% 0%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 70%);
  mix-blend-mode: screen;      /* gentle blend on light bg */
  opacity: .45;
}

/* optional hairline for extra definition on very light screens */
.one-line-section::after{
  content: '';
  position: absolute;
  inset: 14px 0 auto 0;        /* just below the gloss bar */
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,36,92,.10), rgba(0,0,0,0));
}

/* Make sure the content sits above the effects */
.one-line-section{ position:relative; overflow-x:clip; }
.one-line-section > .container{ position:relative; z-index:2; }

/* Bright gloss band */
.one-line-section::before{
  content:"";
  position:absolute; inset:0 0 auto 0;
  height:22px;                         /* thicker = more visible */
  z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.75) 10%,
      rgba(255,255,255,.95) 50%,
      rgba(255,255,255,.75) 90%,
      rgba(255,255,255,0) 100%),
    radial-gradient(120% 90% at 50% 0%,
      rgba(255,255,255,.7) 0%,
      rgba(255,255,255,0) 70%);
  opacity:.9;                          /* boost brightness */
  mix-blend-mode:screen;
}

/* Crisp hairline + soft inner shadow for separation */
.one-line-section::after{
  content:"";
  position:absolute; inset:22px 0 auto 0;   /* just below gloss */
  height:1px; z-index:1;
  background: linear-gradient(90deg,
     rgba(0,0,0,0), rgba(0,36,92,.18), rgba(0,0,0,0));
}

/* Optional soft drop from the hero edge */
.one-line-section .top-falloff{
  content:"";
  position:absolute; inset:23px 0 auto 0;
  height:24px; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,.10), transparent);
}


/* Promo Bar — Raised White Band */
.promo-bar{
  position: relative;
  background:#fff;                 /* clean contrast vs light blue section */
  color:#0d2250;
  padding:16px 0;
  border:1px solid #e8eef9;        /* thin outline */
  border-left:0; border-right:0;   /* only top/bottom edges matter */
  z-index:2;
}

/* soft ambient shadow so it “floats” */
.promo-bar::before,
.promo-bar::after{
  content:""; position:absolute; left:0; right:0; pointer-events:none;
}
.promo-bar::before{                /* top lift */
  top:-8px; height:8px;
  background:linear-gradient(180deg, rgba(0,0,0,.07), transparent);
  opacity:.35;
}
.promo-bar::after{                 /* bottom lift */
  bottom:-10px; height:10px;
  background:linear-gradient(0deg, rgba(0,0,0,.10), transparent);
  opacity:.28;
}

/* content */
.promo-flex{ display:flex; align-items:center; justify-content:space-between; gap:14px; }
.promo-copy{ display:flex; flex-direction:column; gap:4px; }
.promo-head{ font:700 18px/1.2 Poppins, Inter, system-ui, sans-serif; color:#0b1e4a; }
.promo-sub{ font-size:14px; color:#2a4373; }

/* CTA */
.btn-promo{
  background:#0f6fff; color:#fff; text-decoration:none;
  padding:10px 16px; border-radius:999px;
  border:1px solid #7fb0ff;
  box-shadow:0 10px 26px rgba(15,111,255,.25);
  transition:box-shadow .2s ease, transform .15s ease, background-color .15s ease;
  white-space:nowrap;
}
.btn-promo:hover{ background:#0d64e6; transform:translateY(-1px); box-shadow:0 12px 30px rgba(13,100,230,.32); }
.btn-promo:focus-visible{ outline:2px solid #0b49ff; outline-offset:2px; box-shadow:0 0 0 3px rgba(11,73,255,.25); }

.promo-tag{
  display:inline-block; margin-left:10px;
  background:#eef4ff; color:#0b1e4a; border:1px solid #cfe0ff;
  padding:3px 8px; border-radius:999px; font-size:12px;
}

/* mobile */
@media (max-width: 900px){
  .promo-flex{ flex-direction:column; text-align:center; }
  .promo-head{ font-size:16px; }
  .promo-sub{ font-size:13px; }
  .btn-promo{ width:100%; max-width:280px; }
}


/* ---------------------------------------------------
   Promo Bar #2 (Alt Light Band)
--------------------------------------------------- */
.promo-bar-alt {
  background: linear-gradient(180deg, #f9fdff 0%, #cfe2ff 100%);
  border-top: 1px solid #bcd3ff;
  border-bottom: 1px solid #a9c5ff;
}

.promo-bar-alt .promo-head {
  color: #0a1d42;
}

.promo-bar-alt .promo-sub {
  color: #28416f;
}

.promo-bar-alt .btn-promo {
  background: #0d64e6;
  border-color: #a9c5ff;
  box-shadow: 0 10px 26px rgba(13,100,230,.25);
}

.promo-bar-alt .btn-promo:hover {
  background: #0b49c9;
  box-shadow: 0 12px 30px rgba(11,73,201,.35);
}




/* ---------------------------------------------------
   Booking (3 Steps)
--------------------------------------------------- */
.book-section{
  background: linear-gradient(180deg,#0e234b 0%, #102b5e 35%, #0f2a59 100%);
  color:#fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.book-section::before{
  content:""; position:absolute; inset:-20% -10% auto -10%; height:40%;
  background: radial-gradient(60% 60% at 30% 50%, rgba(255,255,255,.09), transparent 60%);
  pointer-events:none;
}

.book-head{ text-align:center; margin-bottom: 36px; }
.book-overline{
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  color: rgba(255,255,255,.7); margin: 0 0 6px;
}
.book-title{
  font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin: 0 0 10px;
}
.book-para{
  color: rgba(255,255,255,.85); max-width: 760px; margin: 0 auto;
}

/* Step grid */
.book-steps{
  display:grid; gap:18px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  counter-reset: step;
  list-style: none; padding: 0; margin: 26px 0 0;
}
@media (max-width: 990px){
  .book-steps{ grid-template-columns: 1fr; }
}

.book-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 18px;
  display:flex; gap:16px; align-items:flex-start;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Icon */
.book-icon{
  flex: 0 0 56px; height:56px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(180deg,#7fb0ff,#3c83ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 8px 18px rgba(62,132,255,.35);
}
.book-icon svg{ width:28px; height:28px; fill:#fff; }

/* Body */
.book-body{ flex:1; min-width:0; }
.book-stepnum{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color: rgba(255,255,255,.7); margin-bottom:4px;
}
.book-sub{ font-size:20px; margin:0 0 6px; }
.book-text{ color: rgba(255,255,255,.9); margin:0 0 12px; }

/* CTAs */
.book-ctas{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px; text-decoration:none; font-weight:600;
  transition: transform .15s ease, box-shadow .2s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:#1a7efc; color:#fff; border-color:#5aa1ff;
  box-shadow:0 10px 24px rgba(26,126,252,.35);
}
.btn-primary:hover{ transform:translateY(-1px); background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }
#booking .btn-outline{
  background:transparent; color:#fff; border-color:rgba(255,255,255,.45);
}
#booking .btn-outline:hover{ background:rgba(255,255,255,.12); }
#booking .btn-ghost{
  background: rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.18);
}
#booking .btn-ghost:hover{ background: rgba(255,255,255,.16); }

/* Keep CTAs side-by-side on desktop, stack nicely on mobile */
@media (max-width: 520px){
  .book-ctas .btn{ flex:1 1 100%; }
}



/* Strong, clean separation from the light section above */
.book-section{
  position: relative;
  overflow-x: clip;                 /* no horizontal scroll from effects */
}

/* Tesla-style gloss line at top edge */
.book-section::after{
  content:"";
  position:absolute; inset:0 0 auto 0;
  height:20px; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.75) 10%,
      rgba(255,255,255,.95) 50%,
      rgba(255,255,255,.75) 90%,
      rgba(255,255,255,0) 100%),
    radial-gradient(120% 90% at 50% 0%,
      rgba(255,255,255,.6) 0%,
      rgba(255,255,255,0) 70%);
  opacity:.85;
  mix-blend-mode:screen;
}

/* Thin hairline just under the gloss for crisp definition */
.book-section .edge-line{
  position:absolute; inset:20px 0 auto 0; height:1px; z-index:1;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,36,92,.22), rgba(0,0,0,0));
  pointer-events:none;
}

/* Optional soft fade at bottom to ease into next light section */
.book-section .bottom-falloff{
  position:absolute; inset:auto 0 0 0; height:28px; z-index:1;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.18));
  pointer-events:none;
}

/* Accessibility polish: visible focus */
.book-section .btn:focus-visible{
  outline: 2px solid #a8c9ff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(90,161,255,.25);
}

/* Reduced motion users: tone down hover lifts */
@media (prefers-reduced-motion: reduce){
  .book-section .btn{ transition: none; }
  .book-section .btn:hover{ transform:none; }
}



/* ---------------------------------------------------
   Services (light)
--------------------------------------------------- */
.services-section{
  background: linear-gradient(180deg, #f7fbff, #e8f1ff);
  color:#0d2250;
  padding: 64px 0;               /* slightly tighter */
  scroll-margin-top: calc(var(--nav-h,72px) + 16px);
}
.srv-head{ text-align:center; max-width:900px; margin:0 auto 28px; }
.srv-overline{
  text-transform:uppercase; letter-spacing:.18em; font-size:12px;
  color:#3a4f82;                 /* darker on light bg */
  margin:0 0 6px;
}
.srv-title{ font-size:clamp(28px,3vw,40px); font-weight:800; margin:0 0 10px; }
.srv-para{ color:#2d3f63; margin:0 auto; }

/* grid */
.srv-grid{
  display:grid; gap:18px; margin-top:16px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 990px){ .srv-grid{ grid-template-columns:1fr; } }

/* card */
.srv-card{
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
  background:#fff;
  border:1px solid #e6ecfb;
  border-radius:16px;
  padding:18px;
  min-height:180px;              /* equal height feel */
  transition: transform .15s ease, box-shadow .25s ease, border-color .15s ease;
  box-shadow:0 8px 20px rgba(13,34,80,.08);
}
.srv-card:hover{
  transform:translateY(-2px);
  border-color:#cfdaf6;
  box-shadow:0 12px 26px rgba(13,34,80,.12);
}
.srv-card:focus-visible{
  outline:2px solid #0b49ff; outline-offset:3px;
}

/* icon */
.srv-icon{
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center;
  background: linear-gradient(180deg,#7fb0ff,#3c83ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 8px 18px rgba(62,132,255,.35);
  margin-bottom:12px; color:#fff; flex:0 0 auto;
}
.srv-icon svg{ width:28px; height:28px; }

/* body */
.srv-name{ font-size:20px; margin:0 0 6px; }
.srv-text{ color:#2d3f63; margin:0 0 12px; }
.srv-spacer{ flex:1 1 auto; }   /* pushes link to bottom */

.srv-more{
  color:#0f6fff; font-weight:600; text-underline-offset:2px;
}
.srv-more:hover{ text-decoration: underline; }

/* ctas under grid */
.srv-ctas{
  display:flex; gap:12px; justify-content:center; margin-top:22px; flex-wrap:wrap;
}
#services .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px; text-decoration:none; font-weight:600;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .2s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
#services .btn-primary{ background:#1a7efc; color:#fff; border-color:#5aa1ff; box-shadow:0 10px 24px rgba(26,126,252,.35); }
#services .btn-primary:hover{ transform:translateY(-1px); background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }
#services .btn-primary:focus-visible{ outline:2px solid #0b49ff; outline-offset:2px; }
#services .btn-ghost{ background:#fff; color:#0d2250; border-color:#1a7efc; }
#services .btn-ghost:hover{ color:#f5f8ff; background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }

/* ---------------------------------------------------
   Screen Magic (split layout, light)
--------------------------------------------------- */
.screen-magic{
  background: linear-gradient(180deg,#f7fbff 0%, #eef4ff 100%);
  color:#0d2250;
  padding: 64px 0;
  scroll-margin-top: calc(var(--nav-h,72px) + 16px);
}
.sm-grid{
  display:grid; gap:32px;
  grid-template-columns: 1.1fr 1fr;
  align-items:center;
}
@media (max-width: 1024px){ .sm-grid{ grid-template-columns: 1fr; } }
.sm-media{ display:flex; justify-content:center; }
.sm-asset{
  width:100%; max-width: 760px; aspect-ratio: 16 / 9;
  object-fit: cover; overflow:hidden;
  border-radius: 16px;
  border:1px solid #e3ebff;
  box-shadow: 0 10px 26px rgba(13,34,80,.08);
  background:#fff;
}
.sm-copy{ max-width: 640px; margin-left: auto; }
@media (max-width: 1024px){ .sm-copy{ margin:0 auto; text-align:center; } }

.sm-overline{ text-transform:uppercase; letter-spacing:.18em; font-size:12px; color:#3a4f82; margin:0 0 8px; }
.sm-title{ font-weight:800; font-size: clamp(28px,3vw,40px); margin:0 0 10px; color:#0d2250; }
.sm-para{ color:#2d3f63; margin:0 0 14px; }
.sm-points{ list-style:none; padding:0; margin:10px 0 18px; color:#2d3f63; }
.sm-points li{ margin:6px 0; }
.sm-ctas{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-start; }
.sm-ctas .btn-ghost{ background:#fff; color:#0d2250; border-color:#1a7efc; }
.sm-ctas .btn-ghost:hover{ color:#f5f8ff; background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }
@media (max-width: 1024px){ .sm-ctas{ justify-content:center; } }


/* reuse button styles you already have */
/* .btn, .btn-primary, .btn-ghost { ... } */


/* ---------------------------------------------------
   Why Choose Us (light, cohesive)
--------------------------------------------------- */
.choose{
  background: linear-gradient(180deg,#f7fbff 0%, #eef4ff 100%);
  color:#0d2250;
  padding: 64px 0;
  scroll-margin-top: calc(var(--nav-h,72px) + 16px);
  position: relative;
  overflow: hidden;
}

/* subtle vignette layer */
.choose::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 85% 10%, rgba(26,126,252,.12), transparent 60%);
  pointer-events:none;
}


/* header */
.choose .section-title{
  font-size: clamp(28px,3vw,40px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px;
  color:#0d2250;
}
.choose .section-sub{
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  color:#2d3f63;
}

/* grid */
.choose .grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 1100px){
  .choose .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .choose .grid{ grid-template-columns: 1fr; }
}

/* card (aligned with Services cards) */
.choose .card{
  background:#fff;
  border:1px solid #e6ecfb;
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 20px rgba(13,34,80,.08);
  transition: transform .15s ease, box-shadow .25s ease, border-color .15s ease;
  display:flex; flex-direction:column; gap:8px;
}
.choose .card:hover{
  transform: translateY(-2px);
  border-color:#cfdaf6;
  box-shadow:0 12px 26px rgba(13,34,80,.12);
}
.choose .card h3{ font-size:18px; margin:0; color:#0d2250; }
.choose .card p{ margin:0; color:#2d3f63; }

/* icon tile (same as Services) */
.choose .ic{
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center;
  background: linear-gradient(180deg,#7fb0ff,#3c83ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 8px 18px rgba(62,132,255,.35);
  color:#fff; margin-bottom:6px; flex:0 0 auto;
}
.choose .ic svg{ width:28px; height:28px; }

/* CTAs under grid */
.choose .cta{
  margin-top: 22px;
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}
.choose .btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px; text-decoration:none; font-weight:600;
  border:1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.choose .btn.btn-primary{ background:#1a7efc; color:#fff; border-color:#5aa1ff; box-shadow:0 10px 24px rgba(26,126,252,.35); }
.choose .btn.btn-primary:hover{ transform:translateY(-1px); background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }
.choose .btn.btn-ghost{ background:#fff; color:#0d2250; border-color:#1a7efc; }
.choose .btn.btn-ghost:hover{ color:#f5f8ff; background:#0d64e6; box-shadow:0 12px 30px rgba(13,100,230,.35); }
.choose .btn:focus-visible{ outline:2px solid #0b49ff; outline-offset:2px; }


/* ---------------------------------------------------
   Reviews Section
--------------------------------------------------- */
.reviews-section{
  background: linear-gradient(180deg,#f7fbff 0%, #eaf1ff 100%);
  color:#0d2250;
  padding: 72px 0;
  scroll-margin-top: calc(var(--nav-h,72px) + 16px);
}

.rev-head{
  text-align:center; max-width:900px; margin:0 auto 36px;
}
.rev-title{
  font-size: clamp(28px,3vw,40px);
  font-weight:800;
  margin:0 0 10px;
}
.rev-para{
  color:#2d3f63; font-size:17px;
  margin:0 auto;
  max-width:700px;
}

/* grid */
.rev-grid{
  display:grid;
  gap:20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top:24px;
}

/* card */
.rev-card{
  background:#fff;
  border:1px solid #e3ebff;
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 8px 20px rgba(13,34,80,.08);
  display:flex; flex-direction:column;
  transition:transform .15s ease, box-shadow .2s ease;
}
.rev-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(13,34,80,.12);
}

.rev-header{
  display:flex; align-items:center; gap:12px;
  margin-bottom:10px;
}
.rev-avatar{
  width:42px; height:42px;
  border-radius:50%;
  background: linear-gradient(180deg,#7fb0ff,#3c83ff);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#fff;
  font-size:18px;
  box-shadow:0 3px 8px rgba(62,132,255,.35);
}
.rev-name{ font-size:16px; }
.rev-stars{ color:#ffb800; font-size:14px; line-height:1; margin-top:2px; }

.rev-text{ color:#2d3f63; margin:0 0 10px; font-size:15px; line-height:1.6; }
.rev-date{ font-size:13px; color:#5870a1; margin-top:auto; }

/* CTA */
.rev-cta{
  text-align:center; margin-top:32px;
}

/* toolbar (shown only on mobile) */
.rev-toolbar{ display:none; justify-content:flex-end; gap:8px; margin:6px 0 -8px; }
.rev-btn{
  width:34px;height:34px;border-radius:999px;border:1px solid #d7e3ff;background:#fff;
  box-shadow:0 4px 12px rgba(13,34,80,.08); line-height:1; font-size:20px; color:#0d2250;
}
.rev-btn:active{ transform:translateY(1px); }

/* Mobile: turn grid into a snap carousel */
@media (max-width: 900px){
  .rev-toolbar{ display:flex; }
  .rev-grid{
    display:flex; gap:14px; overflow-x:auto; padding:10px 6px 6px;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
    scroll-padding-inline:6px;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .rev-card{
    flex: 0 0 82%;   /* visible width of each card */
    scroll-snap-align:start;
  }
  /* hide scrollbar, keep accessibility */
  .rev-grid::-webkit-scrollbar{ height:0; }
}


/* ---------------------------------------------------
   Locations Section
--------------------------------------------------- */
.loc-section{
  background: linear-gradient(180deg,#f7fbff 0%, #eaf1ff 100%);
  color:#0d2250;
  padding: 72px 0;
  text-align:center;
}

.loc-head{
  max-width:900px;
  margin:0 auto 28px;
}
.loc-title{
  font-size:clamp(28px,3vw,40px);
  font-weight:800;
  margin-bottom:10px;
}
.loc-para{
  color:#2d3f63;
  max-width:680px;
  margin:0 auto;
  font-size:17px;
  line-height:1.6;
}

.loc-list{
  list-style:none;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  margin:32px auto 12px;
  padding:0;
}
.loc-list li{
  background:#fff;
  border:1px solid #e3ebff;
  box-shadow:0 6px 16px rgba(13,34,80,.08);
  border-radius:999px;
  padding:10px 20px;
  font-weight:600;
  color:#0d2250;
}

.loc-note{
  font-size:14px;
  color:#496192;
  margin:16px auto 32px;
  max-width:620px;
}

.loc-map-wrap{
  max-width:900px;
  margin:0 auto 36px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(13,34,80,.1);
  border:1px solid #e3ebff;
}
.loc-map-wrap iframe{
  width:100%;
  height:400px;
  border:0;
}

.loc-ctas{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Buttons */
.btn-outline{
  background:transparent;
  color:#0d2250;
  border:1px solid #7fb0ff;
}
.btn-outline:hover{
  background:#0d64e6;
  color:#fff;
  border-color:#0d64e6;
}


/* ---------------------------------------------------
   FAQ Section (Accordion w/ Animation)
--------------------------------------------------- */
.faq-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eaf1ff 100%);
  color: #0d2250;
  padding: 72px 0;
}

.faq-head {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.faq-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-para {
  color: #2d3f63;
  line-height: 1.6;
  font-size: 17px;
}

/* Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid #e3ebff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(13, 34, 80, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(13, 34, 80, 0.12);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-weight: 700;
  color: #0d2250;
  text-align: left;
  padding: 18px 20px;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-q:hover {
  background: #f0f5ff;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  color: #0f6fff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

/* Animated Answer Reveal */
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #2d3f63;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  padding: 0 20px 18px;
  max-height: 500px; /* large enough to handle long answers */
}

/* CTAs */
.faq-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
