/* =============================================
   OG MOBILE DETAILING — LUXURY DARK THEME
   ============================================= */

:root {
  --bg:            #080808;
  --bg-2:          #0d0d0d;
  --bg-card:       #141414;
  --bg-card-h:     #1a1a1a;

  /* Brand orange (logo "OG" letters) */
  --gold:          #F5820A;
  --gold-dim:      rgba(245,130,10,0.12);
  --gold-glow:     0 0 48px rgba(245,130,10,0.25);
  --gold-border:   rgba(245,130,10,0.30);

  /* Brand blue (logo glow/city) */
  --blue:          #1E8FFF;
  --blue-dim:      rgba(30,143,255,0.12);
  --blue-glow:     0 0 48px rgba(30,143,255,0.25);
  --blue-border:   rgba(30,143,255,0.30);

  --text:          #ffffff;
  --text-2:        #a0a0a0;
  --text-3:        #555;
  --border:        rgba(255,255,255,0.07);
  --radius:        14px;
  --radius-lg:     22px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --fh:            'Montserrat', sans-serif;
  --fb:            'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ── LAYOUT ────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.sec-tag {
  display: inline-block;
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-tag.blue { color: var(--blue); }

.sec-title {
  font-family: var(--fh);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

.sec-header { margin-bottom: 64px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-sub { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 28px rgba(245,130,10,.45);
}
.btn-gold:hover {
  background: #ff941a;
  transform: translateY(-2px);
  box-shadow: 0 8px 44px rgba(245,130,10,.65);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 28px rgba(30,143,255,.4);
}
.btn-blue:hover {
  background: #40a0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 44px rgba(30,143,255,.6);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

.btn-ig {
  background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
  box-shadow: 0 6px 32px rgba(220,39,67,.38);
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(220,39,67,.55);
}

/* ── NAVIGATION ────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav brand — fixed-width container prevents layout shift on scroll */
.nav-brand {
  position: relative;
  width: 220px;
  height: 44px;
  flex-shrink: 0;
}

.nav-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.nav.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(30,143,255,.35));
  flex-shrink: 0;
}

/* Text logo visible on hero, fades on scroll */
.nav-text-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  opacity: 1;
  transition: opacity .4s var(--ease);
  pointer-events: auto;
}
.nav-text-logo span { color: var(--gold); }
.nav.scrolled .nav-text-logo { opacity: 0; pointer-events: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 18px; }

.nav-phone-link {
  font-family: var(--fh);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-phone-link:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 950;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone { color: var(--gold) !important; margin-top: 8px; font-size: 18px !important; }
.mobile-nav-close {
  position: absolute; top: 22px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  font-size: 20px; cursor: pointer; color: #fff;
  transition: background .2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.15); }

/* ── HERO ──────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease-out forwards;
  will-change: transform;
  filter: brightness(1.05) contrast(1.08) saturate(1.12);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,8,8,.30) 0%,
    rgba(8,8,8,.52) 50%,
    rgba(8,8,8,.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centered logo in hero */
.hero-logo {
  width: 380px;
  max-width: 88vw;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 6px 40px rgba(30,143,255,.65)) drop-shadow(0 0 80px rgba(245,130,10,.35));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245,130,10,.12);
  border: 1px solid rgba(245,130,10,.38);
  border-radius: 50px;
  padding: 9px 22px;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(40px, 7.5vw, 90px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  text-shadow: 0 6px 80px rgba(0,0,0,.7);
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-family: var(--fh);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-handle {
  display: block;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  margin-bottom: 40px;
  transition: color .2s;
}
.hero-handle:hover { color: var(--gold); }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.hero-dot.active {
  width: 26px;
  border-radius: 3px;
  background: var(--gold);
}

/* ── STATS ─────────────────────────────────── */

.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 42px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--fh);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num.blue { color: var(--blue); }

.stat-lbl {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── SERVICES ──────────────────────────────── */

.services { padding: 60px 0 120px; background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card.blue-accent::after { background: var(--blue); }

.svc-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-border);
  box-shadow: var(--gold-glow);
}
.svc-card.blue-accent:hover {
  border-color: var(--blue-border);
  box-shadow: var(--blue-glow);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon.blue { background: var(--blue-dim); }

.svc-icon svg {
  width: 25px; height: 25px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-icon.blue svg { stroke: var(--blue); }

.svc-name {
  font-family: var(--fh);
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 24px;
}
.svc-price {
  font-family: var(--fh);
  font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: .04em;
}
.svc-card.blue-accent .svc-price { color: var(--blue); }
.svc-price--discuss {
  color: var(--text-3) !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── GALLERY ───────────────────────────────── */

.gallery { padding: 60px 0 120px; background: var(--bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}

/* Item 1 dominant (2×2), others fill naturally */
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg-card);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
  filter: brightness(1.05) contrast(1.08) saturate(1.1);
}
.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 18px;
}
.g-item:hover .g-overlay { opacity: 1; }

.g-label {
  font-family: var(--fh);
  font-size: 12.5px; font-weight: 700;
  color: #fff; letter-spacing: .06em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; position: relative; }
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: #fff;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 36px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 10001;
  line-height: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-family: var(--fb);
  font-size: 13px;
  letter-spacing: .06em;
  pointer-events: none;
}

/* ── PROCESS STEPS ─────────────────────────── */

.process { padding: 60px 0 120px; background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: var(--bg-card);
  padding: 52px 40px;
  position: relative;
}

.step-num {
  font-family: var(--fh);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-icon.blue { background: var(--blue-dim); }
.step-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.step-icon.blue svg { stroke: var(--blue); }

.step-title {
  font-family: var(--fh);
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.75;
}

/* ── WHY CHOOSE US ─────────────────────────── */

.why { padding: 60px 0 120px; background: var(--bg-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  display: flex; gap: 22px; padding: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.why-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}
.why-card.blue:hover {
  border-color: var(--blue-border);
  box-shadow: var(--blue-glow);
}

.why-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--gold-dim);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon.blue { background: var(--blue-dim); }
.why-icon svg {
  width: 27px; height: 27px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.why-icon.blue svg { stroke: var(--blue); }

.why-card h3 {
  font-family: var(--fh);
  font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.75; }

/* ── TESTIMONIALS ──────────────────────────── */

.testimonials { padding: 60px 0 120px; background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.review-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--gold); }

.review-text {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 26px;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-author { display: flex; align-items: center; gap: 13px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 13.5px; font-weight: 800;
  color: var(--gold);
}
.review-name { font-family: var(--fh); font-size: 13.5px; font-weight: 700; }
.review-vehicle { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ── ADD-ONS (inside services section) ─────── */
.addons-sub-header {
  margin-top: 80px;
  margin-bottom: 32px;
  text-align: center;
}
.addons-sub-header .sec-sub { margin: 0 auto; text-align: center; }
.addons-sub-title {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 10px 0 12px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, transform .25s;
}
.addon-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.addon-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addon-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.addon-info { flex: 1; }
.addon-name {
  font-family: var(--fh);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.addon-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

.addon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.addon-price {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}
.addon-btn {
  padding: 8px 18px;
  font-size: 11px;
}

/* ── OG VIP ────────────────────────────────── */
.vip {
  padding: 60px 0 120px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.vip::before {
  content: '';
  position: absolute;
  top: 40px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,130,10,.06) 0%, transparent 65%);
  pointer-events: none;
}

.vip-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color .25s;
}
.vip-card--featured {
  border-color: var(--gold-border);
  box-shadow: var(--gold-glow);
}

.vip-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.vip-card-tag {
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.vip-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.vip-card-price {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.vip-card-per {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-3);
}

.vip-card-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.vip-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.vip-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
}
.vip-perks li svg { stroke: var(--gold); flex-shrink: 0; }

.vip-card-btn { width: 100%; justify-content: center; }

.vip-note {
  font-size: 12.5px;
  color: var(--text-3);
}

/* ── BOOKING FORM ──────────────────────────── */
.book {
  padding: 60px 0 120px;
  background: var(--bg-2);
}
.book .sec-header .sec-sub { margin: 0 auto; }

.booking-form {
  max-width: 860px;
  margin: 0 auto;
}

.bf-section {
  margin-bottom: 44px;
}

.bf-section-title {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}
.bf-hint {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-3);
  font-size: 12px;
}

/* Inputs */
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bf-label {
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.bf-req { color: var(--gold); }
.bf-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.bf-input::placeholder { color: var(--text-3); }
.bf-input:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(245,130,10,.1);
}
.bf-input.error { border-color: #ff4f4f; }

/* Selectable pick cards */
.bf-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bf-pick-grid--addons {
  grid-template-columns: repeat(3, 1fr);
}

.bf-pick {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: left;
  user-select: none;
}
.bf-pick:hover {
  border-color: rgba(245,130,10,.35);
  background: var(--bg-card-h);
}
.bf-pick.selected {
  border-color: var(--gold);
  background: rgba(245,130,10,.07);
}
.bf-pick.selected:hover { transform: translateY(-1px); }

.bf-pick-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.bf-pick-check svg { opacity: 0; transition: opacity .15s; }
.bf-pick.selected .bf-pick-check {
  background: var(--gold);
}
.bf-pick.selected .bf-pick-check svg { opacity: 1; }

.bf-pick-name {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding-right: 24px;
  line-height: 1.3;
}
.bf-pick-price {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* Error message */
.bf-error {
  font-size: 12.5px;
  color: #ff4f4f;
  margin-top: 10px;
  display: none;
}
.bf-error.visible { display: block; }

/* Submit */
.bf-submit-wrap {
  text-align: center;
  padding-top: 8px;
}
.bf-submit {
  padding: 16px 48px;
  font-size: 14px;
  gap: 10px;
}
.bf-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
}
.bf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px auto;
  max-width: 320px;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bf-divider::before,
.bf-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.bf-ig-btn {
  padding: 14px 36px;
  font-size: 13.5px;
}

/* ── BOOKING CTA ───────────────────────────── */

.book {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

/* Dual-color glow background */
.book::before {
  content: '';
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,130,10,.07) 0%, transparent 68%);
  pointer-events: none;
}
.book::after {
  content: '';
  position: absolute;
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,143,255,.06) 0%, transparent 68%);
  pointer-events: none;
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.book-content .sec-header { text-align: center; margin-bottom: 36px; }
.book-content .sec-header .sec-sub { margin: 0 auto; }

.book-phone-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 8px;
}
.book-phone-icon {
  width: 54px; height: 54px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.book-phone-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold); fill: none; stroke-width: 2;
}
.book-phone-num {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900; letter-spacing: -.01em;
}
.book-phone-hint {
  font-size: 11.5px; color: var(--text-3);
  letter-spacing: .08em; text-transform: uppercase; margin-top: 1px;
}

.book-area {
  display: flex; align-items: center; gap: 9px;
  margin-top: 16px; font-size: 13.5px; color: var(--text-2);
}
.book-area svg {
  width: 17px; height: 17px;
  stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0;
}

.book-btns {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px;
}

.book-img-col { position: relative; }
.book-img-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  filter: brightness(1.05) contrast(1.08) saturate(1.1);
}
.book-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--gold);
  border-radius: 18px; padding: 20px 26px;
  box-shadow: var(--gold-glow);
}
.book-badge-num { font-family: var(--fh); font-size: 30px; font-weight: 900; color: #fff; line-height: 1; }
.book-badge-txt {
  font-family: var(--fh); font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px;
}

/* ── INSTAGRAM ─────────────────────────────── */

.instagram {
  padding: 80px 0;
  background: var(--bg-card);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Two-tone top border accent */
.instagram-accent {
  width: 120px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--blue));
  border-radius: 3px;
  margin: 0 auto 32px;
}

.ig-eyebrow {
  font-family: var(--fh);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 12px;
}
.ig-handle {
  font-family: var(--fh);
  font-size: clamp(24px, 5vw, 52px);
  font-weight: 900; letter-spacing: -.025em;
  color: #fff; margin-bottom: 10px;
}
.ig-handle a { color: var(--gold); transition: color .2s; }
.ig-handle a:hover { color: var(--blue); }
.ig-sub { font-size: 15px; color: var(--text-2); margin-bottom: 36px; }

/* ── FOOTER ────────────────────────────────── */

.footer { padding: 60px 0 36px; background: #050505; border-top: 1px solid var(--border); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.footer-logo img {
  height: 56px; margin-bottom: 18px;
  filter: drop-shadow(0 2px 10px rgba(30,143,255,.3));
}
.footer-about { font-size: 13.5px; color: var(--text-3); line-height: 1.8; max-width: 290px; }

.footer-col-title {
  font-family: var(--fh);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: var(--text-3); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--text-3); }

/* Gradient divider line */
.footer-gradient-line {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--blue), transparent);
  margin-bottom: 36px;
}

.footer-ig {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-3);
  transition: color .2s;
}
.footer-ig:hover { color: var(--gold); }
.footer-ig svg { width: 16px; height: 16px; fill: currentColor; }

/* ── SCROLL REVEAL ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .26s; }
.reveal.d4 { transition-delay: .34s; }
.reveal.d5 { transition-delay: .42s; }
.reveal.d6 { transition-delay: .50s; }
.reveal.d7 { transition-delay: .58s; }
.reveal.d8 { transition-delay: .66s; }

/* ── KEYFRAMES ─────────────────────────────── */

@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

@keyframes pulseGlow {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.75); }
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 4px 20px rgba(30,143,255,.5)) drop-shadow(0 0 50px rgba(245,130,10,.2)); }
  to   { filter: drop-shadow(0 4px 30px rgba(30,143,255,.7)) drop-shadow(0 0 70px rgba(245,130,10,.35)); }
}

/* ── RESPONSIVE ────────────────────────────── */

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-pick-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .g-item:nth-child(5) { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .bf-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-pick-grid--addons { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone-link { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item:nth-child(1) { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { max-width: 100%; }
  .hero-logo { width: 280px; }
  .bf-row { grid-template-columns: 1fr; }
  .bf-pick-grid--addons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-logo { width: 220px; }
  .vip-plans { grid-template-columns: 1fr; max-width: 440px; }
  .vip-card { padding: 36px 24px; }
  .bf-pick-grid,
  .bf-pick-grid--addons { grid-template-columns: repeat(2, 1fr); }
  .bf-submit { width: 100%; justify-content: center; }
}
