/* ═══════════════════════════════════════════════
   ALL DONE — Car Wash & Detailing
   Main.css — Complete Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --gold:       #C9A84C;
  --gold-lt:    #FFD700;
  --gold-dim:   rgba(201,168,76,.18);
  --teal:       #00E5C8;
  --ink:        #0A0A0A;
  --ink2:       #111111;
  --ink3:       #1A1A1A;
  --white:      #FFFFFF;
  --muted:      rgba(255,255,255,.45);
--ff-head: 'Inter', sans-serif;
--ff-body: 'Inter', sans-serif;
  --radius:     14px;
  --radius-lg:  20px;
  --trans:      .35s cubic-bezier(.4,0,.2,1);
  --section-px: 6%;
  --section-py: 100px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--section-px); height: 68px;
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background var(--trans);
}
nav.scrolled { background: rgba(10,10,10,.97); }

.logo { 
  height: 50px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen; /* black background becomes invisible */
  opacity: 1;
}

.nav-links {
  display: flex; gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: .55rem 1.5rem; border-radius: 40px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.35);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.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 menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 3rem; color: var(--white);
  letter-spacing: .06em;
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--section-px) 200px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?w=1920&q=80');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.75) 55%,
    rgba(10,10,10,.4) 100%
  );
}
.hero-bg-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 280px; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--ink));
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold-dim);
  padding: .35rem .9rem; border-radius: 40px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  animation: fadeUp .6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.8)} }

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: .93; letter-spacing: .02em; text-transform: uppercase;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.55);
  color: transparent;
}

.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 460px;
  animation: fadeUp .7s .2s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.8rem;
  animation: fadeUp .7s .3s ease both;
}

/* Animated border button */
.btn-animated {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  color: var(--white);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  overflow: hidden;
  transition: color var(--trans), background var(--trans);
}
.btn-animated span.line {
  position: absolute; display: block;
}
.btn-animated span.line:nth-child(1) {
  top: 0; left: -100%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  animation: borderFlow1 2s linear infinite;
}
.btn-animated span.line:nth-child(2) {
  top: -100%; right: 0; width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: borderFlow2 2s linear infinite .5s;
}
.btn-animated span.line:nth-child(3) {
  bottom: 0; right: -100%; width: 100%; height: 2px;
  background: linear-gradient(270deg, transparent, var(--gold));
  animation: borderFlow3 2s linear infinite 1s;
}
.btn-animated span.line:nth-child(4) {
  bottom: -100%; left: 0; width: 2px; height: 100%;
  background: linear-gradient(360deg, transparent, var(--gold));
  animation: borderFlow4 2s linear infinite 1.5s;
}
@keyframes borderFlow1 { 0%{left:-100%} 50%,100%{left:100%} }
@keyframes borderFlow2 { 0%{top:-100%} 50%,100%{top:100%} }
@keyframes borderFlow3 { 0%{right:-100%} 50%,100%{right:100%} }
@keyframes borderFlow4 { 0%{bottom:-100%} 50%,100%{bottom:100%} }
.btn-animated:hover { background: var(--white); color: var(--ink); }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--ink);
  padding: .9rem 2.2rem; border-radius: 40px;
  font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 0 28px rgba(201,168,76,.25);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,215,0,.3);
}
.btn-primary svg { transition: transform var(--trans); }
.btn-primary:hover svg { transform: translateX(3px); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-top: 3.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg); overflow: hidden;
  animation: fadeUp .7s .4s ease both;
  width: fit-content;
}
.hstat {
  display: flex; flex-direction: column; align-items: center;
  gap: .15rem; padding: 1.2rem 2rem;
  border-right: 1px solid var(--gold-dim);
  transition: background var(--trans);
}
.hstat:last-child { border-right: none; }
.hstat:hover { background: rgba(201,168,76,.05); }
.hstat-num {
  font-family: var(--ff-head); font-size: 2rem;
  color: var(--gold); line-height: 1;
}
.hstat-label {
  font-size: .68rem; color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

/* ═══════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════ */
.section-wrap {
  padding: var(--section-py) var(--section-px);
}
.section-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.section-tag::before { content: '—— '; }
.section-tag::after  { content: ' ——'; }
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .95; text-transform: uppercase; letter-spacing: .02em;
}
.section-heading .gold { color: var(--gold); }
.section-sub {
  color: var(--muted); font-size: .98rem;
  line-height: 1.75; max-width: 540px; margin-top: .8rem;
}
.tc { text-align: center; }
.tc .section-sub { margin-left: auto; margin-right: auto; }

/* Divider line */
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}
.tc .gold-line { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
#services { background: var(--ink2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.srv-card {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  position: relative; overflow: hidden;
  transition: background var(--trans);
  cursor: default;
}
.srv-card:nth-child(3n) { border-right: none; }
.srv-card:nth-child(4), .srv-card:nth-child(5), .srv-card:nth-child(6) { border-bottom: none; }

.srv-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0 0, rgba(201,168,76,.07), transparent 65%);
  opacity: 0; transition: opacity var(--trans);
}
.srv-card:hover { background: rgba(255,255,255,.02); }
.srv-card:hover::before { opacity: 1; }

.srv-icon {
  width: 48px; height: 48px; border-radius: 11px;
  background: rgba(201,168,76,.07);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background var(--trans), border-color var(--trans);
}
.srv-card:hover .srv-icon {
  background: rgba(201,168,76,.14);
  border-color: rgba(201,168,76,.4);
}

.srv-name {
  font-family: var(--ff-head);
  font-size: 1.5rem; letter-spacing: .04em;
  margin-bottom: .4rem;
}
.srv-desc {
  font-size: .85rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1rem;
}
.srv-includes { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.2rem; }
.srv-includes li {
  font-size: .78rem; color: rgba(255,255,255,.38);
  display: flex; align-items: center; gap: .45rem;
}
.srv-includes li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.srv-price {
  font-family: var(--ff-head); font-size: 1.6rem;
  color: var(--gold);
  border-top: 1px solid var(--gold-dim);
  padding-top: .8rem; margin-top: auto;
}
.srv-price span { font-family: var(--ff-body); font-size: .75rem; color: rgba(255,255,255,.3); font-weight: 400; }
.srv-popular {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--ink);
  font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
#how { background: var(--ink); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 25px; left: 26px; right: 26px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), var(--gold-dim), transparent);
  z-index: 0;
}

.step {
  display: flex; flex-direction: column;
  gap: .9rem; padding: 0 1.5rem 0 0;
  position: relative; z-index: 1;
}

.step-num-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.step:hover .step-num-wrap {
  background: rgba(201,168,76,.1);
  box-shadow: 0 0 24px rgba(201,168,76,.2);
}
.step-num {
  font-family: var(--ff-head); font-size: 1.3rem; color: var(--gold);
}
.step-title {
  font-family: var(--ff-head); font-size: 1.6rem;
  letter-spacing: .04em; line-height: 1;
  margin-top: .3rem;
}
.step-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
#why { background: var(--ink2); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  margin-top: 3rem;
}

/* Video block */
.why-video-block {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.why-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 9 / 16;
  max-height: 540px;
  background: #050505;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
/* landscape video? change to: aspect-ratio: 16/9; max-height: none; */

.why-video {
  width: 100%; height: 100%;
  display: block; object-fit: cover; border: none;
}

/* Mute button — bottom-right corner only */
.vid-mute-btn {
  position: absolute; bottom: .85rem; right: .85rem; z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
  backdrop-filter: blur(6px);
}
.vid-mute-btn:hover {
  background: rgba(201,168,76,.35);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* Corner accents */
.vid-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid;
  z-index: 2; pointer-events: none;
}
.vid-corner.tl { top: 0;    left: 0;   border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.vid-corner.tr { top: 0;    right: 0;  border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.vid-corner.bl { bottom: 0; left: 0;   border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.vid-corner.br { bottom: 0; right: 0;  border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

/* Stats row */
.vid-stats {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-dim); border-radius: var(--radius); overflow: hidden;
}
.vid-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: 1rem .5rem; background: rgba(255,255,255,.02);
  transition: background var(--trans);
}
.vid-stat:hover { background: rgba(201,168,76,.05); }
.vid-stat-num   { font-family: var(--ff-head); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.vid-stat-label { font-size: .65rem; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; }
.vid-stat-sep   { width: 1px; height: 40px; background: var(--gold-dim); flex-shrink: 0; }

/* Decorative gold corner accents */
.vid-corner {
  position: absolute; width: 18px; height: 18px;
  border-color: var(--gold); border-style: solid;
  z-index: 2; pointer-events: none;
}
.vid-corner.tl { top:  0; left:  0; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.vid-corner.tr { top:  0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.vid-corner.bl { bottom: 0; left:  0; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.vid-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

/* Mini stats row below video */
.vid-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  overflow: hidden;
}
.vid-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: .2rem;
  padding: 1rem .5rem;
  background: rgba(255,255,255,.02);
  transition: background var(--trans);
}
.vid-stat:hover { background: rgba(201,168,76,.05); }
.vid-stat-num {
  font-family: var(--ff-head); font-size: 1.8rem;
  color: var(--gold); line-height: 1;
}
.vid-stat-label {
  font-size: .65rem; color: rgba(255,255,255,.38);
  letter-spacing: .1em; text-transform: uppercase;
}
.vid-stat-sep {
  width: 1px; height: 40px;
  background: var(--gold-dim); flex-shrink: 0;
}

.why-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(201,168,76,.07);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.why-text h4 { font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.why-text p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   BEFORE / AFTER SLIDER
   ═══════════════════════════════════════════════ */
#transform { background: var(--ink); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 4/3;
  position: relative;
  cursor: ew-resize;
  user-select: none;
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.ba-card:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

/* AFTER layer — sits at the back, fills full card */
.ba-after-layer {
  position: absolute; inset: 0;
}
.ba-after-layer img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* BEFORE layer — clips from left, reveals after as you drag right */
.ba-before-layer {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%; overflow: hidden;
  z-index: 2;
}
.ba-before-inner {
  position: absolute; top: 0; left: 0; bottom: 0;
  /* must match card width so image doesn't squish when layer clips */
  width: var(--card-w, 400px);
}
.ba-before-inner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* drag handle line + circle */
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--white);
  z-index: 4; pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,.6);
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
  letter-spacing: -.05em;
}

/* BEFORE / AFTER pill badges */
.ba-label-badge {
  position: absolute; bottom: .85rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 20px; z-index: 5;
}
.ba-label-badge.before { left: .85rem; }
.ba-label-badge.after  { right: .85rem; }

/* Card title */
.ba-card-title {
  position: absolute; top: .85rem; left: 0; right: 0;
  text-align: center; z-index: 5;
  font-family: var(--ff-head); font-size: .9rem;
  color: rgba(255,255,255,.85); letter-spacing: .18em;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
  pointer-events: none;
}

/* Emoji fallback for card 3 (no real image yet) */
.ba-emoji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: .2;
}

/* ═══════════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════════ */
#packages { background: var(--ink2); }

.vehicle-tabs {
  display: flex; justify-content: center;
  margin: 2.5rem 0 3rem;
}
.vtab-wrap {
  display: inline-flex;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: 5px; gap: 4px;
}
.vtab {
  padding: .6rem 1.8rem; border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); background: transparent;
  transition: all var(--trans); white-space: nowrap;
}
.vtab.active {
  background: var(--teal); color: var(--ink);
  box-shadow: 0 0 22px rgba(0,229,200,.3);
}
.vtab:hover:not(.active) { color: rgba(255,255,255,.75); background: rgba(255,255,255,.05); }

.pkg-panel { display: none; }
.pkg-panel.active { display: block; }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pkg-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2.4rem 2rem 2rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.pkg-card:hover { transform: translateY(-6px); }
.pkg-card.basic { background: #0d0d0d; }
.pkg-card.basic:hover { box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.pkg-card.value {
  background: linear-gradient(160deg, #1c1005 0%, #0e0702 100%);
  border-color: rgba(201,168,76,.2);
}
.pkg-card.value:hover { border-color: rgba(201,168,76,.5); box-shadow: 0 20px 50px rgba(201,168,76,.07); }
.pkg-card.premium {
  background: linear-gradient(160deg, #041a18 0%, #020d0c 100%);
  border-color: rgba(0,229,200,.18);
}
.pkg-card.premium:hover { border-color: rgba(0,229,200,.45); box-shadow: 0 20px 50px rgba(0,229,200,.07); }

.pkg-popular {
  position: absolute; top: -1px; right: 2rem;
  background: var(--teal); color: var(--ink);
  font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 0 0 12px 12px;
}
.pkg-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .8rem; margin-top: .3rem;
}
.pkg-label.basic-col { color: rgba(255,255,255,.35); }
.pkg-label.value-col { color: var(--gold); }
.pkg-label.premium-col { color: var(--teal); }

.pkg-price {
  display: flex; align-items: flex-start; gap: .2rem;
  margin-bottom: 1.8rem; line-height: 1;
}
.pkg-rupee { font-size: 1.3rem; color: rgba(255,255,255,.45); margin-top: .35rem; }
.pkg-amount { font-family: var(--ff-head); font-size: 3rem; letter-spacing: -.02em; line-height: 1; }

.pkg-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 1.5rem; }

.pkg-features {
  flex: 1; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem;
}
.pkg-features li {
  font-size: .86rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: .7rem;
}
.ck-wrap {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}
.basic  .ck-wrap { background: rgba(255,255,255,.07); color: rgba(255,255,255,.3); }
.value  .ck-wrap { background: rgba(201,168,76,.12); color: var(--gold); }
.premium .ck-wrap { background: rgba(0,229,200,.1);  color: var(--teal); }
.pkg-features li.dim { color: rgba(255,255,255,.22); }
.pkg-features li.dim .ck-wrap { background: rgba(255,255,255,.03); color: rgba(255,255,255,.12); }

.pkg-btn {
  display: block; text-align: center; padding: .9rem;
  border-radius: 40px; font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all var(--trans); margin-top: auto;
}
.pkg-btn.basic-btn   { border: 1px solid rgba(255,255,255,.14); color: var(--white); }
.pkg-btn.basic-btn:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.pkg-btn.value-btn   { border: 1px solid rgba(201,168,76,.35); color: var(--gold); }
.pkg-btn.value-btn:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }
.pkg-btn.premium-btn { background: var(--teal); color: var(--ink); border: none; }
.pkg-btn.premium-btn:hover { background: #1fffd8; box-shadow: 0 0 28px rgba(0,229,200,.3); }

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
#reviews { background: var(--ink); }

/* Google summary bar */
.g-summary {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  margin: 1.8rem auto 2.8rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-dim);
  border-radius: 50px; padding: .75rem 2rem;
  width: fit-content;
}
.g-logo { height: 20px; filter: brightness(0) invert(1); opacity: .7; }
.g-sep  { width: 1px; height: 18px; background: var(--gold-dim); }
.g-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: .06em; }
.g-rating {
  font-family: var(--ff-head); font-size: 1.5rem;
  color: var(--gold); line-height: 1;
}
.g-total { font-size: .78rem; color: rgba(255,255,255,.35); }
.g-write {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim);
  padding: .32rem .85rem; border-radius: 20px;
  transition: background var(--trans), border-color var(--trans);
}
.g-write:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }

/* Masonry-style grid — equal columns, cards self-height */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: .5rem;
  align-items: start;          /* key: cards don't stretch to row height */
}

/* Individual card */
.review-card {
  background: var(--ink2);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.review-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* Large quote mark watermark */
.review-card::after {
  content: '\201C';
  position: absolute; top: .6rem; right: 1.1rem;
  font-size: 5.5rem; color: rgba(201,168,76,.05);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none; user-select: none;
}

/* Google G icon top-right */
.review-g-icon {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M44.5 20H24v8.5h11.8C34.7 33.9 30.1 37 24 37c-7.2 0-13-5.8-13-13s5.8-13 13-13c3.1 0 5.9 1.1 8.1 2.9l6.4-6.4C34.6 4.1 29.6 2 24 2 11.8 2 2 11.8 2 24s9.8 22 22 22c11 0 21-8 21-22 0-1.3-.2-2.7-.5-4z'/%3E%3Cpath fill='%23EA4335' d='M6.3 14.7l7 5.1C15.1 16 19.2 13 24 13c3.1 0 5.9 1.1 8.1 2.9l6.4-6.4C34.6 4.1 29.6 2 24 2 16.3 2 9.7 7.4 6.3 14.7z'/%3E%3Cpath fill='%23FBBC05' d='M24 46c5.9 0 10.9-2 14.5-5.4l-6.7-5.5C29.8 36.9 27 38 24 38c-6 0-10.6-3.9-11.7-9.2l-7 5.4C8.3 41.5 15.5 46 24 46z'/%3E%3Cpath fill='%2334A853' d='M44.5 20H24v8.5h11.8c-1 3-3.1 5.4-5.8 7l6.7 5.5C41 37.3 45 31.3 45 24c0-1.3-.2-2.7-.5-4z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: .75; z-index: 2; flex-shrink: 0;
}

/* Header row */
.review-header { display: flex; align-items: center; gap: .75rem; padding-right: 1.6rem; }

/* Avatar circle — unique colours per letter */
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,.08);
}
.av-P { background: #4285F4; color: #fff; }
.av-S { background: #34A853; color: #fff; }
.av-R { background: #EA4335; color: #fff; }
.av-M { background: #9C27B0; color: #fff; }
.av-D { background: #FF6D00; color: #fff; }
.av-V { background: #00897B; color: #fff; }
.av-default { background: var(--gold); color: var(--ink); }

.review-name { font-weight: 600; font-size: .9rem; line-height: 1.2; }
.review-meta { font-size: .72rem; color: rgba(255,255,255,.32); margin-top: .15rem; }

/* Stars */
.review-stars { color: #FBBC04; font-size: .92rem; letter-spacing: .05em; }

/* Review text — clamped, expandable */
.review-text {
font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  font-style: italic;

  max-height: 7rem; /* ~4 lines */
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}
.review-card:hover .review-text {
  max-height: 30rem; /* large enough for full review */
}
.review-text.expanded {
  display: block;            /* override clamp */
  -webkit-line-clamp: unset;
}
.review-text:hover {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Read more / less button */
.review-toggle {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--ff-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .3rem;
  transition: color var(--trans);
  align-self: flex-start;
}
.review-toggle:hover { color: var(--gold-lt); }
.review-toggle .arrow { transition: transform var(--trans); display: inline-block; }
.review-toggle.open .arrow { transform: rotate(180deg); }


/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
#cta {
  background: var(--ink2);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 90px var(--section-px);
  text-align: center;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-tag { color: var(--gold); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; margin-bottom: .8rem; }
.cta-h {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .92; letter-spacing: .02em; margin-bottom: 1rem;
}
.cta-h .outline { -webkit-text-stroke: 2px var(--gold); color: transparent; }
.cta-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: var(--white);
  padding: .9rem 1.8rem; border-radius: 40px;
  font-weight: 700; font-size: .88rem; letter-spacing: .06em;
  transition: filter var(--trans), transform var(--trans);
}
.btn-wa:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact { background: var(--ink); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(201,168,76,.07); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem;
}
.contact-item p, .contact-item a {
  font-size: .9rem; color: var(--muted); line-height: 1.55;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-dim);
  border-radius: 9px; padding: .82rem 1rem;
  color: var(--white); font-family: var(--ff-body); font-size: .9rem;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--ink2); color: var(--white); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--gold-dim);
  padding: 70px var(--section-px) 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { font-family: var(--ff-head); font-size: 1.8rem; letter-spacing: .08em; margin-bottom: .7rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.72; max-width: 230px; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .8rem;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.06); }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { color: rgba(255,255,255,.4); font-size: .83rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gold-dim); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.28); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .76rem; color: rgba(255,255,255,.28); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: floatBob 3s ease-in-out infinite;
}
@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card:nth-child(3n) { border-right: 1px solid var(--gold-dim); }
  .srv-card:nth-child(2n) { border-right: none; }
  .srv-card:nth-child(4), .srv-card:nth-child(5), .srv-card:nth-child(6) { border-bottom: 1px solid var(--gold-dim); }
  .srv-card:nth-child(5), .srv-card:nth-child(6) { border-bottom: none; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .ba-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-px: 5%; --section-py: 70px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { width: 100%; }
  .hstat { flex: 1; padding: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { border-right: none !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-stats-block { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 3.2rem; }
  .hero-stats { flex-wrap: wrap; }
  .vtab { padding: .55rem 1rem; font-size: .72rem; }
}
