/*
Theme Name: Luxury Wheels Goa
Theme URI: http://luxurywheelsgoa.com
Author: sujeet
Author URI: http://luxurywheelsgoa.com
Description: Custom Premium Car Rental Theme for Luxury Wheels Goa

*/

/* ============================================================
   Luxury Wheels Goa | style.css
   Dark luxury theme — Midnight black + Champagne gold + Ivory
   Fonts: Playfair Display (headings) + Jost (body)
============================================================ */

/* ─── CSS Custom Properties ──────────────────────────────── */
html {
    scroll-behavior: smooth;
    /* overflow-x: hidden removed to fix position: sticky */
}

body {
    /* overflow-x: hidden removed to fix position: sticky */
    width: 100%;
    position: relative;
    background-color: var(--bg-body);
}

:root {
  /* Palette - MODERN LUXURY */
  --gold:        #d4af37;
  --gold-light:  #f4e5c3;
  --black:       #111111;
  --black-soft:  #1a1a1a;
  --white:       #ffffff;
  --grey-bg:     #f8f9fa;
  --text-main:   #1a1a1a;
  --text-muted:  #666666;
  
  --glass-bg:    rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  --shadow-lux:  0 20px 40px rgba(0,0,0,0.06);
  --shadow-btn:  0 10px 25px rgba(212, 175, 55, 0.3);
  
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography System */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-accent:  'Jost', sans-serif;

  /* Standard Font Sizes */
  --fs-xs: 0.75rem;   /* 12px */
  --fs-sm: 0.875rem;  /* 14px */
  --fs-base: 1rem;    /* 16px */
  --fs-md: 1.125rem;  /* 18px */
  --fs-lg: 1.25rem;   /* 20px */
  --fs-xl: 1.5rem;    /* 24px */
  --fs-2xl: 2rem;     /* 32px */
  --fs-3xl: 2.5rem;   /* 40px */
  --fs-4xl: 3.5rem;   /* 56px */

  /* Inner Page Specific */
  --inner-hero-height: 380px;
}

/* ─── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; /* Reset to standard 16px */ }
body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body) !important;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 140px; 
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, var(--fs-4xl)); }
h2 { font-size: clamp(2rem, 6vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.75rem, 5vw, var(--fs-2xl)); }
h4 { font-size: clamp(1.5rem, 4vw, var(--fs-xl)); }
h5 { font-size: clamp(1.25rem, 3vw, var(--fs-lg)); }
h6 { font-size: clamp(1rem, 2vw, var(--fs-md)); }

/* COLOR UTILS */
.text-gold { color: var(--gold) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-black { background: var(--black) !important; }
.border-gold { border-color: var(--gold) !important; } 
.text-white-50 { color: rgba(255,255,255,0.5) !important; }


/* ─── Section Utilities ──────────────────────────────────── */
.section-pad { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #111; letter-spacing: -1.5px; }
.section-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-weight: 400; margin-left: 10px; }

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

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

/* ─── Premium Content Typography ──────────────────────────────── */
.car-doc-content {
    font-size: inherit;
    line-height: 1.7;
    color: inherit;
}
.car-doc-content p {
    margin-bottom: 1.5rem;
}
.car-doc-content strong, .car-doc-content b {
    color: var(--black);
    font-weight: 700;
}
.car-doc-content ul, .car-doc-content ol {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}
.car-doc-content li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style: none !important;
    padding-left: 1.5rem;
}
.car-doc-content li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.car-doc-content h2, .car-doc-content h3 {
    color: var(--black);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal.delay-1  { transition-delay: 0.1s; }
.reveal.delay-2  { transition-delay: 0.2s; }
.reveal.delay-3  { transition-delay: 0.3s; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--black) !important;
  padding: 14px 36px;
  font-family: var(--font-accent) !important;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-gold:hover {
  background: var(--black);
  color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  padding: 12px 32px;
  font-family: var(--font-accent) !important;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  padding: 12px 28px;
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,75,0.08);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  padding: 12px 28px;
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-accent) !important;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}


/* ─── TOP NOTICE BAR (MARQUEE) ────────────────────────── */
.top-notice-bar {
  background: linear-gradient(90deg, #111111 0%, #222222 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  height: 32px;
  line-height: 32px;
  font-family: var(--font-accent) !important;
  font-size: var(--fs-xs);
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 10001;
  overflow: hidden !important;
  display: flex; /* Helps containment */
  align-items: center;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
  gap: 30px; /* Space between rows */
}
.marquee-content span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Half-way matching content wrapper */
}

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  padding: 9px 0;
  font-family: var(--font-body) !important;
  font-size: var(--fs-xs);
  position: fixed;
  top: 35px; /* Notice bar height offset */
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.topbar-left i { color: var(--gold); font-size: 0.8rem; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right a {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition), transform var(--transition);
}
.topbar-right a:hover { color: var(--gold); transform: translateY(-1px); }

@media (max-width: 575px) {
  .topbar-left span:not(:first-child) { display: none; }
}


/* ─── NAVBAR ─────────────────────────────────────────────── */
#mainNav {
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 0; /* Reduced from 8px */
  position: fixed;
  top: 32px; /* Matches new Notice bar height */
  left: 0;
  width: 100%;
  z-index: 9998;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 0;
  box-shadow: var(--shadow-lux);
  top: 32px !important; /* Forces offset rigidly */
}

/* Brand / Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  max-height: 60px; /* Reduced from 75px */
  width: auto;
  transition: transform var(--transition);
}
.navbar-brand:hover .brand-logo img { transform: scale(1.05); }

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.3);
}

.navbar-brand:hover .brand-icon { transform: rotate(-8deg) scale(1.05); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.brand-location {
  font-family: var(--font-body) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
}

/* Nav links */
.nav-link {
  color: var(--text-main) !important;
  font-family: var(--font-accent) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  padding: 8px 12px !important;
  position: relative;
  transition: color var(--transition) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 1.5px solid var(--gold-border);
  padding: 7px 10px;
  border-radius: var(--radius);
  background: transparent;
  transition: var(--transition);
}
.navbar-toggler:hover { border-color: var(--gold); background: var(--gold-muted); }
.toggler-icon { color: var(--gold); font-size: 0.95rem; }

@media (max-width: 991px) {
  #mainNav { top: 0 !important; } /* Push nav to top on mobile */
  .brand-logo img { max-height: 50px; }
  #navMenu {
    background: rgba(255, 255, 255, 0.98);
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-md);
  }
  .nav-link {
    font-size: 13px !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .navbar-nav .btn-gold { margin-top: 10px; }
}

/* Topbar hide on scroll */
.topbar.hidden { transform: translateY(-100%); }


/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  padding-top: 180px; /* Increased to 180px for absolute clearance */
  overflow: hidden;
  background: var(--bg-body);
}

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

.hero-bg-img {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(160deg, #0a0a0a 0%, #131310 60%, #0a0905 100%); */
}

/* Subtle gold radial glow */
.hero-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 65% 50%, rgba(200,168,75,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 10% 85%, rgba(200,168,75,0.03) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 2;
  pointer-events: none;
}

/* Car visual — right-side image */
.hero-car-visual {
  position: absolute;
  right: -40px;
  top: 0;
  transform: none;
  width: 58%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 20%, black 50%);
  opacity: 0;
  transition: opacity 1s ease, transform 0.8s ease;
}

.hero-slide.active .hero-car-visual {
  opacity: 0.9;
}

/* Slider wrapper */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .container {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Content */
.hero-content {
  max-width: 620px;
  padding-top: 60px;
  position: relative;
  z-index: 10;
}

.hero-eyebrow {
  font-family: var(--font-accent) !important;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, var(--fs-4xl));
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body) !important;
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gold);
}

.trust-label {
  font-family: var(--font-accent) !important;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey-2);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Fade-up on active slide */
.hero-slide.active .fade-up {
  animation: fadeUp 0.65s var(--ease) both;
}
.hero-slide.active .delay-1 { animation-delay: 0.15s; }
.hero-slide.active .delay-2 { animation-delay: 0.28s; }
.hero-slide.active .delay-3 { animation-delay: 0.42s; }

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

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-ctrl {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,168,75,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.hero-ctrl:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.hero-dots { display: flex; gap: 7px; align-items: center; }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 767px) {
  .hero { padding-top: 130px; min-height: 600px; height: auto; overflow: visible !important; }
  .hero-car-visual { width: 100%; right: 0; mask-image: none; -webkit-mask-image: none; opacity: 0.18 !important; }
  .hero-content { max-width: 100%; text-align: center; overflow: visible !important; }
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.5rem); word-wrap: break-word; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; }
}


/* ─── BOOKING SECTION ─────────────────────────────────────── */
.booking-section {
  position: relative;
  z-index: 50;
  background: var(--white);
}

.booking-wrap {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  margin-top: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.booking-header {
  background: linear-gradient(90deg, var(--gold) 0%, #dab850 100%);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-header h2 {
  font-family: var(--font-body) !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

.booking-header p {
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  margin: 0;
}

.booking-form-body { padding: 28px 32px 32px; }

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.form-label i {
  color: var(--gold);
  font-size: 12px;
}

.luxury-select,
.luxury-input {
  background: var(--white) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.12) !important; /* Prominent border as requested */
  color: var(--black) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  transition: all var(--transition);
  width: 100%;
  height: 54px !important;
  line-height: 1.5 !important;
}

/* Fix mobile date input empty appearance */
input[type="date"].luxury-input {
    min-height: 54px;
}

.luxury-select:focus,
.luxury-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
  outline: none !important;
  background: var(--white) !important;
}

.luxury-select option { background: var(--white); color: var(--black); }

@media (max-width: 991px) {
  body { padding-top: 105px; } /* Adjust for mobile topbar/nav */
  .booking-wrap { margin-top: 0; border-radius: var(--radius-lg); }
  .booking-section { padding: 40px 0; background: var(--dark-2); }
  .booking-form-body { padding-bottom: 50px; } /* Increased space for button */
}

@media (max-width: 575px) {
  .booking-form-body { padding: 20px 20px 40px; }
  .booking-header { padding: 14px 20px; }
}


/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--white); }

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.ag-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}

.ag-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about-gallery:hover .ag-main img { filter: brightness(0.95); transform: scale(1.02); }

.ag-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ag-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.78);
  flex: 1;
  transition: filter 0.4s ease;
}
.ag-side img:hover { filter: brightness(0.95); }

.ag-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--glow-gold);
  text-align: center;
}

.ag-badge i { color: var(--black); font-size: 1.2rem; margin-bottom: 2px; }

.ag-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  text-align: center;
}

.section-lead { font-size: 1.05rem; color: var(--grey-1); margin: 18px 0 10px; }
.section-body  { font-size: 15.5px; color: var(--grey-2); margin-bottom: 24px; line-height: 1.8; }

.about-points { display: flex; flex-direction: column; gap: 18px; }

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ap-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.about-point p {
  font-size: 13px;
  color: var(--grey-2);
  margin: 0;
}

@media (max-width: 575px) {
  .ag-side { display: none; }
  .ag-main { height: 280px; grid-column: 1 / 3; }
}


.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-box {
  padding: 60px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.stat-box:hover {
  background: var(--grey-bg);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-box p {
  font-family: var(--font-accent) !important;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .stat-box { border-right: none; border-bottom: 1px solid var(--gold-border); padding: 32px 20px; }
  .stat-box:last-child { border-bottom: none; }
}


/* ─── CARS / FLEET SECTION ───────────────────────────────── */
.cars-section { background: var(--white); }

.fleet-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.fleet-tab {
  background: transparent;
  border: 1px solid var(--dark-5);
  color: var(--grey-1);
  font-family: var(--font-accent) !important;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.fleet-tab:hover,
.fleet-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Car Card Modern */
.car-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-lux);
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: var(--gold-light);
}

.car-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #fcfcfc;
}
.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.8s var(--transition);
}
.car-card:hover .car-img-wrap img {
  transform: scale(1.1);
}

.car-body {
  padding: 25px;
  flex: 1;
}

.car-title-row h5 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.car-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}
.car-specs-grid span {
  font-family: var(--font-body) !important;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.car-specs-grid i {
  color: var(--gold);
  font-size: 14px;
}

.car-footer {
  padding: 20px 25px;
  border-top: 1px solid rgba(0,0,0,0.04);
  background: var(--grey-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-main {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--black);
}
.price-unit {
  font-size: 12px;
  color: var(--text-muted);
}


/* ─── CATEGORIES SLIDER ──────────────────────────────────── */
.categories-section { background: var(--dark); }

.cat-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 4px;
}

.cat-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s var(--ease);
}

.cat-slide { flex: 0 0 calc(33.333% - 12px); }
@media (max-width: 991px) { .cat-slide { flex: 0 0 calc(50% - 9px); } }
@media (max-width: 575px) { .cat-slide { flex: 0 0 calc(78%); } }

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 230px;
  border: 1px solid var(--dark-4);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.cat-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.65);
}

.cat-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 70%);
}

.cat-info i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.85;
  transition: transform var(--transition), opacity var(--transition);
}

.cat-card:hover .cat-info i { transform: scale(1.15); opacity: 1; }

.cat-info h5 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.cat-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--glow-gold);
  transition: var(--transition);
}
.cat-arrow:hover { background: var(--gold-hover); transform: translateY(-50%) scale(1.1); }
.cat-prev { left: 8px; }
.cat-next { right: 8px; }


/* ─── SERVICES ───────────────────────────────────────────── */
.services-section { background: var(--dark-2); border-top: 1px solid var(--gold-border); }

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,168,75,0.35);
  box-shadow: 0 20px 55px rgba(200,168,75,0.1);
}

.service-img-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); filter: brightness(0.88); }

.service-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,168,75,0.2);
  line-height: 1;
}

.service-content { padding: 22px; }

.service-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 9px;
}

.service-content p { font-size: 13.5px; color: var(--grey-2); margin-bottom: 14px; }

.svc-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--transition), color var(--transition);
}
.svc-link:hover { gap: 13px; color: var(--gold-hover); }


/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-section { background: var(--white); }

.why-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,168,75,0.35);
  box-shadow: 0 16px 48px rgba(200,168,75,0.1);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--black);
  transform: rotateY(180deg);
}

.why-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.why-card p { font-size: 13.5px; color: var(--grey-2); line-height: 1.7; }


/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--dark-2); border-top: 1px solid var(--gold-border); }

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,168,75,0.3);
  box-shadow: 0 16px 44px rgba(200,168,75,0.08);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(200,168,75,0.07);
  line-height: 1;
  pointer-events: none;
}

.featured-testi {
  border-color: rgba(200,168,75,0.35);
  background: linear-gradient(135deg, rgba(200,168,75,0.05) 0%, var(--white) 55%);
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
}

.testi-verified {
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--grey-1);
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.testi-author span  { font-size: 12px; color: var(--grey-2); }


/* Additional Polish */
.booking-wrap {
    border-radius: 35px !important;
    overflow: visible !important; /* Allow button to show if it exceeds height */
    background: #fff;
    width: 100% !important;
    max-width: 100% !important;
}
.booking-header {
    border-radius: 35px 35px 0 0 !important;
}
.luxury-input, .luxury-select {
    border-radius: 15px !important;
}
.stat-num {
    color: inherit;
}
.h-stat span, .h-stat .stat-num {
    color: #ffffff !important;
}
.cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80') center/cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.1) 0%, transparent 65%);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  margin: 10px 0 16px;
}
.cta-headline em { font-style: italic; color: var(--gold); }

.cta-sub { font-size: 1rem; color: var(--grey-1); max-width: 480px; margin: 0 auto 8px; }
.cta-sub strong { color: var(--gold); }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.cta-note {
  font-size: 12px;
  color: var(--grey-2);
  margin-top: 18px;
}


/* ─── BLOG ───────────────────────────────────────────────── */
.blog-section { background: var(--dark); }

.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,168,75,0.3);
  box-shadow: 0 20px 52px rgba(200,168,75,0.08);
}

.blog-img-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.07); filter: brightness(0.92); }

.blog-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

.blog-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-meta span {
  font-size: 12px;
  color: var(--grey-2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta i { color: var(--gold); font-size: 0.75rem; }

.blog-content h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-content h5 a { color: var(--black); transition: color var(--transition); }
.blog-content h5 a:hover { color: var(--gold); }

.blog-content p { font-size: 13.5px; color: var(--grey-2); flex: 1; margin-bottom: 18px; }

.read-more {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.read-more:hover { gap: 13px; color: var(--gold-hover); }


/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-border);
}

.footer-top { padding: 72px 0 56px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-about {
  font-size: 13.5px;
  color: var(--grey-2);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.footer-nav-links li {
    margin-bottom: 12px;
}

.footer-nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-nav-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-info li i {
    width: 20px;
    text-align: center;
}

.floating-wa {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    background: #25d366 !important;
    color: #fff !important;
    width: 65px !important; height: 65px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important; /* Even higher */
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    padding: 0 !important;
}
.floating-wa:hover {
    transform: scale(1.15) rotate(12deg) !important;
    background: #128c7e !important;
}
.floating-wa i { font-size: 32px !important; margin: 0 !important; }

/* Social Buttons */
.social-icon-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.social-icon-btn:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}


/* Scroll Top */
.scroll-top-btn {
    position: fixed !important;
    bottom: 120px !important; /* Even higher to clear WhatsApp on all screens */
    right: 30px !important;
    left: auto !important;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 99999;
    transition: 0.3s;
    border: none;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--black);
    color: var(--gold);
    transform: translateY(-5px);
}


/* ─── FLEET FILTERING ─── */
.fleet-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(15px);
  opacity: 0;
}
.fleet-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.fleet-tab {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  transition: 0.3s;
  cursor: pointer;
}

.fleet-tab:hover, .fleet-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* ─── BACK TO TOP ────────────────────────────────────────── */



/* ─── Global Polishing ───────────────────────────────────── */
::selection { background: var(--gold); color: var(--white); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: rgba(200,168,75,0.5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

@media (max-width: 575px) {
  .section-pad { padding: 64px 0; }
  .hero-ctas .btn-ghost { display: none; }
  .cta-actions .btn-outline-white { display: none; }
}
/* ── INNER PAGES ── */
.inner-page-hero {
    height: var(--inner-hero-height);
    background: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent, var(--black));
    z-index: 1;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Root Overflow Prevention */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

/* Car Details Specific */
.car-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.car-gallery-main img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    padding: 20px;
}

.thumb-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.thumb-item {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active {
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-light);
}

.spec-badge {
    background: #fff;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.spec-badge:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lux);
}

.spec-badge i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.spec-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.spec-value {
    display: block;
    font-weight: 800;
    color: var(--black);
    margin-top: 5px;
    font-size: 1rem;
}

.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    overflow: hidden; /* Prevent internal bleed */
}

.car-content-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-title-sm {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.6rem;
}

.section-title-sm::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--gold);
}

/* Sidebar Price Card */
.price-sidebar-wrap {
    position: sticky;
    top: 110px;
}

.price-card {
    background: var(--black);
    padding: 40px 30px;
    border-radius: 30px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-left: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.feature-list li {
    margin-bottom: 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.8);
}

.feature-list li i {
    color: var(--gold);
    font-size: 0.9rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.faq-q {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    font-size: 1.1rem;
}

.faq-q:hover {
    color: var(--gold);
}

.faq-a {
    padding-top: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

/* Inquiry Form Styling */
.modern-inquiry .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 8px;
}

.modern-inquiry .form-control {
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    padding: 14px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.modern-inquiry .form-control:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px var(--gold-light);
}

/* ─── CAR LANDING PAGE ─── */
/* Landing Page Style Car Hero */
.car-hero {
    position: relative;
    height: 95vh;
    min-height: 800px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
    margin-top: -100px; /* Pull into header area for cinematic effect */
    padding-top: 100px;
}

.car-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
    filter: brightness(0.7);
    transition: transform 12s ease-out;
}

.car-hero:hover .car-hero-bg {
    transform: scale(1.1);
}

.car-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.car-hero .container {
    position: relative;
    z-index: 2;
}

.car-hero-price {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 20px;
    display: inline-block;
}

.car-hero-price small {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}

.car-hero-price .price {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.car-hero-price .price span {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 400;
    margin-left: 5px;
}

.rounded-xl { border-radius: 24px !important; }
.shadow-lux { box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important; }

.landing-section {
    padding: 1rem 0; /* Tightened from 1.5rem */
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.landing-section:last-child { border-bottom: none; }

.section-title-sm {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}
.section-title-sm::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gold);
    border-radius: 2px;
}

.highlight-box {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee !important;
}
.highlight-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Warmer gold glow */
}

.booking-sidebar-wrap {
    position: sticky !important;
    top: 100px !important;
    z-index: 1000;
    align-self: flex-start; /* Crucial for sticky in flex containers */
}

.booking-card {
    border-color: #f0f0f0 !important;
}

.price-display {
    border: 2px solid var(--gold-light);
}

.x-small { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.cursor-pointer { cursor: pointer; }

/* Responsive Car Hero */
@media (max-width: 991px) {
    #mainNav { top: 32px !important; }
    .hero { padding-top: 150px !important; min-height: 550px; }
    .hero-content { padding-top: 0; text-align: center; margin: 0 auto; }
    .hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-sub { font-size: var(--fs-base); margin: 0 auto 30px; }
    .hero-ctas { justify-content: center; gap: 10px; }
    .hero-ctas .btn { width: 100%; max-width: 300px; }
}

/* Glassmorphism for sidebar */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ─── NEW SKETCH-BASED LAYOUT (CAR DETAILS) ──────────────── */
.luxury-car-page { 
    padding-top: 180px !important; 
    padding-bottom: 80px; 
    background: radial-gradient(circle at top right, #fff, #f9f9f9);
}
.car-page-header, .blog-page-header { padding-bottom: 30px; border-bottom: 2px solid #eee; margin-bottom: 50px; }
.car-page-header h1, .blog-page-header h1 { 
    font-family: var(--font-heading); 
    color: var(--black); 
    line-height: 1.1;
    font-size: clamp(2.5rem, 7vw, 4rem); 
    text-transform: capitalize;
    letter-spacing: -1px;
}
.brand-logo img { height: 60px !important; width: auto; object-fit: contain; }

/* ─── LUXURY BLOG & ARTICLE STYLES ──────────────── */
.luxury-blog-archive, .luxury-blog-single {
    padding-top: 180px !important;
    padding-bottom: 80px;
}

.blog-card-lux {
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.blog-card-lux:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: var(--gold) !important;
}

.blog-badge-gold {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-read-more {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}
.btn-read-more:hover { color: #000; transform: translateX(5px); display: inline-block; }

/* Single Post Specifics */
.breadcrumb-wrap .dot-separator { color: #ddd; }
.featured-img-lux { border-radius: 20px; }

.article-body {
    color: #444;
    font-family: 'Inter', sans-serif;
}
.article-body p { margin-bottom: 1.8rem; }
.article-body h2, .article-body h3 { 
    margin-top: 2.5rem; 
    margin-bottom: 1.5rem; 
    font-weight: 800; 
    color: #000;
}

.share-btn-wa, .share-btn-fb {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.share-btn-wa { background: #25d366; color: #fff; }
.share-btn-fb { background: #1877f2; color: #fff; }
.share-btn-wa:hover, .share-btn-fb:hover { opacity: 0.9; transform: scale(1.05); color: #fff; }

.post-navigation-lux .fw-bold { font-size: 1.1rem; }
.post-navigation-lux a { color: #000; text-decoration: none; transition: var(--transition); }
.post-navigation-lux a:hover { color: var(--gold); }

.mini-blog-card {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.mini-blog-card:hover { border-color: var(--gold); background: #fafafa; }

/* ─── CAR PAGE ENHANCEMENTS (DENSITY) ─────────── */
.luxury-benefit-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shadow-hover:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06) !important;
}
.benefit-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.luxury-benefit-box:hover .benefit-icon-box {
    background: var(--gold);
}
.luxury-benefit-box:hover .benefit-icon-box i {
    color: #fff !important;
}

.border-gold-soft { border: 1px solid rgba(212,175,55,0.15) !important; }

.luxury-specs-table td {
    border-bottom: 1px solid #f8f8f8;
    vertical-align: middle;
}
.luxury-specs-table tr:last-child td { border-bottom: none; }
.luxury-specs-table i { width: 25px; color: var(--gold); }

.detail-card h5 em, .landing-section h5 em, .blog-page-header h1 em, .luxury-blog-single h1 em, .luxury-blog-archive h1 em {
    font-style: normal;
    color: var(--gold);
}

.text-muted-dark { color: #555 !important; }
.letter-spacing-1 { letter-spacing: 1px; }

.x-small { font-size: 0.75rem; }

/* ─── LUXURY 404 STYLES ───────────────────────── */
.luxury-404-page {
    min-height: 80vh;
    padding-top: 180px !important;
    background: radial-gradient(circle at center, #fff, #f9f9f9);
}
.error-badge {
    display: inline-flex;
    padding: 15px 40px;
    background: var(--gold);
    color: #000;
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 1;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.luxury-404-page h1 em { font-style: normal; color: var(--gold); }
.luxury-404-page .btn { transition: var(--transition); }
.luxury-404-page .btn:hover { transform: translateY(-5px); }

@media (max-width: 991px) {
    .luxury-blog-archive, .luxury-blog-single, .luxury-car-page, .luxury-404-page { padding-top: 150px !important; }
    .error-badge { font-size: 3rem; padding: 10px 30px; }
}

.car-gallery-wrap { 
    background: #fff; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.thumb-strip-row .thumb-item {
    width: 110px;
    height: 75px;
    border-radius: 12px;
    border: 2px solid #eee;
}
.thumb-strip-row .thumb-item.active { border-color: var(--gold); transform: scale(1.05); z-index: 2; }

/* GLASSMORPHISM & UNIQUE TOUCHES */
.price-rating-box, .detail-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.elite-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 8px 40px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

/* 2-COLUMN FAQ GRID */
.faq-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px 40px;
}
.faq-item-premium .cursor-pointer {
    transition: var(--transition);
}
.faq-item-premium .cursor-pointer:hover {
    border-color: var(--gold) !important;
    background: #fff;
    transform: translateX(5px);
}

/* SITE FOOTER PREMIUM */
.site-footer {
    background: var(--black) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-nav-links li a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
    padding: 5px 0;
}
.footer-nav-links li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.footer-contact-info i {
    width: 20px;
    text-align: center;
}

.footer-bottom a:hover {
    color: var(--gold) !important;
}

@media (max-width: 991px) {
    .luxury-car-page { padding-top: 150px !important; }
    .car-page-header h1 { font-size: 2.8rem; }
    .faq-grid-custom { grid-template-columns: 1fr; }
    .mobile-sticky-cta-lux { display: block; }
    .mobile-sticky-cta { display: none !important; }
    body { padding-bottom: 90px; }
    .brand-logo img { height: 45px !important; }
    /* HARD HIDE ALL NOISE */
    .single-car .floating-wa, .single-car #whatsapp-btn, .single-car .single-whatsapp, .single-car #wa-btn-fixed { display: none !important; }
}
/* PREMIUM UI ENHANCEMENTS */
.glass-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.aurora-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: aurora-rotate 15s linear infinite;
}

@keyframes aurora-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-car-image {
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-out;
}

.thumb-strip-row .thumb-item {
    cursor: pointer;
    flex: 0 0 auto;
    width: 100px;
    height: 65px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.thumb-strip-row .thumb-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumb-strip-row .thumb-item.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.thumb-strip-row .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.hover-up {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

/* PREMIUM SECTION DIVIDER */
.lux-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, #f4e5c3 100%);
    margin: 20px 0;
    border-radius: 2px;
}

/* REFINED TYPOGRAPHY */
.ls-2 { letter-spacing: 2px; }
.ls-neg-1 { letter-spacing: -1px; }

/* LUXURY TABLE STYLING */
.luxury-specs-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
.luxury-specs-table tr {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-radius: 15px;
    transition: var(--transition);
}
.luxury-specs-table tr:hover {
    transform: translateX(10px);
    border-color: var(--gold) !important;
}
.luxury-specs-table td {
    border: none !important;
    padding: 16px 20px !important;
}

@media (max-width: 767px) {
    .luxury-specs-table, .luxury-specs-table tbody, .luxury-specs-table tr, .luxury-specs-table td {
        display: block !important;
        width: 100% !important;
    }
    .luxury-specs-table tr {
        margin-bottom: 20px;
        padding: 5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.02) !important;
        border-radius: 12px !important;
        background: #fff !important;
    }
    .luxury-specs-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        border-bottom: 1px dashed #f0f0f0 !important;
    }
    .luxury-specs-table td:last-child { border-bottom: none !important; }
    
    .luxury-specs-table td .text-muted { 
        font-weight: 700 !important; 
        color: #333 !important; 
        font-size: 13px !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .luxury-specs-table td .fw-bold { 
        color: var(--gold) !important; 
        font-size: 14px !important;
    }
    .luxury-specs-table td.ps-lg-5 { padding-left: 15px !important; }
    .luxury-specs-table td i { 
        margin-right: 10px !important; 
        width: auto !important;
    }
}
.luxury-specs-table td i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.bg-white-5 { background: rgba(255,255,255,0.5); }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }

/* Mobile refinements */
@media (max-width: 767px) {
    .car-page-header h1 { font-size: 2.3rem !important; }
    .price-rating-box { padding: 30px 20px !important; margin-top: 20px; }
    .thumb-strip-row .thumb-item { width: 80px; height: 55px; }
}.bg-light-soft { background: #f8f9fa; }
.spec-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
}
.car-spec-pill {
    transition: var(--transition);
}
.car-spec-pill:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    border-color: var(--gold-light) !important;
}

/* CINEMATIC LUXURY MODE - RICH AESTHETICS */
.cinematic-mode { background: #fff; position: relative; }

.aurora-fixed-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0; pointer-events: none;
    overflow: hidden;
}
.glow-1 {
    position: absolute;
    top: -10%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate-aurora 40s linear infinite;
}
.glow-2 {
    position: absolute;
    bottom: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: rotate-aurora-2 30s linear infinite reverse;
}

@keyframes rotate-aurora { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.1); } 100% { transform: rotate(360deg) scale(1); } }
@keyframes rotate-aurora-2 { 0% { transform: rotate(0deg) scale(1.1); } 50% { transform: rotate(180deg) scale(1); } 100% { transform: rotate(360deg) scale(1.1); } }

.car-page-header-lux {
    padding: 100px 0 60px;
    margin-bottom: 20px !important;
}

.bg-car-name {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    z-index: 1;
    line-height:1;
    pointer-events: none;
    letter-spacing: -2px;
}

.badge-accent {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(212,175,55,0.25);
    position: relative;
    z-index: 2;
}

.fw-black { font-weight: 900; }

.car-gallery-canvas {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 60px 120px rgba(0,0,0,0.12);
}

.image-zoom-container {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.main-car-image-lux {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0.94);
    padding: 20px;
}

.car-gallery-canvas:hover .main-car-image-lux {
    transform: scale(1.05);
}

.spec-flex-grid {
    border: 1.5px solid rgba(212,175,55,0.3) !important;
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.v-divider { width: 1px; height: 35px; background: rgba(212,175,55,0.15); }

.thumb-item-lux {
    cursor: pointer;
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
    margin-bottom: 5px;
}

.thumb-item-lux.active {
    opacity: 1;
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212,175,55,0.2);
}

.thumb-item-lux img { width: 100%; height: 100%; object-fit: cover; }

.main-shadow-lux { box-shadow: 0 50px 100px rgba(0,0,0,0.1); }

@media (max-width: 991px) {
    .bg-car-name { font-size: 25vw; opacity: 0.12; }
    .car-elite-header h1 { font-size: 2.8rem !important; }
    .car-attributes-bar { 
        border-radius: 20px !important; 
        flex-wrap: wrap !important; 
        padding: 20px !important; 
        gap: 15px !important; 
        justify-content: center !important; 
    }
    .attr-divider { display: none; }
    .attr-item { flex: 0 0 42%; padding: 0 !important; }
    .thumb-node { width: 90px; height: 60px; }
}

@media (max-width: 575px) {
    .car-elite-header h1 { font-size: 2.2rem !important; }
    .premium-view-mode { padding-top: 100px !important; }
    .visual-canvas { border-radius: 12px !important; }
    .booking-card-premium { padding: 30px 20px !important; }
}


.gallery-badge-lux {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* MOBILE STICKY BAR LUX */
.mobile-sticky-cta-lux {
    position: fixed;
    bottom: 12px;
    left: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 10px 15px;
    z-index: 10005;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    display: none;
}

@media (max-width: 991px) {
    .mobile-sticky-cta-lux { display: block; }
    .mobile-sticky-cta { display: none !important; }
}

.sticky-price-info .text-dark { font-size: 16px !important; font-weight: 800; }
.sticky-price-info .small { font-size: 9px !important; }

.btn-dark-lux { 
    background: linear-gradient(135deg, #111 0%, #333 100%) !important; 
    color: #fff !important; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-gold-lux { 
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%) !important; 
    color: var(--black) !important;
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

.btn-dark-lux, .btn-gold-lux { 
    padding: 10px 18px !important; 
    font-size: 12px !important; 
    border-radius: 14px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.flex-grow-2 { flex-grow: 2; }

/* PRE-DEFINED PREMIUM EFFECTS */
.aurora-fixed-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #fff;
    pointer-events: none;
}
.glow-1 {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    top: -200px; right: -200px;
    animation: rotateGlow 25s infinite alternate ease-in-out;
}
.glow-2 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation: rotateGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes rotateGlow {
    from { transform: translate(0,0) rotate(0); }
    to { transform: translate(100px, 100px) rotate(180deg); }
}

.premium-view-mode { background: transparent !important; }


.car-elite-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Professional scale */
    line-height: 1.2;
}

.elite-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.visual-canvas {
    border: 1px solid rgba(0,0,0,0.03);
    background: radial-gradient(circle at center, #ffffff 0%, #f7f7f7 100%); /* Showroom Pedestal */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.visual-canvas img {
    object-fit: contain !important; /* Important for transparent cars */
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.12)); /* Natural shadow for PNGs */
    max-height: 500px;
}

.thumb-node {
    background: #fdfdfd;
    border: 1px solid rgba(0,0,0,0.05);
    flex: 0 0 auto;
    width: 100px;
    height: 65px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.6;
}

.thumb-node.active {
    opacity: 1;
    border-color: var(--gold);
    transform: scale(1.05);
}

/* PREMIUM FOOTER LOCATIONS STYLE */
.footer-locations {
    position: relative;
    overflow: hidden;
}
.location-cloud-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    color: rgba(255,255,255,0.4) !important;
}
.location-cloud-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.gap-x-3 { column-gap: 1rem; }
.gap-y-2 { row-gap: 0.5rem; }

@media (max-width: 767px) {
    .footer-locations span { display: none !important; } 
    .footer-locations .d-flex { gap: 12px !important; justify-content: center !important; }
}

.thumb-node img { width: 100%; height: 100%; object-fit: cover; }

.car-attributes-bar {
    border: 1px solid rgba(212,175,55,0.2) !important;
    background: rgba(255,255,255,0.7) !important;
}

.attr-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.08);
}

.booking-card-premium {
    border: 1.5px solid rgba(212,175,55,0.2) !important;
}

/* FINAL FRONTEND POLISH */
.thumb-node {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.thumb-node:hover {
    transform: translateY(-5px) scale(1.02);
    opacity: 1;
}

.car-attributes-bar {
    border: 1px solid rgba(212,175,55,0.1) !important;
    background: #fff !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}

.attr-item i {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.booking-card-premium {
    background: #fff !important;
    border: none !important;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12) !important;
}

.btn-gold {
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}
.btn-gold:hover::after {
    transform: scale(1);
}

.faq-item-premium .cursor-pointer {
    background: #fff !important;
    border-color: rgba(0,0,0,0.03) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border-radius: 18px !important;
}
.faq-item-premium .cursor-pointer:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 15px 30px rgba(212,175,55,0.1);
}

.related-car-item {
    border: none !important;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.related-car-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

/* Mobile Polish */
@media (max-width: 767px) {
    .car-elite-header h1 { font-weight: 800; }
    .car-hero-visual { padding: 0 10px; }
    .booking-card-premium { padding: 35px 25px !important; }
}

/* ELITE LANDING PAGE STYLES */
.luxury-lp-wrapper { background: #fff; overflow-x: hidden; padding-top: 80px; }

.lp-hero-lux {
    position: relative;
    min-height: 65vh; /* Standard desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible; 
    background: #000;
    padding: 120px 0; 
    z-index: 5;
}
.lp-hero-lux::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}
.lp-hero-lux-bg {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(1px);
}
.lp-hero-lux-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}
.lp-hero-lux h1 {
    font-size: clamp(2rem, 5vw, 3.8rem); /* Slightly more conservative desktop size */
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}
.lp-hero-lux p {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,0.8);
}
.lp-hero-lux .highlight-gold { color: var(--gold); }

.lp-stats-strip {
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 50; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lp-content-sec { padding: 100px 0; }
.lp-fleet-sec { padding: 100px 0; background: #fdfdfd; position: relative; }

.lp-car-card-lux {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lp-car-card-lux:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

@media (max-width: 991px) {
    .visual-canvas {
        min-height: 240px !important; /* Proper compact height for mobile */
        padding: 20px;
    }
    .visual-canvas img {
        max-height: 200px !important;
        filter: drop-shadow(0 20px 35px rgba(0,0,0,0.12)); /* Softer shadow for mobile */
    }
    
    .thumb-node {
        width: 80px !important;
        height: 55px !important;
    }
    
    .lp-hero-lux { 
        min-height: auto; 
        padding-top: 100px !important;
        padding-bottom: 40px !important; 
        overflow: visible;
    }
    .lp-hero-lux h1 { 
        font-size: 20px !important; /* Standard like competitor */
        line-height: 1.3 !important; 
        margin-bottom: 12px !important;
        letter-spacing: normal;
        padding: 0 15px;
    }
    .lp-hero-lux p { 
        font-size: 13px !important; 
        padding: 0 25px;
        margin-bottom: 25px !important;
        opacity: 0.8 !important;
        line-height: 1.5 !important;
    }
    
    .car-elite-header h1 {
        font-size: 22px !important; /* Specifically for single car pages */
        margin-bottom: 10px !important;
    }
    
    .car-elite-header p {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    
    .landing-section h5 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .lp-hero-lux-content {
        padding: 0 !important;
    }
    
    .lp-stats-strip { 
        margin-top: 0px !important; 
        padding: 15px 5px !important; 
        width: 100% !important; 
        border-radius: 0px !important; 
        border-left: 0; border-right: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    }
    
    .lp-hero-lux .btn-md {
        width: auto !important; 
        min-width: 130px;
        font-size: 10px !important;
        padding: 10px 15px !important;
        border-radius: 5px !important;
    }
    
    .lp-content-sec { padding: 40px 15px !important; }
    .lp-fleet-sec { padding: 40px 10px !important; }
    
    .lp-car-card-lux { margin-bottom: 20px; }

    /* Mobile WhatsApp Polish */
    .floating-wa { 
        width: 55px !important; 
        height: 55px !important; 
        bottom: 25px !important; 
        right: 20px !important; 
    }
    .floating-wa i { font-size: 26px !important; }
}

/* ============================================================
   PREMIUM CATEGORY SECTION - CLEAN & ELITE RESTORATION
   ============================================================ */
.categories-section { background: #fdfdfd !important; padding: 100px 0 !important; }
.cat-slider-wrapper { position: relative; padding: 0 40px; }
.cat-track { -ms-overflow-style: none; scrollbar-width: none; overflow-x: scroll; display: flex; gap: 20px; }
.cat-track::-webkit-scrollbar { display: none; }

.cat-card {
    background: #ffffff !important;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cat-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important;
}

.cat-img-box {
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.cat-info {
    padding: 25px !important;
    text-align: center;
    background: #ffffff !important; /* Explicitly white to prevent dark overlays */
    position: relative;
    z-index: 5;
}

.cat-info i {
    color: var(--gold) !important;
    margin-bottom: 15px;
    display: block;
}

.cat-info h5 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: #111 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 5px !important;
}

.cat-info p, .cat-info span {
    font-size: 0.85rem !important;
    color: #888 !important;
    display: block;
}

/* Fix title highlight kachra */
.section-title {
    background: transparent !important;
    color: #111 !important;
    display: inline-block;
    padding: 0 !important;
    margin-bottom: 15px;
}

.cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #eee;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cat-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 10px 20px rgba(184,150,87,0.25);
}

    .cat-prev { left: -10px; }
    .cat-next { right: -10px; }


/* ============================================================
   TRUST CTA BUTTONS - GLOBAL
   ============================================================ */
.btn-call-lux {
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
}
.btn-call-lux:hover {
    background-color: #0056b3 !important;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3) !important;
    transform: translateY(-2px);
}

.btn-wa-lux {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
}
.btn-wa-lux:hover {
    background-color: #1ebd5b !important;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3) !important;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .cat-slider-wrapper { padding: 0 45px; }
    .cat-arrow { display: flex; width: 36px; height: 36px; }
    .cat-prev { left: 5px; }
    .cat-next { right: 5px; }
    .cat-track { gap: 15px; }
}




/* FINAL POLISH */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.car-card { border: none !important; box-shadow: 0 10px 40px rgba(0,0,0,0.05); transition: all 0.6s ease; }
.car-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.section-title { font-weight: 900 !important; letter-spacing: -2px !important; }
/* SCALABLE FOOTER LOCATIONS */
.footer-loc-grid { max-width: 1200px; margin: 0 auto; text-align: left; }
.footer-loc-link { 
    padding: 12px 15px; 
    border-radius: 12px; 
    background: #fdfdfd; 
    border: 1px solid #f0f0f0; 
    transition: all 0.3s ease; 
    color: #444; 
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
}
.footer-loc-link:hover { 
    background: #fff; 
    border-color: var(--gold); 
    color: var(--gold); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(184,150,87,0.1); 
}
.footer-loc-link .loc-text { transition: transform 0.3s ease; line-height: 1.4; }
.footer-loc-link:hover .loc-text { transform: translateX(3px); }

@media (max-width: 575px) {
    .footer-loc-grid .row { margin-left: -5px; margin-right: -5px; }
    .footer-loc-grid .col-6 { padding-left: 5px; padding-right: 5px; }
    .footer-loc-link { 
        padding: 8px 5px; 
        font-size: 11px; 
        justify-content: center; 
        text-align: center; 
        min-height: 44px;
        flex-direction: column;
        gap: 2px !important;
    }
    .footer-loc-link i { font-size: 4px !important; }
}
.hero-headline { font-weight: 900 !important; letter-spacing: -3px !important; }
.section-label { text-transform: uppercase; letter-spacing: 4px; font-weight: 800; color: #b89657; }

/* SOLID TRUST BUTTONS */
.btn-call-lux { background-color: #0066cc !important; color: #fff !important; border: none !important; border-radius: 12px !important; font-weight: 800 !important; box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3) !important; padding: 12px 10px !important; text-transform: uppercase !important; font-size: 11px !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }
.btn-wa-lux { background-color: #25d366 !important; color: #fff !important; border: none !important; border-radius: 12px !important; font-weight: 800 !important; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important; padding: 12px 10px !important; text-transform: uppercase !important; font-size: 11px !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }
.car-card { background: #fff !important; border-radius: 24px !important; box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important; transition: all 0.5s ease-in-out !important; }
.car-card:hover { transform: translateY(-12px); box-shadow: 0 35px 70px rgba(0,0,0,0.1) !important; }

/* ELITE BUTTON FIX */
.btn-call-lux, .btn-wa-lux { display: flex !important; align-items: center !important; justify-content: center !important; height: 45px !important; border-radius: 12px !important; color: #ffffff !important; font-size: 13px !important; font-weight: 800 !important; border: none !important; box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important; }
.btn-call-lux i, .btn-wa-lux i { color: #ffffff !important; margin-right: 8px !important; font-size: 16px !important; }
.btn-call-lux { background-color: #0066cc !important; }
.btn-wa-lux { background-color: #25d366 !important; }
.car-card h5 { font-family: 'Playfair Display', serif !important; font-weight: 800 !important; color: #111 !important; }

/* PREMIUM LOCATION BUTTONS */
.btn-location-lux { background: #fff !important; border: 1px solid #eee !important; padding: 10px 20px !important; border-radius: 50px !important; color: #555 !important; text-decoration: none !important; font-size: 13px !important; font-weight: 600 !important; transition: all 0.3s ease !important; display: inline-flex !important; align-items: center !important; }
.btn-location-lux:hover { background: #fdfdfd !important; border-color: #b89657 !important; color: #b89657 !important; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important; }

/* MOBILE LOCATION OPTIMIZATION */
@media (max-width: 768px) {
  .location-grid-lux .d-flex { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .btn-location-lux { padding: 8px 10px !important; font-size: 11px !important; justify-content: center !important; height: auto !important; min-height: 44px !important; text-align: center !important; flex-direction: column !important; gap: 4px !important; }
  .btn-location-lux i { margin: 0 !important; font-size: 14px !important; }
}

/* LP HERO SPACING FIX */
.luxury-lp-wrapper .lp-hero-lux { padding-top: 100px !important; min-height: 85vh !important; }
.lp-hero-lux-content { margin-top: 60px !important; padding: 20px !important; }
@media (max-width: 768px) {
  .lp-hero-lux { padding-top: 80px !important; min-height: 60vh !important; }
  .lp-hero-lux-content h1 { font-size: 2.2rem !important; }
}

/* PREMIUM DROPDOWN STYLES */
.dropdown-menu { box-shadow: 0 15px 50px rgba(0,0,0,0.1) !important; padding: 15px 10px !important; }
.dropdown-item { transition: all 0.3s ease !important; border-radius: 8px !important; }
.dropdown-item:hover { background-color: #f8f9fa !important; color: #b89657 !important; transform: translateX(5px); }

/* HOVER DROPDOWN FOR DESKTOP */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease !important;
  }
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

/* GLOBAL SECTION SPACING OPTIMIZATION */
.section-pad { padding: 70px 0 !important; }
@media (max-width: 768px) {
  .section-pad { padding: 50px 0 !important; }
  .section-title { margin-bottom: 30px !important; }
}

/* ELITE BLOG MOBILE RESPONSIVE */
.luxury-blog-single { padding-top: 80px; }
.blog-page-header { padding: 40px 0; border-bottom: 1px solid #f0f0f0; margin-bottom: 40px; }
.article-body img { max-width: 100% !important; height: auto !important; border-radius: 15px; margin: 20px 0; }
@media (max-width: 768px) {
  .blog-page-header h1 { font-size: 1.8rem !important; line-height: 1.3 !important; }
  .article-body { font-size: 1rem !important; line-height: 1.6 !important; }
  .post-navigation-lux { flex-direction: column !important; gap: 20px !important; text-align: left !important; }
  .post-navigation-lux .next-post { text-align: left !important; }
  .share-btn-wa, .share-btn-fb { width: 100% !important; justify-content: center !important; }
  .related-guides .row { gap: 20px !important; }
}
/* Global Car Thumbnail Styling for All Fleet Cards */
.luxury-car-thumb {
    object-fit: contain !important;
    background: #ffffff !important;
    transform: scale(1.18); /* Professional zoom to remove white borders from source images */
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.car-card:hover .luxury-car-thumb, 
.related-car-item:hover .luxury-car-thumb {
    transform: scale(1.25) !important; /* Slight interactive zoom on hover */
}

/* ─── SINGLE CAR MOBILE FIXES ─────────────────────────── */
@media (max-width: 768px) {
    .visual-canvas {
        background: #ffffff !important;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 220px !important;
        border: 1px solid rgba(0,0,0,0.03);
    }
    
    #main-display-image {
        aspect-ratio: auto !important;
        height: auto !important;
        max-height: 240px !important;
        width: 100% !important;
        object-fit: contain !important;
        padding: 0 !important;
        transform: scale(1.25); /* Zooms into the car to remove white borders */
        transform-origin: center;
    }
    
    /* Thumbnails scrollable strip */
    .car-thumbnails-strip {
        padding-bottom: 5px;
    }
    .thumb-node img {
        width: 70px !important;
        height: 50px !important;
        object-fit: cover;
    }
}

/* WHY CHOOSE US LUXURY SECTION (REDESIGNED) */
.why-choose-lux {
    position: relative;
    z-index: 1;
}
.why-item-lux {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.why-item-lux:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}
.why-item-lux h6 {
    color: var(--dark-1);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.why-item-lux p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--dark-3);
}
.elite-divider-sm {
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.seo-link-row-lux {
    line-height: 2;
}
.seo-link-row-lux a {
    color: #333 !important;
    font-weight: 700 !important;
    font-size: 11.5px;
    letter-spacing: 0.3px;
}
.seo-link-row-lux a:hover {
    color: var(--gold) !important;
    text-decoration: underline !important;
}
.hover-gold:hover {
    color: var(--gold) !important;
}
.bg-light-soft {
    background-color: #fdfdfd;
}

/* ─── DISABLE CARD & IMAGE ZOOM ON HOVER ─── */
.car-card, .related-car-item, .cat-card {
    transition: none !important;
}
.car-card:hover, .related-car-item:hover, .cat-card:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}
.car-card:hover img, .related-car-item:hover img, .cat-card:hover .cat-img-box img {
    transform: none !important;
}
.luxury-car-thumb, .cat-img-box img {
    transition: none !important;
}
