/* AutoRx Detailing & Accessories Studio - Dark Warm Charcoal Grey Theme */

:root {
  --bg-darker: rgba(15, 15, 15, 0.85);       /* Dark Matte Black */
  --bg-dark: rgba(22, 22, 22, 0.85);         /* Slightly Lighter Matte */
  --bg-card: rgba(20, 20, 20, 0.65);         /* Card background for glass */
  --bg-card-hover: rgba(30, 30, 30, 0.75);   /* Hover state */
  --text-main: #F5F5F5;                      /* Crisp off-white */
  --text-muted: #A3A3A3;                     /* Premium light gray */
  --accent-yellow: #D4AF37;                  /* Champagne Gold Accent */
  --accent-yellow-dark: #B8962E;             /* Darker Champagne */
  --accent-cyan: #D4AF37;                    /* Using Champagne everywhere */
  --accent-whatsapp: #F5F5F5;     
  --accent-whatsapp-glow: rgba(212, 175, 55, 0.15);
  --border-color: rgba(212, 175, 55, 0.2);   /* Champagne borders */
  --border-glow: rgba(212, 175, 55, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #0c0a09;
  position: relative;
}

/* iOS/Safari fix: background-attachment:fixed is broken on iOS.
   Use a fixed pseudo-element instead — works on all browsers/devices. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../assets/lamborghini_revuelto.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #3d3733;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-yellow);
}

/* Scroll Reveal Base Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.text-yellow {
  color: var(--accent-yellow);
  text-shadow: 0 0 15px rgba(200, 184, 168, 0.35);
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
}

/* Header & Navigation Bar (Desert Supercar Theme) */
.header.desert-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 20px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.desert-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

/* Minimalist Ring Brand Logo */
.brand-ring-logo {
  width: 34px;
  height: 34px;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.brand-ring-logo:hover {
  transform: scale(1.1);
  border-color: var(--accent-yellow);
}

.ring-inner-dot {
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.brand-ring-logo:hover .ring-inner-dot {
  background: var(--accent-yellow);
}

/* Center Desert Navigation Links */
.brand-image-logo {
  height: 75px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-image-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.brand-image-link {
  display: block;
}

.desert-nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.desert-nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.desert-nav-links a:hover,
.desert-nav-links a.active {
  color: #ffffff;
  font-weight: 600;
  text-shadow: none;
}

/* Right Pill Button */
.btn-pill-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1c1917;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-pill-store:hover {
  background: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.18);
  color: #1c1917;
}
/* ==========================================================================
   Hero Section (Desert Supercar Drift Scene matching exact reference image)
   ========================================================================== */
.hero-desert-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: transparent;
}

/* Desktop layout container: two columns, left = heading, right = car+text+CTA */
.hero-container-layout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6% 60px 6%;
  pointer-events: none;
}

/* Desert Background & Vignette */
.desert-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.studio-static-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.desert-hero-img {
  position: absolute;
  z-index: 3;
  width: clamp(300px, 55%, 780px);
  height: auto;
  max-height: 72%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center center;
  filter:
    brightness(1.04)
    contrast(1.08)
    saturate(1.05)
    drop-shadow(0 38px 28px rgba(0, 0, 0, 0.38))
    drop-shadow(0 12px 8px rgba(0, 0, 0, 0.22));
  opacity: 0;
  animation: carEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s,
             carFloat 6s ease-in-out infinite 1.6s;
}

@keyframes carEntrance {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.88) perspective(900px) rotateY(6deg);
    filter: brightness(0.85) contrast(1.08) saturate(0.9)
            drop-shadow(0 20px 14px rgba(0,0,0,0.2));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) perspective(900px) rotateY(0deg);
    filter: brightness(1.04) contrast(1.08) saturate(1.05)
            drop-shadow(0 38px 28px rgba(0,0,0,0.38))
            drop-shadow(0 12px 8px rgba(0,0,0,0.22));
  }
}

@keyframes carFloat {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -52.5%) scale(1.008); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* Realistic floor reflection under the car */
.desert-hero-img::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 10%;
  width: 80%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.22) 0%, transparent 75%);
  filter: blur(6px);
  pointer-events: none;
}


.desert-overlay-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 40%),
    linear-gradient(to top, rgba(12, 10, 9, 0.85) 0%, rgba(12, 10, 9, 0.25) 35%, transparent 70%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
  z-index: 4;
  pointer-events: none;
}

/* Animated Dust Particles Canvas */
.dust-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* ONE DRIVE Watermark Text — sits behind the car */
.hero-brand-bg-text {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  /* Responsive: small on mobile, medium on laptop, large on big desktop */
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: clamp(4px, 1.5vw, 12px);
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

/* Bottom Left Title Content */
.hero-bottom-left {
  position: relative;
  z-index: 10;
  max-width: 480px;
  pointer-events: auto;
  flex-shrink: 0;
}

.hero-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 600;
  color: #e8e0d8;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 14px;
}

.text-highlight-legend {
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95);
}

/* =============================================
   ONE DRIVE — Animated Brand Title
   ============================================= */
.animated-brand-title {
  display: inline-block;
  position: relative;
  font-weight: 900;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  -webkit-text-fill-color: #ffffff;
}

/* Individual letter spans added by JS */
.animated-brand-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(35px);
  animation: letterDrop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Shimmer overlay using pseudo-element */
.animated-brand-title::after {
  content: 'ONE DRIVE.';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 3s linear infinite 1.2s;
  pointer-events: none;
  font-weight: 900;
  font-size: inherit;
  letter-spacing: inherit;
  font-family: inherit;
}

@keyframes letterDrop {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Desktop: the car wrapper has zero height so the absolute img
   breaks out and positions against the hero section itself */
.hero-car-wrapper {
  position: static;
  height: 0;
  overflow: visible;
  width: 0;
}

/* Bottom Right: Description & CTA */
.hero-bottom-right {
  position: static;
  z-index: 10;
  max-width: 480px;
  text-align: left;
  pointer-events: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-paragraph-right {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-pill-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  color: #0f172a;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-pill-white:hover {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: #000000;
}

.btn-pill-translucent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(28, 25, 23, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(28, 25, 23, 0.15);
  color: #1c1917;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-translucent:hover {
  background: rgba(28, 25, 23, 0.12);
  border-color: #1c1917;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* About / Professional Service Section */
.about-section {
  background-color: var(--bg-dark);
  color: var(--text-main);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.about-line {
  width: 70px;
  height: 4px;
  background: var(--text-main);
  margin-bottom: 24px;
  box-shadow: 0 0 12px rgba(28, 25, 23, 0.25);
  animation: pulseWidth 3s infinite alternate;
}

@keyframes pulseWidth {
  0% { width: 70px; }
  100% { width: 110px; }
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #f8fafc;
  font-size: 0.95rem;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(6px);
  color: var(--accent-yellow);
}

.feature-item i {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  transition: var(--transition);
}

.feature-item:hover i {
  transform: scale(1.3) rotate(15deg);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  color: #0f172a;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.06);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.about-img-box:hover {
  border-color: var(--accent-yellow);
  box-shadow: 0 25px 50px rgba(250, 204, 21, 0.2);
  transform: translateY(-8px);
}

.about-img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-box:hover img {
  transform: scale(1.08);
}

/* Mobile-only slider UI — hidden on desktop */
.mobile-slider-controls,
.mobile-visit-all { display: none; }

/* Services Section */
.services-section {
  background-color: var(--bg-darker);
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 12px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: var(--accent-yellow);
  background: var(--bg-card-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.25);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.12);
  filter: brightness(1.1);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #D4AF37, #B8962E);
  color: #0f0f0f;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  animation: pulseBadge 3s infinite ease-in-out alternate;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2); }
  100% { box-shadow: 0 4px 22px rgba(212, 175, 55, 0.6); }
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--accent-yellow);
  text-shadow: 0 0 15px rgba(200, 184, 168, 0.25);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  transition: var(--transition);
}

.service-card:hover .service-features-list li {
  transform: translateX(4px);
}

.service-features-list li i {
  color: var(--accent-yellow);
  transition: var(--transition);
}

.service-card:hover .service-features-list li i {
  transform: scale(1.3) rotate(12deg);
  color: var(--accent-cyan);
}

.service-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

/* ========================================================= */
/* FUTURISTIC PREMIUM GREY & WHITE COMBINATION BUTTONS       */
/* ========================================================= */
.btn-whatsapp-inquire, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  color: #0f172a !important;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.06), inset 0 0 10px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

/* Futuristic Shimmer Sweep Line */
.btn-whatsapp-inquire::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  transition: all 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.btn-whatsapp-inquire:hover::before, .btn-primary:hover::before {
  left: 100%;
}

.btn-whatsapp-inquire:hover, .btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.22), inset 0 0 15px rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  color: #000000 !important;
}

.btn-whatsapp-inquire i, .btn-primary i {
  font-size: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-whatsapp-inquire:hover i, .btn-primary:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* Accessories Showcase Grid */
.accessories-section {
  background-color: var(--bg-dark);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.accessory-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.accessory-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.accessory-icon {
  width: 64px;
  height: 64px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px auto;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.accessory-card:hover .accessory-icon {
  background: var(--accent-yellow);
  color: #1a1817;
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 25px rgba(200, 184, 168, 0.4);
}

.accessory-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.accessory-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Location & Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(44, 40, 37, 0.8) 0%, rgba(26, 24, 23, 0.85) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent-yellow-dark);
  box-shadow: var(--shadow-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(8px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(28, 25, 23, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  background: var(--accent-yellow);
  color: #1a1817;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 20px rgba(200, 184, 168, 0.3);
}

.info-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.info-details a:hover {
  color: var(--accent-yellow);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 380px;
  transition: var(--transition);
}

.map-container:hover {
  border-color: var(--accent-yellow-dark);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* Booking Quick Form */
.quick-booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 50px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-booking-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.form-group select option {
  background-color: #2c2825;
  color: #e8e0d8;
}

/* =============================================
   CUSTOM ANIMATED SERVICE SELECT DROPDOWN
   ============================================= */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 184, 168, 0.15);
  color: var(--text-main);
  padding: 16px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-select-trigger:hover {
  border-color: rgba(200, 184, 168, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: rgba(200, 184, 168, 0.5);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 20px rgba(200, 184, 168, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.custom-select-arrow {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent-yellow);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2c2825;
  border: 1px solid rgba(200, 184, 168, 0.2);
  border-top: none;
  border-radius: 0 0 18px 18px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 100;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.open .custom-select-dropdown {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.custom-select-option i {
  font-size: 0.85rem;
  color: var(--accent-yellow);
  width: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.custom-select-option:hover {
  background: rgba(200, 184, 168, 0.08);
  color: var(--text-main);
  border-left-color: var(--accent-yellow);
  padding-left: 30px;
}

.custom-select-option:hover i {
  transform: scale(1.2);
}

.custom-select-option.selected {
  color: var(--text-main);
  background: rgba(200, 184, 168, 0.1);
  border-left-color: var(--accent-yellow);
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: rgba(26, 24, 23, 0.9);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--text-main);
  text-shadow: none;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES — Full Responsive Overhaul
   ========================================================================== */

/* ── Hamburger Menu Button (hidden on desktop) ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Laptop: 1024px–1439px — Scale proportionally, keep two columns ── */
@media (max-width: 1440px) {
  .hero-container-layout { padding: 0 5% 50px 5%; }
  .hero-bottom-left { max-width: 420px; }
  .hero-bottom-right { max-width: 420px; }
}

@media (max-width: 1200px) {
  .desert-nav-links { gap: 20px; }
  .desert-nav-links a { font-size: 0.9rem; }
  .btn-pill-store { padding: 8px 18px; font-size: 0.85rem; }
  .hero-container-layout { padding: 0 4% 45px 4%; }
  .hero-bottom-left { max-width: 380px; }
  .hero-bottom-right { max-width: 380px; }
  .animated-brand-title { font-size: clamp(2.8rem, 5.5vw, 5rem); }
}

/* ── Tablet: 1024px — Keep two columns but scale everything down ── */
@media (max-width: 1024px) {
  .section-padding { padding: 70px 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .accessories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Hero: reduce sizes, keep two-column */
  .hero-container-layout { padding: 0 3% 40px 3%; gap: 20px; }
  .hero-bottom-left { max-width: 320px; }
  .hero-bottom-right { max-width: 320px; }
  .hero-paragraph-right { font-size: 0.88rem; }
  .animated-brand-title { font-size: clamp(2.2rem, 4.5vw, 4rem); }

  /* Car image: scale down slightly for tablet */
  .desert-hero-img {
    width: clamp(280px, 52%, 680px);
  }

  /* Service detail grid */
  .service-detail-grid { grid-template-columns: 1fr; }
}

/* ── Tablet Portrait: 768px–1023px ── */
@media (max-width: 900px) {
  .hero-container-layout { padding: 0 24px 36px 24px; gap: 16px; }
  .hero-bottom-left { max-width: 280px; }
  .hero-bottom-right { max-width: 280px; }
  .hero-paragraph-right { font-size: 0.85rem; }
  .animated-brand-title { font-size: clamp(1.8rem, 4vw, 3.2rem); }

  .desert-hero-img {
    width: clamp(260px, 50%, 600px);
  }
}

/* ── Mobile: max-width 768px — Single column layout ── */
@media (max-width: 768px) {

  /* Hide the desktop fixed body background on mobile */
  body::before { display: none !important; }

  /* Apply background to the hero section wrapper so it fills the section completely */
  .desert-bg-wrapper {
    background: url('../assets/lamborghini_revuelto.jpg') no-repeat center 40%;
    background-size: cover;
  }


  /* ── Header ── */
  .header.desert-header { padding: 14px 0; }
  .hamburger-btn { display: flex; }
  .header-actions { display: none; }

  /* ── Mobile Fullscreen Nav Overlay ── */
  .nav-links.desert-nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-links.desert-nav-links.mobile-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links.desert-nav-links li a {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
  }
  .nav-links.desert-nav-links li a:hover { color: var(--accent-yellow); }

  /* Brand logo */
  .brand-image-logo { height: 48px; }

  /* ── Hero Section: transparent so body background car shows through ── */
  .hero-desert-section {
    height: auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent !important;
  }

  /* On mobile, the layout container becomes a vertical flex column
     and sits at the bottom-ish of the screen using padding-top */
  .hero-container-layout {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px 44px 24px;
    margin-top: auto; /* push to the bottom of the hero */
    gap: 0;
    width: 100%;
  }

  /* Hide the car image on mobile — it's only shown on desktop/tablet */
  .hero-car-wrapper {
    display: none;
  }

  /* Ensure the absolutely-positioned car image is also hidden on mobile */
  .desert-hero-img {
    display: none !important;
  }

  /* Left side = heading */
  .hero-bottom-left {
    position: static;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 0 16px 0;
    flex-shrink: 0;
  }

  /* Right side = description + CTA */
  .hero-bottom-right {
    position: static;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
    flex-shrink: 0;
  }

  .hero-kicker {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    margin-bottom: 8px;
  }

  .hero-caption {
    font-size: clamp(0.82rem, 2.8vw, 0.95rem);
    letter-spacing: 2px;
    margin-top: 6px;
  }

  .hero-paragraph-right {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 360px;
  }

  .hero-pill-buttons {
    justify-content: center;
    width: 100%;
  }

  .btn-pill-white {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* ── Section Typography ── */
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.95rem; padding: 0 10px; }

  /* ── About Section ── */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-subtitle { font-size: 1.4rem; }
  .about-img-box img { border-radius: 12px; }

  /* ── Services: Mobile Single-Card Slider ── */

  /* Reset container padding so card is full-width */
  .services-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .services-section .section-header {
    padding: 0 20px;
  }

  /* Grid: stacked, but only active card shown */
  .services-grid {
    display: block;
    grid-template-columns: unset;
    padding: 0 20px;
  }

  /* All cards hidden by default on mobile */
  .service-card {
    display: none;
    width: 100%;
    height: 340px;
    margin: 0;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    animation: slideCardIn 0.4s cubic-bezier(0.16,1,0.3,1);
  }

  /* Only the active card is shown */
  .service-card.slider-active {
    display: block;
  }

  @keyframes slideCardIn {
    from { opacity: 0; transform: translateX(30px) scale(0.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
  }

  /* Full-bleed background image */
  .service-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Cinematic dark gradient from bottom */
  .service-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.05) 25%,
      rgba(0,0,0,0.65) 60%,
      rgba(0,0,0,0.95) 100%
    );
    z-index: 1;
  }

  /* Gold badge top-right */
  .service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    z-index: 3;
    font-size: 0.62rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #D4AF37, #B8962E);
    color: #0f0f0f;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 14px rgba(212,175,55,0.45);
  }

  /* Content pinned to bottom of card */
  .service-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    flex-grow: unset;
  }

  .service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }

  .service-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-features-list { display: none; }

  .service-card-footer {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
  }

  .service-card-footer .btn-primary {
    padding: 9px 18px;
    font-size: 0.72rem;
    border-radius: 50px;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    border: 1px solid rgba(212,175,55,0.5);
    box-shadow: none;
    letter-spacing: 0.5px;
    width: auto;
    display: inline-flex;
  }

  .service-card:hover { transform: none; box-shadow: 0 12px 40px rgba(0,0,0,0.55); }

  /* ── Slider Controls ── */
  .mobile-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    padding: 0 20px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-shrink: 0;
  }

  .slider-arrow:active {
    transform: scale(0.92);
    background: rgba(212,175,55,0.18);
    border-color: #D4AF37;
  }

  .slider-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 160px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    padding: 0;
  }

  .slider-dot.active {
    background: #D4AF37;
    transform: scale(1.35);
  }

  /* ── Visit All Services Button ── */
  .mobile-visit-all {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px;
  }

  .btn-visit-all {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 50px;
    border: 1px solid rgba(212,175,55,0.5);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
  }

  .btn-visit-all:active {
    background: rgba(212,175,55,0.15);
    border-color: #D4AF37;
    transform: scale(0.97);
  }

  /* ── Accessories Grid ── */
  .accessories-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Contact / Location ── */
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .map-container iframe { height: 250px; }

  /* ── Booking Form ── */
  .quick-booking-card { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .form-group input,
  .form-group select,
  .custom-select-trigger { font-size: 0.95rem; }

  /* ── Service Detail Inner Pages ── */
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .service-detail-text { padding: 24px 20px; }
  .service-detail-text h3 { font-size: 1.6rem; }
  .service-hero-title { font-size: 2.2rem; }
  .service-hero-subtitle { font-size: 1rem; padding: 0 15px; }

  /* ── Glass panel on mobile ── */
  .glass-panel { border-radius: 16px; margin: 0 10px; padding: 10px; }

  /* ── Footer ── */
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .footer p { font-size: 0.8rem; padding: 0 20px; }

  /* ── Car controls widget ── */
  .car-controls-widget { bottom: 20px; right: 10px; left: 10px; }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
  .container { width: 95%; }
  .brand-image-logo { height: 40px; }
  .hero-container-layout { padding: 20px 16px 36px 16px; }
  .desert-hero-img { max-width: 360px !important; }
  .service-hero-title { font-size: 1.8rem; }
  .service-hero { min-height: 380px; height: 50vh; }
  .section-title { font-size: 1.5rem; }
  .btn-primary { font-size: 0.85rem; padding: 12px 18px; }
  .btn-pill-store { font-size: 0.82rem; padding: 8px 16px; }

  .service-feature-list li { font-size: 0.95rem; }
  .service-detail-text h3 { font-size: 1.4rem; }
  .service-detail-text p { font-size: 0.95rem; }

  .about-subtitle { font-size: 1.2rem; }
  .quick-booking-card { padding: 24px 14px; border-radius: 14px; }
}

/* ── Fixed Header Offset for Inner Service Pages ── */
.service-hero {
  padding-top: 80px;
}

/* ── Hero section: full viewport, no padding-top interference ── */
.hero-desert-section {
  padding-top: 0;
}

/* ── Prevent horizontal overflow on all screen sizes ── */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }
