/* ==========================================================================
   BOOST GARAGE DETAILING - Ultra Responsive Mobile & Desktop V9
   Owner: Yitzhak Izrailov | Mobile 054-5671986
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&family=Heebo:wght@300;400;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --bg-dark: #040507;
  --bg-surface: #0a0c12;
  --bg-card: rgba(13, 16, 24, 0.95);
  --bg-card-hover: rgba(22, 27, 39, 0.98);
  
  --primary-red: #ff1744;
  --primary-red-hover: #ff4569;
  --primary-red-glow: rgba(255, 23, 68, 0.5);
  --gold-accent: #ffb703;
  --gold-glow: rgba(255, 183, 3, 0.4);
  
  --silver-light: #ffffff;
  --silver-mid: #e2e8f0;
  --silver-dark: #64748b;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-light: rgba(255, 255, 255, 0.12);
  --border-active: rgba(255, 23, 68, 0.65);
  --border-silver: rgba(226, 232, 240, 0.3);
  
  --font-hebrew: 'Assistant', 'Heebo', sans-serif;
  --font-brand: 'Outfit', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 35px rgba(255, 23, 68, 0.4);
  --shadow-gold: 0 0 25px rgba(255, 183, 3, 0.35);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-hebrew);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 23, 68, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(30, 41, 59, 0.4) 0%, transparent 55%);
  background-attachment: fixed;
}

/* Typography & Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-hebrew);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.gradient-text-red {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff1744 50%, #d50000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffe066 0%, #ffb703 50%, #fb8500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(255, 23, 68, 0.15);
  color: var(--primary-red);
  border: 1px solid rgba(255, 23, 68, 0.4);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}

.badge-gold {
  background: rgba(255, 183, 3, 0.15);
  color: var(--gold-accent);
  border-color: rgba(255, 183, 3, 0.4);
  box-shadow: var(--shadow-gold);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.18rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Glassmorphism Base */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-md);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
  color: #fff;
  box-shadow: 0 6px 25px rgba(255, 23, 68, 0.45);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(255, 23, 68, 0.65);
  background: linear-gradient(135deg, #ff335c 0%, #e60000 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-silver);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover, .btn-secondary:active {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.btn-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Floating Action Buttons for Mobile */
.fab-container {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 100;
}

.fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  touch-action: manipulation;
}

.fab-btn:active { transform: scale(0.92); }
.fab-whatsapp { background: #25D366; }
.fab-phone { background: var(--primary-red); }

.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: pulse-ring 2s infinite;
  opacity: 0.6;
}

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

/* Header & Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  transition: all var(--transition-normal);
  background: rgba(4, 5, 7, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  padding: 0.45rem 0;
  background: rgba(4, 5, 7, 0.98);
  box-shadow: 0 12px 35px rgba(0,0,0,0.95);
}

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

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: transform var(--transition-normal);
}

.brand-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 23, 68, 0.35)) drop-shadow(0 4px 15px rgba(0,0,0,0.9));
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

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

.nav-link {
  color: var(--silver-mid);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active { color: #fff; }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--primary-red);
  border-radius: 2px;
}

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

.nav-phone-num {
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  direction: ltr;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}

/* Brands Showcase Strip */
.brands-section {
  padding: 2.2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brands-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-silver);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--silver-light);
  transition: all var(--transition-fast);
}

.brand-pill:hover {
  border-color: var(--primary-red);
  background: rgba(255, 23, 68, 0.1);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.25);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  filter: contrast(1.1) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 7, 0.78) 0%, rgba(4, 5, 7, 0.9) 65%, var(--bg-dark) 100%),
              radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.28rem;
  color: var(--silver-mid);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gift-banner-hero {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15) 0%, rgba(255, 23, 68, 0.15) 100%);
  border: 1px solid rgba(255, 183, 3, 0.5);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.2);
}

.gift-banner-hero .gift-icon {
  font-size: 2.6rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--primary-red);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-silver);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--primary-red), var(--gold-accent));
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.owner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 2px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.hero-card-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--silver-light);
}

.hero-card-list li svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

/* VIP Gift Kit Section */
.gift-section-card {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, rgba(13, 16, 24, 0.96) 50%, rgba(255, 23, 68, 0.08) 100%);
  border: 1px solid rgba(255, 183, 3, 0.45);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  margin-top: 3rem;
}

.gift-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gift-card-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.gift-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

.gift-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  font-size: 1.15rem;
}

/* Work Showcase Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-silver);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(0deg, rgba(4, 5, 7, 0.95) 0%, transparent 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

/* Services Grid with Photo Banners */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-photo-banner {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-light);
}

.service-content-inner {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: right;
}

.service-card:hover::after { transform: scaleX(1); }

.service-top { margin-bottom: 1.5rem; }

.service-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.service-title { font-size: 1.45rem; margin-bottom: 0.75rem; }
.service-desc { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 1.5rem; }

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--silver-mid);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: bold;
}

.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.service-price { font-size: 1.2rem; font-weight: 800; color: var(--silver-light); }
.service-price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

/* Calculator */
.calc-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
}

.calc-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.car-type-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-muted);
  touch-action: manipulation;
}

.car-type-btn:hover { background: rgba(255, 255, 255, 0.08); }

.car-type-btn.active {
  background: rgba(255, 23, 68, 0.12);
  border-color: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.2);
}

.car-type-icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.car-type-name { font-weight: 700; font-size: 0.95rem; display: block; }
.car-type-desc { font-size: 0.75rem; color: var(--text-dim); }

.addon-services-list { display: flex; flex-direction: column; gap: 1rem; }

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

.addon-item:hover { background: rgba(255, 255, 255, 0.05); }

.addon-item.selected {
  border-color: var(--primary-red);
  background: rgba(255, 23, 68, 0.08);
}

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

.addon-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--silver-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.addon-item.selected .addon-checkbox {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.addon-checkbox::after {
  content: '✓';
  color: #fff;
  font-weight: bold;
  font-size: 0.85rem;
  display: none;
}

.addon-item.selected .addon-checkbox::after { display: block; }
.addon-title { font-weight: 700; font-size: 1.05rem; }
.addon-desc { font-size: 0.85rem; color: var(--text-muted); }
.addon-price { font-weight: 800; color: var(--primary-red); font-size: 1.1rem; flex-shrink: 0; }

.calc-summary-card {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid var(--border-silver);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-light);
}

.summary-row.total {
  border-bottom: none;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
  margin-top: 1rem;
}

.total-price { font-size: 2.2rem; color: var(--primary-red); font-weight: 900; }

.discount-badge {
  background: rgba(255, 183, 3, 0.15);
  color: var(--gold-accent);
  border: 1px solid rgba(255, 183, 3, 0.3);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Pricing Table */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.price-tab-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

.price-tab-btn.active {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.35);
}

.pricing-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.pricing-table th, .pricing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  color: var(--silver-light);
  font-size: 1.05rem;
}

.pricing-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* Before / After Slider */
.ba-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border: 2px solid var(--border-silver);
  user-select: none;
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-before { z-index: 1; }

.ba-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-left: 3px solid var(--primary-red);
}

.ba-after .ba-img { width: 920px; max-width: none; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-red);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.8);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 23, 68, 0.9);
  font-weight: bold;
}

.ba-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 4;
}

.ba-label-before { right: 1.5rem; color: var(--text-muted); }
.ba-label-after { left: 1.5rem; color: var(--primary-red); border: 1px solid var(--primary-red); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars { color: var(--gold-accent); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { font-size: 1.02rem; color: var(--silver-mid); margin-bottom: 1.5rem; font-style: italic; }

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-name { font-weight: 700; font-size: 1rem; }
.author-car { font-size: 0.85rem; color: var(--text-muted); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item { display: flex; align-items: center; gap: 1.25rem; }

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(255, 23, 68, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 1.1rem; color: var(--silver-light); }
.contact-detail p, .contact-detail a { color: var(--text-muted); font-size: 1.05rem; text-decoration: none; }
.contact-detail a:hover { color: var(--primary-red); }

.booking-form {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 700; font-size: 0.95rem; color: var(--silver-mid); }

.form-control {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-family: var(--font-hebrew);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.2);
}

select.form-control option { background: var(--bg-surface); color: #fff; }

/* Footer */
.footer {
  background: #030406;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
}

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

.footer-brand p { color: var(--text-muted); margin-top: 1rem; max-width: 400px; }
.footer-title { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--silver-light); }

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

.footer-links a { color: var(--text-muted); text-decoration: none; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--primary-red); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ==========================================================================
   ADVANCED RESPONSIVE MOBILE & TABLET MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1.05rem; }

  /* Navbar Mobile Drawer */
  .navbar { padding: 0.5rem 0; }
  .brand-logo-img { height: 50px; }
  .nav-phone-num { display: none; }
  .nav-cta .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
  .mobile-toggle { display: flex; }

  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(4, 5, 7, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.95);
    gap: 1.2rem;
    text-align: center;
  }

  /* Hero Mobile */
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-subtext { font-size: 1.08rem; margin-bottom: 1.8rem; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .stat-item h4 { font-size: 1.3rem; }
  .stat-item p { font-size: 0.8rem; }

  /* Gift Box Mobile */
  .gift-section-card { padding: 2rem 1.5rem; }
  .gift-details-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Calculator Mobile */
  .calc-wrapper { padding: 1.5rem; }
  .car-type-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .car-type-btn { padding: 1rem 0.5rem; }
  .addon-item { padding: 1rem; }
  .addon-title { font-size: 0.95rem; }
  .addon-desc { font-size: 0.8rem; }

  /* Services Grid Mobile */
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-photo-banner { height: 160px; }
  .service-content-inner { padding: 1.5rem; }

  /* Gallery Mobile */
  .ba-container { height: 320px; }

  /* Contact & Form Mobile */
  .contact-info-card, .booking-form { padding: 1.8rem 1.5rem; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand p { margin: 1rem auto 0; }
  .footer-links { align-items: center; }

  /* FAB Action Buttons Mobile */
  .fab-container { bottom: 1.2rem; left: 1.2rem; gap: 0.6rem; }
  .fab-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.85rem; }
  .car-type-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h4 { font-size: 1.15rem; }
  .stat-item p { font-size: 0.72rem; }
  .brand-logo-img { height: 44px; }
}
