/* ═══════════════════════════════════════════════════════════════
   LUSH CAR WASH & DETALING — Premium Mobile Detailing UAE
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f2e;
  --bg-card-hover: #1f2538;
  --bg-nav: rgba(10, 14, 26, 0.92);
  --accent-cyan: #00e5ff;
  --accent-blue: #2979ff;
  --accent-gradient: linear-gradient(135deg, #00e5ff, #2979ff);
  --accent-glow: rgba(0, 229, 255, 0.15);
  --accent-glow-strong: rgba(0, 229, 255, 0.3);
  --text-primary: #e8eaf6;
  --text-secondary: #90a4ae;
  --text-muted: #546e7a;
  --border-color: rgba(0, 229, 255, 0.12);
  --border-hover: rgba(0, 229, 255, 0.3);
  --gold: #ffd54f;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --danger: #ef5350;
  --success: #66bb6a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.1);
  --font-display: 'Bebas Neue', 'Noto Sans Arabic', 'Noto Sans Devanagari', sans-serif;
  --font-body: 'DM Sans', 'Noto Sans Arabic', 'Noto Sans Devanagari', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1140px;
  /* Lucide icon sizing */
  --icon-sm: 16px;
  --icon-md: 20px;
  --icon-lg: 24px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ── Selection ── */
::selection { background: var(--accent-cyan); color: var(--bg-primary); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-color);
  transition: padding var(--transition), background var(--transition);
}
nav.scrolled {
  padding: 10px 5%;
  background: rgba(10, 14, 26, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.nav-brand span:last-child {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent-gradient) !important;
  color: var(--bg-primary) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition) !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta svg,
.nav-cta i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px var(--accent-glow-strong) !important;
}
.lang-switcher { display: flex; gap: 3px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.lang-btn.active {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  border-color: transparent;
  font-weight: 700;
}
.lang-btn:hover:not(.active) { border-color: var(--border-hover); color: var(--text-secondary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 5% 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open { display: flex; opacity: 1; visibility: visible; }
.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 2px;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent-cyan); }
html[lang="ar"] .mobile-nav a,
html[lang="hi"] .mobile-nav a { font-family: inherit; font-size: 18px; letter-spacing: 0; }
.close-nav {
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-primary);
  background: none;
  border: none;
  transition: transform var(--transition);
}
.close-nav:hover { transform: rotate(90deg); }
.mobile-lang { padding: 24px 0 0; display: flex; gap: 8px; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  text-align: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.hero-video-bg .poster-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #0d1b2a 0%, #0a0e1a 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.3) 0%, rgba(10,14,26,0.85) 100%);
  z-index: 1;
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ripple {
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.05), transparent 70%);
  transform: translateX(-50%);
  animation: rippleAnim 8s ease-in-out infinite;
}
.ripple:nth-child(2) { width: 600px; height: 600px; animation-delay: -3s; bottom: -40%; }
.ripple:nth-child(3) { width: 1000px; height: 1000px; animation-delay: -5s; bottom: -60%; }
@keyframes rippleAnim {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}
.particle {
  position: absolute;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.92;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hero-title span { display: block; }
.hero-title .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}
.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   COVERAGE BANNER
   ═══════════════════════════════════════════════════════════════ */
.coverage-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.coverage-item {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.coverage-item strong { color: var(--text-primary); }
.coverage-sep { color: var(--border-color); font-size: 10px; }

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 5%;
  position: relative;
}
.section-dark { background: var(--bg-secondary); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-cyan);
  opacity: 0.4;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES / PACKAGES
   ═══════════════════════════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}
.card-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  margin-bottom: 6px;
  opacity: 0.7;
}
.card-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.card-dur {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 48px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.card-price span {
  font-size: 18px;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
}
.card-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}
.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #1a1a2e;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-save {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.card-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 18px;
  margin-left: 8px;
  -webkit-text-fill-color: var(--text-muted);
}
.card-book {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 20px;
  letter-spacing: 0.5px;
}
.card-book:hover {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   BENEFITS / WHY US
   ═══════════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.benefit-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--bg-secondary);
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), var(--border-color), transparent);
}
.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step:hover .step-num {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px var(--accent-glow);
}
.step-emoji { font-size: 30px; margin-bottom: 16px; display: block; }
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING FORM
   ═══════════════════════════════════════════════════════════════ */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.booking-info .section-title { margin-bottom: 20px; }
.booking-info .section-sub { margin: 0 0 32px; }
.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.contact-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}
.contact-icon { font-size: 20px; flex-shrink: 0; }
.contact-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.contact-val { color: var(--text-primary); font-weight: 500; }
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 14, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(84, 110, 122, 0.6); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2390a4ae' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 15px;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.form-note a { color: var(--accent-cyan); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* ── Trust Badges ── */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px;
  background: rgba(10, 14, 26, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  font-size: 11px;
}

/* ── Form Success ── */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.active { display: block; }
.success-icon { font-size: 60px; margin-bottom: 20px; }
.success-title {
  font-family: var(--font-display);
  font-size: 36px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.success-msg {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════ */
.reviews-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
}
.review-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border-hover); }
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
}
.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.review-loc {
  font-size: 12px;
  color: var(--text-muted);
}
.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.review-google-link:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.review-google-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.reviews-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-glow);
  width: 28px;
  border-radius: 5px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  transition: color var(--transition);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--accent-cyan);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--accent-cyan); }

/* ═══════════════════════════════════════════════════════════════
   STICKY ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}
html[dir="rtl"] .wa-float { right: auto; left: 24px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── Sticky Mobile Book Now ── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 12px 5%;
  gap: 10px;
  align-items: center;
}
.sticky-book-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: opacity var(--transition);
}
.sticky-book-btn:hover { opacity: 0.9; }
.sticky-book-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--whatsapp);
  border-radius: var(--radius-sm);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.sticky-book-wa:hover { opacity: 0.9; }
.sticky-book-wa svg { width: 24px; height: 24px; fill: #fff; }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   RTL OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
html[dir="rtl"] .section-title { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }
html[dir="rtl"] .card-name { font-family: 'Noto Sans Arabic', sans-serif; font-size: 22px; letter-spacing: 0; }
html[dir="rtl"] .benefit-title { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }
html[dir="rtl"] .step-title { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }
html[dir="rtl"] .form-title { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }
html[dir="rtl"] .hero-title { font-family: 'Noto Sans Arabic', sans-serif; font-size: clamp(40px, 7vw, 80px); line-height: 1.1; letter-spacing: 0; }
html[dir="rtl"] .hero-title span { font-family: 'Noto Sans Arabic', sans-serif; }
html[dir="rtl"] .nav-brand span:first-child { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; font-size: 18px; }
html[dir="rtl"] .booking-wrapper { direction: rtl; }
html[dir="rtl"] .form-group label { text-align: right; }
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea { text-align: right; direction: rtl; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .card-features li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .card-features li::before { left: auto; right: 0; }
html[dir="rtl"] .section-label::before { display: none; }
html[dir="rtl"] .section-label::after { display: none; }

/* Hindi overrides */
html[lang="hi"] .section-title { font-family: 'Noto Sans Devanagari', sans-serif; font-size: clamp(28px, 4vw, 48px); letter-spacing: 0; }
html[lang="hi"] .hero-title { font-family: 'Noto Sans Devanagari', sans-serif; font-size: clamp(36px, 6vw, 72px); line-height: 1.15; letter-spacing: 0; }
html[lang="hi"] .card-name { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 20px; letter-spacing: 0; }
html[lang="hi"] .benefit-title { font-family: 'Noto Sans Devanagari', sans-serif; letter-spacing: 0; }
html[lang="hi"] .step-title { font-family: 'Noto Sans Devanagari', sans-serif; letter-spacing: 0; }
html[lang="hi"] .form-title { font-family: 'Noto Sans Devanagari', sans-serif; letter-spacing: 0; }
html[lang="hi"] .nav-brand span:first-child { font-family: 'Noto Sans Devanagari', sans-serif; letter-spacing: 0; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .review-card { min-width: calc(50% - 12px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .review-card { min-width: calc(100% - 0px); }
  .sticky-book { display: flex; }
  .wa-float { bottom: 80px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .coverage-banner { flex-direction: column; gap: 6px; }
  .coverage-sep { display: none; }
  .booking-form { padding: 24px; }
  .lang-btn { padding: 3px 6px; font-size: 10px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 32px; }
  .cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 60px 5%; }
  .section-header { margin-bottom: 40px; }
  .trust-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  .btn { padding: 14px 24px; font-size: 14px; }
}
