/* ==========================================
   SMART DETAILING – MAIN STYLESHEET
   Extravagant Light Theme – Iridescent Bubbles
   ========================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1E293B;
  background: #fff;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}

/* --- DESIGN TOKENS --- */
:root {
  /* Nowa paleta – Navy Blue Brand */
  --navy:        #0F2D6B;
  --navy-dark:   #091d47;
  --royal:       #2F7DE1;
  --royal-light: #66A9F5;
  --ice:         #EAF4FF;
  --blue:        #66A9F5;
  --blue-light:  #EAF4FF;
  --blue-dark:   #2F7DE1;
  --mist:        #DCE7F3;
  /* Aliasy kompatybilności (stare nazwy → nowe wartości) */
  --pink:        #66A9F5;
  --pink-light:  #EAF4FF;
  --pink-dark:   #2F7DE1;
  --pink-vivid:  #2F7DE1;
  --indigo:      #2F7DE1;
  --indigo-dark: #0F2D6B;
  --purple:      #66A9F5;
  --cyan:        #EAF4FF;
  --text:        #0F2D6B;
  --text-muted:  #5E6B7A;
  --text-light:  #8fa0b0;
  --bg:          #ffffff;
  --bg-soft:     #F5F7FA;
  --bg-pink:     #EAF4FF;
  --bg-blue:     #EAF4FF;
  --border:      #DCE7F3;
  --shadow-sm:   0 1px 3px rgba(15,45,107,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(47,125,225,.12), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 16px 48px rgba(47,125,225,.18), 0 4px 16px rgba(0,0,0,.08);
  --shadow-bubble: 0 20px 60px rgba(47,125,225,.2), 0 8px 24px rgba(15,45,107,.15);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --z-nav:       50;
  --z-modal:     100;
  --z-bubble:    0;
  --transition:  all 200ms ease;
}

/* --- GRADIENT UTILITY --- */
.gradient-text {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 50%, var(--royal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   IRIDESCENT SOAP BUBBLE KEYFRAMES
   ========================================== */

/* Rising bubbles – absolute viewport travel, not % of element height */
@keyframes riseUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  7%   { opacity: 1; }
  83%  { opacity: 0.88; }
  100% { transform: translateY(calc(-100vh - 300px)) translateX(var(--drift, 22px)); opacity: 0; }
}

/* Background floating bubbles */
@keyframes bubbleFloat {
  0%   { transform: translateY(100vh) translateX(0) scale(0.7); opacity: 0; }
  8%   { opacity: var(--opacity, 0.3); }
  50%  { transform: translateY(45vh) translateX(var(--drift, 30px)) scale(1.05); }
  92%  { opacity: var(--opacity, 0.3); }
  100% { transform: translateY(-10vh) translateX(var(--drift2, -20px)) scale(0.85); opacity: 0; }
}

@keyframes floatBubbleMain {
  0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); }
  25% { transform: translateY(-25px) translateX(8px) scale(1.01) rotate(1deg); }
  50% { transform: translateY(10px) translateX(-5px) scale(0.99) rotate(-1deg); }
  75% { transform: translateY(-15px) translateX(6px) scale(1.02) rotate(1.5deg); }
}

@keyframes floatBubble2 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-35px) translateX(-12px) scale(1.03) rotate(-2deg); }
  66% { transform: translateY(20px) translateX(10px) scale(0.97) rotate(1.5deg); }
}

@keyframes floatBubble3 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-45px) translateX(15px) scale(1.04) rotate(3deg); }
}

@keyframes floatBubble4 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  33% { transform: translateY(-20px) translateX(8px) scale(0.96); }
  66% { transform: translateY(15px) translateX(-6px) scale(1.04); }
}

@keyframes floatBubble5 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-30px) translateX(-10px) scale(1.05); }
}

@keyframes floatBubble6 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(25px) translateX(12px) scale(0.95); }
}

@keyframes logoBubblePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47,125,225,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(15,45,107,0.12); }
}

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

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

@keyframes successPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(47,125,225,0.4); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(47,125,225,0); }
}

/* Iridescent shimmer on bubble border */
@keyframes iridescent {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes heroBubblePop {
  0%   { transform: scale(0.4) translateY(60px); opacity: 0; }
  60%  { transform: scale(1.08) translateY(-6px); opacity: 1; }
  80%  { transform: scale(0.96) translateY(2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(47,125,225,0.25), 0 0 60px rgba(15,45,107,0.12); }
  50%       { box-shadow: 0 0 60px rgba(47,125,225,0.4),  0 0 100px rgba(15,45,107,0.22); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ==========================================
   FLOATING BUBBLES BACKGROUND LAYER
   ========================================== */
.bubbles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-bubble);
  overflow: hidden;
}

.bg-bubble {
  position: absolute;
  border-radius: 50%;
  animation: bubbleFloat var(--dur, 12s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
}

/* ==========================================
   NAVBAR
   ========================================== */
/* --- TOP BAR --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--navy-dark);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.top-bar-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: var(--royal-light);
}

.btn-topbar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  background: var(--royal);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  margin-left: 6px;
}

.btn-topbar-call:hover {
  background: var(--royal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(102, 169, 245, 0.4);
}

.btn-topbar-call:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.72rem;
    height: 52px;
  }
  .top-bar-inner {
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
    justify-content: center;
  }
}

.navbar {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: var(--z-nav);
  border-radius: var(--radius-xl);
  transition: var(--transition), box-shadow 300ms ease, background 300ms ease, top 300ms ease;
}

.navbar.scrolled {
  top: 48px;
}

@media (max-width: 768px) {
  .navbar {
    top: 64px;
  }
  .navbar.scrolled {
    top: 60px;
  }
}


.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 28px;
  background: rgba(9, 29, 71, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(9, 29, 71, 0.22), 0 2px 8px rgba(0,0,0,0.1);
  transition: height 350ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease, box-shadow 300ms ease;
}

.navbar.scrolled .navbar-inner {
  height: 56px;
  background: rgba(7, 23, 56, 0.98);
  box-shadow: 0 10px 40px rgba(7, 23, 56, 0.35), 0 2px 12px rgba(0,0,0,0.18);
}

.navbar.scrolled:hover .navbar-inner {
  height: 70px;
  background: rgba(9, 29, 71, 0.95);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.navbar-logo:hover {
  transform: scale(1.02);
}

.navbar-logo img {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.navbar.scrolled .navbar-logo img {
  transform: scale(0.85);
}

.navbar.scrolled:hover .navbar-logo img {
  transform: scale(1);
}

.logo-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 50%, var(--royal-light) 100%);
  box-shadow: 0 0 0 3px rgba(47,125,225,0.22);
  position: relative;
  flex-shrink: 0;
  animation: logoBubblePulse 3s ease-in-out infinite;
}

.logo-bubble::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, transparent 55%);
}

.logo-bubble::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 9px;
  height: 9px;
  background: rgba(255,255,255,0.75);
  border-radius: 50%;
}

.logo-bubble.small {
  width: 26px;
  height: 26px;
}

.logo-bubble.small::after {
  width: 6px;
  height: 6px;
  top: 4px;
  left: 4px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-accent {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 12px;
  transition: color 200ms ease, background 200ms ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* CTA button in nav */
.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 16px rgba(47,125,225,0.35);
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  opacity: 0.93;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,45,107,0.4);
}

.btn-nav-cta:focus-visible { outline: 3px solid var(--royal); outline-offset: 2px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 200ms ease;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.12); }
.hamburger:focus-visible { outline: 3px solid var(--royal-light); outline-offset: 2px; }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 16px 24px 24px;
  border: 1.5px solid var(--border);
  border-top: none;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 200ms ease, background 200ms ease;
}

.mobile-nav-link:hover { color: var(--navy); background: rgba(47,125,225,0.06); }

.btn-mobile-cta {
  display: block;
  margin-top: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 24px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(47,125,225,0.25);
  transition: opacity 200ms ease;
}

.btn-mobile-cta:hover { opacity: 0.9; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(47,125,225,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 70%, rgba(15,45,107,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(102,169,245,0.05) 0%, transparent 70%),
    #ffffff;
  overflow: hidden;
}

/* Subtle mesh grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,125,225,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,125,225,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero text */
.hero-text { z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: linear-gradient(135deg, rgba(47,125,225,0.1), rgba(15,45,107,0.09));
  border: 1.5px solid rgba(47,125,225,0.28);
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  animation: logoBubblePulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 200ms ease;
  box-shadow: 0 8px 24px rgba(47,125,225,0.32), 0 2px 8px rgba(15,45,107,0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(47,125,225,0.4), 0 4px 12px rgba(15,45,107,0.25);
}

.btn-primary:active { transform: translateY(0) scale(1); }

.btn-primary:focus-visible {
  outline: 3px solid var(--royal);
  outline-offset: 3px;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Secondary button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}

.btn-secondary:hover {
  border-color: var(--royal);
  color: var(--navy);
  background: rgba(47,125,225,0.05);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible { outline: 3px solid var(--royal); outline-offset: 3px; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ==========================================
   HERO VISUAL – CAR INTERIOR PHOTO
   ========================================== */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Photo card wrapper --- */
.hero-photo-wrap {
  position: relative;
  width: 520px;
  max-width: 100%;
  border-radius: 32px;
  overflow: visible;
}

/* Main photo */
.hero-car-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(15,45,107,0.22),
    0 8px 24px rgba(47,125,225,0.18),
    0 0 0 2px rgba(47,125,225,0.12);
  display: block;
  transform: perspective(800px) rotateY(-4deg) rotateX(1deg);
  transition: transform 600ms cubic-bezier(.18,.89,.32,1.18);
}

.hero-photo-wrap:hover .hero-car-photo {
  transform: perspective(800px) rotateY(-2deg) rotateX(0.5deg) scale(1.02);
}

/* Blue gradient overlay on bottom of photo */
.hero-car-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    to top,
    rgba(15,45,107,0.45) 0%,
    rgba(15,45,107,0.12) 40%,
    transparent 70%
  );
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 18%),
    linear-gradient(to top, transparent 0%, black 14%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 18%),
    linear-gradient(to top, transparent 0%, black 14%);
  mask-composite: intersect;
}

/* Decorative navy frame line */
.hero-photo-frame {
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 2px solid rgba(47,125,225,0.2);
  pointer-events: none;
  z-index: -1;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(47,125,225,0.08) 0%, rgba(15,45,107,0.12) 100%);
  z-index: -1;
}

/* Floating badge on photo */
.hero-photo-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F2D6B;
  box-shadow: 0 8px 32px rgba(47,125,225,0.2), 0 0 0 1.5px rgba(47,125,225,0.15);
  animation: floatBubble4 5s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}

.hero-photo-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2F7DE1 0%, #0F2D6B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-photo-badge-icon svg { color: #fff; }

.hero-photo-badge-text { line-height: 1.3; }
.hero-photo-badge-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #5E6B7A;
}

/* Top-right floating chip */
.hero-photo-chip {
  position: absolute;
  top: 24px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2F7DE1, #0F2D6B);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(15,45,107,0.3);
  animation: floatBubble2 6s ease-in-out infinite 0.5s;
  z-index: 10;
  white-space: nowrap;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66A9F5;
  box-shadow: 0 0 6px rgba(102,169,245,0.8);
}

/* Iridescent soap bubble – mask technique for genuine rainbow border */
/* Hero Bubble wrappers */
.hero-bubble-wrapper {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
}

.hb-main-wrap {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  margin-top: -140px;
  margin-left: -140px;
  animation: heroBubblePop 1.2s cubic-bezier(.18,.89,.32,1.28) forwards;
}

.hb-2-wrap {
  width: 160px;
  height: 160px;
  top: 4%;
  right: 4%;
  animation: heroBubblePop 1.4s cubic-bezier(.18,.89,.32,1.28) 0.15s forwards;
}

.hb-3-wrap {
  width: 110px;
  height: 110px;
  bottom: 8%;
  left: 5%;
  animation: heroBubblePop 1.1s cubic-bezier(.18,.89,.32,1.28) 0.3s forwards;
}

.hb-4-wrap {
  width: 75px;
  height: 75px;
  top: 10%;
  left: 8%;
  animation: heroBubblePop 1.0s cubic-bezier(.18,.89,.32,1.28) 0.5s forwards;
}

.hb-5-wrap {
  width: 52px;
  height: 52px;
  bottom: 20%;
  right: 8%;
  animation: heroBubblePop 0.9s cubic-bezier(.18,.89,.32,1.28) 0.7s forwards;
}

.hb-6-wrap {
  width: 38px;
  height: 38px;
  top: 38%;
  right: 0%;
  animation: heroBubblePop 0.8s cubic-bezier(.18,.89,.32,1.28) 0.9s forwards;
}

/* Iridescent soap bubble – body */
.soap-bubble {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 40% 24% at 28% 24%, rgba(255,255,255,0.96) 0%, transparent 100%),
    radial-gradient(circle at 72% 74%, rgba(47,125,225,0.15) 0%, transparent 42%),
    radial-gradient(circle at 18% 68%, rgba(102,169,245,0.12) 0%, transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(15,45,107,0.1) 0%, transparent 36%),
    rgba(255,255,255,0.04);
  box-shadow:
    0 12px 40px rgba(47,125,225,0.12),
    0 4px 16px rgba(15,45,107,0.08),
    inset 0 0 40px rgba(255,255,255,0.25);
  border-radius: 50%;
  will-change: transform;
}

/* Iridescent ring border using CSS mask */
.soap-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #2F7DE1 0%, #66A9F5 18%, #0F2D6B 36%, #EAF4FF 54%, #2F7DE1 72%, #66A9F5 88%, #2F7DE1 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: iridescent 6s linear infinite;
}

/* Internal glare highlight */
.soap-bubble::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 14%;
  width: 32%;
  height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.12) 65%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
}

/* Individual animation assignments for organic look */
.hb-main {
  animation: floatBubbleMain 8s ease-in-out infinite, pulseGlow 4s ease-in-out infinite 1.2s;
}

.hb-2 {
  animation: floatBubble2 7s ease-in-out infinite;
}

.hb-3 {
  animation: floatBubble3 9s ease-in-out infinite;
}

.hb-4 {
  animation: floatBubble4 6s ease-in-out infinite;
}

.hb-5 {
  animation: floatBubble5 5s ease-in-out infinite;
}

.hb-6 {
  animation: floatBubble6 4.5s ease-in-out infinite;
}

/* Floating badge inside hero */
.floating-badge {
  position: absolute;
  bottom: 12%;
  right: 22%;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: 0 8px 24px rgba(99,102,241,0.14), 0 0 0 1.5px rgba(244,114,182,0.18);
  animation: floatBubble 4.5s ease-in-out infinite 0.5s;
  z-index: 10;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 200ms ease;
  z-index: 2;
}

.scroll-indicator:hover { opacity: 0.8; }

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

.scroll-indicator span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================
   SECTION SHARED
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(47,125,225,0.1), rgba(15,45,107,0.08));
  border: 1.5px solid rgba(47,125,225,0.18);
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--indigo-dark);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag--light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title--light { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-subtitle--light { color: rgba(255,255,255,0.8); }

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal-light) 30%, var(--royal) 70%, transparent);
  opacity: 0.35;
}

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

/* Service card */
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  border: 1.5px solid var(--border);
  transition: transform 280ms cubic-bezier(.18,.89,.32,1.18), box-shadow 280ms ease, border-color 250ms ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
 
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,125,225,0.05) 0%, rgba(102,169,245,0.05) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  border-radius: inherit;
}
 
.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(47,125,225,0.16), 0 8px 20px rgba(15,45,107,0.1);
  border-color: rgba(47,125,225,0.25);
}
 
.service-card:hover::before { opacity: 1; }
 
.service-card:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
}
 
/* Highlight card */
.service-card--highlight {
  border-color: rgba(47,125,225,0.3);
  background: linear-gradient(160deg, #fff 0%, rgba(47,125,225,0.03) 100%);
  box-shadow: 0 8px 28px rgba(47,125,225,0.1);
}
 
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 24px;
  letter-spacing: 0.5px;
}
 
/* Service icon */
.service-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
 
.service-bubble {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,125,225,0.18) 0%, rgba(15,45,107,0.16) 100%);
  transition: transform 280ms ease;
}
 
.service-card:hover .service-bubble {
  transform: scale(1.15);
  background: linear-gradient(135deg, rgba(47,125,225,0.28), rgba(15,45,107,0.24));
}
 
.service-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  color: var(--indigo);
}
 
.service-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
 
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
 
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
 
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
 
.service-list li svg { color: var(--indigo); flex-shrink: 0; margin-top: 2px; }
.service-list li strong { color: var(--text); }
 
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease, gap 200ms ease, color 200ms ease;
  cursor: pointer;
  margin-top: auto;
}

.service-link:hover {
  border-color: var(--royal);
  color: var(--navy);
  gap: 10px;
}

.service-link:focus-visible { outline: 3px solid var(--royal); outline-offset: 3px; border-radius: 2px; }

/* ==========================================
   SPLIT BUBBLE SECTION – WORKING STICKY
   ========================================== */
.split-bubble-section {
  position: relative;
  overflow: visible;
}

.split-bubble-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal) 30%, var(--navy) 70%, transparent);
  opacity: 0.35;
  z-index: 2;
}

/* Grid: align-items START is ESSENTIAL for sticky to work */
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* LEFT: sticky text panel */
.split-left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 64px 80px max(40px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(ellipse 80% 70% at 15% 50%, rgba(47,125,225,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(15,45,107,0.05) 0%, transparent 60%),
    linear-gradient(145deg, #EAF4FF 0%, #F5F7FA 100%);
}

.split-left-content {
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* RIGHT: tall column that creates the scroll distance */
.split-right {
  position: relative;
  min-height: 350vh; /* This height = how long you stay in the sticky section */
}

/* Inner viewport: sticky within the right column, clips the bubbles */
.rising-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(234,244,255,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 70% 70% at 20% 80%, rgba(220,231,243,0.8) 0%, transparent 60%),
    linear-gradient(180deg, #EAF4FF 0%, #F5F7FA 50%, #EAF4FF 100%);
}

/* Bubble container fills the 100vh viewport */
.rising-bubbles-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Timeline wrapper and track */
.split-timeline-container {
  display: flex;
  position: relative;
  gap: 32px;
  margin-top: 20px;
}

.split-timeline-track {
  position: relative;
  width: 6px;
  background: rgba(47, 125, 225, 0.15);
  border-radius: 6px;
  align-self: stretch;
  margin: 12px 0;
  overflow: hidden;
}

.split-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--royal), var(--navy), var(--royal-light));
  box-shadow: 0 0 12px rgba(47, 125, 225, 0.8);
  border-radius: inherit;
  transition: height 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Split feature cards - inactive by default, transitions to active on scroll */
.split-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  opacity: 0.35;
  transform: scale(0.96) translateX(-10px);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
}

.split-feature-item:hover {
  opacity: 0.7;
  transform: scale(0.98) translateX(-5px);
  background: rgba(255, 255, 255, 0.6);
}

.split-feature-item.active {
  opacity: 1;
  transform: scale(1.04) translateX(0);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(47, 125, 225, 0.28);
  box-shadow: 
    0 12px 28px rgba(47, 125, 225, 0.12),
    0 0 0 1px rgba(102, 169, 245, 0.08),
    inset 0 0 12px rgba(47, 125, 225, 0.04);
}

.split-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,125,225,0.14), rgba(15,45,107,0.12));
  color: var(--royal);
  flex-shrink: 0;
  transition: transform 300ms ease, background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.split-feature-item.active .split-feature-icon {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 125, 225, 0.35);
}

.split-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.split-feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   SHOWCASE BUBBLE (split right interactive viewport)
   ========================================== */
.showcase-bubble-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.showcase-bubble {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 40% 24% at 28% 24%, rgba(255,255,255,0.96) 0%, transparent 100%),
    radial-gradient(circle at 72% 74%, rgba(47,125,225,0.15) 0%, transparent 42%),
    radial-gradient(circle at 18% 68%, rgba(102,169,245,0.12) 0%, transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(15,45,107,0.1) 0%, transparent 36%),
    rgba(255,255,255,0.06);
  box-shadow:
    0 24px 60px rgba(47,125,225,0.18),
    0 8px 24px rgba(15,45,107,0.1),
    inset 0 0 50px rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBubbleMain 10s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #2F7DE1 0%, #66A9F5 18%, #0F2D6B 36%, #EAF4FF 54%, #2F7DE1 72%, #66A9F5 88%, #2F7DE1 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: iridescent 12s linear infinite;
  pointer-events: none;
}

.showcase-bubble::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 14%;
  width: 32%;
  height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.12) 65%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
}

.showcase-bubble.pulse-trigger {
  animation: showcaseBubblePulse 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 1;
}

@keyframes showcaseBubblePulse {
  0% { transform: scale(1); box-shadow: 0 24px 60px rgba(47,125,225,0.18), 0 8px 24px rgba(15,45,107,0.1); }
  40% { transform: scale(1.12); box-shadow: 0 35px 80px rgba(47,125,225,0.35), 0 12px 36px rgba(15,45,107,0.2); }
  70% { transform: scale(0.96); }
  100% { transform: scale(1); box-shadow: 0 24px 60px rgba(47,125,225,0.18), 0 8px 24px rgba(15,45,107,0.1); }
}

/* Showcase slides and slide animations */
.showcase-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}

.showcase-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: scale(0.7) translateY(24px);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
  z-index: 1;
  pointer-events: none;
}

.showcase-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.showcase-icon {
  width: 58px;
  height: 58px;
  color: var(--indigo);
  filter: drop-shadow(0 4px 12px rgba(99,102,241,0.25));
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.showcase-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BURST BUBBLES (spawned dynamically on step change) ── */
.burst-bubble {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(244,114,182,0.3) 0%, rgba(167,139,250,0.3) 30%, rgba(96,165,250,0.3) 60%, rgba(244,114,182,0.3) 100%
  );
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.6);
  pointer-events: none;
  animation: burstRise 1.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  z-index: 9;
}

@keyframes burstRise {
  0% {
    transform: translateY(160px) translateX(var(--start-x, 0)) scale(0.2);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-240px) translateX(var(--end-x, 20px)) scale(var(--end-scale, 1.2));
    opacity: 0;
  }
}

/* Old styles placeholder to clean up layout */
.split-feature-item-old {
  display: none;
}

/* ── RISING BUBBLE (inside the sticky viewport) ── */
.rising-bubble {
  position: absolute;
  border-radius: 50%;
  /* bottom: set by JS → starts just below the 100vh viewport */
  /* Transparent body with refraction colour spots */
  background:
    radial-gradient(ellipse 38% 22% at 28% 24%, rgba(255,255,255,0.96) 0%, transparent 100%),
    radial-gradient(circle at 72% 74%, rgba(47,125,225,0.15) 0%, transparent 42%),
    radial-gradient(circle at 18% 68%, rgba(102,169,245,0.12) 0%, transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(15,45,107,0.1) 0%, transparent 36%),
    rgba(255,255,255,0.04);
  box-shadow:
    0 6px 24px rgba(47,125,225,0.1),
    0 2px 8px rgba(15,45,107,0.06);
  animation: riseUp var(--dur, 14s) ease-in-out infinite var(--delay, 0s);
}

/* Iridescent ring – mask technique shows only the 2.5px border */
.rising-bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2.5px;
  background: conic-gradient(
    from var(--start-angle, 0deg) at 50% 50%,
    #2F7DE1 0%, #66A9F5 18%, #0F2D6B 36%,
    #EAF4FF 54%, #2F7DE1 72%, #66A9F5 88%, #2F7DE1 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: iridescent var(--iris-dur, 7s) linear infinite;
}

/* Internal glare highlight */
.rising-bubble::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 30%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.1) 65%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
}

/* ==========================================
   WHY SECTION (kept but enhanced)
   ========================================== */
.why-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo) 30%, var(--pink) 70%, transparent);
  opacity: 0.3;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47,125,225,0.13), rgba(102,169,245,0.12));
  color: var(--indigo);
  flex-shrink: 0;
  transition: transform 250ms ease, background 250ms ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, rgba(47,125,225,0.22), rgba(102,169,245,0.2));
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bubble cluster decoration */
.bubbles-cluster {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.cluster-bubble {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}

.cluster-bubble::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    var(--pink) 0%,
    var(--indigo) 35%,
    var(--blue) 60%,
    var(--cyan) 75%,
    var(--pink) 100%
  );
  z-index: -1;
  animation: iridescent 9s linear infinite;
}

.cluster-bubble::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.1) 25%, transparent 50%),
    radial-gradient(circle at 70% 72%, rgba(244,114,182,0.22) 0%, transparent 45%),
    radial-gradient(circle at 18% 68%, rgba(96,165,250,0.2) 0%, transparent 40%);
  border-radius: 50%;
}

.cb1 {
  width: 260px; height: 260px;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.25);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.5), 0 16px 48px rgba(244,114,182,0.2);
  animation: floatBubble 8s ease-in-out infinite;
}

.cb2 {
  width: 170px; height: 170px;
  top: 0; left: 6%;
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.4);
  animation: floatBubble 6.5s ease-in-out infinite 1.1s reverse;
}

.cb3 {
  width: 110px; height: 110px;
  bottom: 70px; right: 5%;
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 0 16px rgba(255,255,255,0.4);
  animation: floatBubble 5.5s ease-in-out infinite 0.4s;
}

.cb4 {
  width: 74px; height: 74px;
  top: 28px; right: 18%;
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.4);
  animation: floatBubble 7.5s ease-in-out infinite 2.2s;
}

.cb5 {
  width: 52px; height: 52px;
  bottom: 150px; left: 4%;
  background: rgba(255,255,255,0.2);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.4);
  animation: floatBubble 4.5s ease-in-out infinite 1.6s reverse;
}

/* Why-section info cards */
.why-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(47,125,225,0.12), 0 0 0 1.5px rgba(47,125,225,0.15);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  z-index: 10;
}

.wc1 { bottom: 40px; left: 15%; animation: floatBubble 5s ease-in-out infinite 0.8s; }
.wc2 { top: 30px; right: 5%; animation: floatBubble 6s ease-in-out infinite 1.5s reverse; }

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink) 30%, var(--indigo) 70%, transparent);
  opacity: 0.3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto 40px;
}

.pricing-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 280ms cubic-bezier(.18,.89,.32,1.18), box-shadow 280ms ease, border-color 250ms ease;
  cursor: pointer;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-vivid), var(--indigo), var(--blue));
  opacity: 0;
  transition: opacity 250ms ease;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 64px rgba(47,125,225,0.18), 0 8px 24px rgba(15,45,107,0.1);
  border-color: rgba(47,125,225,0.22);
}

.pricing-card:hover::after { opacity: 1; }

.pricing-card--featured {
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 12px 40px rgba(99,102,241,0.14);
  transform: translateY(-6px);
}

.pricing-card--featured::after { opacity: 1; }
.pricing-card--featured:hover { transform: translateY(-16px) scale(1.02); }

.pricing-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--indigo), var(--pink-vivid));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 24px;
  letter-spacing: 0.5px;
}

.pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,125,225,0.1), rgba(102,169,245,0.1));
  color: var(--indigo);
  margin: 0 auto 22px;
  transition: transform 250ms ease;
}

.pricing-card:hover .pricing-icon { transform: scale(1.12) rotate(-6deg); }

.pricing-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-pricing {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 200ms ease, transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(47,125,225,0.25);
}

.btn-pricing:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47,125,225,0.35);
}

.btn-pricing:focus-visible { outline: 3px solid var(--royal); outline-offset: 3px; }

.pricing-note-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(47,125,225,0.05), rgba(15,45,107,0.05));
  border: 1.5px solid rgba(47,125,225,0.14);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.inline-link {
  color: var(--royal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(47,125,225,0.3);
  transition: text-decoration-color 200ms ease, color 200ms ease;
}
.inline-link:hover { text-decoration-color: var(--royal); color: var(--navy); }

/* ==========================================
   BOOKING SECTION
   ========================================== */
.booking-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(150deg, #0F2D6B 0%, #1a4499 45%, #2F7DE1 100%);
  overflow: hidden;
}

/* Mesh pattern overlay */
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.booking-bg-bubbles { position: absolute; inset: 0; pointer-events: none; }

.booking-bubble {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.05) 30%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
  border: 1.5px solid rgba(255,255,255,0.2);
  animation: floatBubble 10s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
}

.bb1 { width: 320px; height: 320px; top: -100px; right: -80px; animation-duration: 14s; }
.bb2 { width: 220px; height: 220px; bottom: -70px; left: -60px; animation-delay: 3s; animation-duration: 11s; }
.bb3 { width: 160px; height: 160px; top: 50%; right: 12%; animation-delay: 7s; animation-duration: 9s; }

.booking-wrapper {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 52px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
}

/* Step styles */
.booking-step { }
.booking-step.hidden { display: none; }

.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

/* Service grid in booking */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  background: #fff;
}

.service-option:hover {
  border-color: rgba(47,125,225,0.4);
  background: rgba(47,125,225,0.03);
  transform: translateY(-2px);
}

.service-option.selected {
  border-color: var(--indigo);
  background: linear-gradient(135deg, rgba(47,125,225,0.05), rgba(102,169,245,0.06));
  box-shadow: 0 0 0 3px rgba(47,125,225,0.14);
}

.service-option:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; }

.service-option-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(47,125,225,0.14), rgba(15,45,107,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}

.service-option-info { flex: 1; min-width: 0; }
.service-option-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text);
  margin-bottom: 2px;
}

.service-option-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Calendar */
.calendar-wrapper {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-transform: capitalize;
}

.cal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.cal-btn:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(99,102,241,0.05); }
.cal-btn:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-header {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 8px 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  min-width: 0;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(47,125,225,0.1);
  color: var(--royal);
  transform: scale(1.08);
}

.cal-day.today {
  border-color: rgba(47,125,225,0.35);
  color: var(--royal);
  font-weight: 800;
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  border-color: transparent;
}

.cal-day.disabled, .cal-day.past {
  color: var(--border);
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day.empty { cursor: default; }
.cal-day:focus-visible { outline: 3px solid var(--royal); outline-offset: 2px; }

/* Time slots */
.time-slots-wrapper { margin-top: 8px; }

.time-slots-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.time-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-slot {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  background: #fff;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}

.time-slot:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-2px);
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(47,125,225,0.25);
}

.time-slot.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.time-slot:focus-visible { outline: 3px solid var(--royal); outline-offset: 2px; }

.no-slots {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 16px 0;
}

/* Loading state */
.loading-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spinner {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  border-top-color: var(--indigo);
  animation: spin 0.7s linear infinite;
}

.error-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(225,29,72,0.05);
  border: 1px solid rgba(225,29,72,0.2);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.retry-btn {
  background: none;
  border: none;
  color: var(--indigo);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
}

/* Nav buttons */
.booking-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1.5px solid var(--border);
  background: transparent;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.btn-back:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-back:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; }

/* Booking form */
.booking-summary-mini {
  background: linear-gradient(135deg, rgba(47,125,225,0.07), rgba(102,169,245,0.07));
  border: 1.5px solid rgba(47,125,225,0.14);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.booking-form { display: flex; flex-direction: column; gap: 0; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.form-label span { color: var(--pink-dark); }

.form-input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-input::placeholder { color: var(--text-light); }

.form-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.form-input.error { border-color: var(--pink-dark); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(225,29,72,0.1); }

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

.field-error {
  font-size: 0.8rem;
  color: var(--pink-dark);
  font-weight: 600;
  display: block;
  min-height: 16px;
}

/* Checkbox */
.form-consent { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 200ms ease, background 200ms ease;
  background: #fff;
}

.checkbox-label input:checked + .checkmark {
  background: linear-gradient(135deg, var(--pink-vivid), var(--indigo));
  border-color: transparent;
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.checkbox-label:focus-within .checkmark {
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

/* Booking success */
.booking-success {
  text-align: center;
  padding: 32px 20px;
}

.success-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
}

.success-bubble {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  animation: successPulse 2s ease-in-out infinite;
}

.success-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.success-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.success-details {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 0 auto 28px;
  max-width: 400px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo) 30%, var(--pink) 70%, transparent);
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.contact-card:hover {
  border-color: rgba(47,125,225,0.25);
  box-shadow: 0 8px 24px rgba(47,125,225,0.1);
  transform: translateX(4px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(47,125,225,0.12), rgba(15,45,107,0.12));
  color: var(--royal);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: normal;
}

.contact-value-sub {
  font-size: 0.85rem;
  color: var(--indigo);
  font-weight: 700;
  margin-top: 2px;
}

.contact-link {
  color: var(--indigo);
  text-decoration: none;
  font-weight: 700;
  transition: color 200ms ease;
  cursor: pointer;
}

.contact-link:hover { color: var(--pink-vivid); }
.contact-link:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; border-radius: 2px; }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(99,102,241,0.08);
}

.contact-form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

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

.form-success-msg, .form-error-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 600;
}

.form-success-msg {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #15803d;
}

.form-error-msg {
  background: rgba(225,29,72,0.06);
  border: 1px solid rgba(225,29,72,0.2);
  color: var(--pink-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, #091d47 0%, #0F2D6B 100%);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
  overflow: hidden;
}

.footer-bubbles { position: absolute; inset: 0; pointer-events: none; }

.footer-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: white;
}

.fb1 { width: 320px; height: 320px; top: -80px; right: -80px; }
.fb2 { width: 220px; height: 220px; bottom: -60px; left: 10%; }
.fb3 { width: 120px; height: 120px; top: 40%; right: 15%; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  position: relative;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  text-decoration: none;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.social-link:focus-visible { outline: 3px solid var(--royal-light); outline-offset: 2px; }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links-col ul, .footer-contact-col address {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
  cursor: pointer;
  display: block;
}

.footer-link:hover { color: var(--pink); transform: translateX(3px); }
.footer-link:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; border-radius: 2px; }

.footer-address p { font-size: 0.875rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-link-sm {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-link-sm:hover { color: rgba(255,255,255,0.7); }

/* ==========================================
   HIDDEN UTILITY
   ========================================== */
.hidden { display: none !important; }

/* ==========================================
   RESPONSIVE (Moved to the end of the file)
   ========================================== */

/* ==========================================
   HERO PHOTO – IMMERSIVE BLEND EFFECT
   ========================================== */

/* Remove old frame/shadow styles and apply mask blending */
.hero-photo-wrap {
  position: relative;
  width: 600px;
  max-width: 100%;
  /* overflow must stay visible for floating badges */
  overflow: visible;
}

.hero-car-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  /* No hard box-shadow – use mask to blend edges */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 18%),
    linear-gradient(to top, transparent 0%, black 14%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 18%),
    linear-gradient(to top, transparent 0%, black 14%);
  mask-composite: intersect;
  /* Subtle side shadow for depth */
  filter: drop-shadow(0 24px 60px rgba(15,45,107,0.18)) drop-shadow(0 4px 16px rgba(47,125,225,0.12));
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
  transition: transform 700ms cubic-bezier(.18,.89,.32,1.1), filter 400ms ease;
}

.hero-photo-wrap:hover .hero-car-photo {
  transform: perspective(900px) rotateY(-1.5deg) rotateX(0.5deg) scale(1.015);
  filter: drop-shadow(0 32px 80px rgba(15,45,107,0.24)) drop-shadow(0 4px 20px rgba(47,125,225,0.18));
}

/* Remove old frame that creates the rectangle look */
.hero-photo-frame { display: none; }

/* Badge and chip stay the same but enhance slightly */
.hero-photo-badge {
  box-shadow: 0 12px 40px rgba(47,125,225,0.25), 0 0 0 1.5px rgba(47,125,225,0.15);
}

/* ==========================================
   SPLIT COMPACT LIST (Left side)
   ========================================== */
.split-compact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.split-compact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 260ms cubic-bezier(0.16,1,0.3,1);
  background: rgba(255,255,255,0.4);
  outline: none;
  opacity: 0.55;
}

.split-compact-item:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(47,125,225,0.25);
  opacity: 0.85;
}

.split-compact-item.active {
  background: #fff;
  border-color: rgba(47,125,225,0.35);
  box-shadow: 0 6px 24px rgba(47,125,225,0.12), 0 0 0 1px rgba(47,125,225,0.1);
  opacity: 1;
  transform: scale(1.02);
}

.split-compact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47,125,225,0.12), rgba(15,45,107,0.1));
  color: var(--royal);
  flex-shrink: 0;
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.split-compact-item.active .split-compact-icon {
  background: linear-gradient(135deg, #2F7DE1, #0F2D6B);
  color: #fff;
  transform: scale(1.05);
}

.split-compact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 260ms ease;
}

.split-compact-item.active .split-compact-title {
  color: var(--navy);
}

/* ==========================================
   DETAIL CARD (Right side of split section)
   ========================================== */
.detail-card-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.detail-card {
  position: relative;
  width: 480px;
  max-width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 0;
  box-shadow: 
    0 24px 70px rgba(15,45,107,0.12), 
    0 8px 32px rgba(47,125,225,0.06), 
    inset 0 0 0 1px rgba(255,255,255,0.5);
  border: 1.5px solid rgba(47,125,225,0.15);
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.detail-slide {
  display: none;
  animation: detailSlideIn 380ms cubic-bezier(0.16,1,0.3,1);
}

.detail-slide.active { display: block; }

@keyframes detailSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.detail-card-body {
  padding: 28px 32px 32px;
}

.detail-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EAF4FF, #DCE7F3);
  color: var(--royal);
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(47,125,225,0.06), 0 4px 12px rgba(47,125,225,0.1);
}

.detail-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.detail-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.detail-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(47,125,225,0.1), rgba(15,45,107,0.08));
  color: var(--royal);
  border: 1px solid rgba(47,125,225,0.18);
}

/* Rising bubbles – brand colors override */
.rising-bubbles-wrap .soap-bubble,
.rising-bubble {
  border-color: rgba(47,125,225,0.25) !important;
}

/* ==========================================
   PRICING CARDS V2 – KINGCLEAN STYLE
   ========================================== */
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card-v2 {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid var(--mist);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16,1,0.3,1), box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
}

.pricing-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(47,125,225,0.15), 0 4px 12px rgba(15,45,107,0.08);
  border-color: rgba(47,125,225,0.3);
}

.pricing-card-v2--featured {
  border-color: rgba(47,125,225,0.4);
  box-shadow: 0 8px 32px rgba(47,125,225,0.14);
}

.pricing-card-v2--featured:hover {
  box-shadow: 0 24px 60px rgba(47,125,225,0.2), 0 4px 16px rgba(15,45,107,0.1);
}

/* Image area */
.pricing-card-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing-card-svg {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(47,125,225,0.12));
}

/* Bubble corner decoration */
.pricing-bubble-corner {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 1;
}

.pcb {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(47,125,225,0.3);
  animation: floatBubble 6s ease-in-out infinite;
}

.pcb1 {
  width: 44px;
  height: 44px;
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, rgba(47,125,225,0.1) 40%, transparent 65%);
  animation-duration: 7s;
}

.pcb2 {
  width: 28px;
  height: 28px;
  bottom: 24px;
  right: 36px;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6) 0%, rgba(102,169,245,0.1) 40%, transparent 65%);
  animation-duration: 5s;
  animation-delay: 1s;
  border-color: rgba(102,169,245,0.3);
}

.pcb3 {
  width: 18px;
  height: 18px;
  bottom: 46px;
  right: 14px;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5) 0%, rgba(15,45,107,0.08) 40%, transparent 65%);
  animation-duration: 9s;
  animation-delay: 2.5s;
  border-color: rgba(15,45,107,0.2);
}

/* Bestseller badge */
.pricing-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2F7DE1, #0F2D6B);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(15,45,107,0.25);
}

/* Card body */
.pricing-card-body {
  padding: 20px 22px 24px;
}

.pricing-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-card-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 2.5em;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.pcp-from {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
}

.pcp-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pcp-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-pricing-v2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 14px rgba(47,125,225,0.25);
}

.btn-pricing-v2:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,125,225,0.35);
}

/* Pricing v2 responsive */
@media (max-width: 1024px) {
  .pricing-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pricing-grid-v2 { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ==========================================
   RISING BUBBLES – BRAND COLORS
   ========================================== */

/* Override the JS-generated bubble colors */
#risingBubblesWrap .soap-bubble {
  border-color: rgba(47,125,225,0.2) !important;
}





.detail-visual-header {
  height: 180px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(47,125,225,0.1);
}

/* Background Gradients for each visual header */
.eco-bg { background: linear-gradient(135deg, rgba(234,250,244,0.95), rgba(209,250,229,0.8)); }
.speed-bg { background: linear-gradient(135deg, rgba(239,246,255,0.95), rgba(219,234,254,0.8)); }
.pro-bg { background: linear-gradient(135deg, rgba(248,250,252,0.95), rgba(226,232,240,0.8)); }
.passion-bg { background: linear-gradient(135deg, rgba(255,241,242,0.95), rgba(254,226,226,0.8)); }
.success-bg { background: linear-gradient(135deg, rgba(255,251,235,0.95), rgba(254,243,199,0.8)); }

/* visual widgets */
.visual-widget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 1. Eco Leaf Widget */
.eco-circle-pulsing {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  animation: ecoPulse 2s infinite ease-in-out;
}
.eco-badge-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.2);
}
.eco-leaf {
  width: 24px;
  height: 24px;
  animation: ecoLeafWobble 4s infinite ease-in-out;
}
.eco-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #065f46;
}

@keyframes ecoPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.9); opacity: 0.8; }
}
@keyframes ecoLeafWobble {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg) scale(1.05); }
}

/* 2. Clock Widget */
.speed-clock-wrap {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--royal);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(47,125,225,0.15);
}
.speed-clock-face {
  position: relative;
  width: 100%;
  height: 100%;
}
.clock-hand {
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  left: 50%;
  bottom: 50%;
  transform-origin: bottom center;
}
.clock-hand--hour {
  width: 3px;
  height: 20px;
  margin-left: -1.5px;
  animation: spinClockHand 12s linear infinite;
}
.clock-hand--minute {
  width: 2px;
  height: 28px;
  margin-left: -1px;
  animation: spinClockHand 1s linear infinite;
}
.speed-badge-card {
  position: absolute;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(15,45,107,0.2);
}
.speed-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
  animation: speedPulseDot 1.5s infinite;
}

@keyframes spinClockHand {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes speedPulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* 3. Pro Equipment Gauge Widget */
.gauge-meter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}
.gauge-track {
  stroke: rgba(226, 232, 240, 0.8);
}
.gauge-fill {
  stroke: var(--royal);
  stroke-linecap: round;
  animation: gaugeFillAnim 3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.gauge-val {
  position: absolute;
  top: 26px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}
.gauge-sub {
  position: absolute;
  top: 56px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@keyframes gaugeFillAnim {
  from { stroke-dashoffset: 251.2; }
  to { stroke-dashoffset: 15; } /* 95% */
}

/* 4. Heart Passion Widget */
.passion-heart-badge {
  position: relative;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(244,63,94,0.12);
  border: 1px solid rgba(244,63,94,0.15);
}
.passion-heart {
  width: 38px;
  height: 38px;
  color: #f43f5e;
  animation: heartPulse 1.4s infinite ease-in-out;
}
.passion-floating-stars {
  position: absolute;
  inset: -10px;
  pointer-events: none;
}
.passion-floating-stars span {
  position: absolute;
  color: #f59e0b;
  font-size: 14px;
  animation: starFloat 3s infinite ease-in-out;
}
.passion-floating-stars span:nth-child(1) { top: 0; left: 10px; animation-delay: 0.2s; }
.passion-floating-stars span:nth-child(2) { top: 15px; right: 0; animation-delay: 0.8s; }
.passion-floating-stars span:nth-child(3) { bottom: 5px; left: 0; animation-delay: 1.4s; }

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes starFloat {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.3; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

/* 5. Rating Widget */
.rating-badge-card {
  background: #fff;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.google-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.stars-row {
  display: flex;
  gap: 2px;
}
.stars-row span {
  color: #FBBC05;
  font-size: 1.1rem;
}
.rating-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
}
.rating-verified {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
}

/* ==========================================
   RESPONSIVE (Reorganized at the end)
   ========================================== */

/* 1200px */
@media (max-width: 1200px) {
  .split-bubble-section {
    overflow: hidden !important;
  }
  .split-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .split-left {
    position: static;
    height: auto;
    padding: 60px 24px;
    display: block; /* override flex to avoid row alignment issues */
  }
  .split-right {
    min-height: auto !important;
  }
  .rising-viewport {
    position: static !important;
    height: auto !important;
    padding: 40px 16px !important;
    overflow: hidden !important;
  }
  /* Mobile overrides for scroll timeline */
  .split-timeline-container {
    display: none !important; /* Hide to avoid duplicate content on mobile */
  }
  .split-timeline-track {
    display: none !important;
  }
  .split-compact-item {
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
  }
  .split-compact-item:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(47,125,225,0.25) !important;
  }
  .showcase-bubble-container {
    display: none !important;
  }
  .detail-card-container {
    position: static !important;
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .detail-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .detail-slide {
    display: block !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 28px !important;
    border: 1.5px solid rgba(47, 125, 225, 0.15) !important;
    box-shadow: var(--shadow-md) !important;
    margin-bottom: 24px !important;
    overflow: hidden !important;
    animation: none !important;
  }
  .rising-bubbles-wrap {
    display: none !important; /* Hide floating bubbles in split section to prevent overflow */
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 40px; }
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-photo-wrap { width: 100% !important; max-width: 480px !important; margin: 0 auto !important; }
  .hero-car-photo { height: 340px !important; transform: none !important; }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar-inner { padding: 0 16px !important; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-cta-group { justify-content: center; }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .stat-item {
    flex: 1 1 100px;
    text-align: center;
  }
  .stat-label {
    white-space: normal;
    max-width: 140px;
    margin: 0 auto;
  }
  .stat-divider {
    display: none;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Photo responsive */
  .hero-photo-wrap {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }

  .hero-car-photo {
    height: 280px !important;
    transform: none !important;
  }

  .hero-photo-badge {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    bottom: 16px !important;
    width: fit-content !important;
    position: absolute !important;
  }

  .hero-photo-chip {
    right: 16px !important;
    top: 16px !important;
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-grid-v2 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .booking-wrapper { padding: 28px 20px !important; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .split-sticky { padding: 60px 24px; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem !important; letter-spacing: -0.5px !important; }
  .hero-subtitle { font-size: 1.0rem !important; line-height: 1.6 !important; }
  .pricing-grid { max-width: 100%; }
  .booking-wrapper { padding: 20px 12px !important; }
  
  .btn-primary, .btn-secondary { width: 100% !important; justify-content: center !important; }
  .hero-cta-group { flex-direction: column !important; align-items: stretch !important; width: 100% !important; max-width: 320px !important; margin: 0 auto 36px !important; }

  .calendar-wrapper { padding: 12px 8px !important; }
  .calendar-grid { gap: 2px !important; }
  .cal-day { font-size: 0.8rem !important; }
  .cal-month-label { font-size: 0.95rem !important; }
  .time-slot { font-size: 0.8rem !important; padding: 8px 14px !important; }
  .contact-form-wrap { padding: 24px 16px !important; }
}

