@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #050505;
  --color-gold: #EEDC3A;
  --color-gold-glow: rgba(238, 220, 58, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --radius-pill: 50px;
  --radius-md: 16px;
  --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* scroll-behavior removed for GSAP compatibility */
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

input, textarea, select {
  user-select: auto;
  -webkit-user-select: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   CUSTOM LUXURY CURSOR
   ========================================================================== */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, select, textarea, .fleet-card, .insta-reel {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover-active {
  width: 40px;
  height: 40px;
  background-color: rgba(238, 220, 58, 0.2);
  border: 1px solid var(--color-gold);
  mix-blend-mode: normal;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

/* ════════════════════════════════════════════════════════════════════════ 
   UTILITY CLASSES
   ════════════════════════════════════════════════════════════════════════  */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold);
  color: #050505;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-gold:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

/* ════════════════════════════════════════════════════════════════════════ 
   FLOATING ACTION BUTTONS
   ════════════════════════════════════════════════════════════════════════  */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .fab-container {
    bottom: 120px;
    right: 20px;
    z-index: 9990;
  }
}

.whatsapp-float {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.phone-float {
  background: var(--color-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(238, 220, 58, 0.4);
}

/* ════════════════════════════════════════════════════════════════════════ 
   LOADER
   ════════════════════════════════════════════════════════════════════════  */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--color-gold) 0%, #ffffff 50%, var(--color-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  border-radius: 2px;
  position: relative;
}

.loader-bar::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 16H9m10 0h3v-3.15a1 1 0 00-.84-.99L16 11l-2.7-3.6a2 2 0 00-1.6-.8H9.3a2 2 0 00-1.6.8L5 11l-5.16.86a1 1 0 00-.84.99V16h3m10 0a2 2 0 104 0m-4 0a2 2 0 11-4 0m-10 0a2 2 0 104 0m-4 0a2 2 0 11-4 0'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  transform: translateX(-100%);
  animation: carDrive 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  border-radius: 2px;
  animation: loaderFill 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes carDrive {
  0% { left: 0%; opacity: 0; }
  5% { opacity: 1; }
  100% { left: 100%; opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════════ 
   NAVBAR — Floating Glass Pill
   ════════════════════════════════════════════════════════════════════════  */

.nav-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.navbar {
  pointer-events: auto;
  width: 92%;
  max-width: 1400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 28px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  will-change: transform;
  transform: translateZ(0);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta-yellow {
  background: var(--color-gold);
  color: #000;
  padding: 10px 26px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
}

.nav-cta-yellow:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ════════════════════════════════════════════════════════════════════════ 
   HERO SECTION
   ════════════════════════════════════════════════════════════════════════  */

.hero {
  position: relative;
  height: 100svh; /* Fixed mobile jump */
  min-height: 900px; /* Force minimum height so image doesn't get cut on widescreen */
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%; /* Shift focus downwards to prevent cars from being cut off */
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.1) 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, transparent 40%, rgba(5, 5, 5, 0.85) 100%);
}

.hero-editorial {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 50px 0;
}

.hero-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-top-row { margin-top: 0; }
}

.hero-top-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-loc {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.hero-loc-line {
  height: 1px;
  width: 120px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-top-center {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero-top-right {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 800px; font-size: 0.95rem; line-height: 1.8;
  justify-self: end;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  padding-bottom: 150px;
}

.hero-counter {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(40px);
}

.loaded .hero-title {
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  z-index: 10;
  transform: translateZ(0);
}

.hero-footer-divider {
  background: rgba(255, 255, 255, 0.12);
  width: 1px;
}

.hero-footer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-footer-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.hero-footer-btn svg {
  color: var(--color-gold);
  transition: transform 0.4s ease;
}

.hero-footer-btn:hover svg {
  transform: translateX(8px);
}

/* ════════════════════════════════════════════════════════════════════════ 
   ABOUT SECTION — Massive Typography
   ════════════════════════════════════════════════════════════════════════ */

.about-section {
  padding: 160px 0;
  position: relative;
}

.about-layout {
  display: flex;
  gap: 80px;
}

.about-left {
  flex: 0 0 140px;
}

.about-right {
  flex: 1;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-label::before {
  content: '';
  height: 1px;
  width: 35px;
  background: var(--color-gold);
}

.about-label span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 600;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.text-dim {
  color: rgba(255, 255, 255, 0.35);
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
}

.about-footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  flex: 1;
  max-width: 400px;
}

.about-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 360px;
}

/* ════════════════════════════════════════════════════════════════════════ 
   3D SHOWCASE SECTION — PREMIUM CINEMATIC DESIGN
   ════════════════════════════════════════════════════════════════════════ */

.showcase-section {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 30%, #1a1a1a 50%, #f5f3ee 85%, #faf8f4 100%);
}

/* ── Top Area ── */
.showcase-top-area {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 40px 20px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 20px;
}

.showcase-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.showcase-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Car Catalog Badge ── */
.showcase-catalog-badge {
  display: inline-block;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #EEDC3A, #d4c233);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 15px;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(238, 220, 58, 0.4);
}

.showcase-catalog-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(238, 220, 58, 0.6);
}

/* ── Floating Feature Badges ── */
.showcase-badge {
  position: absolute;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  z-index: 6;
  transition: var(--transition-base);
}

.showcase-badge:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.showcase-badge-left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.showcase-badge-left:hover {
  transform: translateY(calc(-50% - 3px));
}

.showcase-badge-right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.showcase-badge-right:hover {
  transform: translateY(calc(-50% - 3px));
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── Canvas Wrapper with Side Arrows ── */
.showcase-canvas-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0 20px;
}

.showcase-side-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-base);
}

.showcase-arrow-left {
  left: 30px;
}

.showcase-arrow-right {
  right: 30px;
}

.showcase-side-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.showcase-side-arrow:active {
  transform: scale(0.95);
}

/* ── Three.js Container (overrides) ── */
.three-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 550px;
  z-index: 2;
  margin: 0 auto;
}

#three-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.three-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.three-loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Gradient Floor ── */
.showcase-floor-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(250, 248, 244, 0.3) 50%, #faf8f4 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Massive Background Text (overrides) ── */
.massive-bg-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  transition: opacity 0.5s ease;
}

/* ════════════════════════════════════════════════════════════════════════ 
   PREMIUM SPECS PANEL (Bottom Bar)
   ════════════════════════════════════════════════════════════════════════ */
.car-specs-panel {
  position: relative;
  z-index: 5;
  background: #0a0a0a;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: 30px;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  border-top: none;
}

/* ── Car Identity (Name + Price) ── */
.spec-identity {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-car-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.spec-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.spec-price span {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ── Description ── */
.spec-description {
  padding: 0 20px;
}

.spec-description p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 800px; font-size: 0.95rem; line-height: 1.8;
}

/* ── Stats Row with Dividers ── */
.spec-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.spec-stat-item {
  text-align: center;
  padding: 0 22px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

.stat-unit {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: capitalize;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.spec-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Rent CTA Button ── */
.btn-rent-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #EEDC3A, #d4c233);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
  border: 1px solid rgba(238, 220, 58, 0.3);
}

.btn-rent-cta:hover {
  background: linear-gradient(135deg, #d4c233, #EEDC3A);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(238, 220, 58, 0.4);
}

.btn-rent-cta svg {
  transition: transform 0.3s ease;
}

.btn-rent-cta:hover svg {
  transform: translate(3px, -3px);
}

/* ── Old nav hidden ── */
.showcase-nav {
  display: none;
}

/* ══════════════════ RESPONSIVE: Showcase Section ══════════════════ */
@media (max-width: 1200px) {
  .car-specs-panel {
    grid-template-columns: 1fr 3fr auto;
    gap: 20px;
    padding: 30px 30px;
  }
  .spec-identity {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
  }
  .spec-stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .showcase-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 40px 0 0;
  }
  .showcase-label {
    font-size: 1.3rem;
  }
  .three-container {
    height: 350px;
  }
  .showcase-side-arrow {
    width: 40px;
    height: 40px;
  }
  .showcase-arrow-left {
    left: 10px;
  }
  .showcase-arrow-right {
    right: 10px;
  }
  .car-specs-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 20px;
  }
  .spec-identity {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    padding-right: 0;
  }
  .spec-description {
    padding: 0;
  }
  .spec-stats-row {
    justify-content: center;
  }
  .spec-stat-item {
    padding: 0 14px;
  }
  .stat-value {
    font-size: 1.2rem;
  }
  .spec-cta {
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════════════════════ 
   STATS SECTION
   ════════════════════════════════════════════════════════════════════════  */

.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  padding: 40px 30px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════════════════════════════════ 
   BRANDS SECTION
   ════════════════════════════════════════════════════════════════════════  */

.brands-section {
  padding: 100px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brands-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 50px;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 12vw;
  max-width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

.brands-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  padding-right: 40px;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-card {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-card img {
  max-width: 110px;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(0) opacity(1);
  transition: all 0.4s ease;
}

.brand-card:hover img {
  filter: grayscale(0) opacity(1) drop-shadow(0 0 8px rgba(238, 220, 58, 0.25));
}

/* ════════════════════════════════════════════════════════════════════════ 
   SERVICE SECTION — Why Choose Us
   ════════════════════════════════════════════════════════════════════════  */

.service-section {
  padding: 120px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  display: block;
  filter: grayscale(0.3);
  transition: filter 0.5s ease;
}

.service-image:hover img {
  filter: grayscale(0);
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 30px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.service-content .btn-gold {
  margin-top: 20px;
}

/* ==========================================================================
   BLOGS & INSTAGRAM SECTION
   ========================================================================== */
.blogs-section,
.insta-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-50px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.blog-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #111;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-read-more {
  color: var(--color-gold);
}

/* Insta Reels */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-reel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  cursor: pointer;
}

.insta-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.insta-reel:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.insta-reel:hover .play-icon-overlay {
  background: var(--color-gold);
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 2rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* ════════════════════════════════════════════════════════════════════════ 
   FEEDBACK SECTION
   ════════════════════════════════════════════════════════════════════════  */

.feedback-section {
  padding: 100px 0;
  background: var(--bg-dark);
}
.feedback-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.feedback-header h2 { font-family: var(--font-display); font-size: 3rem; line-height: 1.1; color: var(--text-primary); }
.feedback-nav { display: flex; gap: 15px; }
.feedback-btn { background: var(--bg-dark); border: 1px solid rgba(255, 255, 255, 0.2); width: 50px; height: 50px; border-radius: 12px; color: var(--text-primary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-base); }
.feedback-btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--bg-dark); }
.feedback-slider-container { width: 100%; position: relative; }
.feedback-track { display: flex; align-items: center; justify-content: center; gap: 30px; width: 100%; }
.feedback-card { width: 450px; flex-shrink: 0; opacity: 0.5; transform: scale(0.9); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.feedback-card.active { opacity: 1; transform: scale(1.05); background: rgba(10,10,10,0.8); border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.05); z-index: 2; }
.feedback-card-inner { padding: 40px; }
.feedback-top { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; position: relative; }
.feedback-avatar .avatar-placeholder { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.feedback-meta h3 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: 5px; }
.stars { color: var(--color-gold); font-size: 1.2rem; letter-spacing: 2px; }
.feedback-arrow { position: absolute; top: 0; right: 0; color: var(--text-secondary); }
.feedback-card.active .feedback-arrow { color: var(--color-gold); }
.feedback-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.feedback-card.active p { color: var(--text-primary); }

/* ════════════════════════════════════════════════════════════════════════ 
   FAQ & INQUIRY SECTION
   ════════════════════════════════════════════════════════════════════════  */

.faq-inquiry-section { position: relative; background: var(--bg-dark); }
.faq-inquiry-bg { background: url('../assets/images/dubai-skyline.webp') center bottom/cover no-repeat; position: relative; min-height: 1200px; }
.faq-gradient-top { position: absolute; top: 0; left: 0; width: 100%; height: 600px; background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%); pointer-events: none; z-index: 1; }
.faq-content-wrapper { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 100px 24px; }
.faq-title { text-align: center; font-family: var(--font-display); font-size: 4rem; font-weight: 800; margin-bottom: 60px; color: var(--text-primary); }
.faq-card { margin-bottom: 15px; padding: 25px 30px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); border-radius: var(--radius-md); transition: background var(--transition-base), border-color var(--transition-base); }
.faq-card:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--color-gold); }
.faq-card-header { display: flex; align-items: center; gap: 20px; cursor: pointer; }
.faq-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-gold); text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.faq-q { flex: 1; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; color: #ffffff; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.faq-toggle { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.3); width: 40px; height: 40px; border-radius: 8px; color: #ffffff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-base); }
.faq-card:hover .faq-toggle { background: var(--color-gold); border-color: var(--color-gold); color: var(--bg-dark); }
.faq-card-body { display: none; padding-top: 20px; padding-left: 45px; color: #f0f0f0; font-size: 0.95rem; line-height: 1.6; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
.faq-card-body ul { list-style-type: disc; margin-left: 20px; margin-top: 10px; }
.faq-card-body li { margin-bottom: 5px; }



.faq-inquiry-bottom { position: relative; width: 100%; background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(0,0,0,0.9) 60%, transparent 100%); padding: 150px 0 60px; z-index: 2; margin-top: auto; }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-end; }
.inquiry-left h2 { font-family: var(--font-display); font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
.inquiry-left p { color: var(--text-secondary); max-width: 400px; margin-bottom: 40px; font-size: 0.95rem; }
.inquiry-social { display: flex; gap: 20px; }
.inquiry-social a { color: var(--text-secondary); transition: color var(--transition-base), transform var(--transition-base); }
.inquiry-social a:hover { color: var(--color-gold); transform: translateY(-3px); }
.inquiry-form { display: flex; flex-direction: column; gap: 15px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 40px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1); transform: translateY(-10px); }
.inquiry-input { background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-pill); padding: 18px 25px; font-family: var(--font-body); font-size: 1rem; color: var(--text-primary); outline: none; transition: all var(--transition-base); }
.inquiry-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.inquiry-input:focus { border-color: var(--color-gold); box-shadow: 0 0 15px rgba(238,220,58,0.15); background: rgba(0, 0, 0, 0.4); }
.inquiry-btn { background: var(--bg-dark); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); padding: 18px 25px; font-family: var(--font-display); font-size: 1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: var(--transition-base); margin-top: 5px; }
.inquiry-btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--bg-dark); }

/* ════════════════════════════════════════════════════════════════════════ 
   FOOTER
   ════════════════════════════════════════════════════════════════════════  */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom > *:nth-child(1) { text-align: left; justify-self: start; }
.footer-bottom > *:nth-child(2) { text-align: center; }
.footer-bottom > *:nth-child(3) { text-align: right; justify-self: end; }

.footer-nav {
  display: flex;
  gap: 25px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE HERO â€” Sub Pages
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.page-hero {
  height: 60svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(10, 10, 10, 0.4) 100%),
    url('../assets/images/hero-1.webp') center 75% / cover;
  overflow: hidden;
}

.video-hero {
  background: transparent !important;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(5,5,5,0.8) 100%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  font-size: 1.1rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 1024px
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
  .about-layout {
    flex-direction: column;
    gap: 30px;
  }

  .about-left {
    flex: auto;
  }

  .about-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-top-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-top-center,
  .hero-top-right {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-footer-btn {
    padding: 0 30px;
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feedback-card {
    width: 85vw;
  }

  .car-specs-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .spec-stats {
    justify-content: center;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 768px
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 768px) {
  .nav-links,
  .nav-cta-yellow {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 0 20px;
  }

  .hero-editorial {
    padding: 100px 24px 0;
  }

  .hero-bottom {
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-footer {
    height: 80px;
  }

  .hero-footer-btn {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUB PAGE: FLEET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.fleet-section {
  padding: 80px 0 120px;
}

.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #050505;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  row-gap: 100px; /* Big gap so pop-out cars don't overlap the row above */
  column-gap: 30px;
  padding-top: 60px; /* So the first row doesn't get clipped by the top */
}

.fleet-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(238, 220, 58, 0.15);
  border-color: rgba(238, 220, 58, 0.4);
  background: rgba(30, 30, 30, 0.5);
}

.fleet-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.08);
}

.fleet-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.fleet-card-brand {
  color: var(--color-gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.fleet-card-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
}

.fleet-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-spec-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fleet-spec-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.fleet-card-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fleet-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.fleet-price span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.featured-fleet-section {
  padding: 100px 0;
  overflow: hidden;
}

.featured-fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.featured-fleet-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}

.featured-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.featured-carousel::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.featured-carousel .fleet-card {
  min-width: 380px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .featured-carousel .fleet-card {
    min-width: 300px;
  }
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-dark);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REDUCED MOTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Mobile Nav Fixes */
@media (max-width: 768px) {
  .menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 0 90px 0;
    gap: 25px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }

  .nav-links.open ~ .nav-cta-yellow {
    display: block !important;
    position: absolute;
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    z-index: 100;
  }
}

/* ═════════════ ADDITIONAL MOBILE FIXES ═════════════ */
@media (max-width: 768px) {
  /* Feedback Header Fix */
  .feedback-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .feedback-header h2 {
    font-size: 2.2rem;
  }

  /* Floating Action Buttons (FABs) Mobile Fix */
  .fab-btn {
    width: 46px;
    height: 46px;
  }
  
  .fab-btn svg {
    width: 22px;
    height: 22px;
  }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM CAR CARD (Compact Square & Pop-out)
   ═══════════════════════════════════════════════════════════ */
.premium-car-card {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 0 20px 16px; /* Reduced bottom padding */
  margin-top: 55px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 370px; /* INCREASED WIDTH */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.premium-car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.premium-card-img {
  width: 100%;
  height: 70px; /* REDUCED HEIGHT */
  position: relative;
}

.premium-card-img img {
  width: 100%; /* Force it to stay within width */
  height: 130px; /* Force it to stay within a reasonable height */
  object-fit: contain; /* Automatically scale image to fit within width/height */
  object-position: bottom center; /* Keep the wheels touching the bottom */
  max-width: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
  pointer-events: none;
}

.premium-car-card:hover .premium-card-img img {
  transform: translateX(-50%) scale(1.05);
}

.premium-card-content {
  padding-top: 10px;
}

.premium-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px; /* Reduced */
  letter-spacing: -0.02em;
}

.premium-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0; /* Reduced */
}

.premium-card-features li {
  font-family: var(--font-body);
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 2px; /* Reduced */
  line-height: 1.3;
}

.premium-card-pricing {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px; /* Reduced */
  padding-bottom: 12px; /* Reduced */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-col {
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 8px;
  flex: 1;
}

.price-col:last-child {
  border-right: none;
  padding-right: 0;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.price-lbl {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.premium-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.btn-more-details {
  flex: 1;
  background: #f5f5f5;
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 10px 15px; /* Reduced padding */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-more-details:hover {
  background: #ffffff;
}

.action-circles {
  display: flex;
  gap: 8px;
}

.circle-btn {
  width: 38px; /* Reduced slightly */
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.circle-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

/* --- Mobile Responsiveness for Premium Cards --- */
@media (max-width: 768px) {
  .premium-car-card {
    max-width: 100%;
    margin-top: 50px;
  }
  .premium-card-img img {
    width: 105%;
  }
}

/* --- EXACTLY 4 CARDS LAYOUT FOR CAROUSEL --- */
.featured-carousel {
  display: flex;
  gap: 24px; /* Gap between cards */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.featured-carousel .premium-car-card {
  flex: 0 0 calc(25% - 18px); /* 4 cards visible (3 gaps of 24px = 72 / 4 = 18px) */
  max-width: none; /* Override any previous max-width so they stretch to fill 25% */
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .featured-carousel .premium-car-card {
    flex: 0 0 calc(33.333% - 16px); /* 3 cards */
  }
}

@media (max-width: 900px) {
  .featured-carousel .premium-car-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards */
  }
}

@media (max-width: 600px) {
  .featured-carousel .premium-car-card {
    flex: 0 0 85%; /* 1 card and a bit of the next */
  }
}

/* --- FIX FOR POP-OUT IMAGE CLIPPING (OVERFLOW) --- */
.premium-car-card {
  overflow: visible !important; /* Ensure the card itself never hides the image */
}

.premium-card-img {
  overflow: visible !important; 
}

/* Because featured-carousel has overflow-x: auto, it clips vertically. 
   We MUST add padding-top to give the absolute positioned image space to pop out! */
.featured-carousel {
  padding-top: 80px !important; 
  margin-top: -60px !important; /* Offset the padding visually if needed so it doesn't push down too much */
  overflow-y: hidden; /* Prevent vertical scrolling */
}

/* ═══════════════════════════════════════════════════════════
   SMART CHATBOT UI
   ═══════════════════════════════════════════════════════════ */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.chatbot-toggle-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.chatbot-window {
  width: 350px;
  height: 500px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-header-info h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 2px 0;
}

.chatbot-header-info span {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-header-info span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: block;
}

.chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: fadeInMsg 0.3s ease forwards;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.bot strong {
  color: var(--color-gold);
}

.chat-message.user {
  background: var(--color-gold);
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chatbot-input-area {
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#chatbot-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

#chatbot-input:focus {
  border-color: var(--color-gold);
}

#chatbot-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#chatbot-send:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .chatbot-window {
    width: 90vw;
    height: 60svh;
    right: 5vw;
    bottom: 90px;
    position: fixed;
    margin-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS FIX
   ═══════════════════════════════════════════════════════════ */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .car-specs-panel {
    grid-template-columns: 1fr 3fr auto;
    gap: 20px;
    padding: 25px 20px;
  }
  .spec-stats-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .spec-stat-item {
    padding: 0 12px;
  }
  .btn-rent-cta {
    padding: 12px 22px;
    font-size: 0.8rem;
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  /* ── Showcase / 3D Hero Section ── */
  .showcase-section {
    padding: 20px 0 0;
  }
  .three-container {
    height: 350px;
  }
  .massive-bg-text {
    font-size: clamp(3rem, 12vw, 6rem);
    opacity: 0.04;
  }

  /* ── Specs Panel: Stack everything vertically ── */
  .car-specs-panel {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 20px 16px;
    text-align: center;
  }
  .spec-identity {
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-right: 0 !important;
    padding-bottom: 12px;
    text-align: center;
  }
  .spec-car-name {
    font-size: 1.4rem;
  }
  .spec-description {
    padding: 0;
  }
  .spec-description p {
    max-width: 100%;
    text-align: center;
    font-size: 0.8rem;
  }
  .spec-stats-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  .spec-stat-item {
    padding: 0 10px;
  }
  .stat-value {
    font-size: 1.1rem;
  }
  .stat-unit {
    font-size: 0.65rem;
  }
  .spec-stat-divider {
    height: 28px;
  }
  .spec-cta {
    text-align: center;
  }
  .btn-rent-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* ── Hero Section ── */
  .hero-editorial {
    padding: 80px 16px 0;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }
  .hero-bottom {
    padding-bottom: 80px;
  }

  /* ── Featured Fleet Carousel ── */
  .featured-carousel .premium-car-card {
    flex: 0 0 80% !important;
  }

  /* ── Premium Card on Mobile ── */
  .premium-car-card {
    max-width: 100%;
    margin-top: 40px;
  }
  .premium-card-img {
    height: 100px;
  }
  .premium-card-img img {
    width: 100%;
    height: 110px;
  }
  .premium-card-content {
    padding: 15px 12px 12px;
  }
  .premium-card-title {
    font-size: 1rem;
  }
  .premium-card-features {
    font-size: 0.7rem;
  }
  .premium-card-features li {
    padding: 2px 0;
  }
  .premium-card-pricing {
    gap: 5px;
  }
  .price-val {
    font-size: 0.85rem;
  }
  .price-lbl {
    font-size: 0.55rem;
  }
  .premium-card-actions {
    padding: 8px 0 0;
  }
  .btn-more-details {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
  .circle-btn {
    width: 30px;
    height: 30px;
  }
  .circle-btn svg {
    width: 14px;
    height: 14px;
  }

  /* ── Fleet Grid (Our Fleet Page) ── */
  .fleet-grid {
    grid-template-columns: 1fr !important;
    row-gap: 80px !important;
    column-gap: 0 !important;
    padding-top: 50px !important;
  }

  /* ── Stats Section ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-card {
    padding: 25px 15px;
  }

  /* ── Brands ── */
  .brands-section {
    padding: 50px 0;
  }
  .brands-heading {
    font-size: 1.4rem;
  }

  /* ── Blog & Insta ── */
    height: 220px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-editorial {
    padding: 70px 12px 0;

  .insta-grid {
    grid-template-columns: 1fr !important;
  }

  .container {
    padding: 0 12px;
  }
}


/* ═══════════════════════════════════════════════════════════
   CHATBOT BUTTON IN FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-chatbot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--color-gold);
  color: #000;
  border: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: static;
  width: auto;
  height: auto;
  box-shadow: 0 4px 15px rgba(238, 220, 58, 0.3);
}

.footer-chatbot-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 220, 58, 0.4);
}

.footer-chatbot-btn span {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* Override the old floating styles when button is in footer */
.footer-chatbot-btn.chatbot-toggle-btn {
  position: static;
  width: auto;
  height: auto;
  border-radius: 50px;
}

/* Chat window should still be fixed overlay */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.chatbot-container .chatbot-toggle-btn {
  display: none; /* Hide the old floating button since we moved it to footer */
}


/* Fix: Chatbot container should not block pointer events when chat window is closed */
.chatbot-container {
  pointer-events: none;
}
.chatbot-container .chatbot-window {
  pointer-events: auto;
}
.chatbot-container .chatbot-window:not(.active) {
  pointer-events: none;
}
.chatbot-container .chatbot-window.active {
  pointer-events: auto;
}


/* ═══════════════════════════════════════════════════════════
   MOBILE HORIZONTAL SCROLL FOR CARDS, BLOGS, FEEDBACKS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Featured Fleet Carousel on Mobile ── */
  .featured-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 20px 0 30px 0 !important;
  }
  .featured-carousel .premium-car-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }
  .featured-carousel::-webkit-scrollbar { display: none; }
  .featured-carousel { -ms-overflow-style: none; scrollbar-width: none; }

  /* ── Fleet Grid on Fleet page (mobile) ── */
  .fleet-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 80px !important;
    padding-bottom: 20px !important;
    padding-top: 40px !important;
  }
  .fleet-grid .premium-car-card {
column-gap: 0 !important;
    padding-top: 50px !important;
  }

  /* ── Stats Section ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-card {
    padding: 25px 15px;
  }

  /* ── Brands ── */
  .brands-section {
    padding: 50px 0;
  }
  .brands-heading {
    font-size: 1.4rem;
  }

  /* ── Blog & Insta ── */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Footer ── */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  .three-container {
    height: 350px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-editorial {
    padding: 70px 12px 0;
  }
  .car-specs-panel {
    padding: 15px 12px;
  }
  .spec-car-name {
    font-size: 1.2rem;
  }
  .spec-stats-row {
    gap: 2px;
  }
  .spec-stat-item {
    padding: 0 8px;
  }
  .stat-value {
    font-size: 0.95rem;
  }
  .showcase-side-arrow {
    width: 32px;
    height: 32px;
  }

  /* Make single card full width on very small phones */
  .featured-carousel .premium-car-card {
    flex: 0 0 92% !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: 1fr !important;
  }

  .container {
    padding: 0 12px;
  }
}


/* ═══════════════════════════════════════════════════════════
   CHATBOT BUTTON IN FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-chatbot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--color-gold);
  color: #000;
  border: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: static;
  width: auto;
  height: auto;
  box-shadow: 0 4px 15px rgba(238, 220, 58, 0.3);
}

.footer-chatbot-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 220, 58, 0.4);
}

.footer-chatbot-btn span {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* Override the old floating styles when button is in footer */
.footer-chatbot-btn.chatbot-toggle-btn {
  position: static;
  width: auto;
  height: auto;
  border-radius: 50px;
}

/* Chat window should still be fixed overlay */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.chatbot-container .chatbot-toggle-btn {
  display: none; /* Hide the old floating button since we moved it to footer */
}


/* Fix: Chatbot container should not block pointer events when chat window is closed */
.chatbot-container {
  pointer-events: none;
}
.chatbot-container .chatbot-window {
  pointer-events: auto;
}
.chatbot-container .chatbot-window:not(.active) {
  pointer-events: none;
}
.chatbot-container .chatbot-window.active {
  pointer-events: auto;
}


/* ═══════════════════════════════════════════════════════════
   MOBILE HORIZONTAL SCROLL FOR CARDS, BLOGS, FEEDBACKS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Featured Fleet Carousel on Mobile ── */
  .featured-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 20px 0 30px 0 !important;
  }
  .featured-carousel .premium-car-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }
  .featured-carousel::-webkit-scrollbar { display: none; }
  .featured-carousel { -ms-overflow-style: none; scrollbar-width: none; }

  /* ── Fleet Grid on Fleet page (mobile) ── */
  .fleet-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 80px !important;
    padding-bottom: 20px !important;
    padding-top: 40px !important;
  }
  .fleet-grid .premium-car-card {
    max-width: 100% !important;
    flex: auto !important;
  }

  /* ── Blog Grid ── */
  .blog-grid .mobile-bottom-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: conic-gradient(from 0deg, transparent 0 280deg, var(--color-gold) 360deg);
  transform: translate(-50%, -50%);
  animation: navGlowSpin 4s linear infinite;
  z-index: -2;
}

.mobile-bottom-nav::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 38px;
  z-index: -1;
}

  /* ── Feedback Section → Touch Swipe ── */
  .feedback-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    padding-bottom: 20px !important;
  }
  .feedback-card {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    width: 90% !important;
    scroll-snap-align: center;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .feedback-track::-webkit-scrollbar { display: none; }
  .feedback-track { -ms-overflow-style: none; scrollbar-width: none; }

  /* ── Premium Car Card Mobile — SAME AS DESKTOP (Pop-out Image) ── */
  .premium-car-card {
    border-radius: 20px !important;
    overflow: visible !important;
    padding: 0 20px 16px !important;
    margin-top: 55px !important;
    position: relative !important;
    background: #2a2a2a !important;
    max-width: 100% !important;
  }
  .premium-card-img {
    width: 100% !important;
    height: 70px !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
  }
  .premium-card-img img {
    width: 115% !important;
    height: 160px !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    max-width: none !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
    z-index: 2 !important;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)) !important;
    pointer-events: none !important;
  }
  .premium-card-content {
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .premium-card-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 4px !important;
  }
  .premium-card-features {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
  }
  .premium-card-features li {
    color: #ccc !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
  }
  .premium-card-pricing {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  .price-col {
    text-align: left !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-right: 8px !important;
    flex: 1 !important;
  }
  .price-col:last-child {
    border-right: none !important;
  }
  .price-val {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
  }
  .price-lbl {
    font-size: 0.55rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
  }
  .premium-card-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
  }
  .btn-more-details {
    flex: 1 !important;
    background: #f5f5f5 !important;
    color: #111 !important;
    border-radius: 30px !important;
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
  }
  .circle-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
  }

  /* Carousel must allow pop-out overflow on top */
  .featured-carousel {
    padding-top: 80px !important;
    margin-top: -40px !important;
    overflow-y: visible !important;
    overflow-x: auto !important;
  }
  .fleet-grid {
    padding-top: 80px !important;
    margin-top: -40px !important;
    overflow-y: visible !important;
    overflow-x: auto !important;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .featured-carousel .premium-car-card,
  .fleet-grid .premium-car-card {
    flex: 0 0 92% !important;
    max-width: 92% !important;
  }
  .blog-grid .blog-card {
    flex: 0 0 92% !important;
    max-width: 92% !important;
  }
  .feedback-card {
    flex: 0 0 95% !important;
    max-width: 95% !important;
    width: 95% !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE 3D SHOWCASE FIXES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-editorial {
        padding: 50px 16px 0 !important;
    }
    
    /* Ensure the panel has enough bottom padding so FAB doesn't overlap text */
    .car-specs-panel {
        padding-bottom: 25px !important;
        position: relative !important;
        z-index: 20 !important;
    }
    
    /* Format the strong tags */
    .spec-desc strong {
        color: var(--color-gold) !important;
        font-weight: 700 !important;
    }
    
    /* Adjust CTA button spacing */
    .hero-bottom {
        padding-bottom: 100px !important; /* Space for FABs */
    }
}

/* ── Mobile Carousel Navigation Arrows ── */
.mobile-carousel-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .mobile-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-nav-btn:active {
    background: var(--color-gold);
    color: #000;
  }
  .mobile-nav-dots {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

@media (max-width: 900px) {
  /*  FIX FAQ OVERLAP ON MOBILE  */
  .faq-inquiry-bottom {
    position: relative !important;
    padding: 60px 0 40px !important;
    background: var(--bg-dark) !important;
  }
  .faq-list {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 900px) {
  /*  MAKE FEATURED CAROUSEL FULL WIDTH SWIPEABLE ON MOBILE  */
  .featured-carousel {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Ensure the last card has padding on the right when scrolled */
  .featured-carousel::after {
    content: '';
    flex: 0 0 20px;
    display: block;
  }
}

/* ═════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION
   ═════════════════════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 400px;
  background: transparent;
  border-radius: 40px;
  padding: 8px 15px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

@keyframes navGlowSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.mobile-bottom-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: conic-gradient(from 0deg, transparent 0 280deg, var(--color-gold) 360deg);
  transform: translate(-50%, -50%);
  animation: navGlowSpin 4s linear infinite;
  z-index: -2;
}

.mobile-bottom-nav::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 38px;
  z-index: -1;
}

.mobile-nav-item {
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.mobile-nav-item:hover {
  color: var(--color-gold);
  transform: translateY(-3px) scale(1.05);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.mobile-nav-item svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.mobile-nav-item.active {
  color: var(--color-gold);
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: var(--color-gold);
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.mobile-nav-item.active svg {
  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.8));
}

.nav-indicator {
  position: absolute;
  top: 8px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
  pointer-events: none;
}

@media (max-width: 768px) {
  .nav-wrapper {
    display: none !important;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 90px; 
  }
}



/* ═════════════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE FIXES FOR ALL PAGES
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Common Grids and Flex Layouts */
  .contact-layout,
  .contact-grid,
  .about-layout,
  .services-layout,
  .inquiry-grid,
  .footer-main,
  .service-grid,
  .stats-grid,
  .showroom-section .service-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  /* Reset padding and widths for mobile */
  .contact-left, .contact-right,
  .about-left, .about-right,
  .inquiry-left, .inquiry-right {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Typography scaling */
  h1, .hero-title, .page-hero h1 { font-size: 2.5rem !important; line-height: 1.2 !important; }
  h2, .section-title, .inquiry-left h2, .faq-title { font-size: 2rem !important; line-height: 1.2 !important; }
  h3 { font-size: 1.3rem !important; }
  p { font-size: 0.95rem !important; }
  
  /* Container adjustments */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Contact page specific */
  .contact-section { padding: 60px 0 !important; }
  .map-container iframe { height: 350px !important; }
  .contact-card { padding: 25px !important; }
  
  /* About page specific */
  .values-section, .showroom-section, .about-section { padding: 60px 0 !important; }
  .stat-card { padding: 20px !important; }
  
  /* Hero overrides */
  .hero-editorial { padding: 20px; }
  .hero-top-row { flex-direction: column; gap: 20px; text-align: center; margin-top: 0; }
  .hero-top-left, .hero-top-center, .hero-top-right { width: 100% !important; text-align: center !important; }
  .hero-loc-line { display: none !important; } /* Hide the horizontal line on mobile */
  
  /* FAQ & Inquiry overrides */
  .faq-content-wrapper { padding: 60px 20px !important; }
  .inquiry-btn { width: 100% !important; justify-content: center !important; }
  .faq-card-header { flex-wrap: wrap; }
  .faq-q { font-size: 0.95rem !important; }
  
  /* Footer */
  .footer-col { width: 100% !important; text-align: center !important; }
  .footer-main { gap: 40px !important; }
  .footer-bottom { display: flex !important; flex-direction: column !important; text-align: center !important; gap: 25px !important; padding-bottom: 120px !important;}
  .footer-bottom > * { text-align: center !important; justify-self: center !important; justify-content: center !important; width: 100% !important; }
  .footer-bottom > div:nth-child(3) { flex-direction: column !important; gap: 15px !important; }
  .footer-brand-col { align-items: center !important; display: flex !important; flex-direction: column !important; }
  
  /* About Page Normal Hero adjustment */
  .page-hero { height: auto !important; padding: 100px 0 !important; }
  .page-hero h1 { font-size: 3rem !important; }
}



/* Desktop & Mobile Utilities */
@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* Load More Button */
.btn-load-more {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-load-more:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 220, 58, 0.2);
}


/* Active State for FAQ Cards */
.faq-card.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
}
.faq-card.active .faq-toggle {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-dark);
}
.faq-card.active .faq-num {
    color: var(--color-gold);
}


/* Action button for more menu to bypass cached JS */
.mobile-nav-action {
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  z-index: 1;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-action:hover {
  color: var(--color-gold);
  transform: translateY(-3px) scale(1.05);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.mobile-nav-action svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}




/* ========== MOBILE MORE SHEET ========== */
.mobile-more-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 10000; 
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-more-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-more-content {
    position: fixed;
    bottom: 85px; /* Above the nav bar */
    left: 50%;
    transform: translateX(120vw) scale(0.95);
    width: calc(100% - 40px);
    max-width: 400px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(238, 220, 58, 0.2);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
}
.mobile-more-overlay.open .mobile-more-content {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.more-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.more-sheet-header h3 {
    color: var(--color-gold);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}
.more-sheet-header button {
    background: rgba(255,255,255,0.1); 
    border: none; 
    color: white; 
    cursor: pointer;
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
}
.more-sheet-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: env(safe-area-inset-bottom, 20px);
}
.more-sheet-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 10px;
    border-radius: 10px;
    transition: all 0.2s;
}
.more-sheet-links a svg {
    color: var(--color-gold);
}
.more-sheet-links a:hover, .more-sheet-links a:active {
    background: rgba(238, 220, 58, 0.1);
    color: var(--color-gold);
}
.mobile-more-btn {
    background: none; border: none; padding: 0; cursor: pointer; color: white;
}

/* ========== SCROLLABLE MOBILE NAV ========== */
.mobile-bottom-nav.scrollable {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 10px 15px;
    gap: 20px;
}
.mobile-bottom-nav.scrollable::-webkit-scrollbar {
    display: none;
}
.mobile-bottom-nav.scrollable {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.mobile-bottom-nav.scrollable .mobile-nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 45px;
}



/* FIXED CURSOR Z-INDEX */
.custom-cursor { z-index: 99999 !important; }

/* MINI FAB MENU CSS */
.mobile-more-content {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(150vw) scale(0.5);
    width: auto;
    max-width: auto;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(238, 220, 58, 0.4);
    border-radius: 40px;
    padding: 8px 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
    display: flex;
}
.mobile-more-overlay.open .mobile-more-content {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.more-sheet-links.mini-fab-menu {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.mini-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-gold);
    transition: all 0.3s;
    text-decoration: none;
}
.mini-fab:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-3px);
}
.more-sheet-header { display: none !important; }



/* ═══════════════════════════════════════════════════════════
   MISSING MOBILE HORIZONTAL SCROLL FIX FOR BLOGS AND REELS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Make blog and insta grids horizontal scrollable */
  .blog-grid, .insta-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding-bottom: 20px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .blog-grid::-webkit-scrollbar, .insta-grid::-webkit-scrollbar { 
    display: none; 
  }
  
  /* Force children to be horizontal cards */
  .blog-grid .blog-card, .insta-grid .insta-reel {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
    
    /* Disable AOS on mobile to prevent invisibility bug */
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═════════════════════════════════════════════════════════════════════════
   STATS SECTION — MOBILE HORIZONTAL AUTO-SCROLL MARQUEE
   ═════════════════════════════════════════════════════════════════════════ */

/* Desktop: wrapper behaves like .container */
.stats-marquee-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

@media (max-width: 768px) {
  section.stats-section {
    padding: 30px 0 !important;
    overflow: hidden !important;
  }

  .stats-marquee-wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  section.stats-section .stats-marquee-wrapper .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    grid-template-columns: unset !important;
    animation: statsMarquee 10s linear infinite !important;
    width: max-content !important;
    padding: 10px 15px !important;
  }

  section.stats-section .stats-marquee-wrapper .stats-grid .stat-card {
    flex: 0 0 auto !important;
    min-width: 140px !important;
    padding: 18px 22px !important;
    text-align: center !important;
  }

  section.stats-section .stats-grid .stat-number {
    font-size: 1.8rem !important;
  }

  section.stats-section .stats-grid .stat-label {
    font-size: 0.75rem !important;
  }
}

/* ═════════════════════════════════════════════════════════════════════════
   GOLDEN TITLES OVERRIDE
   ═════════════════════════════════════════════════════════════════════════ */
.showcase-label,
.brands-heading,
.featured-fleet-header h2,
.premium-card-title,
.service-content h2,
.section-header h2,
.feedback-header h2,
.faq-title,
.inquiry-left h2 {
  color: var(--color-gold) !important;
}

/* ═════════════════════════════════════════════════════════════════════════
   WHITE SHOWCASE BACKGROUND OVERRIDE
   ═════════════════════════════════════════════════════════════════════════ */
.showcase-section {
  background: #faf8f4 !important;
}

.showcase-floor-gradient {
  background: linear-gradient(180deg, transparent 0%, rgba(250, 248, 244, 0.8) 100%) !important;
}

.massive-bg-text {
  color: #000000 !important;
  opacity: 0.05 !important;
}

.showcase-subtitle {
  color: rgba(0, 0, 0, 0.6) !important;
}

.showcase-badge {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: rgba(255, 255, 255, 0.6) !important;
}

.showcase-badge .badge-text {
  color: #333333 !important;
}

.showcase-badge .badge-number {
  color: #111111 !important;
}

.showcase-side-arrow {
  color: #333333 !important;
  background: rgba(0, 0, 0, 0.05) !important;
}

.showcase-side-arrow:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}

/* ═════════════════════════════════════════════════════════════════════════
   CAR CARD ACTION BUTTONS - HOVER & CLICK EFFECT
   ═════════════════════════════════════════════════════════════════════════ */
.btn-more-details:hover,
.circle-btn:hover,
.btn-more-details:active,
.circle-btn:active {
  background: #d4c233 !important; /* Dark golden color */
  color: #111111 !important;
  transform: scale(0.96) !important; /* Click/Hover depression effect */
  transition: transform 0.1s ease, background 0.1s ease !important;
}

/* ═════════════════════════════════════════════════════════════════════════
   OUR GUARANTEES SECTION
   ═════════════════════════════════════════════════════════════════════════ */
.guarantees-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.guarantee-card {
  padding: 30px 25px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(238, 220, 58, 0.1);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(238, 220, 58, 0.1);
  color: var(--color-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1);
  background: var(--color-gold);
  color: #111;
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.guarantee-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.guarantee-duplicate {
  display: none;
}

/* Mobile Auto-Loop Marquee for Guarantees */
@media (max-width: 768px) {
  .guarantees-section {
    padding: 50px 0;
  }
  .guarantees-section .container {
    max-width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .guarantees-section h2.section-title {
    margin-bottom: 30px !important;
    padding: 0 20px !important;
    text-align: left !important;
  }
  .guarantees-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: max-content;
    padding: 10px 15px;
    animation: guaranteesMarquee 15s linear infinite;
  }
  .guarantee-card {
    flex: 0 0 auto;
    width: 250px;
  }
  .guarantee-duplicate {
    display: block; /* Show duplicates on mobile for seamless loop */
  }
}

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

/* ═════════════════════════════════════════════════════════════════════════
   FAMOUS PLACES SECTION
   ═════════════════════════════════════════════════════════════════════════ */
.places-section {
  position: relative;
}

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

.place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 350px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(238, 220, 58, 0.2);
  border-color: var(--color-gold);
}

.place-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  transition: background 0.4s ease;
}

.place-content {
  position: relative;
  z-index: 2;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.place-card:hover .place-content {
  transform: translateY(0);
}

.place-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.place-content p {
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Responsive Places Grid */
@media (max-width: 1024px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .places-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
  }
  .places-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .place-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    height: 280px;
  }
}
