/* =============================================================================
   MistoWax — Main Stylesheet
   WordPress Theme v1.0
   =============================================================================
   
   TABLE OF CONTENTS
   -----------------
   1. CSS Variables / Design Tokens
   2. Base Reset
   3. Navigation
   4. Hero Section
   5. Trust Bar
   6. Booking Section
   7. Services Section
   8. Before / After Sliders
   9. Reviews Section
   10. Contact Bar
   11. Gift Cards
   12. Email List Section
   13. Footer
   14. Utilities & Animations
   15. Tablet (768px+)
   16. Desktop (1024px+)
   17. Wide Desktop (1200px+)

============================================================================= */

:root {
  --black: #060608;
  --surface: #0e0e12;
  --surface2: #14141a;
  --border: #1e1e28;
  --blue: #2a7fff;
  --blue-bright: #4d9fff;
  --blue-dim: rgba(42, 127, 255, 0.08);
  --blue-glow: rgba(42, 127, 255, 0.18);
  --chrome: #c8cdd6;
  --chrome-bright: #e8ecf2;
  --text: #eef0f4;
  --muted: #6b6e7a;
  --muted2: #9094a0;
  --green: #22c55e;
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}
a {
  text-decoration: none;
  transition: 0.5s ease;
  display: inline-block;
}

/* NAV */
nav {
/*   position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--chrome-bright);
  white-space: nowrap;
  line-height: 1;
}
.logo-text span {
  color: var(--blue-bright);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover {
  color: var(--blue-bright);
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 0 16px rgba(42, 127, 255, 0.3);
  white-space: nowrap;
}
.nav-cta:active {
  transform: scale(0.97);
}

/* HERO */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 20px 36px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 6, 8, 0.45) 0%,
      rgba(6, 6, 8, 0.72) 55%,
      rgba(6, 6, 8, 0.98) 100%
    ),
    radial-gradient(
      ellipse 100% 60% at 60% 30%,
      rgba(42, 127, 255, 0.07) 0%,
      transparent 60%
    );
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -1;
  filter: saturate(0.65) brightness(0.9);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 127, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 127, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan 4s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-dim);
  border: 1px solid rgba(42, 127, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 14vw, 72px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero-title .line2 {
  background: linear-gradient(90deg, var(--chrome-bright), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted2);
  margin-bottom: 24px;
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TRUST BAR under hero */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.trust-item {
  background: var(--surface);
  padding: 14px 10px;
  text-align: center;
}
.trust-num {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-bright);
  letter-spacing: 1px;
}
.trust-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* HERO BOOKING TEASER */
.hero-book-teaser {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}
.hero-book-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 3px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 28px rgba(42, 127, 255, 0.38);
  width: 100%;
}
.hero-book-btn:active {
  transform: scale(0.98);
}
.hero-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted2);
  text-decoration: none;
}
.hero-phone-link span {
  color: var(--text);
  font-weight: 500;
}
.hero-phone-link:active {
  opacity: 0.7;
}

/* SECTIONS */
section {
  padding: 60px 20px;
}
.section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue);
}
.section-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 9vw, 48px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title .blue {
  color: var(--blue-bright);
}
.section-sub {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BOOKING SECTION */
.booking-section {
  background: var(--surface);
  padding: 48px 20px;
}
.booking-section .section-sub {
  margin-bottom: 24px;
}

/* Deposit notice */
.deposit-notice {
  background: linear-gradient(
    135deg,
    rgba(42, 127, 255, 0.08),
    rgba(42, 127, 255, 0.04)
  );
  border: 1px solid rgba(42, 127, 255, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.deposit-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.deposit-text {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.7;
}
.deposit-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

/* Steps */
.steps {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.step-item.active .step-dot {
  border-color: var(--blue);
  color: var(--blue-bright);
  background: var(--blue-dim);
  box-shadow: 0 0 14px rgba(42, 127, 255, 0.25);
}
.step-item.done .step-dot {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.step-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.step-item.active .step-label {
  color: var(--blue-bright);
}
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  transition: background 0.3s;
}
.step-line.done {
  background: rgba(42, 127, 255, 0.35);
}
.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
}

/* Book cards */
.book-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 12px;
}
.book-card-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.book-card-title::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: var(--blue);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.svc-btn {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.svc-btn.selected {
  border-color: var(--blue);
  background: var(--blue-dim);
}
.svc-btn:active {
  transform: scale(0.97);
}
.svc-btn-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.svc-btn-price {
  font-size: 11px;
  color: var(--blue-bright);
}

.veh-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.veh-btn {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.veh-btn.selected {
  border-color: var(--blue);
  background: var(--blue-dim);
}
.veh-icon {
  font-size: 22px;
}
.veh-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.veh-btn.selected .veh-label {
  color: var(--blue-bright);
}

.price-est {
  background: var(--surface2);
  border: 1px solid rgba(42, 127, 255, 0.15);
  border-radius: 10px;
  padding: 14px;
  margin-top: 14px;
}
.price-est-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.price-est-row:last-child {
  border-bottom: none;
}
.price-est-key {
  color: var(--muted2);
}
.price-est-val {
  color: var(--blue-bright);
  font-weight: 500;
}
.disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  padding: 10px 12px;
  background: rgba(42, 127, 255, 0.04);
  border-radius: 8px;
  border-left: 2px solid var(--blue);
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 15px;
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  color-scheme: dark;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
}
.form-textarea {
  resize: none;
  height: 88px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 14px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.time-slot {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: all 0.2s;
}
.time-slot.selected {
  border-color: var(--blue);
  color: var(--blue-bright);
  background: var(--blue-dim);
}
.time-slot.unavail {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
}

.ack-wrap {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer;
  padding: 14px;
  background: rgba(42, 127, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ack-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.ack-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.confirm-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 28px rgba(42, 127, 255, 0.35);
}
.confirm-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.confirm-btn:not(:disabled):active {
  transform: scale(0.98);
}
.back-btn-sm {
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 14px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-key {
  color: var(--muted2);
}
.summary-val {
  color: var(--text);
  font-weight: 500;
  text-align: right;
  max-width: 58%;
}
.highlight-pill {
  background: var(--blue-dim);
  border: 1px solid rgba(42, 127, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--blue-bright);
  line-height: 1.6;
}

/* Charge notice */
.charge-notice {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(34, 197, 94, 0.9);
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.charge-notice::before {
  content: "🔒";
  flex-shrink: 0;
}

/* SUCCESS */
.success-screen {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  animation: pop 0.4s ease;
  box-shadow: 0 0 32px rgba(42, 127, 255, 0.3);
}
@keyframes pop {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.success-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--chrome-bright);
}
.success-sub {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto 24px;
}
.confirm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: left;
}
.confirm-card-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.confirm-card-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}
.confirm-card-body strong {
  color: var(--blue-bright);
}
.ig-handle {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--blue-bright);
}

/* SERVICES */
.services-section {
  background: var(--surface);
}
.service-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s;
  border-radius: 0 2px 2px 0;
}
.service-card.open::before {
  transform: scaleY(1);
}
.service-card.open {
  border-color: rgba(42, 127, 255, 0.25);
  background: var(--surface2);
}
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  font-size: 22px;
  margin-right: 12px;
}
.service-info {
  flex: 1;
}
.service-name {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--chrome-bright);
}
.service-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.service-from {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue-bright);
}
.service-chevron {
  font-size: 11px;
  color: var(--muted);
  margin-left: 10px;
  transition: transform 0.25s;
}
.service-card.open .service-chevron {
  transform: rotate(180deg);
}
.service-details {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.service-card.open .service-details {
  display: block;
}
.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted2);
  margin-bottom: 14px;
}
.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.include-tag {
  background: var(--blue-dim);
  border: 1px solid rgba(42, 127, 255, 0.15);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 11px;
  color: var(--blue-bright);
  letter-spacing: 0.5px;
}
.price-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row.header {
  background: var(--surface2);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
}
.price-row .vehicle {
  color: var(--muted2);
}
.price-row .price {
  color: var(--blue-bright);
  font-weight: 500;
}
.book-service-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  margin-top: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

/* BEFORE/AFTER */
.ba-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}
.ba-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  color: #111;
  font-weight: 700;
  letter-spacing: -1px;
}
.ba-label-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.72);
  padding: 4px 10px;
  border-radius: 4px;
  color: #ff6b6b;
  font-weight: 600;
  pointer-events: none;
}
.ba-label-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.72);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--blue-bright);
  font-weight: 600;
  pointer-events: none;
}
.ba-info {
  padding: 14px 16px;
}
.ba-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--chrome-bright);
  margin-bottom: 3px;
}
.ba-sub {
  font-size: 12px;
  color: var(--muted);
}
.ba-hint {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.6;
}

/* REVIEWS */
.reviews-section {
  background: var(--surface);
}
.review-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
  position: relative;
}
.review-quote {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 30px;
  color: var(--blue);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars {
  color: var(--blue-bright);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted2);
  margin-bottom: 12px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--chrome);
}
.review-vehicle {
  font-size: 11px;
  color: var(--muted);
}

/* CONTACT BAR */
.contact-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
}
.contact-bar-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: var(--chrome-bright);
}
.contact-bar-sub {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 16px;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  margin: 0 auto;
}
.contact-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(42, 127, 255, 0.3);
  transition: all 0.2s;
}
.contact-btn-call:active {
  transform: scale(0.98);
}
.contact-btn-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--chrome);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 14px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* GIFT CARDS */
.gift-card {
  background: linear-gradient(135deg, #0a0e18 0%, #0d1525 50%, #0a1020 100%);
  border: 1px solid rgba(42, 127, 255, 0.2);
  border-radius: 18px;
  padding: 26px 20px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.gift-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(42, 127, 255, 0.12),
    transparent 70%
  );
}
.gift-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  animation: shine 4s ease infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 150%;
  }
}
.gift-amount {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--chrome-bright), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
}
.gift-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 14px;
}
.gift-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.gift-btn {
  display: block;
  background: rgba(42, 127, 255, 0.15);
  color: var(--blue-bright);
  border: 1.5px solid rgba(42, 127, 255, 0.3);
  border-radius: 8px;
  padding: 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.gift-btn:active {
  background: rgba(42, 127, 255, 0.25);
}

/* EMAIL LIST */
.email-section {
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(42, 127, 255, 0.07) 0%,
      transparent 70%
    ),
    var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 56px 20px;
}
.email-form p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.email-input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 15px 18px;
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
	width: 100%;
}
.email-input:focus {
  border-color: var(--blue);
}
.email-input::placeholder {
  color: var(--muted);
}
.email-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(42, 127, 255, 0.28);
}
.email-perks {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.perk {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.perk::before {
  content: "✓";
  color: var(--blue-bright);
}

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 20px 28px;
  text-align: center;
}
.footer-logo {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--chrome-bright);
  margin-bottom: 5px;
}
.footer-logo span {
  color: var(--blue-bright);
}
.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-phone {
  font-size: 14px;
  color: var(--blue-bright);
  margin-bottom: 18px;
  text-decoration: none;
  display: block;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--blue-bright);
}
.footer-copy {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.55;
}

.tier-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.tier-block {
  border-radius: 10px;
  padding: 14px 14px 13px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-block.tier-base {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.07);
}

.tier-block.tier-deep {
  background: rgba(42, 127, 255, 0.05);
  border-color: rgba(42, 127, 255, 0.18);
}

.tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier-name {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.tier-block.tier-base .tier-name {
  color: var(--chrome);
}

.tier-block.tier-deep .tier-name {
  color: var(--blue-bright);
}

.tier-badge {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}

.tier-block.tier-deep .tier-badge {
  background: rgba(42, 127, 255, 0.15);
  border: 1px solid rgba(42, 127, 255, 0.25);
  color: var(--blue-bright);
}

.tier-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted2);
}

.tier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tier-tag {
  border-radius: 20px;
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 0.3px;
  line-height: 1;
}

.tier-block.tier-base .tier-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted2);
}

.tier-block.tier-deep .tier-tag {
  background: var(--blue-dim);
  border: 1px solid rgba(42, 127, 255, 0.15);
  color: var(--blue-bright);
}

.tier-plus {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.5px;
  padding-bottom: 2px;
}

.deposit-banner {
  background: linear-gradient(
    135deg,
    rgba(42, 127, 255, 0.07),
    rgba(42, 127, 255, 0.03)
  );
  border: 1px solid rgba(42, 127, 255, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.deposit-banner-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.deposit-banner-text {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
}

.deposit-step-notice {
  background: rgba(42, 127, 255, 0.06);
  border: 1px solid rgba(42, 127, 255, 0.15);
  border-radius: 8px;
  padding: 11px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deposit-step-notice::before {
  content: "•";
  flex-shrink: 0;
}

.ba-cta-block {
  margin-top: 28px;
  background: rgba(42, 127, 255, 0.05);
  border: 1px solid rgba(42, 127, 255, 0.15);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}

.ba-cta-text {
  font-size: 15px;
  color: var(--muted2);
  margin-bottom: 14px;
  line-height: 1.6;
}

.ba-cta-text span {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--chrome-bright);
  margin-top: 3px;
}

.ba-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(42, 127, 255, 0.3);
  transition: all 0.2s;
  margin-bottom: 14px;
}

.ba-cta-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 420px) {
  .tier-split {
    grid-template-columns: 1fr;
  }
}

/* Hide phone text in nav on very small screens */
@media (max-width: 400px) {
  .nav-phone span {
    display: none;
  }
  .nav-phone::after {
    content: "Call";
  }
  .logo-text {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

/* ============================================
   TABLET — 640px and up
   ============================================ */
@media (min-width: 640px) {
  section {
    padding: 64px 32px;
  }
  .booking-section {
    padding: 56px 32px;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .time-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero {
    padding: 90px 32px 48px;
  }
  .hero-title {
    font-size: clamp(52px, 12vw, 80px);
  }
  .hero-sub {
    max-width: 400px;
  }
  .trust-bar {
    max-width: 440px;
  }
  .hero-book-teaser {
    max-width: 440px;
  }
}

/* ============================================
   DESKTOP — 900px and up
   ============================================ */
@media (min-width: 900px) {
  /* Global content cap */
  nav {
    padding: 16px 60px;
  }
  section {
    padding: 96px 60px;
  }
  .booking-section {
    padding: 72px 60px;
  }
  .email-section {
    padding: 72px 60px;
  }
  .contact-bar {
    padding: 40px 60px;
  }
  footer {
    padding: 56px 60px 36px;
  }

  /* Max width content wrapper on wide screens */
  .hero-content,
  .booking-section > *,
  .services-section > *,
  #work > *,
  .reviews-section > *,
  #giftcards > *,
  .email-section > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Nav */
  .logo-text {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .nav-phone {
    font-size: 14px;
  }
  .nav-cta {
    font-size: 14px;
    padding: 10px 22px;
  }

  /* Hero — 2-col layout */
  .hero {
    min-height: 100svh;
    padding: 110px 60px 64px;
    justify-content: center;
    align-items: flex-start;
  }
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0 60px;
    align-items: center;
    max-width: 1100px;
  }
  .hero-left-col {
    grid-column: 1;
  }
  .hero-right-col {
    grid-column: 2;
    grid-row: 1 / span 4;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: center;
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(64px, 7vw, 100px);
    line-height: 0.88;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 17px;
    max-width: 480px;
    margin-bottom: 18px;
  }
  .trust-bar {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-book-teaser {
    max-width: 100%;
  }
  .hero-book-btn {
    font-size: 20px;
    padding: 20px 28px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(42px, 5vw, 64px);
  }

  /* Booking form — max width centered */
  .booking-section > .section-tag,
  .booking-section > .section-title,
  .booking-section > .section-sub,
  .booking-section > .deposit-notice,
  .booking-section > #bookingMain,
  .booking-section > #bSuccess {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .deposit-notice {
    margin-bottom: 28px;
  }
  .time-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Form fields — card row */
  .card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Services — cards constrained */
  .service-card {
    padding: 26px 24px;
  }
  .service-name {
    font-size: 20px;
  }
  .services-section > * {
    max-width: 860px;
  }

  /* Before/after — 2 col grid */
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Reviews — 2 col */
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .review-card {
    margin-bottom: 0;
  }

  /* Contact bar — horizontal */
  .contact-options {
    flex-direction: row;
    max-width: 700px;
    justify-content: center;
  }
  .contact-btn-call,
  .contact-btn-ig {
    flex: 1;
  }

  /* Gift cards — 3 col */
  .gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .gift-card {
    margin-bottom: 0;
  }

  /* Email — horizontal form */
  .email-form p {
    flex-direction: row;
    max-width: 700px;
    gap: 10px;
	width: 100%;
  }
  .email-input {
    text-align: left;
    flex: 1;
  }
  .email-submit {
    flex-shrink: 0;
    padding: 15px 28px;
  }

  /* Footer — horizontal */
  footer {
    text-align: left;
  }
  .footer-inner-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-links {
    justify-content: flex-end;
    margin-bottom: 0;
  }
  .footer-copy {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
}

/* HERO META LINE */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.3px;
}
.hero-meta-dot {
  color: var(--border);
  font-size: 12px;
}

/* HERO STAR RATING */
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.48s forwards;
}
.hero-stars-icons {
  color: #f5c542;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stars-text {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1;
}
.hero-stars-text strong {
  color: var(--text);
  font-weight: 500;
}
.hero-stars-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   WIDE DESKTOP — 1200px and up
   ============================================ */
@media (min-width: 1200px) {
  nav {
    padding: 18px 80px;
  }
  section {
    padding: 108px 80px;
  }
  .booking-section {
    padding: 80px 80px;
  }
  .contact-bar {
    padding: 48px 80px;
  }
  footer {
    padding: 64px 80px 40px;
  }

  .hero {
    padding: 120px 80px 72px;
  }
  .hero-content {
    max-width: 1200px;
  }
  .hero-title {
    font-size: clamp(72px, 6.5vw, 110px);
  }
}
