/* ══════════════════════════════════════════════════════════
   SPEEDLI QATAR — Premium Mobile Car Wash
   styles.css — Main Stylesheet
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --brand: #4CAF50;
  --brand-light: #66BB6A;
  --brand-dark: #2E7D32;
  --brand-glow: rgba(76,175,80,0.15);
  --brand-surface: #F0F9F2;
  --gold: #C9A227;
  --gold-light: #E8D48B;
  --platinum: #8B8FA3;
  --surface: #FAFBFC;
  --surface-warm: #F8F7F4;
  --text: #1A1D23;
  --text-secondary: #5A6070;
  --text-muted: #8B8FA3;
  --border: #E8EBF0;
  --white: #FFFFFF;
  --danger: #DC3545;
  --whatsapp: #25D366;
  --call-blue: #2563EB;
  --royal-black: #0F0F0F;
  --charcoal: #1C1C1C;
  --metallic: #C8C8C8;
  --metallic-light: #E0E0E0;
  --dark-surface: #141416;
  --dark-card: #1E1E22;
  --dark-border: rgba(255,255,255,0.08);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'IBM Plex Sans Arabic', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.rtl { direction: rtl; }
.rtl, .rtl * { font-family: 'IBM Plex Sans Arabic', 'Outfit', sans-serif; }
.ltr { direction: ltr; }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes orbit-spin-1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbit-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes metallic-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-4px) rotate(0.5deg); }
  66% { transform: translateY(2px) rotate(-0.3deg); }
}

.anim-fade-up { animation: fadeInUp 0.7s ease-out both; }
.anim-fade { animation: fadeIn 0.6s ease-out both; }
.anim-slide-l { animation: slideInLeft 0.7s ease-out both; }
.anim-slide-r { animation: slideInRight 0.7s ease-out both; }
.anim-float { animation: gentle-float 6s ease-in-out infinite; }
.pulse-wa { animation: pulse-ring 2s ease infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Orbit animations */
.orbit-ring.orbit-1 { animation: orbit-spin-1 20s linear infinite; }
.orbit-ring.orbit-2 { animation: orbit-spin-reverse 28s linear infinite; }
.orbit-ring.orbit-3 { animation: orbit-spin-1 24s linear infinite; }
.orbit-ring.orbit-4 { animation: orbit-spin-reverse 32s linear infinite; }
.orbit-item { animation: orbit-spin-reverse 20s linear infinite; }
.orbit-2 .orbit-item { animation: orbit-spin-1 28s linear infinite; }
.orbit-3 .orbit-item { animation: orbit-spin-reverse 24s linear infinite; }
.orbit-4 .orbit-item { animation: orbit-spin-1 32s linear infinite; }
.hero-car { animation: gentle-float 4s ease-in-out infinite; }

/* ── Typography Utilities ── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 50%, #81C784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--metallic) 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Effects ── */
.glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.glass-dark {
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Card Effects ── */
.card-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-15deg);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}
.card-premium:hover::before { left: 140%; }
.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.2);
}

.card-shine {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-shine::before {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.06), transparent);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}
.card-shine:hover::before { left: 140%; }
.card-shine:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.12);
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: metallic-shift 3s ease infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(76, 175, 80, 0.45); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-primary:disabled::after { display: none; }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 12px 30px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn-outline:hover { background: var(--brand-glow); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 34px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn-outline-light:hover { border-color: var(--brand); background: rgba(76,175,80,0.1); transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  width: 100%;
  justify-content: center;
  font-family: inherit;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
.btn-wa:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Form Elements ── */
.input-field {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: var(--white);
  color: var(--text);
  outline: none;
}
.input-field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow);
}
.input-field::placeholder { color: var(--text-muted); }

/* ── Layout ── */
.section-pad { padding: 80px 20px; }
.max-container { max-width: 1200px; margin: 0 auto; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Badge ── */
.badge-metallic {
  background: linear-gradient(135deg, #C9A227 0%, #E8D48B 40%, #C9A227 60%, #E8D48B 100%);
  background-size: 200% 200%;
  animation: metallic-shift 4s ease infinite;
  color: #1a1a2e;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(201,162,39,0.3);
}
.badge-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D4A938 100%);
  color: white;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Booking Steps ── */
.step-active {
  background: var(--brand);
  color: white;
  box-shadow: 0 0 0 4px var(--brand-glow), 0 0 20px rgba(76,175,80,0.3);
}
.step-done { background: var(--brand); color: white; }
.step-pending { background: var(--border); color: var(--text-muted); }

/* ── Noise Background ── */
.noise-bg { position: relative; }
.noise-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.main-nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nav-logo-text { font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.nav-logo-sub { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-link:hover { color: var(--brand-light); }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  backdrop-filter: blur(8px);
}
.lang-switch-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.lang-switch-btn #lang-flag { font-size: 16px; line-height: 1; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 8px;
}
.mobile-menu {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--royal-black);
}
.mobile-menu-item {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-lang-row { display: flex; gap: 8px; margin-top: 16px; }
.mobile-lang-btn {
  flex: 1; padding: 10px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  background: transparent;
  color: white;
}
.mobile-lang-btn.active { background: var(--brand); }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0F0F0F 0%, #1a1a1e 35%, #0F0F0F 70%, #141416 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  z-index: 0;
  animation: ken-burns 25s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.75) 0%, rgba(15,15,15,0.45) 40%, rgba(15,15,15,0.2) 70%, rgba(15,15,15,0.35) 100%);
  z-index: 1;
}
.hero-ambient-1 {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.06) 0%, transparent 60%);
  z-index: 1;
}
.hero-ambient-2 {
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,200,200,0.03) 0%, transparent 60%);
  z-index: 1;
}
.hero-grid {
  padding: 60px 20px;
  width: 100%;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  box-shadow: 0 0 8px rgba(76,175,80,0.6);
}
.hero-hours-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.95); }
.hero-title {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 8px;
  color: white;
  letter-spacing: -1px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 42px);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust-row { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-val { font-size: 22px; font-weight: 800; color: var(--brand-light); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-stat-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
  margin-left: 14px;
}
.rtl .hero-stat-divider { margin-left: 0; margin-right: 14px; }

/* ── Hero 3D Visual ── */
.hero-3d-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.hero-3d-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, rgba(76,175,80,0.05) 40%, transparent 70%);
  filter: blur(20px);
}
.hero-car-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  z-index: 3;
}
.orbit-icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(15,15,15,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.how-it-works { padding: 80px 20px; background: linear-gradient(180deg, #F0F9F2 0%, #E8F5E9 100%); position: relative; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}
/* Light-mode cards for How It Works */
.how-it-works .card-premium {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.how-it-works .card-premium h3 { color: var(--text) !important; }
.how-it-works .card-premium p { color: var(--text-secondary) !important; }
.how-it-works .section-label { background: var(--brand-glow) !important; color: var(--brand-dark) !important; border-color: rgba(76,175,80,0.15) !important; }
.how-it-works h2 { color: var(--text) !important; }
.how-it-works > div > p { color: var(--text-secondary) !important; }

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #FAFBFC 0%, #F0F9F2 100%);
}
.vehicle-toggle {
  display: inline-flex;
  background: var(--white);
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.vehicle-btn {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.vehicle-btn.active { background: var(--brand); color: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}
.rtl .service-card { text-align: right; }
.service-card.tier-basic {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.service-card.tier-mid {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.service-card.tier-gold {
  background: linear-gradient(145deg, #FFFBEB 0%, #FFF 100%);
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,162,39,0.1);
}
.service-card.tier-platinum {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  border: 1px solid rgba(201,162,39,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(201,162,39,0.15);
}
.service-card.tier-platinum .svc-name { color: #fff; }
.service-card.tier-platinum .svc-price { color: var(--gold-light); }
.service-card.tier-platinum .svc-desc,
.service-card.tier-platinum .svc-meta { color: rgba(255,255,255,0.6); }
.service-card.tier-platinum .svc-cta { color: var(--gold-light); }
.service-card.tier-platinum .svc-footer { border-top-color: rgba(201,162,39,0.15); }
.service-card.tier-platinum .svc-currency { color: rgba(255,255,255,0.5); }
.service-card.tier-gold .svc-price { color: #B8860B; }
.service-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
}
.rtl .service-badge { right: auto; left: 16px; }

/* Offset the price area when badge exists */
.service-card .svc-header { padding-top: 0; }
.service-card[data-badge] .svc-header { padding-top: 28px; }
.svc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.svc-icon { font-size: 36px; }
.svc-price-wrap { text-align: right; }
.rtl .svc-price-wrap { text-align: left; }
.svc-price { font-size: 32px; font-weight: 800; color: var(--brand); }
.svc-currency { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.svc-name { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.svc-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.svc-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.svc-cta { font-size: 13px; font-weight: 600; color: var(--brand); }

/* ══════════════════════════════════════════════════════════
   BANNER SECTION
   ══════════════════════════════════════════════════════════ */
.banner-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--royal-black) 0%, #1a2e1a 50%, var(--royal-black) 100%);
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.8) 0%, rgba(46,125,50,0.2) 50%, rgba(15,15,15,0.8) 100%);
}

/* ══════════════════════════════════════════════════════════
   BOOKING
   ══════════════════════════════════════════════════════════ */
.booking-section { padding: 80px 20px; background: var(--white); }
.booking-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}
.step-line { width: 60px; height: 3px; border-radius: 2px; transition: all 0.3s; margin: 0 4px; }
.package-select-btn {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s;
  gap: 14px;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.rtl .package-select-btn { text-align: right; }
.package-select-btn.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
}
.timeslot-btn {
  padding: 14px 12px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s;
  font-family: inherit;
}
.timeslot-btn.selected {
  border-color: var(--brand);
  background: var(--brand-glow);
  color: var(--brand);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: 14px; color: var(--text-muted); }
.summary-value { font-size: 14px; font-weight: 600; color: var(--text); }

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about-section { padding: 80px 20px; background: linear-gradient(180deg, #E8F5E9 0%, #F0F9F2 100%); position: relative; }
.about-feature {
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.about-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  flex-shrink: 0;
}
.about-feature-text { font-size: 15px; font-weight: 600; color: var(--text); }
.stat-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-val { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 80px 20px; background: var(--white); }
.testimonial-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-service {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section { padding: 80px 20px; background: linear-gradient(180deg, #F5F7FA 0%, #FAFBFC 100%); }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.rtl .faq-question { text-align: right; }
.faq-question-text {
  font-size: 16px; font-weight: 600;
  color: var(--text);
  flex: 1;
  padding-right: 16px;
}
.rtl .faq-question-text { padding-right: 0; padding-left: 16px; }
.faq-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-chevron.open { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 20px; background: var(--white); }
.contact-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-form {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--royal-black);
  padding: 48px 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.footer-logo { font-size: 32px; font-weight: 800; letter-spacing: -1px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.3); margin-top: 8px; margin-bottom: 24px; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-rights { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rtl .floating-btns { right: auto; left: 20px; }
.float-btn {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
}
.float-btn-phone {
  background: var(--dark-card);
  color: var(--call-blue);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.float-btn-phone:hover { background: var(--call-blue); color: white; transform: scale(1.1); }
.float-btn-wa {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
}
.float-btn-wa:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════════════════════ */
.blog-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(165deg, #0F0F0F 0%, #1a1a1e 35%, #0F0F0F 100%);
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card-tag.maintenance { background: rgba(37,99,235,0.1); color: var(--call-blue); }
.blog-card-tag.detailing { background: var(--brand-glow); color: var(--brand-dark); }
.blog-card-tag.protection { background: rgba(201,162,39,0.1); color: var(--gold); }
.blog-card-tag.seasonal { background: rgba(147,51,234,0.1); color: #9333EA; }
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-date { font-size: 13px; color: var(--text-muted); }
.blog-card-read { font-size: 13px; font-weight: 600; color: var(--brand); }
.blog-card-read:hover { color: var(--brand-dark); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 48px 16px; }
  .btn-primary, .btn-outline, .btn-outline-light { padding: 12px 24px; font-size: 15px; }
  .hero-3d-container { max-width: 300px !important; }
  .hero-grid { grid-template-columns: 1fr !important; text-align: center; }
  .hero-grid .hero-text-col { order: 1; }
  .hero-grid .hero-visual-col { order: 2; }
  .hero-cta-row { justify-content: center !important; }
  .hero-trust-row { justify-content: center !important; }
  .orbit-ring { display: none !important; }
  .hero-car svg { width: 140px !important; height: 70px !important; }
  .hero-bg { background-position: 35% center !important; }
  .nav-desktop { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .nav-desktop { display: flex !important; }
  .mobile-menu-btn { display: none !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 480px) {
  .hero-bg { background-position: 30% center !important; }
}

/* About section light mode overrides */
.about-section .section-label { background: var(--brand-glow) !important; color: var(--brand-dark) !important; border-color: rgba(76,175,80,0.15) !important; }
.about-section h2 { color: var(--text) !important; }
.about-section > div > div > p { color: var(--text-secondary) !important; }
.about-section .about-feature-icon { background: rgba(76,175,80,0.1); color: var(--brand-dark); }

.faq-section .section-label { background: var(--brand-glow) !important; color: var(--brand-dark) !important; border-color: rgba(76,175,80,0.15) !important; }
.faq-section h2 { color: var(--text) !important; }
.faq-section > div > div > p { color: var(--text-secondary) !important; }

/* Fix phone number LTR in RTL layout */
.phone-number-ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }

/* Logo image responsive */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 768px) { .nav-logo-img { height: 34px; } }

/* Remove floating animated icons */
.orbit-ring, .orbit-item, .hero-3d-container, .hero-visual-col, .hero-car-wrap, .hero-3d-glow { display: none !important; }
.hero-grid { grid-template-columns: 1fr !important; }

/* Booking time slots and date LTR in RTL */
.timeslot-btn { direction: ltr; unicode-bidi: plaintext; }
.rtl input[type="date"] { direction: ltr; text-align: right; }

/* Language switch dot indicator */
.lang-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-inline-end: 2px;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
