/* =========================================================
   Wrap Pro Car Care — Premium PPF Dubai & Fujairah
   Luxury automotive landing page styles
   ========================================================= */

:root {
  --black: #050505;
  --black-2: #0a0a0c;
  --graphite: #14151a;
  --graphite-2: #1c1e25;
  --silver: #c7ccd4;
  --silver-bright: #eef1f5;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-bright: #f0d27a;
  --gold-deep: #a8842a;
  --muted: #8a909c;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --green: #25d366;

  /* Light theme */
  --light-bg: #f5f6f8;
  --light-bg-2: #eef0f3;
  --light-card: #ffffff;
  --light-text: #14161d;
  --light-head: #0c0d12;
  --light-muted: #5e6470;
  --light-line: rgba(12, 14, 20, 0.09);
  --shadow-light: 0 18px 45px rgba(15, 20, 30, 0.10);

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.18);

  --radius: 16px;
  --radius-lg: 22px;
  --max: 1240px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--silver);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--white); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

section { padding: 92px 0; position: relative; }

/* Carbon fibre subtle texture */
.carbon {
  background-image:
    linear-gradient(27deg, #161616 5px, transparent 5px),
    linear-gradient(207deg, #161616 5px, transparent 5px),
    linear-gradient(27deg, #1a1a1a 5px, transparent 5px),
    linear-gradient(207deg, #1a1a1a 5px, transparent 5px),
    linear-gradient(90deg, #0d0d0d 10px, transparent 10px),
    linear-gradient(#101010 25%, #0a0a0a 25%, #0a0a0a 50%, transparent 50%, transparent 75%, #0a0a0a 75%, #0a0a0a);
  background-size: 20px 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem;
  padding: 15px 26px; border-radius: 12px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #1a1405; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 14px 50px rgba(212, 175, 55, 0.32); }

.btn-whatsapp { background: var(--green); color: #04210f; }
.btn-whatsapp:hover { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.32); }

.btn-ghost { background: rgba(255,255,255,0.04); color: var(--white); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); }

.btn-dark { background: var(--graphite-2); color: var(--white); border-color: var(--line); }
.btn-dark:hover { border-color: var(--gold); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.header.scrolled {
  background: rgba(7, 7, 9, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 60px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
@media (max-width: 640px) { .brand img { height: 48px; } }

/* Text-based logo fallback (shows if image missing) */
.brand-fallback { display: flex; align-items: center; gap: 11px; }
.brand-fallback .shield {
  width: 40px; height: 46px; flex: 0 0 auto;
  background: linear-gradient(135deg, #e9edf2, #9aa0aa 50%, #5a5e66);
  clip-path: polygon(50% 0, 100% 18%, 100% 70%, 50% 100%, 0 70%, 0 18%);
  display: grid; place-items: center;
}
.brand-fallback .shield span { font-family: var(--display); font-weight: 800; color: var(--gold-deep); font-size: 1.2rem; }
.brand-fallback .wm b { font-family: var(--display); color: var(--silver-bright); font-size: 1.02rem; letter-spacing: .12em; font-weight: 800; display: block; line-height: 1; }
.brand-fallback .wm small { color: var(--gold); font-size: .56rem; letter-spacing: .26em; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 0.92rem; color: var(--silver); font-weight: 500; transition: color .2s; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-loc { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); }
.header-loc svg { width: 15px; height: 15px; color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 1100;
  background: linear-gradient(160deg, #0c0c10, #050505);
  border-left: 1px solid var(--line-2); padding: 90px 28px 40px;
  transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 6px; box-shadow: -20px 0 60px rgba(0,0,0,.6);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 13px 0; font-family: var(--display); font-size: 1.08rem; color: var(--silver-bright); border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 18px; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); z-index: 1050; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 130px 0 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 600px at 78% 30%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(700px 500px at 12% 80%, rgba(120,130,150,0.10), transparent 60%),
    linear-gradient(160deg, #08080a, #050505 60%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--display);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  padding: 8px 16px; border: 1px solid rgba(212,175,55,.3); border-radius: 100px;
  background: rgba(212,175,55,.06); margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); margin-bottom: 20px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 .silver {
  background: linear-gradient(120deg, #ffffff, #aeb4bf);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.sub { font-size: 1.08rem; color: var(--silver); max-width: 560px; margin-bottom: 28px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hbadge {
  display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 500; color: var(--silver-bright);
  padding: 8px 14px; border-radius: 100px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03); backdrop-filter: blur(6px);
}
.hbadge svg { width: 15px; height: 15px; color: var(--gold); }
.hbadge.rating { border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.08); }
.hbadge .stars { color: var(--gold); letter-spacing: 1px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #15161b, #0a0a0c);
  aspect-ratio: 4 / 3.4;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px;
  background:
    radial-gradient(420px 280px at 50% 30%, rgba(212,175,55,.14), transparent 70%),
    linear-gradient(160deg, #1a1c22, #0b0b0e);
}
.hero-card .ph .car {
  width: 78%; opacity: .9;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.6));
}
/* PPF sweep animation overlay */
.ppf-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.18) 45%, rgba(212,175,55,.25) 50%, rgba(255,255,255,.18) 55%, transparent 70%);
  background-size: 250% 100%; animation: sweep 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes sweep { 0% { background-position: 180% 0; } 50% { background-position: -60% 0; } 100% { background-position: -60% 0; } }

.hero-floats { position: absolute; inset: 0; pointer-events: none; }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 9px;
  background: rgba(10,10,12,.78); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 11px 15px;
  box-shadow: var(--shadow-sm); font-size: .82rem; color: var(--white); font-weight: 600;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 22px; height: 22px; color: var(--gold); }
.float-chip small { display: block; color: var(--muted); font-weight: 400; font-size: .72rem; }
.float-chip.c1 { top: 8%; left: -22px; animation-delay: .2s; }
.float-chip.c2 { bottom: 12%; right: -18px; animation-delay: 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--black-2); overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: scroll 26s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-family: var(--display); font-size: 1.05rem; color: #4a4e57; letter-spacing: .08em; font-weight: 600; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.shead { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.shead .tag {
  font-family: var(--display); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: inline-block;
}
.shead h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.shead p { color: var(--muted); font-size: 1.04rem; }
.shead.left { text-align: left; margin-left: 0; }

/* ---------- Cards / grids ---------- */
.card {
  background: linear-gradient(160deg, rgba(28,30,37,.6), rgba(10,10,13,.6));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  backdrop-filter: blur(8px); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.35); box-shadow: var(--shadow-md); }

.icon-box {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(150deg, rgba(212,175,55,.18), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.25);
}
.icon-box svg { width: 26px; height: 26px; color: var(--gold-bright); }

/* Problem grid */
.problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pcard { text-align: center; padding: 22px 14px; }
.pcard .icon-box { margin: 0 auto 12px; width: 46px; height: 46px; }
.pcard h4 { font-size: .96rem; color: var(--silver-bright); }

/* Solution flow */
.solution { background: var(--black-2); }
.flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 40px; }
.flow-step {
  text-align: center; padding: 24px 22px; min-width: 150px;
  background: linear-gradient(160deg, #16171d, #0b0b0e); border: 1px solid var(--line); border-radius: var(--radius);
}
.flow-step .num { font-family: var(--display); color: var(--gold); font-size: .8rem; letter-spacing: .1em; }
.flow-step h4 { font-size: 1.02rem; margin-top: 6px; }
.flow-arrow { color: var(--gold); padding: 0 14px; font-size: 1.6rem; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bcard h4 { font-size: 1.05rem; margin-bottom: 8px; }
.bcard p { font-size: .9rem; color: var(--muted); }

/* Packages */
.packages { background: var(--black-2); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pkg {
  display: flex; flex-direction: column; padding: 28px 24px;
  background: linear-gradient(170deg, #15161c, #0a0a0d); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  transition: transform .3s, border-color .3s, box-shadow .3s; position: relative;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.45); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: rgba(212,175,55,.55); box-shadow: var(--shadow-gold); }
.pkg .ribbon {
  position: absolute; top: 16px; right: 16px; font-size: .68rem; font-family: var(--display); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #1a1405; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 5px 11px; border-radius: 100px;
}
.pkg h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pkg .best { color: var(--gold); font-size: .82rem; margin-bottom: 18px; font-weight: 500; }
.pkg .price { font-family: var(--display); color: var(--silver-bright); font-size: 1.05rem; margin-bottom: 18px; }
.pkg .price small { color: var(--muted); font-weight: 400; font-size: .8rem; }
.pkg ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
.pkg ul li { display: flex; gap: 10px; font-size: .92rem; align-items: flex-start; }
.pkg ul li svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }

/* Interactive car coverage */
.coverage { background: var(--black); }
.cov-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.car-map { position: relative; background: linear-gradient(160deg, #131419, #0a0a0d); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.car-svg { width: 100%; height: auto; }
.car-part {
  fill: rgba(255,255,255,.05); stroke: rgba(212,175,55,.35); stroke-width: 2; cursor: pointer;
  transition: fill .25s, stroke .25s;
}
.car-part:hover { fill: rgba(212,175,55,.22); stroke: var(--gold); }
.car-part.active { fill: rgba(212,175,55,.35); stroke: var(--gold-bright); }
.car-hotspots { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.hotspot-btn {
  font-family: var(--display); font-size: .82rem; font-weight: 500; color: var(--silver);
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(255,255,255,.03); cursor: pointer; transition: .2s;
}
.hotspot-btn:hover, .hotspot-btn.active { border-color: var(--gold); color: var(--white); background: rgba(212,175,55,.1); }
.cov-detail { background: linear-gradient(160deg, #16171d, #0a0a0d); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 32px; min-height: 320px; }
.cov-detail h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--gold-bright); }
.cov-detail .rec { display: inline-block; font-size: .78rem; color: var(--gold); border: 1px solid rgba(212,175,55,.3); padding: 4px 12px; border-radius: 100px; margin: 14px 0; }
.cov-detail p { margin-bottom: 14px; }

/* PPF Types */
.types { background: var(--black-2); }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard h3 { font-size: 1.25rem; margin-bottom: 10px; }
.tcard p { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.tcard a { font-family: var(--display); font-size: .88rem; color: var(--gold); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.tcard a:hover { gap: 11px; }

/* Comparison table */
.compare { background: var(--black); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-2); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; background: linear-gradient(160deg, #121319, #0a0a0d); }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.cmp thead th { font-family: var(--display); color: var(--white); font-size: 1rem; background: rgba(255,255,255,.02); }
table.cmp thead th.hl { color: var(--gold-bright); }
table.cmp td:first-child { color: var(--silver-bright); font-weight: 500; }
table.cmp .yes { color: var(--green); font-weight: 600; }
table.cmp .no { color: #6a6f78; }
table.cmp .partial { color: var(--gold); }
table.cmp tr:last-child td { border-bottom: 0; }
.cmp-cta { text-align: center; margin-top: 30px; }
.cmp-cta p { margin-bottom: 16px; color: var(--silver); }

/* Process */
.process { background: var(--black-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { display: flex; gap: 16px; padding: 22px; background: linear-gradient(160deg, #15161c, #0a0a0d); border: 1px solid var(--line); border-radius: var(--radius); }
.step .n { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: rgba(212,175,55,.5); flex: 0 0 auto; line-height: 1; }
.step h4 { font-size: 1.02rem; margin-bottom: 5px; }
.step p { font-size: .86rem; color: var(--muted); }

/* Why choose */
.why { background: var(--black); }
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.why-list li svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.why-visual { background: linear-gradient(160deg, #16171d, #0a0a0d); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 34px; text-align: center; }
.why-visual .big { font-family: var(--display); font-size: 4rem; font-weight: 800; color: var(--gold-bright); line-height: 1; }
.why-visual .stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; margin: 8px 0; }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.why-stats div { padding: 16px 8px; border: 1px solid var(--line); border-radius: 12px; }
.why-stats b { font-family: var(--display); display: block; font-size: 1.5rem; color: var(--white); }
.why-stats small { color: var(--muted); font-size: .76rem; }

/* Gallery */
.gallery { background: var(--black-2); }
.gal-filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 30px; }
.gal-filters button {
  font-family: var(--display); font-size: .84rem; font-weight: 500; color: var(--silver);
  padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(255,255,255,.03); cursor: pointer; transition: .2s;
}
.gal-filters button:hover, .gal-filters button.active { border-color: var(--gold); color: var(--white); background: rgba(212,175,55,.1); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item {
  position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, #1a1c22, #0b0b0e); border: 1px solid var(--line);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .ph { position: absolute; inset: 0; display: grid; place-items: center; color: #3c4049; }
.gal-item .ph svg { width: 46px; height: 46px; }
.gal-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; font-family: var(--display); font-size: .82rem; color: #fff; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,.85)); transform: translateY(100%); transition: transform .3s; opacity: 0;
}
.gal-item:hover .cap { transform: translateY(0); opacity: 1; }
.gal-item.span2 { grid-column: span 2; aspect-ratio: 2; }

/* Reviews */
.reviews { background: var(--black); }
.rev-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--line-2); border-radius: 14px; background: rgba(255,255,255,.03); }
.google-badge .g { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.google-badge .g span:nth-child(1){color:#4285F4}.google-badge .g span:nth-child(2){color:#EA4335}.google-badge .g span:nth-child(3){color:#FBBC05}.google-badge .g span:nth-child(4){color:#4285F4}.google-badge .g span:nth-child(5){color:#34A853}.google-badge .g span:nth-child(6){color:#EA4335}
.google-badge .score { font-family: var(--display); color: var(--gold-bright); font-weight: 800; font-size: 1.3rem; }
.google-badge .stars { color: var(--gold); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.rev-card .stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.rev-card p { font-size: .95rem; color: var(--silver); margin-bottom: 18px; font-style: italic; }
.rev-card .who { display: flex; align-items: center; gap: 12px; }
.rev-card .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #1a1405; }
.rev-card .who b { color: var(--white); font-size: .92rem; display: block; }
.rev-card .who small { color: var(--muted); font-size: .78rem; }

/* Locations */
.locations { background: var(--black-2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.loc-card { padding: 34px; }
.loc-card h3 { font-size: 1.5rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.loc-card h3 svg { width: 24px; height: 24px; color: var(--gold); }
.loc-card p { font-size: .95rem; margin-bottom: 16px; }
.loc-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.loc-card ul li { font-size: .82rem; padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; color: var(--silver); }

/* FAQ */
.faq { background: var(--black); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: linear-gradient(160deg, rgba(22,23,29,.6), rgba(10,10,13,.4)); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 22px; cursor: pointer; font-family: var(--display); font-weight: 600; color: var(--silver-bright); font-size: 1.02rem; }
.faq-q .ic { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; transition: transform .3s; font-size: 1.1rem; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; }

/* Contact */
.contact { background: linear-gradient(160deg, #0a0a0d, #050505); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-info { padding: 8px 0; }
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.ci-list { display: flex; flex-direction: column; gap: 18px; margin: 26px 0; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; }
.ci-row .icon-box { margin: 0; width: 46px; height: 46px; flex: 0 0 auto; }
.ci-row b { color: var(--white); font-family: var(--display); display: block; font-size: 1rem; }
.ci-row span { color: var(--muted); font-size: .9rem; }
.contact-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); min-height: 380px; background: #111; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

/* Final CTA */
.final {
  text-align: center; padding: 100px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(212,175,55,.12), transparent 65%),
    linear-gradient(160deg, #0c0c10, #050505);
  border-top: 1px solid var(--line);
}
.final h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.final h2 .grad { background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final p { max-width: 680px; margin: 0 auto 30px; color: var(--silver); font-size: 1.06rem; }
.final .hero-cta { justify-content: center; }

/* Footer */
.footer { background: #060608; border-top: 1px solid var(--line); padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px; margin-bottom: 36px; }
.footer h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { font-size: .9rem; color: var(--silver); transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: var(--muted); }

/* Mobile sticky bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: none;
  grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line-2); box-shadow: 0 -8px 30px rgba(0,0,0,.6);
}
.sticky-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 11px 6px;
  font-size: .72rem; font-weight: 600; font-family: var(--display); background: #0a0a0c; color: var(--silver-bright);
}
.sticky-bar a svg { width: 21px; height: 21px; }
.sticky-bar a.wa { background: var(--green); color: #04210f; }
.sticky-bar a.call svg { color: var(--gold); }
.sticky-bar a.quote svg { color: var(--gold); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav, .header-loc { display: none; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .types-grid { grid-template-columns: repeat(1, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-grid, .cov-wrap, .why-wrap, .contact-grid, .loc-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-cta .btn-call-h { display: none; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 110px 0 90px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .benefits-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.span2 { grid-column: span 2; aspect-ratio: 1.6; }
  .flow-arrow { transform: rotate(90deg); padding: 10px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(3,1fr); }
  .sticky-bar { display: grid; }
  body { padding-bottom: 64px; }
  .float-chip.c1 { left: 6px; }
  .float-chip.c2 { right: 6px; }
  .hbadge { font-size: .74rem; }
}

/* =========================================================
   ENHANCEMENTS v2 — light/dark rhythm, premium header/footer,
   hero form, recommender, tabs, slider, toggle, drawer, lightbox
   ========================================================= */

/* ---------- Light section system ---------- */
.section-light {
  background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
  color: var(--light-text);
}
.section-light.alt { background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--light-head); }
.section-light p { color: var(--light-muted); }
.section-light .shead p { color: var(--light-muted); }
.section-light .shead .tag, .section-light .tag { color: var(--gold-deep); }
.section-light .card {
  background: var(--light-card);
  border: 1px solid var(--light-line);
  box-shadow: var(--shadow-light);
  backdrop-filter: none;
}
.section-light .card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity .3s;
}
.section-light .card:hover { border-color: rgba(212,175,55,.5); box-shadow: 0 24px 60px rgba(15,20,30,.14); }
.section-light .card:hover::before { opacity: 1; }
.section-light .icon-box { background: linear-gradient(150deg, rgba(212,175,55,.16), rgba(212,175,55,.04)); border-color: rgba(212,175,55,.3); }
.section-light .icon-box svg { color: var(--gold-deep); }
.section-light .pcard h4, .section-light .bcard h4 { color: var(--light-head); }
.section-light .bcard p { color: var(--light-muted); }
/* light table */
.section-light .table-wrap { border-color: var(--light-line); }
.section-light table.cmp { background: #fff; }
.section-light table.cmp th, .section-light table.cmp td { border-bottom-color: var(--light-line); }
.section-light table.cmp thead th { color: var(--light-head); background: #f3f4f7; }
.section-light table.cmp thead th.hl { color: var(--gold-deep); }
.section-light table.cmp td:first-child { color: var(--light-head); }
.section-light table.cmp .no { color: #aab0ba; }
/* light types/loc cards */
.section-light .tcard p, .section-light .loc-card p { color: var(--light-muted); }
.section-light .loc-card ul li { border-color: var(--light-line); color: var(--light-text); }
.section-light .cmp-cta p { color: var(--light-text); }
/* light why list / stats */
.section-light .why-list li { color: var(--light-text); }
.section-light .why-visual { background: #fff; border-color: var(--light-line); box-shadow: var(--shadow-light); }
.section-light .why-stats div { border-color: var(--light-line); }
.section-light .why-stats b { color: var(--light-head); }
/* light faq */
.section-light .faq-item { background: #fff; border-color: var(--light-line); }
.section-light .faq-q { color: var(--light-head); }
.section-light .faq-a p { color: var(--light-muted); }
/* light reviews */
.section-light .rev-card p { color: var(--light-text); }
.section-light .rev-card .who b { color: var(--light-head); }
.section-light .google-badge { background: #fff; border-color: var(--light-line); }
/* light hotspot buttons */
.section-light .hotspot-btn { color: var(--light-text); border-color: var(--light-line); background: #fff; }
.section-light .hotspot-btn:hover, .section-light .hotspot-btn.active { color: var(--light-head); background: rgba(212,175,55,.14); }

/* ---------- Top mini bar ---------- */
.topbar {
  background: linear-gradient(90deg, #07070a, #101218 50%, #07070a);
  border-bottom: 1px solid rgba(212,175,55,.18);
  font-size: .8rem; color: var(--silver);
}
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 26px; padding: 8px 0; flex-wrap: wrap; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .star { color: var(--gold); letter-spacing: 1px; }
.topbar svg { width: 14px; height: 14px; color: var(--gold); }
.topbar a { color: var(--gold-bright); font-weight: 600; }
.topbar .sep { color: rgba(255,255,255,.18); }
@media (max-width: 1024px) { .topbar { display: none; } }

/* header offsets so it sits below topbar at top */
.header { top: 0; }
.has-topbar .header { top: 38px; }
.has-topbar .header.scrolled { top: 0; }
.header.scrolled { padding: 12px 0; background: rgba(5,5,7,0.9); backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid rgba(212,175,55,.28); }
.header { padding: 16px 0; }
.brand img { height: 62px; }
.header.scrolled .brand img { height: 54px; }
.nav a { font-size: .95rem; }
.nav a.active { color: var(--white); }
.nav a.active::after { width: 100%; }
@media (max-width: 1024px) { .has-topbar .header, .has-topbar .header.scrolled { top: 0; } }
@media (max-width: 640px) { .brand img { height: 54px; } }

/* ---------- Hero quick-quote glass form ---------- */
.hero-grid.with-form { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.hero { min-height: auto; }
@media (min-width: 1025px) { .hero-grid.with-form { padding-top: 10px; } }
.quote-card {
  margin-top: 22px; padding: 22px; border-radius: var(--radius-lg);
  background: rgba(12,13,17,.7); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-md);
}
.quote-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.quote-card .qsub { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-form .full { grid-column: 1 / -1; }
.quote-form input, .quote-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px; font-family: var(--font); font-size: .9rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: var(--white); outline: none; transition: border-color .2s;
}
.quote-form input::placeholder { color: #7d828c; }
.quote-form select { color: var(--silver-bright); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.quote-form select option { background: #111319; color: #fff; }
.quote-form input:focus, .quote-form select:focus { border-color: var(--gold); }
.quote-form .btn { grid-column: 1 / -1; margin-top: 4px; }

/* ---------- Package Recommender ---------- */
.rec-wrap { max-width: 900px; margin: 0 auto; background: linear-gradient(160deg, #15161c, #0a0a0d); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 34px; }
.rec-steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 26px; }
.rec-dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .85rem; border: 1px solid var(--line-2); color: var(--muted); }
.rec-dot.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1405; border-color: transparent; }
.rec-line { width: 44px; height: 2px; background: var(--line-2); }
.rec-step { display: none; }
.rec-step.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }
.rec-step h3 { text-align: center; font-size: 1.3rem; margin-bottom: 6px; }
.rec-step .rs-sub { text-align: center; color: var(--muted); margin-bottom: 22px; font-size: .92rem; }
.rec-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rec-opt {
  padding: 18px 14px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(255,255,255,.03);
  cursor: pointer; text-align: center; transition: .2s; font-family: var(--display); font-weight: 600; color: var(--silver-bright); font-size: .95rem;
}
.rec-opt svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 8px; }
.rec-opt:hover { border-color: var(--gold); transform: translateY(-3px); }
.rec-opt.selected { border-color: var(--gold); background: rgba(212,175,55,.12); box-shadow: var(--shadow-gold); }
.rec-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.rec-result { text-align: center; padding: 10px 0; }
.rec-result .rr-badge { font-family: var(--display); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.rec-result h3 { font-size: 2rem; margin: 10px 0; }
.rec-result p { color: var(--silver); max-width: 520px; margin: 0 auto 22px; }

/* keep dark recommender card readable inside a light section */
.section-light .rec-wrap h3, .section-light .rec-result h3 { color: var(--white); }
.section-light .rec-wrap p, .section-light .rec-step .rs-sub, .section-light .rec-result p { color: var(--silver); }
.section-light .rec-opt { color: var(--silver-bright); }

/* ---------- Comparison tabs ---------- */
.cmp-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 26px; flex-wrap: wrap; }
.cmp-tab {
  font-family: var(--display); font-weight: 600; font-size: .95rem; padding: 11px 22px; border-radius: 100px;
  border: 1px solid var(--light-line); background: #fff; color: var(--light-text); cursor: pointer; transition: .2s;
}
.cmp-tab.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1405; border-color: transparent; }
.cmp-panel { display: none; max-width: 760px; margin: 0 auto 34px; }
.cmp-panel.active { display: block; animation: fade .4s ease; }
.cmp-panel .cp-card { background: #fff; border: 1px solid var(--light-line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-light); }
.cmp-panel h3 { font-size: 1.5rem; margin-bottom: 6px; }
.cmp-panel .cp-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0; }
.cmp-panel .cp-row b { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 3px; }
.cmp-panel .cp-row span { color: var(--light-text); font-size: .95rem; }

/* ---------- Before / After slider ---------- */
.ba-slider { position: relative; max-width: 820px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-md); aspect-ratio: 16/9; user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-label { position: absolute; bottom: 14px; padding: 6px 14px; border-radius: 100px; font-family: var(--display); font-size: .78rem; font-weight: 600; background: rgba(0,0,0,.7); color: #fff; backdrop-filter: blur(6px); }
.ba-label.before { left: 14px; } .ba-label.after { right: 14px; color: var(--gold-bright); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); transform: translateX(-50%); cursor: ew-resize; }
.ba-handle::after { content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1405; display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow-gold); }

/* ---------- Location toggle ---------- */
.loc-toggle { display: flex; gap: 8px; justify-content: center; margin-bottom: 28px; }
.loc-toggle button { font-family: var(--display); font-weight: 600; font-size: 1rem; padding: 12px 30px; border-radius: 100px; border: 1px solid var(--light-line); background: #fff; color: var(--light-text); cursor: pointer; transition: .2s; }
.loc-toggle button.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1405; border-color: transparent; }
.loc-pane { display: none; } .loc-pane.active { display: grid; animation: fade .4s ease; }

/* ---------- Add-on bundle selector ---------- */
.addons { background: var(--black); }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.addon {
  position: relative; padding: 22px 18px; border-radius: 16px; border: 1px solid var(--line-2);
  background: linear-gradient(160deg, #15161c, #0a0a0d); cursor: pointer; transition: .2s; text-align: center;
}
.addon svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 10px; }
.addon h4 { font-size: .98rem; margin-bottom: 4px; }
.addon p { font-size: .8rem; color: var(--muted); }
.addon .check { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .2s; }
.addon .check svg { width: 14px; height: 14px; margin: 0; opacity: 0; }
.addon.selected { border-color: var(--gold); background: rgba(212,175,55,.1); }
.addon.selected .check { background: var(--gold); border-color: var(--gold); }
.addon.selected .check svg { opacity: 1; color: #1a1405; }
.addon-cta { text-align: center; }
.addon-cta .count { color: var(--gold); font-weight: 600; }

/* ---------- Floating quote button + drawer ---------- */
.fab {
  position: fixed; right: 22px; bottom: 26px; z-index: 950; display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px; border-radius: 100px; font-family: var(--display); font-weight: 700; font-size: .95rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1405; cursor: pointer; border: 0;
  box-shadow: var(--shadow-gold); transition: transform .25s; animation: floaty 5s ease-in-out infinite;
}
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .fab { bottom: 78px; right: 14px; padding: 12px 18px; font-size: .85rem; } }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(92vw, 420px); z-index: 1200;
  background: linear-gradient(160deg, #0c0c10, #050505); border-left: 1px solid var(--line-2);
  transform: translateX(105%); transition: transform .4s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  box-shadow: -24px 0 70px rgba(0,0,0,.6); padding: 28px;
}
.drawer.open { transform: translateX(0); }
.drawer h3 { font-size: 1.4rem; margin-bottom: 4px; }
.drawer .d-sub { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.drawer .d-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.06); border: 1px solid var(--line-2); color: #fff; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; font-size: 1.3rem; }
.drawer label { display: block; font-size: .8rem; color: var(--silver); margin: 14px 0 6px; font-weight: 500; }
.drawer input, .drawer select {
  width: 100%; padding: 12px 14px; border-radius: 10px; font-family: var(--font); font-size: .92rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: #fff; outline: none;
}
.drawer select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.drawer select option { background: #111319; }
.drawer input:focus, .drawer select:focus { border-color: var(--gold); }
.drawer .btn { margin-top: 22px; }

/* ---------- Gallery lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1300; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--display); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid var(--line-2); color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.6rem; }
.lightbox .lb-prev { left: 22px; } .lightbox .lb-next { right: 22px; }
.gal-item .cap .gal-cta { display: block; font-size: .72rem; color: var(--gold-bright); margin-top: 4px; font-weight: 500; }

/* ---------- Footer top CTA ---------- */
.footer-cta {
  text-align: center; padding: 60px 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(212,175,55,.14), transparent 65%), linear-gradient(160deg, #0c0c10, #060608);
  border-top: 1px solid var(--line);
}
.footer-cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 12px; }
.footer-cta h2 .grad { background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-cta p { max-width: 620px; margin: 0 auto 26px; color: var(--silver); }
.footer-cta .hero-cta { justify-content: center; }

/* ---------- Premium footer sizing ---------- */
.footer { padding: 78px 0 32px; }
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 92px; margin-bottom: 18px; }
.footer h4 { font-size: .95rem; }
.footer p, .footer ul a { font-size: .93rem; }
.footer .fbadges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.footer .fbadge { font-size: .78rem; padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--silver-bright); display: inline-flex; gap: 6px; align-items: center; }
.footer .fbadge .star { color: var(--gold); }
.footer h4 { position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-options { grid-template-columns: repeat(2, 1fr); }
  .quote-form { grid-template-columns: 1fr; }
  .loc-pane.active { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid, .rec-options { grid-template-columns: 1fr; }
  .cmp-panel .cp-rows { grid-template-columns: 1fr; }
  .rec-wrap { padding: 22px 16px; }
  .ba-slider { aspect-ratio: 4/3; }
}
