/* ============================================================
   FLORAL PARK HVAC — Luxury Design System
   Palette sampled from the brand penguin logo:
   azure blue (#2478D8) + golden yellow (#FCC000) + charcoal
   Stack: HTML + Vanilla CSS + Vanilla JS
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — derived from the Floral Park HVAC penguin logo
     (cap #2478D8 · airflow #189CD8 · beak/feet #FCC000 · body #181818) */
  --navy-900: #0c3663;   /* deep azure (footer / dark sections) */
  --navy-800: #135697;   /* dark cap blue */
  --navy-700: #1878b4;   /* cap blue - dark */
  --navy-600: #2478d8;   /* PRIMARY cap blue */
  --navy-500: #189cd8;   /* bright cyan-blue accent */
  --gold-600: #e0a800;   /* deep beak gold */
  --gold-500: #fcc000;   /* beak gold */
  --gold-400: #fccc18;   /* light gold */
  --gold-300: #fee08a;
  --orange:   #fc5400;   /* logo orange pop — emergency / urgent accents */

  /* Neutrals */
  --ink: #14202f;
  --slate-700: #38485c;
  --slate-500: #647689;
  --slate-300: #cbd7e3;
  --line: #dfeaf6;
  --bg: #f2f8fe;
  --surface: #ffffff;
  --surface-2: #e9f2fc;

  /* Feedback */
  --success: #15803d;
  --danger: #dc2626;
  --whatsapp: #25d366;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(18, 86, 151, .07), 0 2px 6px rgba(18, 86, 151, .07);
  --shadow-md: 0 6px 16px rgba(18, 86, 151, .12), 0 2px 6px rgba(18, 86, 151, .07);
  --shadow-lg: 0 18px 40px -12px rgba(18, 86, 151, .30), 0 8px 20px -8px rgba(18, 86, 151, .20);
  --shadow-xl: 0 40px 80px -24px rgba(12, 54, 99, .48), 0 16px 32px -16px rgba(18, 86, 151, .32);
  --shadow-gold: 0 12px 30px -8px rgba(252, 192, 0, .5);
  --glass: rgba(255, 255, 255, .72);
  --glass-brd: rgba(255, 255, 255, .6);
  --glass-dark: rgba(12, 54, 99, .55);

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #0c3663 0%, #135697 55%, #1878b4 100%);
  --grad-gold: linear-gradient(135deg, #fccc18 0%, #fcc000 50%, #e0a800 100%);
  --grad-hero: linear-gradient(120deg, rgba(12, 54, 99, .94) 0%, rgba(19, 86, 151, .82) 45%, rgba(24, 156, 216, .48) 100%);

  /* Z-index scale */
  --z-topbar: 40;
  --z-nav: 50;
  --z-sticky: 45;
  --z-modal: 90;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; line-height: 1.12; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--slate-700); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { font-size: 1.08rem; margin-top: 14px; }
.lead { font-size: 1.15rem; color: var(--slate-700); }
.gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  cursor: pointer; position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--gold { background: var(--grad-gold); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(252, 192, 0, .65); }
.btn--navy { background: var(--grad-navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: rgba(255, 255, 255, .1); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy-700); color: var(--navy-900); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 38px; font-size: 1.02rem; }
.btn--block { width: 100%; }
/* shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); transition: left .7s var(--ease);
}
.btn:hover::after { left: 140%; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-900); color: #dbe6f7; font-size: .86rem;
  position: relative; z-index: var(--z-topbar);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 9px; }
.topbar__contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: #cdddf5; transition: color .2s; }
.topbar__item:hover { color: var(--gold-400); }
.topbar__item svg { width: 15px; height: 15px; color: var(--gold-400); flex-shrink: 0; }
.topbar__socials { display: flex; align-items: center; gap: 6px; }
.topbar__socials a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px;
  background: rgba(255, 255, 255, .08); color: #cdddf5; transition: all .25s var(--ease);
}
.topbar__socials a:hover { background: var(--grad-gold); color: var(--navy-900); transform: translateY(-2px); }
.topbar__socials svg { width: 15px; height: 15px; }
@media (max-width: 860px) {
  .topbar__contact { gap: 14px; }
  .topbar__item span.lbl { display: none; }
  .topbar { font-size: .8rem; }
}
@media (max-width: 560px) { .topbar__item--hours { display: none; } }

/* ============================================================
   NAVBAR (glassmorphism, floating)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--glass); backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 4px 30px rgba(18, 86, 151, .06);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, .9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; transition: padding .3s; }
.nav.scrolled .nav__inner { padding-block: 9px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { height: 54px; width: auto; transition: height .3s; filter: drop-shadow(0 4px 8px rgba(18,86,151,.18)); }
.nav.scrolled .brand__logo { height: 46px; }
.brand__name { display: flex; flex-direction: column; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.32rem; line-height: .96; letter-spacing: -.01em; color: var(--navy-800); }
.brand__name > span { font-size: .82rem; font-weight: 700; letter-spacing: .42em; color: var(--gold-600); margin-top: 3px; }
.brand__name--light { color: #fff; }
.brand__name--light > span { color: var(--gold-400); }
@media (max-width: 400px) { .brand__name { font-size: 1.12rem; } }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 10px 15px; font-weight: 600; font-size: .95rem; color: var(--slate-700);
  border-radius: 10px; position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2px;
  background: var(--grad-gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--navy-900); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy-900); font-size: 1.05rem; }
.nav__phone svg { width: 34px; height: 34px; padding: 8px; background: var(--grad-gold); border-radius: 50%; color: var(--navy-900); }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-navy); place-items: center; }
.nav__toggle svg { width: 24px; height: 24px; color: #fff; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--surface); z-index: 100; padding: 90px 26px 30px;
  transform: translateX(105%); transition: transform .4s var(--ease-out);
  box-shadow: -20px 0 60px rgba(12, 54, 99, .3); overflow-y: auto;
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer a { display: block; padding: 14px 8px; font-weight: 600; font-size: 1.08rem; border-bottom: 1px solid var(--line); color: var(--navy-800); }
.nav__drawer .btn { margin-top: 22px; }
.drawer-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; color: var(--navy-800); }
.overlay { position: fixed; inset: 0; background: rgba(12, 54, 99, .5); backdrop-filter: blur(3px); z-index: 95; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: grid; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -3; background: var(--grad-navy); }
.hero__img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 120%; object-fit: cover;
  opacity: .38; will-change: transform;
}
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.hero__inner { padding-block: clamp(70px, 12vh, 130px); max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px); font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 26px;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(252, 204, 24, .7); animation: pulse 2.2s infinite; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .gold-text { display: inline-block; }
.hero__sub { font-size: 1.2rem; color: #d6e2f5; max-width: 580px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.hero__trust .stat { display: flex; flex-direction: column; }
.hero__trust .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold-400); line-height: 1; }
.hero__trust .lbl { font-size: .82rem; color: #b9cbe6; margin-top: 6px; letter-spacing: .04em; text-transform: uppercase; }
/* floating glass card */
.hero__floating {
  position: absolute; right: var(--gutter); bottom: 8%; z-index: 2;
  width: 280px; padding: 22px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(16px); box-shadow: var(--shadow-xl); animation: float 6s ease-in-out infinite;
}
.hero__floating .rating { display: flex; align-items: center; gap: 6px; color: var(--gold-400); margin-bottom: 8px; }
.hero__floating .rating svg { width: 18px; height: 18px; }
.hero__floating p { color: #eaf1fc; font-size: .9rem; }
.hero__floating strong { color: #fff; display: block; margin-top: 10px; font-size: .85rem; }
@media (max-width: 1100px) { .hero__floating { display: none; } }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); display: grid; place-items: center; gap: 6px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold-400); border-radius: 3px; animation: wheel 1.8s infinite; }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--navy-900); padding-block: 22px; overflow: hidden; }
.marquee { display: flex; gap: 60px; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 12px; color: #9fb6d8; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .02em; }
.marquee span svg { width: 22px; height: 22px; color: var(--gold-400); }

/* ============================================================
   CARDS / SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  transform-style: preserve-3d;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--surface-2), #d7ebfb); color: var(--navy-700);
  margin-bottom: 22px; transition: all .4s var(--ease); box-shadow: var(--shadow-sm);
}
.card:hover .card__icon { background: var(--grad-navy); color: var(--gold-400); transform: scale(1.06) rotate(-4deg); }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; margin-bottom: 18px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; color: var(--navy-700); transition: gap .3s; }
.card__link svg { width: 17px; height: 17px; transition: transform .3s; }
.card:hover .card__link { gap: 12px; color: var(--gold-600); }
.card:hover .card__link svg { transform: translateX(3px); }

/* ============================================================
   FEATURE / WHY US (split with parallax layers)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.split__media .badge-float {
  position: absolute; padding: 18px 22px; border-radius: var(--radius); background: var(--glass);
  backdrop-filter: blur(14px); border: 1px solid var(--glass-brd); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; animation: float 6s ease-in-out infinite;
}
.badge-float.tl { top: -24px; left: -24px; }
.badge-float.br { bottom: -24px; right: -24px; animation-delay: 1.5s; }
.badge-float .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-navy); color: var(--gold-400); display: grid; place-items: center; }
.badge-float .ic svg { width: 22px; height: 22px; }
.badge-float b { font-family: 'Montserrat', sans-serif; color: var(--navy-900); display: block; font-size: 1.15rem; }
.badge-float small { color: var(--slate-500); font-size: .78rem; }
@media (max-width: 560px) { .badge-float { display: none; } }

.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: rgba(252,192,0,.15); color: var(--gold-600); display: grid; place-items: center; margin-top: 2px; }
.feature-list .fic svg { width: 18px; height: 18px; }
.feature-list b { font-family: 'Montserrat', sans-serif; color: var(--navy-900); font-size: 1.02rem; }
.feature-list p { font-size: .93rem; margin-top: 2px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(252,192,0,.18), transparent 40%), radial-gradient(circle at 80% 80%, rgba(24,156,216,.3), transparent 45%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; position: relative; text-align: center; }
.stat-item .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-400); line-height: 1; }
.stat-item .lbl { margin-top: 10px; color: #c3d4ee; font-size: .95rem; letter-spacing: .02em; }

/* ============================================================
   REVIEWS (Google, by service category)
   ============================================================ */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.google-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.google-badge .g-logo { width: 34px; height: 34px; }
.google-badge .score { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--navy-900); }
.google-badge .stars { color: var(--gold-500); display: flex; gap: 2px; }
.google-badge .stars svg { width: 16px; height: 16px; }
.google-badge small { color: var(--slate-500); font-size: .8rem; }

.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-tab {
  padding: 10px 20px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: .88rem; background: var(--surface); border: 1px solid var(--line); color: var(--slate-700);
  transition: all .3s var(--ease);
}
.filter-tab:hover { border-color: var(--navy-500); color: var(--navy-800); }
.filter-tab.active { background: var(--grad-navy); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review.hide { display: none; }
.review__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review__avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff; font-size: 1.1rem; }
.review__who b { font-family: 'Montserrat', sans-serif; color: var(--navy-900); display: block; font-size: .98rem; }
.review__who small { color: var(--slate-500); font-size: .78rem; }
.review__stars { color: var(--gold-500); display: flex; gap: 2px; margin-bottom: 10px; }
.review__stars svg { width: 17px; height: 17px; }
.review p { font-size: .95rem; color: var(--slate-700); }
.review__tag { display: inline-block; margin-top: 16px; padding: 5px 12px; border-radius: 100px; background: var(--surface-2); color: var(--navy-700); font-size: .74rem; font-weight: 700; font-family: 'Montserrat', sans-serif; letter-spacing: .03em; }
.review .g-mini { position: absolute; top: 22px; right: 22px; width: 20px; height: 20px; opacity: .9; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--grad-navy); color: #fff; border-radius: var(--radius-xl); padding: clamp(44px, 6vw, 76px); text-align: center; box-shadow: var(--shadow-xl); }
.cta-band::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(252,192,0,.25), transparent 65%); }
.cta-band::after { content: ""; position: absolute; bottom: -60%; left: -8%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(24,156,216,.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #cdddf5; max-width: 560px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: var(--surface); }
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
.form-aside { background: var(--grad-navy); color: #fff; padding: clamp(34px, 5vw, 54px); position: relative; overflow: hidden; }
.form-aside::before { content: ""; position: absolute; bottom: -40%; right: -20%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(252,192,0,.22), transparent 65%); }
.form-aside > * { position: relative; }
.form-aside h3 { color: #fff; font-size: 1.7rem; margin-bottom: 14px; }
.form-aside p { color: #cdddf5; margin-bottom: 30px; }
.form-aside .contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.form-aside .contact-line .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--gold-400); flex-shrink: 0; }
.form-aside .contact-line .ic svg { width: 22px; height: 22px; }
.form-aside .contact-line b { display: block; font-family: 'Montserrat', sans-serif; }
.form-aside .contact-line small { color: #b9cbe6; }
.form-body { padding: clamp(34px, 5vw, 54px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy-900); margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--surface-2); transition: border .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); background: #fff; box-shadow: 0 0 0 4px rgba(36,120,216,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
@media (max-width: 520px) { .field.row { grid-template-columns: 1fr; } }
.field .err { color: var(--danger); font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err { display: block; }
.form-note { font-size: .82rem; color: var(--slate-500); margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .check { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: rgba(21,128,61,.12); color: var(--success); display: grid; place-items: center; }
.form-success .check svg { width: 38px; height: 38px; }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion { max-width: 820px; margin-inline: auto; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: var(--navy-300, #b9cee9); }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy-900); }
.acc-q .plus { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: var(--surface-2); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; }
.acc-q .plus svg { width: 18px; height: 18px; color: var(--navy-700); }
.acc-item.open .plus { background: var(--grad-gold); transform: rotate(135deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a p { padding: 0 26px 24px; color: var(--slate-700); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero { position: relative; background: var(--grad-navy); color: #fff; padding-block: clamp(70px, 10vw, 120px); overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 15%, rgba(252,192,0,.2), transparent 40%), radial-gradient(circle at 10% 90%, rgba(24,156,216,.35), transparent 45%); }
.page-hero__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero p { color: #d6e2f5; max-width: 620px; margin-top: 16px; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #a9c0e2; margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.prose h2 { margin-block: 30px 14px; }
.prose h3 { margin-block: 24px 10px; }
.prose p { margin-bottom: 16px; }
.prose ul.check { display: grid; gap: 12px; margin-block: 18px; }
.prose ul.check li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.check li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-600); margin-top: 3px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.sidebar-card h3 { margin-bottom: 8px; }
.sidebar-card .other-services { display: grid; gap: 4px; margin-top: 18px; }
.sidebar-card .other-services a { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 10px; font-weight: 600; font-size: .92rem; color: var(--navy-800); transition: background .25s, padding .25s; }
.sidebar-card .other-services a:hover { background: var(--surface-2); padding-left: 18px; }
.sidebar-card .other-services a svg { width: 16px; height: 16px; color: var(--gold-600); }
.two-col { display: grid; grid-template-columns: 1.7fr 1fr; gap: 46px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .sidebar-card { position: static; } }

/* ============================================================
   AREAS
   ============================================================ */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.area-chip { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; color: var(--navy-800); transition: all .3s var(--ease); }
.area-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.area-chip svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #b9cbe6; padding-top: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-gold); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { margin-bottom: 20px; gap: 11px; }
.footer__logo { height: 56px; width: auto; }
.footer__about p { font-size: .92rem; color: #93aacf; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdddf5; transition: all .3s var(--ease); }
.footer__socials a:hover { background: var(--grad-gold); color: var(--navy-900); transform: translateY(-3px); }
.footer__socials svg { width: 19px; height: 19px; }
.footer h4 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1.05rem; margin-bottom: 20px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #a9c0e2; font-size: .93rem; transition: color .2s, padding .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-400); }
.footer__links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .92rem; color: #a9c0e2; }
.footer__contact svg { width: 19px; height: 19px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #7f97bd; }
.footer__bottom a { color: var(--gold-400); font-weight: 600; }
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================================
   STICKY MOBILE BUTTONS (call + whatsapp)
   ============================================================ */
.sticky-mobile { position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-sticky); display: none; grid-template-columns: 1fr 1fr; gap: 1px; box-shadow: 0 -8px 30px rgba(12,54,99,.25); }
.sticky-mobile a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.sticky-mobile .s-call { background: var(--grad-navy); }
.sticky-mobile .s-wa { background: var(--whatsapp); }
.sticky-mobile svg { width: 22px; height: 22px; }
@media (max-width: 768px) { .sticky-mobile { display: grid; } body { padding-bottom: 62px; } }

/* Floating desktop call bubble */
.float-actions { position: fixed; right: 22px; bottom: 26px; z-index: var(--z-sticky); display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .3s var(--ease); position: relative; }
.float-actions a:hover { transform: scale(1.1); }
.float-actions .f-wa { background: var(--whatsapp); }
.float-actions .f-call { background: var(--grad-navy); }
.float-actions a::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor; opacity: .5; animation: ripple 2s infinite; }
.float-actions svg { width: 26px; height: 26px; }
@media (max-width: 768px) { .float-actions { display: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-gold); z-index: 100; transition: width .1s; }

/* ---------- Keyframes ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(252,204,24,.7); } 70% { box-shadow: 0 0 0 12px rgba(252,204,24,0); } 100% { box-shadow: 0 0 0 0 rgba(252,204,24,0); } }
@keyframes ripple { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes wheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }

/* utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.bg-surface { background: var(--surface); }
.bg-alt { background: linear-gradient(180deg, var(--bg), var(--surface-2)); }
