/* ============================================================
   TRIPLE B'S CAR WASH — GLOBAL STYLES
   ============================================================ */

:root {
  --indigo: #1800AD;
  --magenta: #F62AA0;
  --azure: #6FCAFF;
  --white: #FFFFFF;
  --dark-bg: #0A0060;
  --card-bg: #120080;

  --font-display: 'Abril Fatface', serif;
  --font-sub: 'Lexend Peta', sans-serif;
  --font-body: 'Lexend', sans-serif;

  --maxw: 1200px;
  --radius: 14px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.04;
}

.sub-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--azure);
  font-size: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-sub {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--azure);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  margin-bottom: 22px;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
}

.center {
  text-align: center;
}

.center .lead,
.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-magenta {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 0 20px rgba(246, 42, 160, 0.5);
}

.btn-magenta:hover {
  box-shadow: 0 0 30px rgba(246, 42, 160, 0.8);
}

.btn-azure {
  background: transparent;
  color: var(--azure);
  border-color: var(--azure);
  box-shadow: 0 0 18px rgba(111, 202, 255, 0.35);
}

.btn-azure:hover {
  background: var(--azure);
  color: var(--dark-bg);
  box-shadow: 0 0 28px rgba(111, 202, 255, 0.6);
}

.btn-white {
  background: var(--white);
  color: var(--indigo);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn-row.center {
  justify-content: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 14px 0;
}

.nav.scrolled {
  background: rgba(10, 0, 96, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

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

.nav-logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links > li > a,
.nav-links > li > span {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.82rem;
  color: var(--white);
  cursor: pointer;
  transition: color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a:hover,
.nav-links > li > span:hover {
  color: var(--magenta);
}

/* dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--card-bg);
  border: 1px solid rgba(111, 202, 255, 0.3);
  border-top: 3px solid var(--magenta);
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  color: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown li a:hover {
  background: rgba(246, 42, 160, 0.18);
  color: var(--magenta);
}

.caret {
  font-size: 0.6rem;
}

.nav-cta {
  display: inline-flex;
  padding: 10px 20px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a,
.mobile-menu .m-group-title {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  font-size: 1rem;
  padding: 10px 0;
}

.mobile-menu .m-group-title {
  color: var(--azure);
  font-size: 0.8rem;
  margin-top: 12px;
}

.mobile-menu .m-sub a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
}

.mobile-menu .btn {
  margin-top: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
  padding: 140px 0 120px;
}

.hero-sm {
  min-height: 72vh;
}

/* homepage hero: crossfading background slideshow (effects layer on top) */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-slide::after {
  /* indigo overlay: dark on the left for text legibility,
     lighter on the right so the subject's face shows through */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 0, 96, 0.88) 0%,
    rgba(10, 0, 96, 0.78) 40%,
    rgba(10, 0, 96, 0.42) 72%,
    rgba(10, 0, 96, 0.25) 100%
  );
}

.slide-1 {
  background-image: url('/assets/images/home/woman_driving_1600.webp');
  opacity: 1;
}

.slide-2 {
  background-image: url('/assets/images/home/two_friends_1080.webp');
  opacity: 0;
  animation: heroCross 14s ease-in-out infinite;
}

/* slide-2 fades in over slide-1, then back out — repeating */
@keyframes heroCross {
  0%, 8% { opacity: 0; }
  42%, 50% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slide-2 { animation: none; }
}

/* shimmer / scan line */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 42, 160, 0.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(111, 202, 255, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(111, 202, 255, 0.12),
    rgba(246, 42, 160, 0.10),
    transparent
  );
  transform: skewX(-18deg);
  animation: scan 7s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scan {
  0% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
}

.hero-content.center {
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.02;
  margin-bottom: 22px;
}

.hero-line-1,
.hero-line-3 {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero-line-2 {
  display: block;
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  color: var(--magenta);
  text-shadow: 0 0 40px rgba(246, 42, 160, 0.4);
}

.hero h1.single {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
}

.hero-subhead {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--azure);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  margin-bottom: 14px;
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 10px;
}

/* diagonal slash at hero bottom */
.hero-slash {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--indigo);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

/* ============================================================
   SECTIONS & DIAGONAL DIVIDERS
   ============================================================ */
.section {
  padding: 90px 0;
  position: relative;
}

.section-indigo {
  background: var(--indigo);
}

.section-dark {
  background: var(--dark-bg);
}

/* wash menu section background wallpaper (dark overlay keeps cards readable) */
.wash-menu-bg {
  background-image:
    linear-gradient(rgba(10, 0, 96, 0.68), rgba(10, 0, 96, 0.76)),
    url('/assets/images/home/wallpaper_web_1200.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* same wallpaper, heavier overlay for a subtle hint behind dark sections */
.wallpaper-subtle {
  background-image:
    linear-gradient(rgba(10, 0, 96, 0.84), rgba(10, 0, 96, 0.88)),
    url('/assets/images/home/wallpaper_web_1200.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-diagonal {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.section-pad-extra {
  padding: 120px 0;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee {
  background: var(--magenta);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee span {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-size: 0.95rem;
  padding: 0 6px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-bg);
  padding: 36px 0;
  border-top: 1px solid rgba(111, 202, 255, 0.2);
  border-bottom: 1px solid rgba(111, 202, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--azure);
  font-size: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: rgba(111, 202, 255, 0.5);
}

/* ============================================================
   AMENITY PILLS
   ============================================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row.center {
  justify-content: center;
}

.pill {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--azure);
  color: var(--white);
}

.pill-magenta {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

/* stacked amenity list with triple-chevron (logo motif) bullets */
.flex-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.flex-list li {
  position: relative;
  padding-left: 46px;
  min-height: 26px;
  display: flex;
  align-items: center;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
  color: var(--white);
}

.flex-list li::before {
  content: "›››";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 1;
  background: linear-gradient(90deg, var(--azure), var(--white) 55%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   WASH MENU CARDS
   ============================================================ */
.wash-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--azure);
  background: transparent;
  color: var(--azure);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
  box-shadow: 0 0 20px rgba(246, 42, 160, 0.5);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.wash-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border-top: 5px solid var(--magenta);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wash-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(246, 42, 160, 0.25);
}

.wash-card.featured {
  border-top-color: var(--azure);
  box-shadow: 0 0 0 2px var(--azure), 0 16px 40px rgba(111, 202, 255, 0.3);
}

.best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(246, 42, 160, 0.6);
}

.wash-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.6rem;
  margin-bottom: 6px;
  margin-top: 6px;
}

.wash-tagline {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  color: var(--azure);
  margin-bottom: 18px;
}

/* price callout */
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price .dollar {
  font-family: var(--font-display);
  color: var(--azure);
  font-size: 1.4rem;
}

.price .amount {
  font-family: var(--font-display);
  color: var(--magenta);
  font-size: 3rem;
  line-height: 1;
}

.price .term {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.price-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  color: var(--azure);
  margin-bottom: 2px;
}

.price-block {
  margin-bottom: 14px;
}

.price-divider {
  height: 1px;
  background: rgba(111, 202, 255, 0.25);
  margin: 6px 0 14px;
}

.feature-list {
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 700;
}

.wash-card .btn {
  width: 100%;
  margin-top: auto;
}

/* tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ============================================================
   UPSELL / PROMO BANNERS
   ============================================================ */
.upsell-banner {
  margin-top: 44px;
  background: linear-gradient(90deg, var(--magenta), #c01f80);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  color: var(--white);
  box-shadow: 0 0 30px rgba(246, 42, 160, 0.4);
}

.promo-strip {
  background: var(--azure);
  color: var(--dark-bg);
  padding: 22px 0;
  text-align: center;
}

.promo-strip .promo-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.promo-item {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.promo-item .big {
  font-family: var(--font-display);
  color: var(--magenta);
  font-size: 1.5rem;
  display: block;
}

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.step-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  border-left: 4px solid var(--magenta);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--azure);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--white);
}

.step-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
}

/* numbered process list (8 step) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.process-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  border-top: 4px solid var(--azure);
}

.process-item .pnum {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 12px;
}

.process-item p {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  color: var(--white);
}

/* ============================================================
   TWO-COLUMN TEASER CARDS
   ============================================================ */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.teaser-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.teaser-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 38px 30px;
  border-top: 5px solid var(--magenta);
  display: flex;
  flex-direction: column;
}

.teaser-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.teaser-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  flex-grow: 1;
}

/* ============================================================
   VALUE / BENEFIT CARDS
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-bottom: 4px solid var(--azure);
}

.benefit-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--azure);
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ============================================================
   SERVICE BULLET LIST
   ============================================================ */
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 820px;
}

.bullet-item {
  position: relative;
  padding: 16px 18px 16px 44px;
  background: var(--card-bg);
  border-radius: 10px;
  font-size: 1rem;
}

.bullet-item::before {
  content: "»";
  position: absolute;
  left: 18px;
  color: var(--magenta);
  font-weight: 700;
  font-size: 1.2rem;
}

.note-box {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--card-bg);
  border-left: 4px solid var(--magenta);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.note-box strong {
  color: var(--azure);
}

/* ============================================================
   PRICE CARDS (full service / detailing)
   ============================================================ */
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 34px 28px;
  border-top: 5px solid var(--magenta);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.price-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  flex-grow: 1;
}

.price-card .price {
  justify-content: center;
}

.price-card .btn {
  margin-top: 20px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--indigo), var(--card-bg));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .info {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--azure);
  margin-top: 20px;
  font-size: 0.95rem;
}

/* ============================================================
   FAQ ACCORDION (pure CSS via <details>)
   ============================================================ */
.faq-wrap {
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 14px;
  border-left: 4px solid var(--magenta);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--azure);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
  color: var(--magenta);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  border-top: 5px solid var(--magenta);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--azure);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark-bg);
  border: 1px solid rgba(111, 202, 255, 0.35);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(246, 42, 160, 0.2);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select option {
  background: var(--dark-bg);
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--magenta);
}

.form-wrap .btn {
  margin-top: 24px;
}

/* contact two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

.info-panel {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 5px solid var(--azure);
}

.info-panel h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.info-block {
  margin-bottom: 22px;
}

.info-block .info-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--azure);
  margin-bottom: 6px;
}

.info-block p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--azure);
  box-shadow: 0 0 30px rgba(111, 202, 255, 0.3);
  margin-top: 30px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.location-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  border-top: 5px solid var(--magenta);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.location-card .info-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--azure);
  margin-top: 18px;
  margin-bottom: 4px;
}

.location-card .big-info {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand .tagline {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--azure);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--magenta);
}

.footer-contact {
  text-align: right;
}

.footer-contact .info-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--azure);
  margin-top: 12px;
  margin-bottom: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  border-top: 3px solid var(--magenta);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--azure);
}

/* ============================================================
   IMAGE SLOTS / FLEET
   ============================================================ */
.img-slot {
  background: var(--card-bg);
  border: 2px dashed var(--azure);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
  color: var(--azure);
}

.img-slot .slot-icon {
  font-size: 2.2rem;
  opacity: 0.8;
}

.img-slot .slot-label {
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--azure);
}

.img-slot .slot-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.img-slot.tall {
  min-height: 360px;
}

.img-slot.wide {
  min-height: 320px;
}

/* media + text split layout */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.media-split.reverse .media-text {
  order: 2;
}

.media-split.stretch {
  align-items: stretch;
}

/* stacked teaser cards (one column beside an image) */
.teaser-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}

.teaser-stack .teaser-card {
  flex: 1;
}

/* electric glow — pulses between magenta and azure */
.teaser-card.electric {
  box-shadow: 0 0 20px rgba(246, 42, 160, 0.45), 0 0 44px rgba(111, 202, 255, 0.15);
  animation: electricPulse 2.6s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.teaser-card.electric:hover {
  transform: translateY(-4px);
}

@keyframes electricPulse {
  0%, 100% {
    box-shadow: 0 0 18px rgba(246, 42, 160, 0.40), 0 0 38px rgba(111, 202, 255, 0.14);
    border-top-color: var(--magenta);
  }
  50% {
    box-shadow: 0 0 36px rgba(246, 42, 160, 0.80), 0 0 64px rgba(111, 202, 255, 0.40);
    border-top-color: var(--azure);
  }
}

@media (prefers-reduced-motion: reduce) {
  .teaser-card.electric {
    animation: none;
  }
}

.media-text h2 {
  text-align: left;
}

/* fleet ribbon banner (echoes the flyer's pink ribbon) */
.fleet-ribbon {
  background: var(--magenta);
  text-align: center;
  padding: 18px 0;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  box-shadow: 0 0 26px rgba(246, 42, 160, 0.45);
}

/* payment acceptance chips */
.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.pay-chip {
  background: var(--white);
  color: var(--indigo);
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-contact {
    text-align: center;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .media-split {
    grid-template-columns: 1fr;
  }
  .media-split.reverse .media-text {
    order: 0;
  }
  .media-text h2 {
    text-align: center;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .cards-grid,
  .cards-grid.two,
  .steps-grid,
  .teaser-grid,
  .teaser-grid.three,
  .benefit-grid,
  .price-cards,
  .bullet-grid,
  .form-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 16px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 120px 0 90px;
    min-height: auto;
  }
  .promo-strip .promo-grid {
    gap: 26px;
  }
  .form-wrap {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 18px;
  }
}
