/* ================================================
   THE ARDSLEY CARWASH — Production Stylesheet
   Brand: Playful · Community · Speed · Care
   ================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== TOKENS ===== */
:root {
  /* Primary */
  --red: #EE3A23;
  --yellow: #FACA2A;
  --blue: #1E79AE;

  /* Secondary */
  --coral: #F15942;
  --mint: #CFE7CD;

  /* Neutrals */
  --navy: #0f2a44;
  --navy-deep: #0a1f33;
  --slate: #4a5568;
  --gray: #718096;
  --light: #f7f8fa;
  --light-warm: #fef9f0;
  --white: #ffffff;
  --border: #e2e8f0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-color: 0 8px 32px rgba(30,121,174,0.2);

  /* Radii */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition: 0.3s var(--ease);
  --transition-bounce: 0.5s var(--ease-bounce);
}


/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes slideInBubble {
  0% { transform: translateY(100px) scale(0); opacity: 0; }
  20% { opacity: 0.5; transform: translateY(0) scale(0.8); }
  80% { opacity: 0.35; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes colorCycle {
  0%, 100% { color: var(--red); }
  33% { color: var(--yellow); }
  66% { color: var(--blue); }
}


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-img {
  height: 56px;
  width: auto;
  transition: transform var(--transition);
}
.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

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

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before {
  opacity: 1;
  animation: shimmer 0.8s ease forwards;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #d42f1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(238,58,35,0.35);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
}
.btn-yellow:hover {
  background: #e5b820;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(250,202,42,0.4);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: #166494;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,121,174,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-nav { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-card { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,42,68,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 320px; height: 100vh;
    background: #fff;
    padding: 100px 36px 36px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: fadeInRight 0.3s ease;
  }

  .nav-links.open a {
    font-size: 1.15rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a:last-child { border-bottom: none; }
}


/* ===== HERO ===== */
/*
  Image controls — tweak these to adjust the look:
  --hero-img-opacity   : how visible the photo is (0 = hidden, 1 = full)
  --hero-overlay-color : the tint color layered over the image
  --hero-overlay-opacity: how strong the color overlay is
*/
:root {
  --hero-img-opacity: 0.72;
  --hero-overlay-color: 30, 121, 174;   /* = var(--blue) in RGB */
  --hero-overlay-opacity: 0.62;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Photo layer */
.hero-bg-image {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  margin-top: 116px;
  width: 100%;
  height: auto;
  display: block;
  opacity: var(--hero-img-opacity);
  z-index: 0;
}

/* Color overlay — blue tint blended over the photo */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--hero-overlay-color), var(--hero-overlay-opacity)) 0%,
    rgba(15, 42, 68, 0.58) 50%,
    rgba(10, 31, 51, 0.78) 100%
  );
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(250,202,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(238,58,35,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  z-index: 2;
}

/* Floating bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  animation: slideInBubble linear infinite;
}

/* Large bubbles */
.bubble:nth-child(1) { left: 10%; width: 70px; height: 70px; animation-duration: 10s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 45%; width: 90px; height: 90px; animation-duration: 12s; animation-delay: 4s; }
.bubble:nth-child(3) { left: 75%; width: 60px; height: 60px; animation-duration: 11s; animation-delay: 3s; }
/* Medium bubbles */
.bubble:nth-child(4) { left: 25%; width: 40px; height: 40px; animation-duration: 14s; animation-delay: 2s; }
.bubble:nth-child(5) { left: 88%; width: 50px; height: 50px; animation-duration: 13s; animation-delay: 5s; }
.bubble:nth-child(6) { left: 55%; width: 35px; height: 35px; animation-duration: 15s; animation-delay: 1s; }
/* Small bubbles */
.bubble:nth-child(7) { left: 5%; width: 14px; height: 14px; animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(8) { left: 18%; width: 10px; height: 10px; animation-duration: 11s; animation-delay: 3.5s; }
.bubble:nth-child(9) { left: 35%; width: 16px; height: 16px; animation-duration: 8s; animation-delay: 6s; }
.bubble:nth-child(10) { left: 52%; width: 12px; height: 12px; animation-duration: 10s; animation-delay: 1.5s; }
.bubble:nth-child(11) { left: 68%; width: 18px; height: 18px; animation-duration: 9s; animation-delay: 4.5s; }
.bubble:nth-child(12) { left: 82%; width: 10px; height: 10px; animation-duration: 12s; animation-delay: 2.5s; }
.bubble:nth-child(13) { left: 93%; width: 14px; height: 14px; animation-duration: 10s; animation-delay: 7s; }
.bubble:nth-child(14) { left: 40%; width: 8px; height: 8px; animation-duration: 7s; animation-delay: 0.8s; }
.bubble:nth-child(15) { left: 62%; width: 10px; height: 10px; animation-duration: 8s; animation-delay: 5.5s; }

.hero .container {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  position: relative;
  z-index: 4;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 180px;           /* clear fixed navbar + promo banner */
  padding-bottom: 130px;        /* clear partners strip at bottom */
}

.hero-content {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,202,42,0.15);
  color: var(--yellow);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(250,202,42,0.2);
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.hero h1 .highlight-red { color: var(--red); }
.hero h1 .highlight-yellow { color: var(--yellow); }

/* ── Cycling headline phrases ── */
.hero-headline {
  position: relative;
  min-height: 3.6em;
  display: block;
}
.hero-phrase {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  white-space: normal;
}
.hero-phrase.phrase-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-phrase.phrase-exit {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Overlay fades lighter when phrases are between transitions */
.hero-bg-overlay {
  transition: opacity 0.6s ease;
}
.hero-bg-overlay.overlay-reveal {
  opacity: 0.45;
}

.hero-sub {
  font-size: clamp(0.81rem, 1.8vw, 1.01rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--yellow);
  color: var(--navy);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  animation: bounceIn 0.6s ease 1s both;
}

.hero-image-badge span {
  display: block;
  font-size: 1.6rem;
  font-family: 'Excon', sans-serif;
}

.hero-scroll-indicator {
  display: none;
}

.scroll-line {
  width: 2px; height: 36px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero .container { text-align: center; padding-top: 130px; padding-left: 24px; padding-right: 24px; padding-bottom: 56px; }
  .hero-content { animation-name: fadeInUp; }
  .hero-sub, .hero-body { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
}

@media (max-width: 640px) {
  .hero { min-height: 0; overflow: visible; }
  .hero .container { text-align: center; padding-top: 110px; padding-left: 20px; padding-right: 20px; padding-bottom: 100px; }
  .hero-content { animation-name: fadeInUp; }
  .hero-sub, .hero-body { margin-left: auto; margin-right: auto; }
  .hero-phrase { left: 0; right: 0; text-align: center; }
  .hero h1 { font-size: clamp(1.8rem, 5.5vw, 2.3rem); line-height: 1.22; margin-bottom: 14px; }
  .hero-sub { font-size: 0.78rem; line-height: 1.5; margin-bottom: 14px; }
  .hero-ctas { justify-content: center; gap: 8px; flex-wrap: nowrap; }
  .hero-ctas .btn { width: auto; flex: 1; text-align: center; font-size: 0.82rem; padding: 10px 14px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.6rem; }
}


/* ===== HERO PARTNERS STRIP ===== */
.hero-partners {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  position: relative;
  z-index: 5;
  background: #eef2f7;
  padding: 10px 0 0;
  border-top: 1px solid #dce6f0;
  border-bottom: 1px solid #dce6f0;
}

/* Scrolling track */
.hp-track {
  overflow: hidden;
  height: 90px;
  position: relative;
}

/* Animated scene: car + flag + logos */
.hp-scene {
  position: absolute;
  display: flex;
  align-items: flex-end;
  bottom: 8px;
  left: 0;
  animation: hp-drive 24s linear infinite;
}

@keyframes hp-drive {
  from { transform: translateX(110vw); }
  to   { transform: translateX(-100%); }
}

/* Second scene starts halfway through so there's always one on screen */
.hp-scene--2 {
  animation-delay: -12s;
}

.hp-car {
  flex-shrink: 0;
}

/* Tow bar connecting car to flag */
.hp-tow {
  width: 20px;
  height: 2px;
  background: #0f2a44;
  margin-bottom: 27px; /* aligns with tow hook on car (28px from bottom) */
  flex-shrink: 0;
}

/* Flag / pennant behind the car */
.hp-banner {
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 8px;
  background: #0f2a44;
  color: #FACA2A;
  padding: 8px 42px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%);
  animation: flag-wave 2.2s ease-in-out infinite;
}

.hp-banner span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  font-family: 'Excon', sans-serif;
}

@keyframes flag-wave {
  0%   { clip-path: polygon(0 0,   100% 0,   calc(100% - 22px) 50%, 100% 100%,  0 100%); }
  33%  { clip-path: polygon(0 3px, 100% 0,   calc(100% - 18px) 50%, 100% 97%,   0 97%); }
  66%  { clip-path: polygon(0 0,   100% 3px, calc(100% - 26px) 50%, 100% 100%,  0 97%); }
  100% { clip-path: polygon(0 0,   100% 0,   calc(100% - 22px) 50%, 100% 100%,  0 100%); }
}

/* Partner logo badges in a row */
.hp-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  padding-right: 20px;
  align-self: center;
  flex-shrink: 0;
}

/* Badge card */
.hp-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 5px 12px 5px 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  white-space: nowrap;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hp-badge:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* Partner logo */
.hp-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.hp-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
}

@keyframes hp-drive-mobile {
  from { transform: translateX(50vw); }
  to   { transform: translateX(-100%); }
}

@media (max-width: 640px) {
  .hp-track { height: 80px; }
  .hp-scene--2 { display: none; }
  .hp-scene { animation-name: hp-drive-mobile; }
  .hp-car svg { width: 110px; height: 53px; }
  .hp-banner { padding: 6px 24px 6px 9px; }
  .hp-banner span { font-size: 0.52rem; letter-spacing: 1.5px; }
  .hp-badge { padding: 4px 8px 4px 5px; gap: 6px; }
  .hp-badge span { font-size: 0.64rem; }
  .hp-icon { width: 30px; height: 30px; }
  .hp-logos { gap: 7px; padding-left: 10px; }
}


/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 5;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
}

.trust-bullets {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--slate);
  text-align: center;
  margin: 0;
  letter-spacing: 0.04em;
  word-spacing: 0.1em;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
}

.trust-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(-5deg);
}

.trust-icon.red { background: rgba(238,58,35,0.1); color: var(--red); }
.trust-icon.yellow { background: rgba(250,202,42,0.15); color: #c49a00; }
.trust-icon.blue { background: rgba(30,121,174,0.1); color: var(--blue); }
.trust-icon.mint { background: var(--mint); color: #2d8a3e; }

@media (max-width: 768px) {
  .trust-bar .container { gap: 24px; }
  .trust-item { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .trust-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}


/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-mint { background: var(--mint); }
.section-warm { background: var(--light-warm); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label.red { color: var(--red); }
.section-label.blue { color: var(--blue); }
.section-label.yellow { color: #b8930a; }

.section-label::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: 2px;
}
.section-label.red::before { background: var(--red); }
.section-label.blue::before { background: var(--blue); }
.section-label.yellow::before { background: var(--yellow); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.8;
}


/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  transition: background var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  background: var(--blue);
}

.service-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow);
}

.service-card.featured::before {
  background: var(--red);
}

.service-card.compact { padding: 32px 24px; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition-bounce);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-icon.bg-red { background: rgba(238,58,35,0.1); color: var(--red); }
.card-icon.bg-yellow { background: rgba(250,202,42,0.15); color: #b8930a; }
.card-icon.bg-blue { background: rgba(30,121,174,0.1); color: var(--blue); }
.card-icon.bg-mint { background: var(--mint); color: #2d8a3e; }
.card-icon.bg-coral { background: rgba(241,89,66,0.1); color: var(--coral); }

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  font-family: 'Excon', sans-serif;
}
.price small {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  font-family: 'Work Sans', sans-serif;
}

.service-card ul { margin-bottom: 24px; }

.service-card li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232d8a3e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Glossy soap bubble bullets for vibrant package cards */
.pkg-card li::before {
  content: '';
  width: 13px; height: 13px;
  min-width: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: none;
  box-shadow: inset -2px -2px 3px rgba(0,0,0,0.2), inset 2px 2px 4px rgba(255,255,255,0.5), 0 1px 4px rgba(0,0,0,0.2);
}
.pkg-card--blue   li::before { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, #1E79AE 55%); }
.pkg-card--red    li::before { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, #EE3A23 55%); }
.pkg-card--gold   li::before { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, #D97706 55%); }
.pkg-card--mint   li::before { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, #10B981 55%); }
.pkg-card--purple li::before { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, #7C3AED 55%); }

.card-popular {
  position: absolute;
  top: 20px; right: -32px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 44px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.exterior-options { margin-top: 48px; }
.exterior-options-header { margin-bottom: 24px; }
.exterior-options-note { color: var(--text-muted); font-size: 0.95rem; margin-top: 4px; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .services-grid, .services-grid.two-col { grid-template-columns: 1fr; }
}


/* ===== PACKAGES SECTION (VIBRANT THEME) ===== */

.packages-section {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2e4a 60%, #0d1830 100%);
  position: relative;
  overflow: hidden;
}

/* Override section header text for dark background */
.packages-section .section-label { color: #FACC15 !important; }
.packages-section .section-label::before { background: #FACC15 !important; }
.packages-section .section-title { color: #fff; }
.packages-section .section-subtitle { color: rgba(255,255,255,0.75); }
.packages-section .section-subtitle strong { color: #fff; }
.packages-section .exterior-options-note { color: rgba(255,255,255,0.6); }
.packages-section .exterior-options-header .section-label { color: #60D8FA !important; }
.packages-section .exterior-options-header .section-label::before { background: #60D8FA !important; }

/* Background floating decorations */
.pkg-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pkg-bg-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.pkg-bg-bubble.b1 {
  width: 420px; height: 420px;
  background: #1E79AE;
  top: -120px; left: -100px;
  animation: pkgBubbleDrift 14s ease-in-out infinite;
}
.pkg-bg-bubble.b2 {
  width: 320px; height: 320px;
  background: #FFD700;
  bottom: -80px; right: 8%;
  animation: pkgBubbleDrift 11s ease-in-out infinite reverse;
}
.pkg-bg-bubble.b3 {
  width: 220px; height: 220px;
  background: #FF6B9D;
  top: 40%; left: 55%;
  animation: pkgBubbleDrift 9s ease-in-out infinite 2s;
}

.pkg-sparkle {
  position: absolute;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  animation: pkgSparkleAnim 4s ease-in-out infinite;
}
.pkg-sparkle.s1 { top: 8%;  left: 4%;  font-size: 13px; animation-delay: 0s; }
.pkg-sparkle.s2 { top: 22%; left: 93%; font-size: 18px; animation-delay: 0.8s; }
.pkg-sparkle.s3 { top: 58%; left: 2%;  font-size: 11px; animation-delay: 1.6s; }
.pkg-sparkle.s4 { top: 78%; left: 89%; font-size: 16px; animation-delay: 2.4s; }
.pkg-sparkle.s5 { top: 42%; left: 49%; font-size: 9px;  animation-delay: 1.2s; }

@keyframes pkgBubbleDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes pkgSparkleAnim {
  0%, 100% { opacity: 0;   transform: scale(0.5) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.3) rotate(180deg); }
}

/* ---- Card base overrides ---- */
.pkg-card {
  animation: pkgFloat 3.5s ease-in-out infinite;
  border: none !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.2) !important;
  text-align: center;
}
.pkg-card::before { display: none !important; }
.pkg-card:hover {
  transform: translateY(-14px) scale(1.03) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45) !important;
  animation-play-state: paused;
}

/* Staggered float animation */
.services-grid .pkg-card:nth-child(1) { animation-delay: 0s; }
.services-grid .pkg-card:nth-child(2) { animation-delay: 0.55s; }
.services-grid .pkg-card:nth-child(3) { animation-delay: 1.1s; }
.services-grid.two-col .pkg-card:nth-child(1) { animation-delay: 0.3s; }
.services-grid.two-col .pkg-card:nth-child(2) { animation-delay: 0.85s; }

@keyframes pkgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Colored top border per card */
.pkg-card--blue   { border-top: 5px solid #1E79AE !important; }
.pkg-card--red    { border-top: 5px solid #EE3A23 !important; }
.pkg-card--gold   { border-top: 5px solid #D97706 !important; }
.pkg-card--mint   { border-top: 5px solid #10B981 !important; }
.pkg-card--purple { border-top: 5px solid #7C3AED !important; }

/* Featured red card extra glow */
.pkg-card--red.featured {
  box-shadow: 0 8px 40px rgba(238,58,35,0.3), 0 0 0 2px rgba(238,58,35,0.5) !important;
}
.pkg-card--gold.featured {
  box-shadow: 0 8px 40px rgba(217,119,6,0.35), 0 0 0 2px rgba(250,204,21,0.6) !important;
}

/* Corner decorative bubbles */
.pkg-card-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.pkg-bubble-tl { width: 150px; height: 150px; top: -55px; left: -55px; }
.pkg-bubble-br { width: 110px; height: 110px; bottom: -40px; right: -40px; }

.pkg-card--blue   .pkg-card-bubble { background: #1E79AE; }
.pkg-card--red    .pkg-card-bubble { background: #EE3A23; }
.pkg-card--gold   .pkg-card-bubble { background: #D97706; }
.pkg-card--mint   .pkg-card-bubble { background: #10B981; }
.pkg-card--purple .pkg-card-bubble { background: #7C3AED; }

/* Emoji icon circle */
.pkg-emoji-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 36px;
  animation: pkgEmojiWiggle 2.5s ease-in-out infinite;
}
.pkg-card:nth-child(1) .pkg-emoji-wrap { animation-delay: 0s; }
.pkg-card:nth-child(2) .pkg-emoji-wrap { animation-delay: 0.4s; }
.pkg-card:nth-child(3) .pkg-emoji-wrap { animation-delay: 0.8s; }

@keyframes pkgEmojiWiggle {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%       { transform: scale(1.15) rotate(3deg); }
}

.pkg-emoji-blue   { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.pkg-emoji-red    { background: linear-gradient(135deg, #fee2e2, #fca5a5); }
.pkg-emoji-gold   { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.pkg-emoji-mint   { background: linear-gradient(135deg, #d1fae5, #6ee7b7); }
.pkg-emoji-purple { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }

/* Tier label (Starter / Most Popular / Best Value) */
.pkg-tier-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pkg-tier-blue   { color: #1E79AE; }
.pkg-tier-red    { color: #EE3A23; }
.pkg-tier-gold   { color: #B8860B; }

/* Popular badge (replaces ribbon) */
.pkg-popular-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, #EE3A23, #FF6B4A);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(238,58,35,0.45);
  animation: pkgPulseBadge 2s ease-in-out infinite;
}
@keyframes pkgPulseBadge {
  0%, 100% { box-shadow: 0 3px 10px rgba(238,58,35,0.45); transform: scale(1); }
  50%       { box-shadow: 0 3px 20px rgba(238,58,35,0.75); transform: scale(1.06); }
}
.pkg-popular-gold {
  background: linear-gradient(135deg, #D97706, #FACC15);
  animation: pkgPulseBadgeGold 2s ease-in-out infinite;
  box-shadow: 0 3px 10px rgba(217,119,6,0.45);
  color: #1a2e4a;
}
@keyframes pkgPulseBadgeGold {
  0%, 100% { box-shadow: 0 3px 10px rgba(217,119,6,0.45); transform: scale(1); }
  50%       { box-shadow: 0 3px 20px rgba(217,119,6,0.75); transform: scale(1.06); }
}

/* Price pill badge */
.pkg-price-badge {
  display: inline-block;
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.pkg-price-badge small {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.88;
  display: block;
  letter-spacing: 0;
}
.pkg-price-blue   { background: linear-gradient(135deg, #1E79AE, #0ea5e9); }
.pkg-price-red    { background: linear-gradient(135deg, #EE3A23, #FF6B4A); }
.pkg-price-gold   { background: linear-gradient(135deg, #D97706, #FACC15); }
.pkg-price-mint   { background: linear-gradient(135deg, #059669, #10B981); }
.pkg-price-purple { background: linear-gradient(135deg, #7C3AED, #a78bfa); }

/* Star rating */
.pkg-stars {
  color: #FACC15;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-top: 6px;
}

/* Card heading */
.pkg-card h3 { color: #1a2e4a; }

/* List items stay left-aligned */
.pkg-card li { text-align: left; }

@media (max-width: 640px) {
  .pkg-bg-bubble.b1 { width: 200px; height: 200px; }
  .pkg-bg-bubble.b2 { width: 150px; height: 150px; }
}

/* ===== IMAGE GALLERY STRIP ===== */
/* ===== DAILY PROMOS STRIP ===== */
.promo-strip {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2e4a 50%, #0f1f3d 100%);
  padding: 28px 24px 32px;
  overflow: hidden;
  position: relative;
}

.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,215,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.promo-strip-header {
  text-align: center;
  margin-bottom: 20px;
}

.promo-strip-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FACC15;
  margin-bottom: 6px;
}

.promo-strip-title {
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.promo-strip-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-card {
  position: relative;
  flex: 1 1 180px;
  max-width: 240px;
  min-width: 170px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 18px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  cursor: default;
  overflow: hidden;
  animation: promoFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:nth-child(2) { animation-delay: 0.4s; }
.promo-card:nth-child(3) { animation-delay: 0.8s; }
.promo-card:nth-child(4) { animation-delay: 1.2s; }

@keyframes promoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.promo-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  animation-play-state: paused;
}

/* Colored top accent bar */
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  border-radius: 24px 24px 0 0;
}

/* Decorative background bubble */
.promo-card-bubble {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0.08;
}

/* Per-card color themes */
.promo-card--monday::before  { background: linear-gradient(90deg, #FFD700, #FFA500); }
.promo-card--monday .promo-card-bubble { background: #FFD700; }
.promo-card--monday .promo-card-day   { color: #B8860B; }
.promo-card--monday .promo-card-discount { background: linear-gradient(135deg, #FFD700, #FFA500); }

.promo-card--tuesday::before  { background: linear-gradient(90deg, #FF6B9D, #FF3D7F); }
.promo-card--tuesday .promo-card-bubble { background: #FF6B9D; }
.promo-card--tuesday .promo-card-day   { color: #c0185a; }
.promo-card--tuesday .promo-card-discount { background: linear-gradient(135deg, #FF6B9D, #FF3D7F); }

.promo-card--wednesday::before  { background: linear-gradient(90deg, #7C3AED, #5B21B6); }
.promo-card--wednesday .promo-card-bubble { background: #7C3AED; }
.promo-card--wednesday .promo-card-day   { color: #5B21B6; }
.promo-card--wednesday .promo-card-discount { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

.promo-card--thursday::before  { background: linear-gradient(90deg, #10B981, #059669); }
.promo-card--thursday .promo-card-bubble { background: #10B981; }
.promo-card--thursday .promo-card-day   { color: #047857; }
.promo-card--thursday .promo-card-discount { background: linear-gradient(135deg, #10B981, #059669); }

.promo-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  animation: promoBounce 2s ease-in-out infinite;
}

.promo-card:nth-child(2) .promo-card-icon { animation-delay: 0.3s; }
.promo-card:nth-child(3) .promo-card-icon { animation-delay: 0.6s; }
.promo-card:nth-child(4) .promo-card-icon { animation-delay: 0.9s; }

@keyframes promoBounce {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%       { transform: scale(1.12) rotate(2deg); }
}

.promo-card-icon svg { width: 100%; height: 100%; display: block; }

.promo-card-day {
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.promo-card-wash {
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1a2e4a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.promo-card-discount {
  display: inline-block;
  color: #fff;
  font-family: 'Excon', 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  animation: promoPulse 2.5s ease-in-out infinite;
}

.promo-card:nth-child(2) .promo-card-discount { animation-delay: 0.5s; }
.promo-card:nth-child(3) .promo-card-discount { animation-delay: 1s; }
.promo-card:nth-child(4) .promo-card-discount { animation-delay: 1.5s; }

@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

.promo-card-stars {
  font-size: 14px;
  color: #FFD700;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .promo-strip { padding: 32px 16px; }
  .promo-strip-inner { gap: 14px; }
  .promo-card { flex: 1 1 160px; min-width: 150px; padding: 24px 16px 20px; }
  .promo-card-icon { width: 54px; height: 54px; }
  .promo-card-wash { font-size: 15px; }
  .promo-card-discount { font-size: 22px; padding: 4px 14px; }
}


/* ===== MENU ===== */
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.menu-group h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.mt-40 { margin-top: 40px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}

.menu-item:hover {
  padding-left: 8px;
  border-bottom-color: var(--blue);
}

.menu-item-name { font-size: 0.92rem; font-weight: 600; }
.menu-item-desc { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.menu-item-price {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  margin-left: 16px;
  font-family: 'Excon', sans-serif;
}

.menu-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

.detailing-block {
  padding: 24px 0;
  color: var(--slate);
  font-size: 0.92rem;
}
.detailing-block strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Excon', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.detailing-block p { margin-bottom: 20px; }

@media (max-width: 768px) {
  .menu-columns { grid-template-columns: 1fr; }
}


/* ===== CAR DETAILING ===== */
.detailing-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.detailing-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detailing-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.detailing-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detailing-img-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}

.detailing-img-grid img:hover {
  transform: scale(1.03);
}

.detailing-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.detailing-content > p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
}

.detailing-pricing {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}

.detailing-pricing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
}

.detailing-pricing-row:last-child {
  border-bottom: none;
}

.detailing-pricing-row.walk-in {
  background: #fff;
}

.detailing-pricing-row.appt {
  background: #fff8f7;
}

.dp-name {
  flex: 1;
  font-weight: 600;
  color: var(--dark);
}

.dp-price {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  margin-right: 8px;
}

.dp-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.walk-in-badge {
  background: #e6f4ea;
  color: #2e7d32;
}

.appt-badge {
  background: #fff0ed;
  color: var(--red);
}

.detailing-note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .detailing-showcase { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .detailing-img-main img { height: 240px; }
  .detailing-img-grid img { height: 120px; }
}


/* ===== MEMBERSHIP ===== */
/* ===== MEMBERSHIP — CARTOON STYLE ===== */
.membership-cartoon-section {
  background: linear-gradient(160deg, #81D4FA 0%, #29B6F6 40%, #0288D1 100%);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}

/* floating bubbles */
.mc-bubbles { position: absolute; inset: 0; pointer-events: none; }
.mc-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  animation: mc-float 6s ease-in-out infinite alternate;
}
.mc-bubble:nth-child(2) { animation-delay: -1.5s; }
.mc-bubble:nth-child(3) { animation-delay: -3s; }
.mc-bubble:nth-child(4) { animation-delay: -4s; }
.mc-bubble:nth-child(5) { animation-delay: -2s; }
.mc-bubble:nth-child(6) { animation-delay: -5s; }
@keyframes mc-float {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-14px) scale(1.06); }
}

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

/* Header */
.mc-header { text-align: center; margin-bottom: 32px; }
.mc-title {
  font-family: 'Fredoka One', 'Excon', cursive;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.0;
  color: #fff;
  text-shadow:
    3px 3px 0 #01579B,
    -2px -2px 0 #01579B,
    2px -2px 0 #01579B,
    -2px 2px 0 #01579B,
    0 4px 0 #01579B;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mc-tagline {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  color: #fff;
  text-shadow: 1px 1px 0 #01579B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Grid */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

/* Cards */
.mc-card {
  border-radius: 24px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mc-card:hover { transform: translateY(-6px); }

.mc-card--regular {
  background: #B3E5FC;
  border: 4px solid #0288D1;
  box-shadow: 0 7px 0 #01579B, 0 10px 20px rgba(1,87,155,0.22);
}
.mc-card--ultimate {
  background: #0D2B6E;
  border: 4px solid #1565C0;
  box-shadow: 0 7px 0 #0a1f52, 0 10px 20px rgba(10,31,82,0.4);
}

/* Card titles */
.mc-card-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.1rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.mc-card-title--regular {
  color: #0288D1;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.6);
}
.mc-card-title--ultimate {
  color: #64B5F6;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* Includes line */
.mc-includes {
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  color: #90CAF9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

/* Feature lists */
.mc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  width: 100%;
}
.mc-features li {
  font-family: 'Fredoka One', cursive;
  font-size: 0.98rem;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mc-features li::before {
  content: '+';
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.mc-card--regular .mc-features li { color: #01579B; }
.mc-card--regular .mc-features li::before { color: #0288D1; }
.mc-card--ultimate .mc-features li { color: #E3F2FD; }
.mc-card--ultimate .mc-features li::before { color: #64B5F6; }

/* Footer row: mascot left, price bubble right */
.mc-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  width: 100%;
}

.mc-mascot { flex-shrink: 0; overflow: visible; }
.mc-mascot--vacuum { width: 130px; height: 115px; }
.mc-mascot--tire   { width: 100px; height: 96px; }

/* Price bubble */
.mc-price-bubble {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.mc-price-bubble--light {
  background: #fff;
  border: 3px solid #0288D1;
}
.mc-price-bubble--dark {
  background: #1565C0;
  border: 3px solid #64B5F6;
}
.mc-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: #01579B;
  display: block;
  line-height: 1;
}
.mc-price-bubble--dark .mc-price { color: #fff; }
.mc-price-label {
  font-family: 'Fredoka One', cursive;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #01579B;
  display: block;
}
.mc-price-bubble--dark .mc-price-label { color: #90CAF9; }
.mc-price-tax {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0277BD;
  display: block;
}
.mc-price-bubble--dark .mc-price-tax { color: #64B5F6; }

/* CTA buttons */
.mc-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  padding: 12px 0;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mc-btn:hover { transform: translateY(-3px); }

.mc-btn--regular {
  background: #0288D1;
  color: #fff;
  box-shadow: 0 5px 0 #01579B;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}
.mc-btn--regular:hover { box-shadow: 0 8px 0 #01579B; }

.mc-btn--ultimate {
  background: #FDD835;
  color: #1a237e;
  box-shadow: 0 5px 0 #F9A825;
}
.mc-btn--ultimate:hover { box-shadow: 0 8px 0 #F9A825; }

@media (max-width: 900px) {
  .mc-grid { grid-template-columns: 1fr; max-width: 400px; }
}


/* ===== ABOUT / STORY ===== */
#story.story-section {
  background: #f4f8ff;
  padding: 0;
  margin: 0;
}
/* ── Dark illustrated banner ── */
.story-banner {
  position: relative;
  background: #0a1f33;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Neighborhood SVG scenes */
.story-neighborhood {
  position: absolute;
  bottom: 0;
  width: 30%;
  max-width: 320px;
  pointer-events: none;
  line-height: 0;
}
.story-neighborhood svg { width: 100%; height: auto; display: block; }
.story-neighborhood--left  { left: 0; }
.story-neighborhood--right { right: 0; }

/* Floating bubbles */
.sb-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  animation: sbBubbleFloat 4s ease-in-out infinite alternate;
}
@keyframes sbBubbleFloat {
  from { transform: translateY(0); opacity: 0.6; }
  to   { transform: translateY(-12px); opacity: 1; }
}

/* Centre content block */
.story-banner-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 24px 72px;
  max-width: 740px;
}
.sb-heart-icon {
  margin: 0 auto 16px;
  width: 44px;
  animation: sbHeartPulse 2.5s ease-in-out infinite;
}
@keyframes sbHeartPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}
.sb-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #FACA2A; opacity: 0.8; margin-bottom: 10px;
}
.sb-heading {
  font-family: 'Excon', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: #fff; margin-bottom: 18px; line-height: 1.2;
}
.sb-body {
  font-size: 0.97rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 14px;
}
.sb-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 24px 0 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px 8px;
}
.sb-stat {
  display: flex; flex-direction: column; align-items: center;
  flex: 1;
}
.sb-stat-num {
  font-family: 'Excon', sans-serif;
  font-size: 1.6rem; font-weight: 900; color: #FACA2A; line-height: 1;
}
.sb-stat-lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}
.sb-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
}
.sb-attribution {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 4px;
}
.sb-attr-rule {
  flex: 1; max-width: 60px; height: 1px;
  background: #FACA2A; opacity: 0.4;
}
.sb-attr-text {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; color: #FACA2A;
  opacity: 0.65; text-transform: uppercase; white-space: nowrap;
}
.sb-cta-row {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: nowrap;
  margin-top: 24px;
}
.sb-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff; border-radius: 99px;
  padding: 12px 26px; font-weight: 700; font-size: 0.93rem;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none; display: inline-block;
}
.sb-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.sb-btn-outline-red {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red); border-radius: 99px;
  padding: 12px 26px; font-weight: 700; font-size: 0.93rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.sb-btn-outline-red:hover { background: var(--red); color: #fff; }

/* Animated car */
.story-car-track {
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 44px; overflow: hidden;
  pointer-events: none; z-index: 3;
}
.story-car {
  position: absolute;
  bottom: 2px; left: 0;
  animation: carDrive 16s linear infinite;
}
@keyframes carDrive {
  from { transform: translateX(-110px); }
  to   { transform: translateX(calc(100vw + 110px)); }
}

/* ── Pillars grid ── */
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.story-pillar {
  background: #fff; border-radius: 20px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 20px rgba(15,42,68,.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.story-pillar::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue);
  border-radius: 20px 20px 0 0;
  opacity: 0; transition: opacity 0.25s;
}
.story-pillar--center::after { background: var(--red); }
.story-pillar:last-child::after { background: var(--yellow); }
.story-pillar:hover { transform: translateY(-7px); box-shadow: 0 14px 40px rgba(15,42,68,.12); }
.story-pillar:hover::after { opacity: 1; }

.pillar-icon-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: pillarBounce 3.2s ease-in-out infinite;
}
.story-pillar--center .pillar-icon-wrap { animation-delay: 0.5s; }
.story-pillar:last-child  .pillar-icon-wrap { animation-delay: 1s; }
@keyframes pillarBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.bg-blue-light   { background: #dbeeff; }
.bg-red-light    { background: #fde8e5; }
.bg-yellow-light { background: #fff8db; }
.pillar-svg { width: 60px; height: 60px; }
.pillar-dot { animation: dotPulse 2.2s ease-in-out infinite; }
@keyframes dotPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.pillar-title {
  font-family: 'Excon', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.pillar-text {
  font-size: 0.9rem; color: var(--slate);
  line-height: 1.75; margin-bottom: 18px;
}
.pillar-stat {
  display: inline-flex; flex-direction: column; align-items: center;
  background: #f4f8ff; border-radius: 10px; padding: 9px 18px;
}
.pillar-num {
  font-family: 'Excon', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.pillar-unit {
  font-size: 0.7rem; color: var(--gray);
  margin-top: 3px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ── Partnership strip ── */
.story-partnership {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 26px 32px;
  text-align: center; margin-bottom: 36px;
}
.partnership-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray); margin-bottom: 16px;
}
.partnership-chips {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
}
.pchip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f4f8ff; border: 1px solid var(--border);
  border-radius: 99px; padding: 7px 16px;
  font-size: 0.84rem; font-weight: 600; color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}
.pchip:hover { background: #dbeeff; border-color: var(--blue); }
.pchip svg   { color: var(--blue); flex-shrink: 0; }

/* ── CTA row ── */
.story-cta-row {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.btn-outline-red {
  background: transparent; border: 2px solid var(--red);
  color: var(--red); border-radius: 99px;
  padding: 12px 26px; font-weight: 700; font-size: 0.93rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

@media (max-width: 900px) {
  .story-neighborhood { width: 38%; }
  .story-pillars { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .story-banner-center { padding: 40px 16px 60px; }
  .sb-heading { font-size: 1.5rem; }
  .sb-body { font-size: 0.9rem; }
  .story-partnership { padding: 22px 18px; }
}
@media (max-width: 560px) {
  .story-neighborhood { display: none; }
  .story-banner { min-height: 190px; }
}


/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.testimonial-author span {
  color: var(--gray);
  font-weight: 400;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover { border-color: var(--blue); }

.faq-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.8;
}


/* ===== BOOKING ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.booking-info > p {
  color: var(--slate);
  margin-bottom: 32px;
  line-height: 1.8;
}

.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon.bg-red { background: var(--red); }
.info-icon.bg-blue { background: var(--blue); }
.info-icon.bg-yellow { background: var(--yellow); }
.info-icon.bg-mint { background: var(--mint); }

.info-block h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-block p, .info-block a {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.info-block a:hover { color: var(--blue); }

.booking-form-area {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.form-group select,
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--light);
  transition: all 0.2s;
  color: var(--navy);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,121,174,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit { padding: 16px 36px; font-size: 1rem; margin-top: 8px; }

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-form-area { padding: 28px 20px; }
}

/* Booking Success */
.booking-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.booking-success.visible { display: block; animation: bounceIn 0.5s ease; }

.success-icon {
  color: #2ecc71;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.7;
}


/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(250,202,42,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(30,121,174,0.15) 0%, transparent 50%);
}

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

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-brand .logo-img-footer {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-3px);
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.88rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-links svg { flex-shrink: 0; margin-top: 2px; }

.footer-newsletter p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; border-color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }


/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238,58,35,0.3);
}


/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s var(--ease-spring);
}

[data-animate="fade-right"] { transform: translateX(-50px); }
[data-animate="fade-left"] { transform: translateX(50px); }
[data-animate="scale"] { transform: scale(0.9); }
[data-animate="bounce"] { transform: translateY(50px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


/* ===== PROMO BANNER ===== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.promo-banner.hidden {
  transform: translateY(-100%);
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.promo-banner-text {
  color: #fff;
}
.promo-banner-text strong {
  color: var(--yellow);
}
.promo-banner-link {
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.promo-banner-link:hover {
  opacity: 0.85;
}
.promo-banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}
.promo-banner-close:hover {
  color: #fff;
}

/* Push navbar down when banner is visible */
.navbar {
  top: 40px;
}
.promo-banner.hidden ~ .navbar {
  top: 0;
}
.promo-banner.hidden ~ .hero .hero-bg-image {
  margin-top: 76px;
}

@media (max-width: 640px) {
  .promo-banner {
    font-size: 0.75rem;
    padding: 7px 12px;
  }
  .promo-banner-inner {
    gap: 8px;
    flex-wrap: nowrap;
  }
  .promo-detail {
    display: none;
  }
  .promo-banner-close {
    font-size: 18px;
  }
  .logo-img {
    height: 40px;
  }
  .navbar .container {
    height: 52px;
    padding: 0 12px;
  }
  .navbar {
    top: 32px;
  }
  .promo-banner.hidden ~ .navbar {
    top: 0;
  }
  .hero-bg-image {
    margin-top: 0;
    align-self: center;
  }
  .promo-banner.hidden ~ .hero .hero-bg-image {
    margin-top: 0;
  }
}

/* ===== PROMO POPUP ===== */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.promo-overlay.active {
  opacity: 1;
  visibility: visible;
}
.promo-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 90%;
  padding: 48px 36px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.promo-overlay.active .promo-modal {
  transform: scale(1) translateY(0);
}
.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--slate);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.promo-close:hover {
  background: var(--light);
  color: var(--navy);
}
.promo-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.promo-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}
.promo-text strong {
  color: var(--red);
}
.promo-cta {
  display: inline-block;
  min-width: 200px;
}
@media (max-width: 480px) {
  .promo-modal {
    width: calc(100% - 32px);
    padding: 40px 24px 28px;
  }
  .promo-title {
    font-size: 1.6rem;
  }
  .promo-cta {
    width: 100%;
    min-height: 48px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-yellow { color: var(--yellow); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
