@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ── Primary: Imperial Deep Violet & Pure 24K Gold ────────────────────── */
  --color-primary: #6D28D9;
  --color-primary-hover: #5B21B6;
  --color-primary-dark: #4C1D95;
  --color-primary-light: #F5F3FF;
  --color-primary-subtle: #FAF5FF;
  --color-primary-glow: rgba(109, 40, 217, 0.28);
  --color-primary-gradient: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 50%, #F59E0B 100%);

  /* ── Gold / Amber Accent ─────────────────────────────────────────── */
  --color-gold: #F59E0B;
  --color-gold-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
  --color-gold-light: #FFFBEB;

  /* ── Warm Aubergine & Deep Violet Typography (No Black) ─────────── */
  --color-ink-0: #1B0B33;
  --color-ink-1: #2B124F;
  --color-ink-2: #3E1E6E;
  --color-ink-3: #5F379E;
  --color-ink-4: #8B67C9;
  --color-ink-5: #C4B5FD;

  /* ── Lavender Pearl & Soft Velvet Surfaces (No Blue/Green/Pink) ─── */
  --color-surface-0: #FFFFFF;
  --color-surface-1: #FAF7FF;
  --color-surface-2: #F3ECFF;
  --color-surface-3: #E8DDFF;

  /* ── Borders ──────────────────────────────────────────────────── */
  --color-border-cool: #E5D8FF;
  --color-border-hover: #CDB4FF;

  /* ── Fonts ────────────────────────────────────────────────────── */
  --font-heading: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ── Radii ────────────────────────────────────────────────────── */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────────────── */
  --shadow-subtle: 0 2px 8px rgba(62, 30, 110, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(62, 30, 110, 0.07), 0 2px 6px rgba(62, 30, 110, 0.04);
  --shadow-hover: 0 12px 32px -4px rgba(62, 30, 110, 0.12), 0 4px 12px rgba(109, 40, 217, 0.16);
  --shadow-mega: 0 24px 60px -12px rgba(62, 30, 110, 0.18);

  --container-max: 1240px;
}

/* Reset & Base — Universal iOS & Android Optimization */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink-2);
  background-color: var(--color-surface-0);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-touch-callout: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-ink-0);
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utility Badges & Buttons */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border-cool);
  backdrop-filter: blur(8px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink-2);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.6;
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(109, 40, 217, 0.45);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: var(--color-ink-0);
  border: 1px solid var(--color-border-cool);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-primary-subtle);
}

/* ── Call Now Responsive Button ──────────────────────────────── */
.btn-call-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--color-surface-0);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.15);
}

.btn-call-nav:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.3);
}

.btn-call-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-call-drawer:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-cool);
  transition: all 0.25s ease;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.site-header.scrolled {
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.98);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-ink-0);
  letter-spacing: -0.02em;
}

.brand-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(246, 168, 25, 0.4);
  background: #000;
}

.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo .brand-text .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-ink-0);
}

.brand-logo .brand-text .brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink-2);
  padding: 0.6rem 0;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--color-primary);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Mega Menus */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-cool);
  box-shadow: var(--shadow-mega);
  padding: 1.25rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-services {
  width: 620px;
}

.mega-grid-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}

.mega-grid-services::-webkit-scrollbar {
  width: 5px;
}
.mega-grid-services::-webkit-scrollbar-thumb {
  background: var(--color-border-cool);
  border-radius: 4px;
}

.mega-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.mega-service-item:hover {
  background-color: var(--color-surface-1);
}

.mega-service-item .service-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.mega-service-item .service-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-0);
}

.mega-cities {
  width: 440px;
}

.mega-grid-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.mega-city-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-2);
  transition: all 0.15s ease;
}

.mega-city-item:hover {
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
}

.mega-footer-link {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-cool);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.mega-footer-link:hover {
  text-decoration: underline;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-1);
  color: var(--color-ink-0);
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Section — Modern Dynamic Aurora Canvas
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: 
    radial-gradient(circle at 15% 15%, rgba(108, 92, 231, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(246, 168, 25, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(108, 92, 231, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF9FE 100%);
}

.hero-dot-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(108, 92, 231, 0.14) 1.25px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 85%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: clamp(2.5rem, 4vw + 1rem, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 1rem;
  margin-bottom: 1.15rem;
  color: var(--color-ink-0);
  line-height: 1.08;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 40%, #F59E0B 75%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 900;
  filter: drop-shadow(0 2px 14px rgba(245, 158, 11, 0.35));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-ink-3);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-request-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-request-link:hover {
  color: var(--color-primary-hover);
}

.app-badges-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem;
  background: #1B0B33;
  color: #ffffff;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 4px 12px rgba(27, 11, 51, 0.25);
}

.app-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.app-store-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.badge-text-sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  line-height: 1;
}

.badge-text-main {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-rating-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.star-rating {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.star-rating svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.star-rating.green-stars {
  color: #F59E0B;
}

.star-rating.green-stars svg {
  fill: #F59E0B;
}

.hero-locality-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  background: rgba(109, 40, 217, 0.08);
  border: 1.5px solid rgba(109, 40, 217, 0.25);
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 100%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.08);
}

.hero-locality-link:hover {
  background: rgba(109, 40, 217, 0.16);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.25);
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .hero-locality-link {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.65rem 1rem;
    text-align: center;
  }
}

.rating-text {
  font-size: 0.875rem;
  color: var(--color-ink-3);
}

.rating-text strong {
  color: var(--color-ink-0);
  font-weight: 700;
}

/* ==========================================================================
/* ==========================================================================
   Hero Pillars Grid (Trust Highlights - Unique 3D Bento Glass Cards)
   ========================================================================== */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
  width: 100%;
}

.hero-pillar-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 18px rgba(108, 92, 231, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  cursor: default;
}

/* Diagonal Shine Effect on Hover */
.pillar-card-shine {
  position: absolute;
  top: -80%;
  left: -80%;
  width: 260%;
  height: 260%;
  background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transform: rotate(25deg);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero-pillar-card:hover .pillar-card-shine {
  opacity: 1;
  transform: rotate(25deg) translate(35%, 35%);
  transition: transform 0.85s ease, opacity 0.2s;
}

/* Individual Color Theming */
.pillar-card-emerald {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 253, 245, 0.85) 100%);
  border-color: rgba(16, 185, 129, 0.28);
}
.pillar-card-emerald:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(16, 185, 129, 0.24), 0 0 0 1.5px rgba(16, 185, 129, 0.5);
  border-color: rgba(16, 185, 129, 0.5);
}

.pillar-card-purple {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 255, 0.85) 100%);
  border-color: rgba(124, 58, 237, 0.25);
}
.pillar-card-purple:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(124, 58, 237, 0.24), 0 0 0 1.5px rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.5);
}

.pillar-card-amber {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 243, 199, 0.85) 100%);
  border-color: rgba(245, 158, 11, 0.28);
}
.pillar-card-amber:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(245, 158, 11, 0.24), 0 0 0 1.5px rgba(245, 158, 11, 0.5);
  border-color: rgba(245, 158, 11, 0.5);
}

.pillar-card-blue {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.85) 100%);
  border-color: rgba(37, 99, 235, 0.28);
}
.pillar-card-blue:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(37, 99, 235, 0.24), 0 0 0 1.5px rgba(37, 99, 235, 0.5);
  border-color: rgba(37, 99, 235, 0.5);
}

.pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  z-index: 2;
  position: relative;
}

.hero-pillar-card:hover .pillar-icon {
  transform: scale(1.14) translateY(-2px);
}

.pillar-icon-emerald {
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.22);
}

.pillar-icon-purple {
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.22);
}

.pillar-icon-amber {
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.22);
}

.pillar-icon-blue {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);
}

.pillar-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  z-index: 2;
  position: relative;
}

.pillar-title {
  font-size: 0.92rem;
  font-weight: 750;
  color: #0F172A;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (max-width: 600px) {
  .hero-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.live-cities-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.live-cities-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-ink-4);
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.city-chip {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink-2);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border-cool);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  transition: all 0.15s ease;
}

.city-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #ffffff;
}

.city-chip.more-cities {
  color: var(--color-primary);
  font-weight: 700;
  border-color: transparent;
  background: var(--color-primary-subtle);
}

/* Hero Visual Box */
.hero-visual-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(165deg, #16152B 0%, #0D0C1A 100%);
  border: 4px solid #2B284E;
  border-radius: 40px;
  box-shadow: 0 30px 70px -10px rgba(108, 92, 231, 0.35), 0 15px 35px rgba(0, 0, 0, 0.5);
  padding: 1.6rem;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-phone-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: 0 35px 80px -10px rgba(108, 92, 231, 0.45), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.phone-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-greeting {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
}

.active-booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(108, 92, 231, 0.25);
  border: 1px solid rgba(108, 92, 231, 0.5);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #B0A8FF;
  box-shadow: 0 0 14px rgba(108, 92, 231, 0.3);
}

.phone-hero-map {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.map-pro-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pro-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: var(--color-ink-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 14px var(--color-primary-glow);
}

.pro-details h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.pro-details p {
  color: #FDE68A;
  font-size: 0.8125rem;
}

.eta-counter {
  margin-top: 1rem;
  background: rgba(225, 29, 72, 0.18);
  border: 1px solid rgba(225, 29, 72, 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eta-counter .time-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #F59E0B;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.phone-quick-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.phone-service-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.2s ease;
}

.phone-service-pill:hover {
  background: rgba(225, 29, 72, 0.35);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 20px 40px -5px rgba(15, 14, 23, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(108, 92, 231, 0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: float-badge 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: -20px;
  left: -28px;
}

.floating-badge.badge-bottom {
  bottom: -22px;
  right: -24px;
  animation-delay: 2s;
}

@keyframes float-badge {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.float-icon.gold-bg {
  background: var(--color-gold-light);
  color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(246, 168, 25, 0.25);
}

.float-text h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-ink-0);
  line-height: 1.2;
}

.float-text p {
  font-size: 0.75rem;
  color: var(--color-ink-3);
  font-weight: 500;
}

/* ==========================================================================
   Press Marquee Section
   ========================================================================== */
.press-section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--color-border-cool);
  border-bottom: 1px solid var(--color-border-cool);
  background: var(--color-surface-1);
  overflow: hidden;
}

.press-title {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink-4);
  margin-bottom: 1.5rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 3rem;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3.5rem;
  min-width: 100%;
  animation: scroll-marquee 28s linear infinite;
}

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

.press-logo-item {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-ink-4);
  letter-spacing: -0.02em;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.press-logo-item:hover {
  opacity: 1;
  color: var(--color-ink-0);
}

/* ==========================================================================
   Why Shreshth / Value & Live Counter Stats
   ========================================================================== */
.why-section {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-ink-3);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-card.gold-stat .stat-number {
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink-3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--color-ink-3);
  line-height: 1.6;
}

/* ==========================================================================
   Our Services Grid & Interactive Task Stacking Calculator
   ========================================================================== */
.services-section {
  padding: 5.5rem 0;
  background: var(--color-surface-1);
  border-top: 1px solid var(--color-border-cool);
  border-bottom: 1px solid var(--color-border-cool);
}

.services-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-3);
  background: #ffffff;
  border: 1px solid var(--color-border-cool);
  transition: all 0.15s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
}

.services-grid-20 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.service-box {
  background: #ffffff;
  border: 1.5px solid #EAE8F7;
  border-radius: 18px;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 14, 23, 0.04);
  will-change: transform;
}

.service-box:hover {
  border-color: var(--color-primary);
  box-shadow: 0 14px 32px rgba(225, 29, 72, 0.16), 0 2px 8px rgba(225, 29, 72, 0.08);
  transform: translateY(-5px);
}

.service-card-thumb {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.9rem;
  background: var(--color-surface-2);
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.service-box:hover .service-card-thumb img {
  transform: scale(1.06);
}

.service-card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.2rem 0.2rem 0.1rem;
}

.service-card-icon {
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.service-box-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-ink-0);
  margin-bottom: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-box:hover .service-box-title {
  color: var(--color-primary);
}

.service-card-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-cool);
  margin: 0.9rem 0;
}

.service-box-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
}

.service-detail-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-box:hover .service-detail-link {
  gap: 0.55rem;
  color: #5849D0;
}

.service-price {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.service-time {
  color: var(--color-ink-4);
  font-weight: 500;
}

/* Task Stacker Interactive Widget */
.task-stacker-widget {
  background: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-hover);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.stacker-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stacker-info p {
  color: var(--color-ink-3);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.stack-selected-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 42px;
}

.stack-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

.stack-pill-tag .remove-btn {
  font-weight: 800;
  cursor: pointer;
  opacity: 0.6;
}

.stack-pill-tag .remove-btn:hover {
  opacity: 1;
}

.stacker-checkout-box {
  background: var(--color-surface-1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border-cool);
}

.plan-type-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  background: var(--color-surface-3);
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.plan-btn {
  padding: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  text-align: center;
  color: var(--color-ink-3);
}

.plan-btn.active {
  background: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-subtle);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-ink-3);
  margin-bottom: 0.5rem;
}

.calc-row.total-row {
  border-top: 1px dashed var(--color-border-cool);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-ink-0);
}

.calc-row.total-row .total-amount {
  color: var(--color-primary);
}

/* ==========================================================================
   How It Works (Midnight Cyber-Glass Section)
   ========================================================================== */
.how-it-works-section {
  padding: 6.5rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.22) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(246, 168, 25, 0.14) 0%, transparent 40%),
              #0D0C18;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.how-it-works-section .section-title {
  color: #ffffff;
}

.how-it-works-section .section-desc {
  color: #B5B2D4;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.how-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.how-step-card:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(108, 92, 231, 0.3);
}

.step-number-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFDF6D;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.25rem 0.65rem;
  background: rgba(246, 168, 25, 0.12);
  border: 1px solid rgba(246, 168, 25, 0.25);
  border-radius: 100px;
}

.how-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.how-step-desc {
  font-size: 0.9375rem;
  color: #B0ADC9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-card-visual {
  height: 160px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Shreshth Verified (Safety & Protection)
   ========================================================================== */
.verified-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.verified-box {
  background: linear-gradient(135deg, #151329 0%, #0E0C1C 100%);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(108, 92, 231, 0.25);
}

.verified-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.35) 0%, transparent 70%);
  filter: blur(60px);
}

.verified-content h2 {
  color: #ffffff;
  font-size: 2.35rem;
  margin-bottom: 1rem;
}

.verified-content p {
  color: #B5B2D4;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.verified-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.v-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.v-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.3);
  color: #FFDF6D;
  border: 1px solid rgba(246, 168, 25, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
}

.v-item-text h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.v-item-text p {
  color: #A9A6C4;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.verified-badge-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.verified-shield-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.25rem;
  background: #000000;
  border-radius: 50%;
  border: 3px solid #F6A819;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(246, 168, 25, 0.25), 0 0 30px rgba(246, 168, 25, 0.45);
  overflow: hidden;
  padding: 0;
}

.verified-shield-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ==========================================================================
   Customer Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--color-surface-1);
  overflow: hidden;
}

.testimonials-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-testimonials 35s linear infinite;
}

.testimonials-track.reverse {
  animation: scroll-testimonials-reverse 35s linear infinite;
}

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

@keyframes scroll-testimonials-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.review-card {
  flex: 0 0 360px;
  background: #ffffff;
  border: 1.5px solid #EAE8F7;
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: 0 4px 16px rgba(15, 14, 23, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 32px rgba(225, 29, 72, 0.12);
}

.review-quote {
  font-size: 0.9375rem;
  color: var(--color-ink-1);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
}

.reviewer-info h5 {
  font-size: 0.875rem;
  font-weight: 700;
}

.reviewer-info p {
  font-size: 0.75rem;
  color: var(--color-ink-4);
}

/* ==========================================================================
   City & Pincode Coverage Checker
   ========================================================================== */
.city-checker-section {
  padding: 5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-cool);
}

.checker-container-box {
  background: linear-gradient(135deg, #FFF7F8 0%, #FAF2F6 60%, #FFFBEB 100%);
  border: 1.5px solid var(--color-border-cool);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 16px 40px -10px rgba(225, 29, 72, 0.08);
}

.checker-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checker-input-row {
  display: flex;
  gap: 0.75rem;
}

.checker-input {
  flex: 1;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-cool);
  background: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(77, 43, 93, 0.04);
}

.checker-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18);
}

.checker-result-box {
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

.checker-result-box.success {
  display: block;
  background: #EAF8EF;
  color: #036838;
  border: 1px solid #B8E6CA;
}

.checker-result-box.error {
  display: block;
  background: #FFF0F0;
  color: #C02626;
  border: 1px solid #FFD1D1;
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background: var(--color-surface-1);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink-0);
}

.faq-icon-cross {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--color-ink-4);
}

.faq-item.open .faq-icon-cross {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--color-ink-3);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Closing CTA App Banner
   ========================================================================== */
.closing-cta-section {
  padding: 5rem 0;
  background: #ffffff;
}

.cta-banner-card {
  background: linear-gradient(135deg, #18092B 0%, #371269 40%, #5B21B6 75%, #7C3AED 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(91, 33, 182, 0.35), 0 0 0 1px rgba(245, 158, 11, 0.25);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 158, 11, 0.22) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.cta-banner-card .cta-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-banner-card .cta-subtitle {
  color: #E9D5FF;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-white-pill {
  background: #ffffff;
  color: var(--color-primary-dark);
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-white-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Detail Page — App Experience Showcase (3D Phone Mockups + Imperial Violet Theme)
   ========================================================================== */
.app-experience-showcase-section {
  padding: 4.5rem 0 3.5rem;
  background: #ffffff;
}

.app-experience-card {
  background: linear-gradient(180deg, #FAF5FF 0%, #F3E8FF 50%, #EDE5FF 100%);
  border: 1.5px solid rgba(109, 40, 217, 0.2);
  border-radius: 28px;
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(109, 40, 217, 0.12);
}

.app-experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(109, 40, 217, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* 3D Phone Mockups Fan Deck */
.app-phones-deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.phone-mockup-frame {
  width: 220px;
  height: 380px;
  background: #0f172a;
  border: 7px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.phone-notch {
  width: 70px;
  height: 14px;
  background: #1e293b;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch-cam {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0f172a;
}

.phone-screen-inner {
  flex: 1;
  background: #ffffff;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 0.75rem;
}

/* Left Phone (Angle Left) */
.phone-left {
  transform: rotate(-10deg) translateY(18px) translateX(25px) scale(0.92);
  z-index: 1;
  opacity: 0.95;
}

.phone-left:hover {
  transform: rotate(-6deg) translateY(6px) translateX(25px) scale(0.96);
  z-index: 4;
}

/* Center Phone (Hero Front) */
.phone-center {
  width: 235px;
  height: 405px;
  border-color: #0f172a;
  border-width: 8px;
  border-radius: 40px;
  transform: translateY(-8px) scale(1.05);
  z-index: 3;
  box-shadow: 0 26px 60px rgba(109, 40, 217, 0.35), 0 0 0 2px rgba(245, 158, 11, 0.5);
}

.phone-center:hover {
  transform: translateY(-16px) scale(1.08);
}

/* Right Phone (Angle Right) */
.phone-right {
  transform: rotate(10deg) translateY(18px) translateX(-25px) scale(0.92);
  z-index: 1;
  opacity: 0.95;
}

.phone-right:hover {
  transform: rotate(6deg) translateY(6px) translateX(-25px) scale(0.96);
  z-index: 4;
}

/* Screen mock items */
.screen-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.45rem;
  font-weight: 700;
  font-size: 0.7rem;
}

.screen-pill-badge {
  background: #F5F3FF;
  color: #6D28D9;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 9999px;
  border: 1px solid #DDD6FE;
}

.screen-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.screen-service-mini {
  background: #FAF7FF;
  border: 1px solid #EDE5FF;
  border-radius: 8px;
  padding: 0.35rem;
  text-align: center;
}

.screen-service-mini .icon {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.1rem;
}

.screen-service-mini .name {
  font-size: 0.6rem;
  font-weight: 700;
  color: #1e293b;
}

.screen-track-card {
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
}

.screen-pro-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.screen-cta-btn {
  background: linear-gradient(135deg, #6D28D9 0%, #F59E0B 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.45rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.68rem;
  margin-top: auto;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(109, 40, 217, 0.25);
}

/* App Showcase Typography & Actions */
.app-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.app-showcase-title {
  color: #0f172a;
  font-size: clamp(2rem, 3.2vw + 0.5rem, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.app-showcase-subtitle {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.app-badges-deck {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.app-store-pill {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.app-store-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  color: #ffffff;
}

.app-store-pill svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.app-store-pill-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

.app-store-pill-main {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.app-showcase-proof {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .app-experience-card {
    padding: 2.5rem 1.25rem 2rem;
    border-radius: 20px;
  }
  .app-phones-deck {
    margin-bottom: 2rem;
  }
  .phone-left, .phone-right {
    display: none;
  }
  .phone-center {
    width: 210px;
    height: 360px;
    transform: none;
  }
  .app-store-pill {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}

/* ==========================================================================
   Full Footer Directory
   ========================================================================== */
.site-footer {
  background: #0D1712;
  color: #8DA396;
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-size: 0.875rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-col .brand-logo .brand-name {
  color: #ffffff;
}

.footer-desc {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #799083;
}

.footer-contact-info {
  color: #A1B8AB;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-copyright {
  color: #61776B;
  font-size: 0.85rem;
}

.footer-dev-credit {
  color: #9eb3a7;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-dev-credit .heart-icon {
  color: #ef4444;
  display: inline-block;
  font-size: 0.95rem;
  animation: heart-beat 1.5s ease infinite;
}

.footer-dev-credit a,
.footer-dev-credit strong {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.footer-dev-credit a:hover {
  color: #05AC5F;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.social-circle svg {
  transition: transform 0.25s ease;
  display: block;
}

.social-circle:hover {
  border-color: #05AC5F;
  background: rgba(5, 172, 95, 0.14);
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 14px rgba(5, 172, 95, 0.3);
}

.social-circle:hover svg {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom-bar {
    padding-right: 0;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 4.8rem; /* On mobile: ample space so floating action buttons never sit over credit/copyright */
  }
}

/* ==========================================================================
   Interactive Booking Drawer / Modal
   ========================================================================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: flex-end;
}

.booking-modal-overlay.active,
.booking-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-drawer {
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.booking-modal-overlay.active .booking-drawer,
.booking-modal-overlay.open .booking-drawer {
  transform: translateX(0);
}

@media (max-width: 640px) {
  .booking-modal-overlay {
    align-items: flex-end;
    justify-content: center;
  }
  .booking-drawer {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .booking-modal-overlay.active .booking-drawer,
  .booking-modal-overlay.open .booking-drawer {
    transform: translateY(0);
  }
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border-cool);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-size: 1.25rem;
}

.drawer-close-btn {
  font-size: 1.5rem;
  color: var(--color-ink-3);
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   Download App to Book Modal Content Styling
   ========================================================================== */
.app-download-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.app-modal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #D97706;
}

.app-modal-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-ink-0);
  line-height: 1.25;
  margin-top: 0.5rem;
}

.app-modal-subtitle {
  font-size: 0.88rem;
  color: var(--color-ink-3);
  line-height: 1.45;
  margin-top: 0.35rem;
}

.app-offer-callout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(20, 7, 38, 0.95) 0%, rgba(45, 15, 80, 0.95) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 7, 38, 0.15);
}

.app-offer-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.app-offer-text strong {
  font-size: 0.88rem;
  color: #F59E0B;
  display: block;
}

.app-offer-text span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
}

.app-store-btns-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-store-btn-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.app-store-btn-play {
  background: #000000;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.app-store-btn-play:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-store-btn-apple {
  background: linear-gradient(135deg, #1B0B33 0%, #3B0764 100%);
  color: #ffffff;
  border: 1.5px solid rgba(245, 158, 11, 0.3);
}

.app-store-btn-apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(109, 40, 217, 0.25);
}

.app-store-btn-card svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-store-btn-sub {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.app-store-btn-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.app-store-btn-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  opacity: 0.7;
}

.app-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  background: var(--color-surface-1);
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-cool);
}

.app-perk-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ink-1);
}

.sms-link-container {
  background: var(--color-surface-1);
  border: 1.5px solid var(--color-border-cool);
  border-radius: 14px;
  padding: 1rem;
}

.sms-link-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-ink-0);
  margin-bottom: 0.5rem;
}

.sms-link-form {
  display: flex;
  gap: 0.5rem;
}

.sms-link-input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--color-border-cool);
  border-radius: 10px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}

.sms-link-input:focus {
  border-color: var(--color-primary);
}

.sms-link-btn {
  padding: 0.65rem 1rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sms-link-btn:hover {
  background: var(--color-primary-dark);
}

.sms-link-success {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #05AC5F;
  font-weight: 700;
}

.drawer-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-step-indicator {
  display: flex;
  gap: 0.5rem;
}

.step-pill {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--color-surface-3);
}

.step-pill.active {
  background: var(--color-primary);
}

.drawer-input-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-ink-1);
  margin-bottom: 0.4rem;
}

.drawer-input-group input, .drawer-input-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
}

.drawer-input-group input:focus, .drawer-input-group select:focus {
  border-color: var(--color-primary);
}

.pro-dispatch-view {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.pro-dispatch-view.active {
  display: block;
}

.pro-dispatch-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: pulse-ring 2s infinite;
}

/* Mobile Nav Drawer — iOS & Android Fluid Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  padding: calc(1.5rem + env(safe-area-inset-top, 0px)) 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.mobile-nav-drawer.active,
.mobile-nav-drawer.open {
  transform: translateY(0) !important;
}

#closeMobileDrawer {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-cool);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-ink-1);
  transition: all 0.2s ease;
}

#closeMobileDrawer:hover {
  background: #EFE8FF;
  color: var(--color-primary);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-request-link, .app-badges-row, .hero-rating-proof, .live-cities-wrap {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid-20 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .task-stacker-widget {
    grid-template-columns: 1fr;
  }
  
  .how-grid {
    grid-template-columns: 1fr;
  }
  
  .verified-box {
    grid-template-columns: 1fr;
  }
  
  .checker-container-box {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links, .nav-actions .btn-outline {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .services-grid-20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  
  .checker-input-row {
    flex-direction: column;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Service Detail Page Styles
   ========================================================================== */
.breadcrumb-bar {
  padding: 0.75rem 0 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-ink-4);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb-list a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumb-sep {
  opacity: 0.5;
}

.detail-hero-section {
  padding: 0.5rem 0 2.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(5, 172, 95, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(246, 168, 25, 0.05) 0%, transparent 45%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.detail-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.detail-title {
  font-size: clamp(2.5rem, 3.5vw + 1rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.detail-short-desc {
  font-size: 1.2rem;
  color: var(--color-ink-2);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.detail-metrics-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.detail-metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border-cool);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ink-1);
  box-shadow: var(--shadow-subtle);
}

.detail-metric-chip.price-chip {
  background: var(--color-primary-light);
  border-color: rgba(5, 172, 95, 0.3);
  color: var(--color-primary-dark);
  font-size: 1rem;
}

.detail-badges-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-all-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #d0d7de;
  background: #ffffff;
  color: var(--color-ink-0);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-all-services:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(108, 92, 231, 0.15);
}

.detail-action-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Detail Card Box */
.detail-preview-card {
  background: #ffffff;
  border: 1px solid var(--color-border-cool);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.detail-preview-card:hover {
  box-shadow: var(--shadow-hover);
}

.detail-icon-banner {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.detail-pro-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface-1);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-cool);
  margin-top: 1.5rem;
}

.detail-pro-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

/* ==========================================================================
   What's Included vs Not Included
   ========================================================================== */
.inclusions-section {
  padding: 5rem 0;
  background: var(--color-surface-1);
  border-top: 1px solid var(--color-border-cool);
  border-bottom: 1px solid var(--color-border-cool);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.inclusion-card {
  background: #ffffff;
  border: 1.5px solid var(--color-border-cool);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.inclusion-card:hover {
  transform: translateY(-6px);
}

.inclusion-card.included-box,
.inclusion-card.excluded-box,
.inclusion-card.not-included-box {
  border-top: 4px solid var(--color-border-cool);
}

.inclusion-card.included-box:hover {
  border-top: 4px solid var(--color-primary);
  border-color: #86efac;
  border-top-color: var(--color-primary);
  background: #f0fdf4; /* Light green tint */
  box-shadow: 0 16px 36px rgba(10, 107, 74, 0.15), 0 4px 12px rgba(10, 107, 74, 0.08);
}

.inclusion-card.included-box:hover .inc-icon-circle.green {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 4px 14px rgba(10, 107, 74, 0.35);
}

.inclusion-card.excluded-box:hover,
.inclusion-card.not-included-box:hover {
  border-top: 4px solid #ef4444;
  border-color: #fca5a5;
  border-top-color: #dc2626;
  background: #fef2f2; /* Soft red tint */
  box-shadow: 0 16px 36px rgba(239, 68, 68, 0.15), 0 4px 12px rgba(239, 68, 68, 0.08);
}

.inclusion-card.excluded-box:hover .inc-icon-circle.gray,
.inclusion-card.not-included-box:hover .inc-icon-circle.red,
.inclusion-card.excluded-box:hover .inc-icon-circle.red {
  background: #dc2626;
  color: #ffffff;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.inc-icon-circle {
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth), background-color var(--transition-smooth), color var(--transition-smooth);
}

.inclusion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.inc-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
}

.inc-icon-circle.green {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.inc-icon-circle.gray {
  background: var(--color-surface-3);
  color: var(--color-ink-4);
}

.inc-icon-circle.red {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-ink-2);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.inc-list-item:hover {
  background-color: var(--color-surface-2);
  color: var(--color-ink-0);
  transform: translateX(4px);
}

.inc-list-item .bullet-chk {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.inc-list-item:hover .bullet-chk {
  transform: scale(1.2);
}

.inc-list-item .bullet-cross {
  color: #ef4444;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.inc-list-item:hover .bullet-cross {
  transform: scale(1.2);
}

/* =======================================================================
   MOBILE RESPONSIVE — Full Breakpoints & Ultra Polish
   ======================================================================= */

/* Prevent horizontal overflow on any device */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual-box {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 1.5rem auto 0;
    position: relative;
  }
  .floating-badge {
    display: none;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .hero-title { font-size: 2.6rem !important; }
  .app-badges-row {
    justify-content: center;
  }
  .hero-rating-proof {
    justify-content: center;
  }
  .hero-promo-strip {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .verified-box {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .checker-container-box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile: 768px & smaller */
@media (max-width: 768px) {
  /* Nav Header — Clean App Layout with Zero Overlap */
  .nav-container {
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }
  .brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
  }
  .brand-logo img {
    height: 38px !important;
    width: 38px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
  }
  .brand-logo .brand-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
  }
  .brand-logo .brand-name {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
  }
  .brand-logo .brand-sub {
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
  }
  .nav-links { 
    display: none !important; 
  }
  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    flex-shrink: 0 !important;
  }
  .nav-actions .btn-primary {
    display: none !important; /* Prevents colliding with logo on mobile screens */
  }
  .btn-call-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    padding: 0.42rem 0.75rem !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .mobile-menu-btn { 
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    border: 1px solid var(--color-border-cool) !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
  }

  /* Container padding */
  .container { padding: 0 1rem; }

  /* Hero */
  .hero-section { padding: 2.5rem 0 2rem; }
  .hero-title { font-size: 2.1rem !important; line-height: 1.2 !important; }
  .hero-subtitle { font-size: 0.95rem; }
  
  .hero-visual-box {
    display: flex !important;
    width: 100%;
    max-width: 380px;
    margin: 1.5rem auto 0;
  }

  .hero-promo-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    width: 100%;
  }
  .app-badges-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 1rem auto !important;
  }
  .app-store-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 0.5rem 0.55rem !important;
    gap: 0.45rem !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
  }
  .app-store-badge svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
  }
  .badge-text-sub {
    font-size: 0.52rem !important;
    line-height: 1 !important;
  }
  .badge-text-main {
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }
  .badge-pill { font-size: 0.75rem; }

  /* Services ticker */
  .services-ticker { font-size: 0.78rem; padding: 0.6rem 0; }

  /* Why section */
  .why-section { padding: 2.5rem 0; }
  .section-title { font-size: 1.65rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1.15rem 0.85rem; }
  .stat-number { font-size: 1.65rem !important; }
  .features-grid { grid-template-columns: 1fr; gap: 0.85rem; }

  /* Services category tabs — Horizontal swipe on mobile */
  .services-section { padding: 2.5rem 0; }
  .services-category-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem 0.75rem;
    scrollbar-width: none;
  }
  .services-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .cat-tab {
    flex-shrink: 0;
    font-size: 0.8125rem;
    padding: 0.45rem 0.95rem;
    white-space: nowrap;
  }

  .services-grid-20 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
  .service-box { padding: 0.95rem 0.85rem; }
  .service-icon-large { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 0.6rem; }
  .service-box-title { font-size: 0.875rem; margin-bottom: 0.25rem; }
  .service-box-desc { font-size: 0.75rem; line-height: 1.35; margin-bottom: 0.6rem; }
  .service-price { font-size: 0.8125rem; }

  /* How it works */
  .how-it-works-section { padding: 2.5rem 0; }
  .how-grid { grid-template-columns: 1fr !important; gap: 0.85rem; }
  .how-step-card { padding: 1.25rem; }

  /* Verified */
  .verified-section { padding: 2.5rem 0; }
  .verified-box {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 1.75rem 1.15rem;
  }

  /* Testimonials */
  .testimonials-section { padding: 2.5rem 0; }
  .review-card { padding: 1.25rem; min-width: 270px; max-width: 290px; }

  /* FAQ */
  .faq-section { padding: 2.5rem 0; }
  .faq-question-btn { padding: 0.85rem 0; font-size: 0.9rem; }

  /* CTA */
  .closing-cta-section { padding: 2.5rem 0; }
  .cta-banner-card { padding: 2rem 1.15rem; }
  .cta-title { font-size: 1.65rem !important; }
  .cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }
  .btn-white-pill {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
  .cta-banner-actions .app-badges-row {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  /* Booking modal */
  .booking-drawer {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    max-height: 92vh;
    overflow-y: auto;
  }
  .booking-modal-overlay {
    align-items: flex-end !important;
  }

  /* Detail page */
  .detail-hero-section { padding: 1.75rem 0; }
  .detail-title { font-size: 1.65rem !important; }
  .detail-metrics-row { gap: 0.4rem; flex-wrap: wrap; }
  .detail-metric-chip { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
  .detail-action-buttons { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .detail-action-buttons .btn-primary,
  .detail-action-buttons .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .inclusions-grid { grid-template-columns: 1fr !important; gap: 0.85rem; }
  .inclusion-card { padding: 1.25rem; }
  .detail-preview-card { padding: 1.25rem; }

  /* Mega dropdown — hide on mobile (use mobile nav instead) */
  .mega-dropdown { display: none !important; }
}

/* Small mobile: 480px & smaller */
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem !important; line-height: 1.2 !important; }
  .hero-visual-box { max-width: 290px; }
  .hero-big-logo-card { padding: 1.4rem 0.85rem 1.25rem !important; }
  .big-logo-ring { width: 90px !important; height: 90px !important; margin-bottom: 0.75rem !important; }
  .big-logo-title { font-size: 1.15rem !important; }
  .big-logo-subtitle { font-size: 0.7rem !important; }
  .big-logo-trust-pill { font-size: 0.65rem !important; padding: 0.3rem 0.65rem !important; }

  .app-badges-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.45rem !important;
    width: 100% !important;
    max-width: 310px !important;
    margin: 0.85rem auto !important;
  }
  .app-store-badge {
    padding: 0.42rem 0.45rem !important;
    gap: 0.35rem !important;
  }
  .app-store-badge svg {
    width: 18px !important;
    height: 18px !important;
  }
  .badge-text-sub {
    font-size: 0.48rem !important;
  }
  .badge-text-main {
    font-size: 0.74rem !important;
  }

  .categories-hero-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.55rem !important; }
  .cat-hero-card { padding: 0.85rem 0.5rem !important; }
  .cat-hero-card .cat-icon { font-size: 1.6rem !important; }
  .cat-hero-card .cat-label { font-size: 0.75rem !important; }

  .services-grid-20 { grid-template-columns: repeat(2, 1fr) !important; gap: 0.55rem !important; }
  .service-box { padding: 0.85rem 0.65rem !important; border-radius: 14px !important; }
  .service-icon-large { width: 38px !important; height: 38px !important; font-size: 1.1rem !important; }
  .service-box-title { font-size: 0.8125rem !important; }
  .service-box-desc { font-size: 0.7rem !important; }

  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 0.5rem !important; }
  .stat-card { padding: 0.85rem 0.6rem !important; border-radius: 14px !important; }
  .stat-number { font-size: 1.45rem !important; }
  .stat-label { font-size: 0.75rem !important; }

  .section-title { font-size: 1.4rem !important; }
  .nav-container { height: 58px; }
  .brand-logo img { height: 38px !important; width: 38px !important; }
  .brand-name { font-size: 1.05rem !important; }
  .nav-actions { gap: 0.45rem; }
  .nav-actions .btn-primary { display: none !important; }
  .btn-call-nav {
    padding: 0.42rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
  }
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }

  /* Section padding and card containment */
  .checker-container-box {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }
  .cta-banner-card {
    padding: 1.75rem 1rem !important;
    border-radius: 20px !important;
  }
  .verified-box {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }
  .how-step-card {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
  }

  /* Dock position for smaller phones */
  .floating-actions-dock {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(14px + env(safe-area-inset-right, 0px));
    gap: 10px;
  }
  .fab-btn {
    width: 48px;
    height: 48px;
  }
  .fab-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   Floating Action Buttons — Premium Glassmorphism + Neon Glow Design
   ========================================================================== */

.floating-actions-dock {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(20px + env(safe-area-inset-right, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: bottom 0.12s ease-out;
}

/* ── Shared Base ── */
.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

.fab-btn svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  position: relative;
  z-index: 1;
}

/* ── WhatsApp — Lush Green neon ring ── */
.fab-whatsapp {
  background: linear-gradient(145deg, #25D366 0%, #0ea95a 100%);
  box-shadow:
    0 0 0 0 rgba(37, 211, 102, 0),
    0 6px 20px rgba(37, 211, 102, 0.55),
    inset 0 1px 1px rgba(255,255,255,0.25);
  animation: wa-pulse 2.4s ease-in-out infinite;
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-ring 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 6px 20px rgba(37, 211, 102, 0.55), inset 0 1px 1px rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 6px 28px rgba(37, 211, 102, 0.7), inset 0 1px 1px rgba(255,255,255,0.25); }
}

@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.18); opacity: 0; }
}

/* ── Call — Green (same family as WhatsApp) ── */
.fab-call {
  background: linear-gradient(145deg, #05AC5F 0%, #048C4D 100%);
  box-shadow:
    0 0 0 0 rgba(5, 172, 95, 0),
    0 6px 20px rgba(5, 172, 95, 0.55),
    inset 0 1px 1px rgba(255,255,255,0.25);
  animation: call-pulse 2.4s ease-in-out infinite 1.2s;
}

.fab-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(5, 172, 95, 0.45);
  animation: call-ring 2.4s ease-in-out infinite 1.2s;
  pointer-events: none;
}

@keyframes call-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 172, 95, 0.6), 0 6px 20px rgba(5, 172, 95, 0.55), inset 0 1px 1px rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(5, 172, 95, 0), 0 6px 28px rgba(5, 172, 95, 0.7), inset 0 1px 1px rgba(255,255,255,0.25); }
}

@keyframes call-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.18); opacity: 0; }
}

/* ── Scroll To Top — Dark glass pill ── */
.fab-scroll-top {
  width: 44px;
  height: 44px;
  background: rgba(15, 15, 25, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease, box-shadow 0.2s ease;
}

.fab-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fab-scroll-top:hover {
  background: linear-gradient(135deg, #25D366, #3b82f6);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transform: scale(1.12) translateY(-3px);
}

.fab-scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Separator line between whatsapp+call and scroll-top ── */
.fab-separator {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(200,200,200,0.25), transparent);
  border-radius: 2px;
}

/* ── Tooltip ── */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10, 12, 20, 0.92);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.38rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10, 12, 20, 0.92);
  border-right-width: 0;
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
  .floating-actions-dock {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(14px + env(safe-area-inset-right, 0px));
    gap: 10px;
  }
  .fab-btn {
    width: 48px;
    height: 48px;
  }
  .fab-scroll-top {
    width: 40px;
    height: 40px;
  }
  .fab-tooltip {
    display: none;
  }
}

/* ── iOS & Android Input Zoom & Touch Normalization ── */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  }
  
  /* Disable pull-to-refresh interference on overlay drawers */
  .mobile-nav-drawer, .booking-drawer {
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==========================================================================
   Sub-Categories Inside Detail Hero Left Info (Requested by User)
   ========================================================================== */
.detail-subcat-box {
  margin: 1.5rem 0 1.75rem 0;
  padding: 1.35rem 1.6rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(109, 40, 217, 0.14);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(108, 92, 231, 0.06);
  backdrop-filter: blur(10px);
}

.detail-subcat-heading {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #2563EB;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.detail-subcat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-subcat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  transition: transform 0.15s ease, color 0.15s ease;
}

.detail-subcat-item:hover {
  transform: translateX(4px);
  color: #2563EB;
}

.detail-subcat-item .subcat-bullet {
  color: #2563EB;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}

.detail-subcat-item .subcat-text {
  flex: 1;
}

@media (max-width: 640px) {
  .detail-subcat-box {
    padding: 1.1rem 1.2rem;
    margin: 1.25rem 0;
    border-radius: 14px;
  }
  .detail-subcat-heading {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  .detail-subcat-item {
    font-size: 0.92rem;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   1. Dynamic Welcome Splash Screen (Smartphone Mobile Screen Mockup Shape)
   ========================================================================== */
#pagePreloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 999999;
  background: radial-gradient(circle at 50% 50%, #1a0528 0%, #0d0115 65%, #050008 100%);
  margin: 0;
  padding: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s ease, transform 0.65s ease;
}

#pagePreloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

/* Ambient Blurred Glow Backdrop */
.preloader-backdrop-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(36px) brightness(0.25) saturate(1.5);
  transform: scale(1.15);
  pointer-events: none;
  z-index: 1;
}

/* Smartphone Screen Device Frame (True Smartphone Shape) */
.preloader-phone-frame {
  position: relative;
  z-index: 3;
  width: min(88vw, 360px);
  aspect-ratio: 9 / 18.5;
  max-height: min(84vh, 720px);
  background: #150a24;
  border: 7px solid #1f1433;
  outline: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 40px;
  box-shadow: 
    0 25px 65px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(245, 158, 11, 0.3),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: phoneFrameEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  user-select: none;
}

@keyframes phoneFrameEntrance {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Dynamic Island / Speaker Notch */
.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #000000;
  border-radius: 999px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-camera-lens {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e1b4b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 2px #3b82f6;
}

.phone-sensor-lens {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #09090b;
}

/* Phone Screen Viewport */
.phone-screen-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0d0115;
}

/* Image inside phone screen */
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: phoneScreenKenBurns 4.5s ease-out forwards;
}

@keyframes phoneScreenKenBurns {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

/* Screen Glass Subtle Sheen Gloss */
.phone-screen-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: 4;
}

/* Bottom In-Screen Dock with Golden Progress Bar */
.phone-screen-bottom {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  padding: 0 1rem;
}

/* Phone Home Indicator Bar */
.phone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  z-index: 12;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Glowing Golden Progress Bar */
.preloader-progress-track {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FFA000, #FFFBEB, #FFA000);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 160, 0, 0.95);
  animation: preloaderProgressFill 4s cubic-bezier(0.2, 0.85, 0.3, 1) forwards;
}

@keyframes preloaderProgressFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

.preloader-skip-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
}

#pagePreloader:hover .preloader-skip-text,
#pagePreloader:active .preloader-skip-text {
  color: #FFA000;
}

/* Mobile Screens optimization */
@media (max-width: 480px) {
  #pagePreloader {
    padding: 0.75rem;
  }
  
  .preloader-phone-frame {
    width: 90vw;
    border-width: 5px;
    border-radius: 34px;
  }

  .phone-screen-viewport {
    border-radius: 28px;
  }

  .phone-dynamic-island {
    top: 8px;
    width: 74px;
    height: 18px;
  }
}

/* Service Area Coverage Banner in Form */
.booking-service-area-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FAF5FF 0%, #FFFBEB 100%);
  border: 1.5px solid #F59E0B;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: #1B0B33;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
}

.booking-service-area-banner .area-pin-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.booking-service-area-banner .area-title {
  font-weight: 800;
  color: #6D28D9;
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.booking-service-area-banner .area-sub {
  color: #2B124F;
  font-size: 0.86rem;
}

/* ==========================================================================
   2. Services Grid View More & Collapsible Logic
   ========================================================================== */
.service-box.service-box-hidden {
  display: none !important;
}

.service-box.service-box-revealed {
  display: flex !important;
  animation: serviceBoxFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-box.service-box-collapsing {
  display: flex !important;
  animation: serviceBoxFadeOut 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

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

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

.view-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.75rem 0 1rem;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #6D28D9;
  border: 2px solid #6D28D9;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.12);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-view-more:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.28);
}

.btn-view-more .view-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.12);
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.btn-view-more:hover .view-more-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ==========================================================================
   3. Interactive Booking Form Modal Styles
   ========================================================================== */
.booking-form-modal-wrap {
  max-width: 580px !important;
  width: 95% !important;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 25px 70px rgba(27, 11, 51, 0.35);
  border: 1.5px solid rgba(109, 40, 217, 0.12);
}

.booking-form-header {
  background: linear-gradient(135deg, #1B0B33 0%, #3B1270 70%, #5B21B6 100%);
  padding: 1.5rem 1.75rem;
  color: #ffffff;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.booking-form-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.booking-form-header-left img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #140726;
  border: 2px solid #F59E0B;
}

.booking-form-header-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-form-header-sub {
  font-size: 0.78rem;
  color: #E9D5FF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-form-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-form-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.booking-form-body {
  padding: 1.75rem;
}

.booking-form-group {
  margin-bottom: 1.25rem;
}

.booking-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1B0B33;
  margin-bottom: 0.5rem;
}

.booking-form-label span.req {
  color: #DC2626;
  font-weight: 600;
  font-size: 0.8rem;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5D8FF;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1B0B33;
  background: #FAF7FF;
  transition: all 0.2s ease;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
  outline: none;
  border-color: #6D28D9;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}

.booking-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
  max-height: 130px;
  overflow-y: auto;
  padding: 2px;
}

.service-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1.5px solid #E5D8FF;
  background: #FAF7FF;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3E1E6E;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-chip-btn:hover {
  border-color: #6D28D9;
  color: #6D28D9;
}

.service-chip-btn.active {
  background: #6D28D9;
  color: #ffffff;
  border-color: #6D28D9;
  box-shadow: 0 3px 8px rgba(109, 40, 217, 0.25);
}

.booking-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .booking-grid-2col {
    grid-template-columns: 1fr;
  }
}

.booking-date-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking-pills-row {
  display: flex;
  gap: 0.45rem;
}

.booking-pill-opt {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  border: 1.5px solid #E5D8FF;
  background: #FAF7FF;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3E1E6E;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.booking-pill-opt:hover {
  border-color: #6D28D9;
  background: #F3EBFF;
}

.booking-pill-opt.active {
  background: #6D28D9;
  color: #ffffff;
  border-color: #6D28D9;
  box-shadow: 0 3px 10px rgba(109, 40, 217, 0.25);
}

/* Future Date Picker Box (Clean, Visible & Directly Clickable) */
.booking-custom-date-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FAF7FF;
  border: 1.5px solid #D8B4FE;
  border-radius: 10px;
  padding: 0.35rem 0.65rem;
  transition: all 0.2s ease;
  min-height: 40px;
}

.booking-custom-date-box:hover,
.booking-custom-date-box:focus-within {
  border-color: #6D28D9;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}

.booking-custom-date-box.active {
  background: #F5EEFF;
  border-color: #6D28D9;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.18);
}

.booking-date-label-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5B21B6;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.booking-date-label-inline .cal-badge-icon {
  font-size: 0.95rem;
}

.booking-custom-date-field {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  color: #1B0B33;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  padding: 0.25rem 0.2rem;
}

.booking-custom-date-field::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
  filter: hue-rotate(240deg);
  transition: transform 0.2s ease;
}

.booking-custom-date-field::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.15);
}

.booking-guarantee-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: #92400E;
}

.btn-booking-submit {
  width: 100%;
  padding: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #6D28D9 0%, #F59E0B 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.45);
}

/* Booking Success State */
.booking-success-view {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  border: 3px solid #10B981;
  color: #10B981;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-success-ref {
  display: inline-block;
  background: #F5F3FF;
  border: 1px dashed #6D28D9;
  color: #6D28D9;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.95rem;
  margin: 0.75rem 0 1.25rem;
}

.booking-summary-box {
  background: #FAF7FF;
  border: 1px solid #E5D8FF;
  border-radius: 14px;
  padding: 1.1rem;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(229, 216, 255, 0.6);
}

.booking-summary-row:last-child {
  border-bottom: none;
}


