/* ============================================================
   Bari Firoj Auto Spa — Theme
   Tokens first. Every colour/space decision derives from these.
   Type: Sora (display) · Manrope (body) · Chakra Petch (utility)
   ============================================================ */

:root {
  /* Colour tokens */
  --carbon:      #0A1428;   /* deep navy-black — dark sections   */
  --night:       #101E38;   /* dark surface                      */
  --night-2:     #16264a;   /* dark surface raised               */
  --electric:    #1E6FFF;   /* brand blue                        */
  --aqua:        #00C6FF;   /* gloss blue                        */
  --flame:       #FF3B47;   /* energy red                        */
  --flame-deep:  #D91E2E;
  --volt:        #FFC400;   /* highlight yellow                  */
  --foam:        #F3F7FD;   /* light background                  */
  --white:       #ffffff;
  --ink:         #0E1B33;   /* text on light                     */
  --muted:       #55617a;   /* secondary text on light           */
  --mist:        #C9D6EE;   /* secondary text on dark            */
  --line:        #DEE7F5;   /* borders on light                  */
  --line-dark:   rgba(255,255,255,.12);

  /* Gradients */
  --g-brand:  linear-gradient(120deg, #1E6FFF 0%, #00C6FF 100%);
  --g-flame:  linear-gradient(120deg, #FF3B47 0%, #FF7A18 100%);
  --g-volt:   linear-gradient(120deg, #FFC400 0%, #FF9100 100%);
  --g-chrome: linear-gradient(180deg, #F4F8FF 0%, #C7D3E6 48%, #EDF2FB 52%, #A9B8D2 100%);
  --g-hero:   radial-gradient(1100px 520px at 78% -10%, rgba(0,198,255,.28), transparent 60%),
              radial-gradient(900px 480px at -10% 110%, rgba(30,111,255,.35), transparent 55%),
              radial-gradient(700px 300px at 55% 115%, rgba(255,59,71,.18), transparent 60%),
              linear-gradient(160deg, #0A1428 0%, #0E2148 55%, #0A1428 100%);

  /* Type */
  --f-display: "Sora", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-util:    "Chakra Petch", "Sora", monospace;

  /* Scale & rhythm */
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 10px 30px rgba(10, 20, 40, .10);
  --shadow-lg: 0 24px 60px rgba(10, 20, 40, .18);
  --speed:     .22s;
  --ease:      cubic-bezier(.33, 1, .48, 1);
  --container: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.18; color: inherit; }
a { color: var(--electric); text-decoration: none; }
a:hover { color: var(--flame); }
.container { max-width: var(--container); }

::selection { background: var(--electric); color: #fff; }

/* Visible focus everywhere (keyboard) */
:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
  border-radius: 6px;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 3000;
  background: var(--volt); color: var(--ink); padding: .6rem 1rem;
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* Utility label — Chakra Petch */
.eyebrow {
  font-family: var(--f-util);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--electric);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--g-flame);
}
.eyebrow-light { color: var(--aqua); }

.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-dark { background: var(--carbon); color: #EAF1FC; }
.section-dark .eyebrow { color: var(--aqua); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; margin-bottom: .5rem; }
.section-sub { color: var(--muted); max-width: 620px; }
.section-dark .section-sub { color: var(--mist); }
.section-head { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }

/* Icons */
.ico { width: 24px; height: 24px; flex: none; }
.ico-sm { width: 17px; height: 17px; }
.ico-lg { width: 34px; height: 34px; }

/* ---------- Buttons (≥44px targets, shine sweep signature) ---------- */
.btn {
  --btn-bg: var(--g-brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .7rem 1.5rem;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem;
  color: #fff; background: var(--btn-bg);
  border: 0; border-radius: 999px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), filter var(--speed);
  box-shadow: 0 8px 22px rgba(30, 111, 255, .35);
}
.btn::after { /* glossy shine sweep */
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .45s var(--ease);
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30,111,255,.45); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(.97); }
.btn-glow { --btn-bg: var(--g-flame); box-shadow: 0 8px 22px rgba(255, 59, 71, .38); }
.btn-glow:hover { box-shadow: 0 14px 32px rgba(255, 59, 71, .5); }
.btn-volt { --btn-bg: var(--g-volt); color: var(--ink); box-shadow: 0 8px 22px rgba(255,196,0,.35); }
.btn-volt:hover { color: var(--ink); }
.btn-ghost {
  --btn-bg: transparent;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); box-shadow: none; }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
.btn-ghost-dark:hover { color: var(--electric); border-color: var(--electric); box-shadow: none; }
.btn-wa-solid { --btn-bg: linear-gradient(120deg, #22C15E, #128C7E); box-shadow: 0 8px 22px rgba(34,193,94,.35); }
.btn-lg { min-height: 54px; padding: .85rem 1.9rem; font-size: 1.02rem; }
.btn-sm { min-height: 40px; padding: .4rem 1.05rem; font-size: .86rem; }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  color: #fff; transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.btn-icon:active { transform: scale(.94); }
.btn-wa { background: linear-gradient(140deg, #25D366, #128C7E); box-shadow: 0 6px 16px rgba(37,211,102,.4); }
.btn-wa:hover { color: #fff; transform: translateY(-2px); }

/* ---------- Top bar + Nav ---------- */
.topbar {
  background: var(--carbon); color: var(--mist);
  font-size: .82rem; border-bottom: 1px solid var(--line-dark);
}
.topbar-inner { display: flex; align-items: center; gap: 1.4rem; padding: .45rem .75rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item .ico-sm { color: var(--volt); }
.topbar-link { color: var(--mist); font-weight: 600; }
.topbar-link:hover { color: var(--volt); }

.site-nav {
  position: sticky; top: 0; z-index: 1200;
  background: rgba(10, 20, 40, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow var(--speed);
}
.site-nav.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.nav-inner { display: flex; align-items: center; gap: 1rem; padding: .55rem .75rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-badge img { width: 92px; height: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,198,255,.35)); }
.brand-text { line-height: 1.05; }
.brand-text strong { font-family: var(--f-display); font-weight: 800; font-size: 1.06rem; color: #fff; letter-spacing: .04em; display: block; }
.brand-text small { font-family: var(--f-util); font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; color: var(--volt); }

.nav-menu { display: flex; align-items: center; gap: 1.2rem; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a {
  display: inline-flex; align-items: center;
  padding: .8rem .8rem; border-radius: 10px;
  color: #DCE7F8; font-weight: 600; font-size: .93rem;
  transition: color var(--speed), background var(--speed);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.is-active { color: var(--volt); }

.has-drop .drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: .55rem; display: grid;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility var(--speed);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { color: var(--ink); font-weight: 600; padding: .55rem .8rem; border-radius: 9px; font-size: .9rem; }
.drop a:hover { background: var(--foam); color: var(--electric); }
.drop-all { border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .7rem !important; color: var(--electric) !important; display: inline-flex; gap: .4rem; align-items: center; }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  margin-left: auto; width: 48px; height: 48px;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--speed) var(--ease), opacity var(--speed); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .nav-menu {
    position: fixed; inset: 0; top: 0; z-index: 1300;
    display: none; flex-direction: column; justify-content: flex-start; gap: 1.4rem;
    background: linear-gradient(170deg, #0A1428 0%, #10254e 100%);
    padding: 5.5rem 1.4rem 2rem; overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; gap: .15rem; }
  .nav-links a { padding: .9rem 1rem; font-size: 1.06rem; }
  .has-drop .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.05); box-shadow: none; margin: .2rem 0 .4rem; 
  }
  .drop a { color: var(--mist) !important; }
  .drop a:hover { background: rgba(255,255,255,.08); color: #fff !important; }
  .nav-cta { width: 100%; justify-content: stretch; }
  .nav-cta .btn { flex: 1; }
  .nav-close-x { position: absolute; top: 1rem; right: 1rem; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--g-hero);
  color: #fff;
  min-height: min(88vh, 780px);
  display: flex; align-items: center;
}
.hero-bubbles, .hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background-repeat: no-repeat; background-size: cover;
}
.hero-bubbles { opacity: .8; will-change: transform; }
.hero-inner { position: relative; z-index: 2; padding: clamp(3rem, 8vw, 5rem) 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-util); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--volt);
  background: rgba(255,196,0,.1);
  border: 1px solid rgba(255,196,0,.35);
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  font-weight: 800; letter-spacing: -.01em; margin-bottom: 1rem;
}
.hero-title .shine-text {
  background: linear-gradient(100deg, #7DD3FF 0%, #fff 45%, #35A2FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--mist); max-width: 560px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; padding: 0; margin: 0; list-style: none; }
.hero-points li { display: inline-flex; align-items: center; gap: .5rem; color: var(--mist); font-weight: 600; font-size: .92rem; }
.hero-points .ico-sm { color: var(--volt); }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero-card img { border-radius: 16px; display: block; width: 100%; }
.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ink); font-weight: 700; font-size: .85rem;
  border-radius: 999px; padding: .5rem .95rem; box-shadow: var(--shadow-lg);
}
.hero-chip .ico-sm { color: var(--electric); }
.hero-chip-1 { top: -14px; right: 8%; }
.hero-chip-2 { bottom: -14px; left: 6%; }
.hero-chip-2 .ico-sm { color: var(--flame); }

/* angled divider — wash blade swipe */
.angle-divider { position: relative; }
.angle-divider::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: var(--foam);
  clip-path: polygon(0 62%, 100% 8%, 100% 100%, 0% 100%);
}
.angle-divider-dark::after { background: var(--carbon); }

/* ---------- Cards ---------- */
.card-x {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; height: 100%;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed);
}
.card-x:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Service card */
.svc-card { display: flex; flex-direction: column; position: relative; color: inherit; }
.svc-card:hover { color: inherit; }
.svc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-icon {
  position: absolute; bottom: -24px; left: 1.25rem;
  width: 56px; height: 56px; display: grid; place-items: center;
  color: #fff; background: var(--g-brand);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); /* hexagon — logo motif */
  box-shadow: 0 10px 22px rgba(30,111,255,.4);
}
.svc-card:nth-child(3n+2) .svc-icon { background: var(--g-flame); box-shadow: 0 10px 22px rgba(255,59,71,.38); }
.svc-card:nth-child(3n) .svc-icon { background: var(--g-volt); color: var(--ink); box-shadow: 0 10px 22px rgba(255,196,0,.38); }
.svc-body { padding: 2.2rem 1.35rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.svc-title { font-size: 1.12rem; font-weight: 700; margin: 0; }
.svc-text { color: var(--muted); font-size: .93rem; margin: 0; flex: 1; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: .7rem; border-top: 1px dashed var(--line); }
.svc-price { font-family: var(--f-util); font-weight: 700; color: var(--electric); font-size: .95rem; }
.svc-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .88rem; color: var(--flame); }

/* Work / project card */
.work-card { position: relative; color: #fff; display: block; border-radius: var(--radius-lg); overflow: hidden; }
.work-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.work-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 12, 26, .92) 100%);
}
.work-card:hover img { transform: scale(1.05); }
.work-card:hover { color: #fff; }
.work-info { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.1rem; z-index: 2; }
.work-tag {
  display: inline-block; font-family: var(--f-util); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--g-volt); color: var(--ink);
  padding: .28rem .7rem; border-radius: 999px; margin-bottom: .5rem;
}
.work-title { font-size: 1.08rem; font-weight: 700; margin: 0; }
.work-date { font-size: .8rem; color: var(--mist); }

/* ---------- Before / After comparator ---------- */
.ba-slider {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16/10; box-shadow: var(--shadow-lg);
  touch-action: pan-y;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; user-select: none; -webkit-user-drag: none;
}
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 4px;
  background: #fff; transform: translateX(-50%); z-index: 3;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle::after {
  content: "\2194"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--g-brand); color: #fff; font-size: 1.15rem; font-weight: 700;
  border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.ba-label {
  position: absolute; top: 14px; z-index: 2;
  font-family: var(--f-util); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .32rem .8rem; border-radius: 999px; color: #fff;
}
.ba-label-before { left: 14px; background: rgba(10,20,40,.75); }
.ba-label-after { right: 14px; background: var(--g-flame); }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 4; margin: 0;
}
.ba-range:focus-visible ~ .ba-handle::after { outline: 3px solid var(--volt); outline-offset: 2px; }

/* ---------- Stats counters ---------- */
.stats { position: relative; }
.stat {
  text-align: center; padding: 1.6rem 1rem;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
}
.stat-num {
  font-family: var(--f-util); font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 700;
  background: linear-gradient(100deg, #7DD3FF, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.stat-num .plus { color: var(--volt); -webkit-text-fill-color: var(--volt); }
.stat-label { color: var(--mist); font-weight: 600; font-size: .9rem; }

/* ---------- Packages ---------- */
.pkg {
  position: relative; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem; display: flex; flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-popular {
  background: linear-gradient(165deg, #0E2148, #0A1428);
  color: #EAF1FC; border: 1px solid rgba(0,198,255,.4);
  box-shadow: 0 20px 50px rgba(30,111,255,.35);
}
.pkg-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--g-volt); color: var(--ink);
  font-family: var(--f-util); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .95rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255,196,0,.4);
}
.pkg-name { font-size: 1.2rem; font-weight: 800; margin: 0; }
.pkg-sub { color: var(--muted); font-size: .88rem; }
.pkg-popular .pkg-sub { color: var(--mist); }
.pkg-price { font-family: var(--f-util); font-size: 2.1rem; font-weight: 700; color: var(--electric); margin: .6rem 0 0; }
.pkg-popular .pkg-price { color: var(--aqua); }
.pkg-price small { font-size: .82rem; font-family: var(--f-body); color: var(--muted); font-weight: 600; display: block; }
.pkg-popular .pkg-price small { color: var(--mist); }
.pkg-features { list-style: none; margin: 1.1rem 0 1.4rem; padding: 0; display: grid; gap: .55rem; flex: 1; }
.pkg-features li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.pkg-features .ico-sm { color: var(--flame); margin-top: .2rem; }
.pkg-popular .pkg-features .ico-sm { color: var(--volt); }

/* ---------- Why choose us ---------- */
.why {
  display: flex; gap: 1rem; padding: 1.35rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  height: 100%;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.why:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-ico {
  width: 54px; height: 54px; flex: none; display: grid; place-items: center;
  color: #fff; background: var(--g-brand); border-radius: 16px;
  box-shadow: 0 8px 18px rgba(30,111,255,.3);
}
.why:nth-child(even) .why-ico,
.col-md-6:nth-child(even) .why-ico { background: var(--g-flame); box-shadow: 0 8px 18px rgba(255,59,71,.3); }
.why h3 { font-size: 1.04rem; margin: 0 0 .3rem; }
.why p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.tst {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; height: 100%; display: flex; flex-direction: column; gap: .9rem;
  position: relative;
}
.tst-stars { display: inline-flex; gap: .2rem; color: var(--volt); }
.tst-stars .ico-sm { fill: currentColor; }
.tst-quote { font-size: .96rem; color: var(--ink); margin: 0; flex: 1; }
.tst-who strong { font-family: var(--f-display); font-size: .95rem; display: block; }
.tst-who span { color: var(--muted); font-size: .82rem; }
.tst-mark { position: absolute; top: 1.1rem; right: 1.2rem; color: var(--line); }
.tst-mark .ico-lg { fill: currentColor; stroke: none; }

/* ---------- Social feed ---------- */
.social-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative; display: block;
  aspect-ratio: 1/1; color: #fff; background: var(--night);
}
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.social-card:hover img { transform: scale(1.05); }
.social-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent 35%, rgba(6,12,26,.9) 100%);
}
.social-caption { font-size: .9rem; font-weight: 600; margin: 0 0 .3rem; }
.social-tags { color: var(--aqua); font-size: .78rem; font-family: var(--f-util); }
.social-type {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(10,20,40,.7); backdrop-filter: blur(6px);
  color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--f-util); padding: .3rem .7rem; border-radius: 999px;
}
.social-type .ico-sm { color: var(--volt); width: 14px; height: 14px; }

/* ---------- Blog cards ---------- */
.post-card { display: flex; flex-direction: column; color: inherit; }
.post-card:hover { color: inherit; }
.post-media { aspect-ratio: 16/9; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-meta { display: flex; gap: .9rem; align-items: center; font-size: .8rem; color: var(--muted); }
.post-type {
  font-family: var(--f-util); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-size: .68rem; color: #fff; background: var(--g-brand);
  padding: .22rem .6rem; border-radius: 999px;
}
.post-type-offer { background: var(--g-flame); }
.post-type-news { background: var(--g-volt); color: var(--ink); }
.post-title { font-size: 1.1rem; margin: 0; }
.post-excerpt { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }

/* ---------- FAQ ---------- */
.faq .accordion-item {
  border: 1px solid var(--line); border-radius: 14px !important;
  margin-bottom: .8rem; overflow: hidden; background: #fff;
}
.faq .accordion-button {
  font-family: var(--f-display); font-weight: 700; font-size: .98rem; color: var(--ink);
  padding: 1.05rem 1.25rem; background: #fff; box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--electric); background: #F7FAFF; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(0,198,255,.4); }
.faq .accordion-body { color: var(--muted); font-size: .94rem; }

/* ---------- Forms ---------- */
.form-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.form-label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.form-label .req { color: var(--flame); }
.form-control, .form-select {
  min-height: 48px; border-radius: 12px; border: 1.5px solid var(--line);
  font-size: .95rem; padding: .6rem .9rem;
}
textarea.form-control { min-height: 120px; }
.form-control:focus, .form-select:focus {
  border-color: var(--electric); box-shadow: 0 0 0 3px rgba(30,111,255,.18);
}
.form-hint { font-size: .8rem; color: var(--muted); }
.alert-success-x {
  display: flex; gap: .7rem; align-items: flex-start;
  background: #E9FBF0; border: 1px solid #9BE7B8; color: #0D6832;
  border-radius: 14px; padding: 1rem 1.2rem; font-weight: 600;
}
.alert-error-x {
  background: #FFF0F1; border: 1px solid #FFC3C8; color: #B01423;
  border-radius: 14px; padding: 1rem 1.2rem; font-weight: 600;
}
.alert-error-x ul { margin: .3rem 0 0; padding-left: 1.2rem; font-weight: 500; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact / map ---------- */
.contact-info-card {
  background: var(--carbon); color: #EAF1FC; border-radius: var(--radius-lg);
  padding: 1.8rem; height: 100%;
  background-image: radial-gradient(500px 260px at 110% -10%, rgba(0,198,255,.25), transparent 60%);
}
.contact-line { display: flex; gap: .85rem; margin-bottom: 1.1rem; }
.contact-line .ico { color: var(--volt); }
.contact-line a { color: #fff; font-weight: 600; }
.contact-line a:hover { color: var(--aqua); }
.contact-line small { display: block; color: var(--mist); font-family: var(--f-util); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Gallery ---------- */
.g-item { border-radius: 18px; overflow: hidden; display: block; position: relative; cursor: zoom-in; border: 0; padding: 0; width: 100%; background: none; }
.g-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(6,12,26,.85));
  color: #fff; font-size: .83rem; font-weight: 600; text-align: left;
  opacity: 0; transition: opacity var(--speed);
}
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; }
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-pill {
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  font-weight: 700; font-size: .85rem; border-radius: 999px;
  padding: .5rem 1.1rem; min-height: 44px; cursor: pointer;
  transition: all var(--speed);
}
.filter-pill:hover { border-color: var(--electric); color: var(--electric); }
.filter-pill.is-on { background: var(--g-brand); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(30,111,255,.3); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5, 10, 22, .92); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-body { margin: 0; max-width: min(1000px, 94vw); }
.lightbox-body img { max-width: 100%; max-height: 82vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox-body figcaption { color: var(--mist); text-align: center; padding-top: .8rem; font-size: .9rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--line-dark);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: var(--flame); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--g-hero); color: #fff;
  padding: clamp(3rem, 7vw, 4.6rem) 0 clamp(3.4rem, 8vw, 5.2rem);
  position: relative; overflow: hidden;
}
.page-hero .crumb { font-size: .84rem; color: var(--mist); margin-bottom: .7rem; display: inline-flex; gap: .45rem; align-items: center; }
.page-hero .crumb a { color: var(--aqua); }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; margin: 0 0 .5rem; }
.page-hero p { color: var(--mist); max-width: 640px; margin: 0; }

/* ---------- Service detail ---------- */
.svc-detail-body { font-size: 1rem; }
.svc-detail-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .7rem; }
.svc-detail-body ul { padding-left: 1.2rem; display: grid; gap: .35rem; color: var(--ink); }
.svc-detail-body p { color: #3d4a63; }
.svc-fact {
  display: flex; align-items: center; gap: .8rem; padding: .95rem 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: .7rem;
}
.svc-fact .ico { color: var(--electric); }
.svc-fact strong { font-family: var(--f-util); }
.svc-fact small { display: block; color: var(--muted); }

/* ---------- CTA band + footer ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 85% -20%, rgba(255,196,0,.22), transparent 55%),
    radial-gradient(800px 380px at 0% 120%, rgba(0,198,255,.3), transparent 55%),
    linear-gradient(120deg, #12245c 0%, #0A1428 70%);
  color: #fff; padding: clamp(2.8rem, 6vw, 4.2rem) 0;
  border-top: 1px solid var(--line-dark);
}
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem; }
.cta-band-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; margin: 0 0 .35rem; }
.cta-band-sub { color: var(--mist); margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.site-footer { background: #060D1D; color: #B9C6DE; padding: 3.5rem 0 0; font-size: .92rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-about { color: #93A3C2; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 12px; color: #fff; background: rgba(255,255,255,.07);
  border: 1px solid var(--line-dark);
  transition: background var(--speed), transform var(--speed);
}
.footer-social a:hover { background: var(--electric); transform: translateY(-2px); }
.footer-head { font-family: var(--f-util); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--volt); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-links a { color: #B9C6DE; }
.footer-links a:hover { color: var(--aqua); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact .ico-sm { color: var(--volt); margin-top: .25rem; }
.footer-contact a { color: #B9C6DE; }
.footer-contact a:hover { color: var(--aqua); }
.footer-bottom {
  margin-top: 2.6rem; padding: 1.2rem 0; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-size: .8rem; color: #7386A8;
}
.footer-bottom p { margin: 0; }
.footer-tag { font-family: var(--f-util); letter-spacing: .06em; }

/* ---------- Floating buttons ---------- */
.wa-float, .call-float {
  position: fixed; right: 18px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  transition: transform var(--speed) var(--ease);
}
.wa-float { bottom: 18px; background: linear-gradient(140deg, #25D366, #128C7E); }
.call-float { bottom: 88px; background: var(--g-brand); }
.wa-float:hover, .call-float:hover { transform: scale(1.08); color: #fff; }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Video embed ---------- */
.video-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Chrome strip (marquee of services) ---------- */
.chrome-strip {
  background: var(--g-chrome); color: var(--ink);
  padding: .85rem 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid #B9C6DE;
}
.chrome-track { display: inline-flex; gap: 2.6rem; animation: slide 30s linear infinite; will-change: transform; }
.chrome-track span { font-family: var(--f-util); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; display: inline-flex; align-items: center; gap: .6rem; }
.chrome-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); display: inline-block; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bubbles { transform: none !important; }
  .chrome-track { animation: none; }
}

/* ---------- Small screens ---------- */
@media (max-width: 575.98px) {
  .hero { min-height: auto; }
  .hero-actions .btn { flex: 1 1 100%; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; }
  .brand-badge img { width: 76px; }
}
