/* ============================================
   CARE-IN-CLEANING SERVICES — Master Stylesheet
   Premium Cleaning | Cape Town
   Palette: Purple, Pink & White
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary — Purple / Pink (brand colours) */
  --primary-50: #faf5ff;
  --primary-100: #f3e8ff;
  --primary-200: #e9d5ff;
  --primary-300: #d8b4fe;
  --primary-400: #c084fc;
  --primary-500: #a855f7;
  --primary-600: #9333ea;
  --primary-700: #7e22ce;
  --primary-800: #6b21a8;
  --primary-900: #581c87;

  /* Accent — Soft Purple (brand warmth) */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;

  /* Lavender accents */
  --lavender: #b4a7d6;
  --lavender-light: #d5cceb;
  --lavender-mist: #ece8f5;

  /* Metallics */
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --platinum: #e5e4e2;
  --chrome: #dcdcdc;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --dark: #0b1120;

  /* Functional */
  --success: #10b981;
  --error: #ef4444;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --container-padding: clamp(20px, 4vw, 48px);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-medium: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.75);
  --glass-border-light: rgba(255, 255, 255, 0.9);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-600);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 120px;
  height: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar-inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 3px;
  animation: preloaderFill 2s var(--ease-out-expo) forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo img {
  height: 100px;
  width: auto;
  transition: height var(--transition-fast);
}

.navbar.scrolled .nav-logo img {
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 2px;
  transition: width var(--transition-medium);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
  padding: 10px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 3px;
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}

.navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2e 0%, #16082a 40%, #0d0618 100%);
}

.hero-canvas-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 20, 0.3) 0%,
    rgba(10, 5, 20, 0.1) 40%,
    rgba(10, 5, 20, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-300);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge .sparkle {
  font-size: 1rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, var(--primary-300), var(--primary-200), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-subheading em {
  color: var(--primary-300);
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 1.3em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 60px;
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 25px rgba(147, 51, 234, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(147, 51, 234, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Hero floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-400);
  border-radius: 50%;
  opacity: 0.3;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-400), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ---------- Services Section ---------- */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--white), var(--off-white));
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.services-header .section-subheading {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

/* Service Card — Glassmorphism */
.service-card {
  position: relative;
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border-light);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300), var(--primary-200));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 20px 60px rgba(147, 51, 234, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(168, 85, 247, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-600);
  transition: color var(--transition-fast);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-600);
  transition: all var(--transition-fast);
}

.service-card:hover .learn-more {
  gap: 12px;
}

/* ---------- Add-Ons Marquee Section ---------- */
.addons-section {
  padding: var(--section-padding) 0;
  background: var(--white);
  overflow: hidden;
}

.addons-header {
  text-align: center;
  margin-bottom: 56px;
}

.addons-header .section-subheading {
  margin: 0 auto;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.addon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: default;
}

.addon-chip:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.25);
}

.addon-chip .chip-icon {
  font-size: 1.1rem;
}

/* ---------- Promise / Trust Section ---------- */
.promise-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #16082a 50%, #0d0618 100%);
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promise-header {
  text-align: center;
  margin-bottom: 72px;
}

.promise-header .section-label {
  color: var(--primary-400);
}

.promise-header .section-heading {
  color: var(--white);
}

.promise-header .section-subheading {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.promise-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.promise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.promise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.promise-card:hover::after {
  opacity: 1;
}

.promise-3d-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition-medium);
}

.promise-card:hover .promise-3d-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.3);
}

.promise-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.promise-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---------- Stats Counter Section ---------- */
.stats-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info p {
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-600);
}

.contact-detail-text h4 {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-detail-text a {
  color: var(--primary-600);
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--primary-700);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--gray-100);
}

/* Multi-step form */
.form-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.step-circle.active {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: var(--white);
}

.step-circle.completed {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  transition: background var(--transition-fast);
}

.step-line.active {
  background: var(--primary-500);
}

/* Form fields */
.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
  animation: fadeSlideUp 0.4s var(--ease-out-expo);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.btn-form-next,
.btn-form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-form-next:hover,
.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.btn-form-prev {
  padding: 14px 32px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-form-prev:hover {
  background: var(--gray-200);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.active {
  display: block;
  animation: fadeSlideUp 0.6s var(--ease-out-expo);
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-500);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  filter: brightness(2);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-400);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--primary-400);
}

/* ---------- Page Header (for About, FAQ, Booking) ---------- */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1a0a2e 0%, #16082a 50%, #0d0618 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.page-header .breadcrumbs {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.page-header .breadcrumbs a {
  color: var(--primary-400);
}

/* ---------- About Page ---------- */
.about-story {
  padding: var(--section-padding) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}

.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  pointer-events: none;
}

.about-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-story-content p {
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-story-content blockquote {
  border-left: 4px solid var(--primary-500);
  padding-left: 24px;
  margin: 28px 0;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
}

/* About Values */
.about-values {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- FAQ Page ---------- */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-section .container {
  max-width: 800px;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.faq-cat-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--primary-50);
  color: var(--primary-700);
  border-color: var(--primary-200);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-200);
  box-shadow: 0 4px 24px rgba(147, 51, 234, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1rem;
  transition: color var(--transition-fast);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--primary-600);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--gray-400);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- Booking Page ---------- */
.booking-section {
  padding: var(--section-padding) 0;
}

.booking-form-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-100);
}

.booking-progress {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
}

.booking-progress-step {
  display: flex;
  align-items: center;
  gap: 4px;
}

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.progress-dot.completed {
  background: var(--success);
  color: var(--white);
}

.progress-line {
  width: 48px;
  height: 2px;
  background: var(--gray-200);
  transition: background 0.3s ease;
}

.progress-line.active {
  background: var(--primary-400);
}

/* Checkbox group for add-ons */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.checkbox-label:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-500);
  width: 18px;
  height: 18px;
}

.checkbox-label input[type="checkbox"]:checked + span {
  color: var(--primary-700);
  font-weight: 600;
}

/* Day selection */
.day-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-chip {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--gray-50);
}

.day-chip:hover,
.day-chip.selected {
  background: var(--primary-500);
  color: var(--white);
  border-color: var(--primary-500);
}

/* ---------- Reveal Animations ---------- */
/* Initial hidden state — GSAP handles the animation, no CSS transitions needed */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ---------- Cursor ---------- */
.cursor-follower {
  display: none;
}

/* ---------- Responsive Design ---------- */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-grid {
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
  /* --- Navigation --- */
  /* Remove backdrop-filter on mobile so it doesn't create a containing block
     that breaks position:fixed on the child .nav-links overlay */
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #ffffff;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s, transform 0.4s var(--ease-out-expo);
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Hide chat widget behind mobile nav overlay */
  body.menu-open .cic-widget-fab,
  body.menu-open .cic-widget-window {
    display: none;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-800) !important;
    padding: 8px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span {
    background: var(--gray-800) !important;
  }

  .nav-cta {
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-heading br {
    display: none;
  }

  .hero-subheading {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .hero-scroll-indicator {
    bottom: 20px;
    font-size: 0.65rem;
  }

  .scroll-line {
    height: 28px;
  }

  /* --- Section spacing --- */
  :root {
    --section-padding: clamp(48px, 8vw, 80px);
    --container-padding: clamp(16px, 4vw, 32px);
  }

  .section-heading {
    font-size: clamp(1.7rem, 5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .section-subheading {
    font-size: 1rem;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card:hover {
    transform: translateY(-6px);
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  /* --- Add-ons Marquee --- */
  .addon-chip {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .marquee-container::before,
  .marquee-container::after {
    width: 60px;
  }

  /* --- Promise --- */
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promise-card {
    padding: 32px 24px;
  }

  .promise-3d-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }

  .promise-header {
    margin-bottom: 48px;
  }

  /* --- Stats --- */
  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }

  .form-steps {
    gap: 4px;
    margin-bottom: 28px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .step-line {
    width: 28px;
  }

  .form-buttons {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn-form-next,
  .btn-form-submit,
  .btn-form-prev {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }

  /* --- Footer --- */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }

  /* --- Page Header (About, FAQ, Booking) --- */
  .page-header {
    padding: 120px 0 48px;
  }

  .page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-header p {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  /* --- About --- */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-image {
    order: -1;
  }

  .about-story-image img {
    height: 320px;
    border-radius: 16px;
  }

  .about-story-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .about-story-content blockquote {
    font-size: 1.1rem;
    padding-left: 16px;
    margin: 20px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 28px 24px;
  }

  /* --- FAQ --- */
  .faq-categories {
    gap: 8px;
    margin-bottom: 32px;
  }

  .faq-cat-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  /* --- Booking --- */
  .booking-form-container {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .booking-progress {
    gap: 2px;
    margin-bottom: 32px;
  }

  .progress-dot {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .progress-line {
    width: 28px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checkbox-label {
    padding: 10px 14px;
    min-height: 48px;
  }

  .day-selector {
    gap: 6px;
  }

  .day-chip {
    padding: 10px 14px;
    font-size: 0.8rem;
    min-height: 44px;
  }

  /* --- Buttons (touch-friendly) --- */
  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 0.9rem;
    min-height: 48px;
  }

  /* --- Cursor (hide on mobile) --- */
  .cursor-follower {
    display: none;
  }

  /* --- Reveal (reduce transform distance) --- */
  .reveal {
    transform: translateY(24px);
  }

  .reveal-left {
    transform: translateX(-24px);
  }

  .reveal-right {
    transform: translateX(24px);
  }
}

/* ---- Small Mobile (max-width: 480px) ---- */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero-subheading {
    font-size: 0.88rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .faq-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .faq-cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .promise-card {
    padding: 24px 20px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .booking-form-container {
    padding: 24px 16px;
  }

  .page-header {
    padding: 100px 0 36px;
  }

  .footer h4 {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .addon-chip {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .booking-progress {
    flex-wrap: wrap;
    justify-content: center;
  }

  .progress-line {
    width: 20px;
  }
}

/* ---- Landscape phones ---- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ---- Hover media query — disable hover effects on touch ---- */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }

  .promise-card:hover {
    transform: none;
  }

  .value-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-outline:hover {
    transform: none;
  }
}

/* ---------- Selection Color ---------- */
::selection {
  background: rgba(168, 85, 247, 0.2);
  color: var(--gray-900);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
