/* 
 * Brooklyn's Motors - Premium Luxury Automotive Experience
 * £5000 Professional Website Design
 * Rivals Bentley, Rolls-Royce, and Romans of St Albans
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ===== PREMIUM DARK THEME - SSC INSPIRED ===== */
:root {
  /* Premium Dark Color Palette */
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #404040;
  --light-gray: #666666;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f4d03f;
  --pure-white: #ffffff;
  --off-white: #f8f9fa;
  --text-gray: #cccccc;
  --border-gray: #333333;
  
  /* Legacy support */
  --regal-black: var(--secondary-black);
  --deep-charcoal: var(--primary-black);
  --elegant-gold: var(--accent-gold);
  --warm-gray: var(--light-gray);
  --gold-accent: #B8941F;
  --shadow-black: rgba(0, 0, 0, 0.1);
  
  /* Typography Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Legacy mappings for compatibility */
  --luxury-gold: var(--elegant-gold);
  --luxury-gold-dark: var(--gold-accent);
  --luxury-charcoal: var(--deep-charcoal);
  --luxury-black: var(--regal-black);
  --luxury-white: var(--pure-white);
  --luxury-cream: var(--off-white);
  
  /* Text Colors */
  --text-primary: var(--regal-black);
  --text-secondary: var(--deep-charcoal);
  --text-muted: var(--warm-gray);
  --text-light: var(--pure-white);
  
  /* Background Colors */
  --bg-primary: var(--pure-white);
  --bg-secondary: var(--off-white);
  --bg-accent: var(--light-gray);
  --bg-dark: #1a1a1a;
  
  /* Shadows & Effects */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-luxury: 0 20px 60px rgba(212, 175, 55, 0.15);
  
  /* Premium Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Crimson Text', Georgia, serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-xxl: 4rem;    /* 64px */
  --space-xxxl: 6rem;   /* 96px */
  
  /* Layout */
  --container-max: 1400px;
  --container-padding: 2rem;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

  body {
  font-family: var(--font-body);
  font-size: 16px;
    line-height: 1.6;
  color: var(--text-gray);
  background-color: var(--primary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== LUXURY TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  font-weight: 400;
}

.text-large {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.text-luxury {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--luxury-gold);
}

/* ===== LAYOUT SYSTEM ===== */
  .container {
  max-width: var(--container-max);
    margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

/* Dark theme sections */
.ssc-dark-theme .section {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

.section.bg-secondary {
  background: linear-gradient(135deg, var(--off-white) 0%, #e9ecef 50%, var(--off-white) 100%);
}

.section-sm {
  padding: var(--space-xxl) 0;
}

.section-lg {
  padding: 8rem 0;
}

/* ===== SOPHISTICATED DARK HEADER ===== */
  .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--border-gray);
}

.header-container {
    display: flex;
    justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 2rem;
  min-height: 120px;
  position: relative;
}

/* Left Side - Contact Info */
.header-contact {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.header-phone, .header-email {
    text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-phone {
  color: var(--elegant-gold);
}

.header-phone:hover {
  color: var(--pure-white);
}

.header-email {
  color: var(--pure-white);
  font-size: 0.85rem;
  opacity: 0.9;
}

.header-email:hover {
  color: var(--elegant-gold);
}

/* Contact Icons */
.header-phone::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c9a961' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.header-email::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c9a961' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Center - Logo */
.header-container .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 120px !important;
  width: auto;
}

/* Right Side - Social Icons */
.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.nav-container {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 0.75rem 0;
  }
  
  .logo {
  height: 50px;
  width: auto;
  transition: transform var(--transition-smooth);
  }
  
/* Logo hover removed - was causing diagonal jumping */
  
  .site-nav ul {
    display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
    justify-content: center;
}

.site-nav a {
  position: relative;
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  transition: width var(--transition-smooth);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--elegant-gold);
  background: rgba(201, 169, 97, 0.15);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-phone {
  color: var(--pure-white);
    text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: var(--elegant-gold);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.social-icons a:hover {
  transform: translateY(-2px);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-smooth);
}

.social-icons a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(35deg);
}

/* ===== SSC-INSPIRED HERO SECTION ===== */
.hero-modern, .ssc-hero {
  position: relative;
  /* Responsive height based on viewport width */
  height: clamp(50vh, 12vw + 40vh, 80vh);
  min-height: 400px;
  max-height: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-black);
}

/* SSC-Style Hero with Overlay Text */
.ssc-hero {
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

/* Desktop hero images */
.ssc-hero.hero-1 {
  background-image: url('/assets/img/hero/hero1.jpg?v=2025');
}

.ssc-hero.hero-2 {
  background-image: url('/assets/img/hero/hero2.jpg?v=2025');
}

.ssc-hero.hero-3 {
  background-image: url('/assets/img/hero/hero3.jpg?v=2025');
}

/* Enhanced responsive scaling for different viewport sizes */

/* Tablet landscape and small desktop */
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .ssc-hero {
    height: clamp(45vh, 18vw + 25vh, 70vh);
    min-height: 350px;
    max-height: 600px;
  }
}

/* Medium desktop */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .ssc-hero {
    height: clamp(55vh, 14vw + 35vh, 75vh);
    min-height: 450px;
    max-height: 700px;
  }
}

/* Large desktop */
@media screen and (min-width: 1400px) {
  .ssc-hero {
    height: clamp(60vh, 8vw + 45vh, 85vh);
    min-height: 500px;
  }
}

/* Ultra-wide and 4K screens */
@media screen and (min-width: 1920px) {
  .ssc-hero {
    height: clamp(65vh, 6vw + 50vh, 90vh);
    min-height: 600px;
    max-height: 900px;
  }
}

.ssc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.ssc-hero-content {
  position: relative;
  z-index: 2;
  color: var(--pure-white);
  max-width: 600px;
  padding: 0 2rem;
}

.ssc-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ssc-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.ssc-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ssc-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.ssc-hero-cta:hover::before {
  left: 0;
}

.ssc-hero-cta:hover {
  color: var(--primary-black);
  transform: translateY(-2px);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Better car positioning on larger screens */
@media (min-width: 1200px) {
  .hero-bg-img {
    object-position: center 30%;
    transform: scale(1.05);
  }
}

@media (min-width: 1600px) {
  .hero-bg-img {
    object-position: center 25%;
    transform: scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.hero-content-modern {
  position: relative;
  z-index: 3;
  color: var(--pure-white);
  width: 100%;
}

.hero-text {
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--elegant-gold), #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--elegant-gold);
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--off-white);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--elegant-gold), #d4af37);
  color: var(--regal-black);
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #d4af37, var(--elegant-gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
    text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--pure-white);
  color: var(--regal-black);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-modern {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-tagline {
    font-size: 1.4rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--elegant-gold);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PREMIUM BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
    text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
    border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.btn-admin {
  background: #dc3545;
    color: white;
  font-size: 0.9rem;
  padding: 8px 16px;
  min-width: auto;
  text-transform: none;
  letter-spacing: normal;
}

.btn-admin:hover {
  background: #c82333;
  color: white;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--regal-black);
  color: var(--pure-white);
  border: 2px solid var(--regal-black);
}

.btn-primary:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  border-color: var(--elegant-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--elegant-gold);
  border: 2px solid var(--elegant-gold);
}

.btn-secondary:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  border-color: var(--elegant-gold);
}

.btn-dark {
  background: linear-gradient(135deg, 
    var(--luxury-charcoal) 0%, 
    var(--luxury-black) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ===== LUXURY FORMS ===== */
.form-luxury {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--pure-white);
  color: var(--deep-charcoal);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: var(--pure-white);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

/* ===== LUXURY CARDS ===== */
.card-luxury {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--luxury-gold), 
    var(--luxury-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.card-luxury:hover::before {
  transform: scaleX(1);
}

.card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

/* ===== STOCK FILTERS ===== */
.stock-hero {
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, #0f0f0f 100%);
  color: var(--cream-white);
  padding: 4rem 0 2rem;
    text-align: center;
  }
  
.stock-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cream-white);
}

.stock-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--champagne-gold);
}

.stock-filters {
  background: var(--cream-white);
  padding: 2rem;
  border-radius: 16px;
  margin: -2rem auto 3rem;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.filter-header {
    text-align: center;
  margin-bottom: 2rem;
}

.filter-header h2 {
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.filter-header p {
  color: var(--warm-gray);
}

.search-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-wrapper .form-input {
  flex: 1;
}

.filter-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.filter-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== VEHICLE CARDS ===== */
.vehicle-grid, #stock-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: var(--space-xl) 0;
  position: relative;
}


@media (max-width: 1200px) {
  .vehicle-grid, #stock-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .vehicle-grid, #stock-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.vehicle-card {
  background: var(--pure-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  border-top: 4px solid var(--elegant-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, 
    var(--luxury-gold) 0%, 
    #f4c430 50%, 
    var(--luxury-gold) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.vehicle-card:hover::before {
  opacity: 1;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  border-top-color: var(--gold-accent);
}

.vehicle-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  flex-shrink: 0;
}

.vehicle-image img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.02) saturate(1.05) contrast(1.02);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.08) rotate(0.5deg);
  filter: brightness(1.08) saturate(1.15) contrast(1.05);
}

.no-image {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  border: 2px dashed #ddd;
}

.vehicle-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--regal-black);
  color: var(--pure-white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 2;
}

.vehicle-info {
  padding: 1.5rem;
  background: var(--pure-white);
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light-gray);
}

.vehicle-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.vehicle-description {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 400;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vehicle-specs {
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--regal-black);
  background: var(--off-white);
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-weight: 500;
  flex: 1;
  margin: 0 0.125rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-price {
  text-align: left;
  margin: 1rem 0 1rem;
  padding: 1rem 0 0;
  border-top: 2px solid var(--light-gray);
}

.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--regal-black);
  margin: 0;
  letter-spacing: -1px;
}

.price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
    height: 3px;
  background: linear-gradient(90deg, var(--champagne-gold), var(--gold-dark));
  border-radius: 2px;
}

.vehicle-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 0 0;
}

.btn-view-details, .btn-enquire {
  padding: 0;
  border: 2px solid var(--regal-black);
  border-radius: 0;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
    text-align: center;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
    text-decoration: none;
}

.btn-view-details {
  background: var(--regal-black);
  color: var(--pure-white);
  border-color: var(--regal-black);
}

.btn-view-details:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  border-color: var(--elegant-gold);
}

.btn-enquire {
  background: transparent;
  color: var(--regal-black);
  border-color: var(--regal-black);
}

.btn-enquire:hover {
  background: var(--regal-black);
  color: var(--pure-white);
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.detail-item:hover {
  background-color: rgba(212, 175, 55, 0.08);
}

.detail-icon {
  color: var(--luxury-gold);
  font-size: 1rem;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ===== ELEGANT FOOTER ===== */
.site-footer {
  background: var(--regal-black);
  color: var(--pure-white);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--elegant-gold), 
    transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--elegant-gold);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-section h4 {
  color: var(--elegant-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: var(--pure-white);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--pure-white);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--elegant-gold);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-social a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(35deg);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0.5rem 0;
  color: var(--off-white);
}

/* ===== VEHICLE DETAILS MODAL ===== */
.vehicle-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
    width: 100%;
    height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 2rem;
  box-sizing: border-box;
}

.vehicle-modal-content {
  background: var(--pure-white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--off-white);
}

.modal-header h2 {
  color: var(--regal-black);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--warm-gray);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--off-white);
  color: var(--regal-black);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-vehicle-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.modal-details-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--elegant-gold);
}

.price-label {
  font-size: 1rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--regal-black);
}

.modal-specs h3 {
  color: var(--regal-black);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 0.5rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--pure-white);
  border: 1px solid var(--off-white);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.spec-item:hover {
  border-color: var(--elegant-gold);
  transform: translateY(-1px);
}

.spec-label {
  font-weight: 500;
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.spec-value {
  font-weight: 600;
  color: var(--regal-black);
  font-size: 0.9rem;
}

.modal-description h3 {
  color: var(--regal-black);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 0.5rem;
}

.modal-description p {
  color: var(--warm-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.modal-actions .btn {
  flex: 1;
  padding: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  font-size: 0.9rem;
}

.modal-actions .btn-primary {
  background: var(--elegant-gold);
  color: var(--regal-black);
}

.modal-actions .btn-primary:hover {
  background: var(--regal-black);
  color: var(--elegant-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.modal-actions .btn-secondary {
  background: var(--regal-black);
  color: var(--pure-white);
}

.modal-actions .btn-secondary:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .vehicle-modal-overlay {
    padding: 1rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}

/* ===== MAPS SECTION STYLES ===== */
.maps-section-ssc {
  background: var(--secondary-black);
  padding: 4rem 0;
  margin-top: 2rem;
}

.maps-section-ssc h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.map-container-ssc {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.map-container-ssc iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-info-ssc {
  text-align: center;
  color: var(--text-gray);
}

.map-info-ssc h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.map-info-ssc p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* ===== VEHICLE DETAILS PAGE - SSC STYLE ===== */
.vehicle-details-page-ssc {
  background: var(--pure-white);
  min-height: 100vh;
}

/* SSC Dark Theme */
.ssc-dark-theme {
  background: #0a0a0a;
  color: #ffffff;
}

.ssc-dark-theme .vehicle-details-page-ssc {
  background: #0a0a0a;
}

.ssc-dark-theme .vehicle-hero-ssc {
  background: #111111;
}

.ssc-dark-theme .main-image-container-ssc {
  background: #1a1a1a;
  border: 1px solid #333;
}

.ssc-dark-theme .vehicle-info-ssc {
  background: #111111;
}

.ssc-dark-theme .attention-grabber-ssc {
  background: #ffffff;
  color: #000000;
}

.ssc-dark-theme .vehicle-title-ssc {
  color: #ffffff;
}

.ssc-dark-theme .price-value-ssc {
  color: #ffffff;
}

.ssc-dark-theme .key-specs-ssc {
  background: #1a1a1a;
  border: 1px solid #333;
}

.ssc-dark-theme .spec-label-ssc {
  color: #999;
}

.ssc-dark-theme .spec-value-ssc {
  color: #ffffff;
}

.ssc-dark-theme .finance-calculator-ssc {
  background: #1a1a1a;
  border: 2px solid #333;
}

.ssc-dark-theme .finance-calculator-ssc h3 {
  color: #ffffff;
}

.ssc-dark-theme .product-tabs {
  background: #0a0a0a;
  border: 2px solid #333;
}

.ssc-dark-theme .product-tab {
  color: #999;
}

.ssc-dark-theme .product-tab.active {
  background: #ffffff;
  color: #000000;
}

.ssc-dark-theme .finance-input-group label {
  color: #ffffff;
}

.ssc-dark-theme .input-with-currency input,
.ssc-dark-theme .finance-input-group select {
  background: #0a0a0a;
  border: 2px solid #333;
  color: #ffffff;
}

.ssc-dark-theme .finance-result-ssc {
  background: #0a0a0a;
  border: 1px solid #333;
}

.ssc-dark-theme .payment-label {
  color: #ffffff;
}

.ssc-dark-theme .payment-amount {
  color: #ffffff;
}

.ssc-dark-theme .breakdown-item {
  color: #ffffff;
}

.ssc-dark-theme .finance-apply-btn {
  background: #ffffff;
  color: #000000;
}

.ssc-dark-theme .finance-apply-btn:hover {
  background: #f0f0f0;
}

.ssc-dark-theme .btn-primary-ssc {
  background: #ffffff;
  color: #000000;
}

.ssc-dark-theme .btn-primary-ssc:hover {
  background: #f0f0f0;
}

.ssc-dark-theme .btn-secondary-ssc {
  background: #0a0a0a;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ssc-dark-theme .btn-secondary-ssc:hover {
  background: #ffffff;
  color: #000000;
}

.ssc-dark-theme .btn-tertiary-ssc {
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #333;
}

.ssc-dark-theme .btn-tertiary-ssc:hover {
  border-color: #ffffff;
}

.ssc-dark-theme .vehicle-details-tabs-ssc {
  background: #0a0a0a;
}

.ssc-dark-theme .tab-btn-ssc {
  color: #999;
}

.ssc-dark-theme .tab-btn-ssc:hover {
  color: #ffffff;
}

.ssc-dark-theme .tab-btn-ssc.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.ssc-dark-theme .tab-content-ssc {
  background: #111111;
  border: 1px solid #333;
}

.ssc-dark-theme .spec-category {
  background: #1a1a1a;
}

.ssc-dark-theme .spec-category h3 {
  color: #ffffff;
}

.ssc-dark-theme .spec-name {
  color: #999;
}

.ssc-dark-theme .spec-detail {
  color: #ffffff;
}

.ssc-dark-theme .feature-item {
  background: #1a1a1a;
  color: #ffffff;
}

.ssc-dark-theme .description-content-ssc {
  color: #ffffff;
}

.ssc-dark-theme .finance-options-ssc h3 {
  color: #ffffff;
}

.ssc-dark-theme .finance-product {
  background: #1a1a1a;
  border: 2px solid #333;
}

.ssc-dark-theme .finance-product h4 {
  color: #ffffff;
}

.ssc-dark-theme .finance-product p {
  color: #999;
}

.ssc-dark-theme .finance-product li {
  color: #ffffff;
}

.ssc-dark-theme .related-vehicles-section-ssc {
  background: #0a0a0a;
}

.ssc-dark-theme .related-vehicles-section-ssc h2 {
  color: #ffffff;
}

/* Breadcrumb - SSC Style */
.breadcrumb-section-ssc {
  background: var(--off-white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.ssc-dark-theme .breadcrumb-section-ssc {
  background: #0a0a0a;
  border-bottom: 1px solid #333;
}

.ssc-dark-theme .breadcrumb-ssc {
  color: #ffffff;
}

.ssc-dark-theme .breadcrumb-ssc a {
  color: #999;
}

.ssc-dark-theme .breadcrumb-ssc a:hover {
  color: #ffffff;
}

.breadcrumb-ssc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.breadcrumb-ssc a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-ssc a:hover {
  color: var(--primary-black);
}

/* Vehicle Hero Section - SSC Style */
.vehicle-hero-ssc {
  padding: 2rem 0;
  background: var(--pure-white);
}

.vehicle-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Vehicle Images - SSC Style */
.vehicle-images-ssc {
  position: sticky;
  top: 100px;
  max-width: 100%;
  overflow: hidden;
}

.main-image-container-ssc {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 100%;
}

.main-vehicle-image-ssc {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 700px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

/* Responsive image sizing */
@media (max-width: 768px) {
  .main-vehicle-image-ssc {
    min-height: 400px;
    max-height: 550px;
  }
}

@media (max-width: 480px) {
  .main-vehicle-image-ssc {
    min-height: 300px;
    max-height: 450px;
  }
}

.image-navigation-ssc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.image-nav-btn-ssc {
  background: rgba(0, 0, 0, 0.7);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-nav-btn-ssc:hover {
  background: var(--primary-black);
  transform: scale(1.1);
}

.image-counter-ssc {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile: reduce opacity so circles don't block image */
@media (max-width: 768px) {
  .image-counter-ssc {
    background: rgba(0, 0, 0, 0.25);
  }
  
  .image-nav-btn-ssc {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .image-nav-btn-ssc:hover,
  .image-nav-btn-ssc:active {
    background: rgba(0, 0, 0, 0.4);
  }
  
  /* Make images full-width on mobile - remove padding and borders */
  .main-image-container-ssc {
    border-radius: 0;
    padding: 0;
    margin: 0 -1rem; /* Extend to full width, compensate for parent padding */
    max-width: calc(100% + 2rem);
    box-shadow: none;
  }
  
  .main-vehicle-image-ssc {
    border-radius: 0;
    min-height: 250px;
    max-height: 400px;
  }
  
  .vehicle-image-ssc img {
    border-radius: 0;
  }
}

/* Single Line Gallery with Navigation */
.single-line-gallery-ssc {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}

.gallery-container-ssc {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-track-ssc {
  display: flex;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  padding: 0.5rem 0;
}

.gallery-thumbnail-ssc {
  flex: 0 0 80px;
  height: 60px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  object-fit: cover;
  border: 2px solid transparent;
}

.gallery-thumbnail-ssc:hover {
  border-color: #ffffff;
  transform: scale(1.05);
}

.gallery-thumbnail-ssc.active {
  border-color: #ffffff;
}

.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gallery-nav-btn:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Vehicle Description Below Gallery */
.vehicle-description-below-gallery {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
}

.vehicle-description-below-gallery h3 {
  margin: 0 0 1rem 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.description-text {
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Dark theme for gallery */
.ssc-dark-theme .gallery-thumbnail-ssc:hover {
  border-color: #ffffff;
}

.ssc-dark-theme .gallery-thumbnail-ssc.active {
  border-color: #ffffff;
}

/* Vehicle Info Section - SSC Style */
.vehicle-info-ssc {
  background: var(--pure-white);
}

.vehicle-header-ssc {
  margin-bottom: 2rem;
}

.attention-grabber-ssc {
  background: var(--primary-black);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: inline-block;
}

.vehicle-title-ssc {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-black);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.vehicle-price-ssc {
  margin-bottom: 2rem;
}

.price-value-ssc {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-black);
}

/* Key Specs - SSC Style */
.key-specs-ssc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
}

.spec-item-ssc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label-ssc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value-ssc {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-black);
}

/* Finance Calculator - SSC Style */
.finance-calculator-ssc {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid var(--border-gray);
}

/* Finance Product Selector */
.finance-product-selector {
  margin-bottom: 1.5rem;
}

.finance-product-selector label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.product-tabs {
  display: flex;
  gap: 0;
  background: var(--pure-white);
  border-radius: 6px;
  padding: 4px;
  border: 2px solid var(--border-gray);
}

.product-tab {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab.active {
  background: var(--primary-black);
  color: var(--pure-white);
}

.product-tab:hover:not(.active) {
  background: var(--border-gray);
  color: var(--primary-black);
}

.finance-calculator-ssc h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-black);
}

.finance-inputs-ssc {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.finance-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.finance-input-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-black);
}

.input-with-currency {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 12px;
  color: var(--warm-gray);
  font-weight: 500;
  z-index: 2;
}

.input-with-currency input {
  padding: 12px 12px 12px 32px;
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.input-with-currency input:focus {
  outline: none;
  border-color: var(--primary-black);
}

.finance-input-group select {
  padding: 12px;
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--pure-white);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.finance-input-group select:focus {
  outline: none;
  border-color: var(--primary-black);
}

.finance-result-ssc {
  background: var(--pure-white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gray);
}

.balloon-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}

.finance-breakdown {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-gray);
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.breakdown-item:last-child {
  margin-bottom: 0;
  font-weight: 600;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-gray);
}

.monthly-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.payment-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-black);
}

.payment-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-black);
}

.finance-details {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.4;
}

.finance-apply-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-black);
  color: var(--pure-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.finance-apply-btn:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
}

/* Action Buttons - SSC Style */
.vehicle-actions-ssc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary-ssc {
  padding: 14px 24px;
  background: var(--primary-black);
  color: var(--pure-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-primary-ssc:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
}

.btn-secondary-ssc {
  padding: 14px 24px;
  background: var(--pure-white);
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-secondary-ssc:hover {
  background: var(--primary-black);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-tertiary-ssc {
  padding: 14px 24px;
  background: var(--off-white);
  color: var(--primary-black);
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: block;
}

.btn-tertiary-ssc:hover {
  border-color: var(--primary-black);
  transform: translateY(-2px);
}

/* Vehicle Details Tabs - SSC Style */
.vehicle-details-tabs-ssc {
  padding: 3rem 0;
  background: var(--off-white);
}

.tab-navigation-ssc {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-gray);
}

.tab-btn-ssc {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn-ssc:hover {
  color: var(--primary-black);
}

.tab-btn-ssc.active {
  color: var(--primary-black);
  border-bottom-color: var(--primary-black);
  font-weight: 600;
}

.tab-content-ssc {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tab-panel-ssc {
  display: none;
}

.tab-panel-ssc.active {
  display: block;
}

/* Specifications Grid - SSC Style */
.specs-grid-ssc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.spec-category {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 8px;
}

.spec-category h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-black);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.spec-detail {
  font-size: 0.9rem;
  color: var(--primary-black);
  font-weight: 600;
}

/* Features Grid - SSC Style */
.features-grid-ssc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  background: var(--off-white);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 700;
}

/* Description Content - SSC Style */
.description-content-ssc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-black);
}

/* Finance Options - SSC Style */
.finance-options-ssc h3 {
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
}

.finance-products-ssc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.finance-product {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
}

.finance-product h4 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-black);
}

.finance-product p {
  margin: 0 0 1.5rem 0;
  color: var(--warm-gray);
  line-height: 1.5;
}

.finance-product ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.finance-product li {
  padding: 0.5rem 0;
  color: var(--primary-black);
  font-weight: 500;
}

/* Related Vehicles - SSC Style */
.related-vehicles-section-ssc {
  padding: 3rem 0;
  background: var(--pure-white);
}

.related-vehicles-section-ssc h2 {
  margin: 0 0 2rem 0;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-black);
  text-align: center;
}

.related-vehicles-grid-ssc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Responsive Design - SSC Style */
@media (max-width: 1024px) {
  .vehicle-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vehicle-images-ssc {
    position: static;
  }
  
  .key-specs-ssc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vehicle-title-ssc {
    font-size: 1.5rem;
  }
  
  .price-value-ssc {
    font-size: 2rem;
  }
  
  .tab-navigation-ssc {
    flex-wrap: wrap;
  }
  
  .tab-btn-ssc {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .finance-products-ssc {
    grid-template-columns: 1fr;
  }
  
  .vehicle-actions-ssc {
    gap: 0.75rem;
  }
}

/* ===== ORIGINAL VEHICLE DETAILS PAGE ===== */
.vehicle-details-page {
  background: var(--pure-white);
}

/* Breadcrumb Navigation */
.breadcrumb-section {
  background: var(--off-white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--elegant-gold);
}

.breadcrumb-separator {
  color: var(--warm-gray);
  font-weight: 300;
}

/* Vehicle Header */
.vehicle-header {
  background: var(--regal-black);
  color: var(--pure-white);
  padding: 3rem 0;
}

.vehicle-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.vehicle-title-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--pure-white);
}

.vehicle-price-badge {
  background: var(--elegant-gold);
  color: var(--regal-black);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  justify-content: center;
}

.vehicle-price-badge .price-label {
  font-size: 1rem;
  font-weight: 500;
}

.vehicle-price-badge .price-value {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Vehicle Content Layout */
.vehicle-content {
  padding: 4rem 0;
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Vehicle Images Section */
.vehicle-images-section {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.main-image-container {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
}

.main-vehicle-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
    display: block;
  min-height: 300px;
  object-fit: cover;
}

.image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.image-nav-btn {
  background: rgba(0, 0, 0, 0.7);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
    width: 50px;
    height: 50px;
  font-size: 1.5rem;
    cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-nav-btn:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  transform: scale(1.1);
}

.image-counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-thumbnail:hover {
  border-color: var(--elegant-gold);
  transform: scale(1.05);
}

.gallery-thumbnail.active {
  border-color: var(--elegant-gold);
  transform: scale(1.05);
}

/* Vehicle Info Section */
.vehicle-info-section {
    display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Key Specifications Card */
.key-specs-card {
  background: var(--pure-white);
  border: 1px solid var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.key-specs-card h2 {
  color: var(--regal-black);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 0.5rem;
}

.key-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.key-spec-item {
  display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--elegant-gold);
}

.key-spec-label {
  font-weight: 600;
  color: var(--regal-black);
  font-size: 0.95rem;
}

.key-spec-value {
  font-weight: 500;
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* Enquiry Section */
.enquiry-section {
  background: var(--regal-black);
  color: var(--pure-white);
  padding: 2rem;
  border-radius: 12px;
    text-align: center;
  }
  
.enquiry-section h3 {
  color: var(--elegant-gold);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.enquiry-section p {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.enquiry-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
    border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
    text-align: center;
}

.btn-large.btn-primary {
  background: var(--elegant-gold);
  color: var(--regal-black);
}

.btn-large.btn-primary:hover {
  background: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-large.btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-large.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--regal-black);
  transform: translateY(-2px);
}

/* Full Specifications Section */
.full-specs-section {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.full-specs-section h2 {
  color: var(--regal-black);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
    text-align: center;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 1rem;
}

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

.spec-category {
  background: var(--pure-white);
  padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.spec-category h3 {
  color: var(--regal-black);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--elegant-gold);
  padding-bottom: 0.5rem;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--off-white);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  font-weight: 500;
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.spec-detail {
  font-weight: 600;
  color: var(--regal-black);
  font-size: 0.9rem;
}

/* Vehicle Description Section */
.vehicle-description-section {
  background: var(--pure-white);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--off-white);
}

.vehicle-description-section h2 {
  color: var(--regal-black);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 1rem;
}

.description-content {
  color: var(--warm-gray);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  background: var(--pure-white);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--off-white);
}

.features-section h2 {
  color: var(--regal-black);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
    text-align: center;
  border-bottom: 2px solid var(--elegant-gold);
  padding-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  background: var(--off-white);
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid var(--elegant-gold);
  font-size: 0.95rem;
  color: var(--regal-black);
  font-weight: 500;
}

/* Related Vehicles Section */
.related-vehicles-section {
  background: var(--off-white);
  padding: 4rem 0;
}

.related-vehicles-section h2 {
  color: var(--regal-black);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

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

/* Vehicle Details Page Responsive */
@media (max-width: 1024px) {
  .vehicle-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vehicle-images-section {
    position: static;
  }
  
  .vehicle-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .vehicle-price-badge {
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .vehicle-title-section h1 {
    font-size: 2rem;
  }
  
  .vehicle-price-badge {
    padding: 0.75rem 1.5rem;
  }
  
  .vehicle-price-badge .price-value {
    font-size: 1.5rem;
  }
  
  .full-specs-section,
  .vehicle-description-section,
  .features-section {
    padding: 2rem;
  }
  
  .specs-categories {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MODERN HEADER REDESIGN ===== */
.site-header-modern {
  background: var(--pure-white);
  color: var(--regal-black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e9ecef;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.header-logo .logo {
  height: 50px;
  width: auto;
}

.header-search {
  flex: 1;
  max-width: 400px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
    width: 100%;
  padding: 12px 50px 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.search-input:focus {
  outline: none;
  border-color: var(--elegant-gold);
  background: var(--pure-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  background: var(--elegant-gold);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.search-btn:hover {
  background: var(--gold-accent);
  transform: scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone-modern {
  color: var(--regal-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.header-phone-modern:hover {
  color: var(--elegant-gold);
}

.btn-header-cta {
  background: var(--elegant-gold);
  color: var(--pure-white);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--elegant-gold);
}

.btn-header-cta:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  transform: translateY(-1px);
}

.nav-modern {
  border-top: 1px solid #e9ecef;
  padding: 0.5rem 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--regal-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--elegant-gold);
  background: rgba(201, 169, 97, 0.1);
}

.nav-link.nav-cta {
  background: var(--regal-black);
  color: var(--pure-white);
  font-weight: 600;
}

.nav-link.nav-cta:hover {
  background: var(--elegant-gold);
  color: var(--pure-white);
}

/* ===== HERO SLIDER REDESIGN ===== */
.hero-slider-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
    position: absolute;
  top: 0;
  left: 0;
    width: 100%;
    height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  color: var(--pure-white);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--elegant-gold);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-accent-hero {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary-hero {
  background: var(--elegant-gold);
  color: var(--pure-white);
  border-color: var(--elegant-gold);
}

.btn-primary-hero:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-secondary-hero {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.btn-secondary-hero:hover {
  background: var(--pure-white);
  color: var(--regal-black);
  transform: translateY(-2px);
}

.btn-accent-hero {
  background: var(--regal-black);
  color: var(--pure-white);
  border-color: var(--regal-black);
}

.btn-accent-hero:hover {
  background: var(--deep-charcoal);
  border-color: var(--deep-charcoal);
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 3;
}

.hero-nav {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: rgba(201, 169, 97, 0.8);
  border-color: var(--elegant-gold);
  transform: scale(1.1);
}

.hero-indicators {
    display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--elegant-gold);
  transform: scale(1.2);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-card {
  background: var(--pure-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--elegant-gold);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
    display: block;
  }
  
.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 1rem;
}

.trust-card p {
  color: var(--warm-gray);
  line-height: 1.6;
}

.reviews-widget {
  background: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 0.5rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.stars {
  font-size: 1.2rem;
}

.rating-text {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-snippet {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--elegant-gold);
}

.review-snippet p {
  font-style: italic;
  color: var(--regal-black);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.review-author {
  font-weight: 600;
  color: var(--warm-gray);
  font-size: 0.9rem;
}

/* ===== MODERN FOOTER ===== */
.site-footer-modern {
  background: var(--regal-black);
  color: var(--pure-white);
  padding: 3rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--elegant-gold);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--elegant-gold);
}

.contact-info .contact-link {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info .contact-link:hover {
  color: var(--elegant-gold);
}

.address p {
  margin-bottom: 0.25rem;
  color: #cccccc;
}

.opening-hours .hours-row {
  display: flex;
    justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.hours-note {
  font-style: italic;
  color: var(--elegant-gold);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-map {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Footer social icons - ensure left alignment */
.site-footer .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  width: 100%;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.social-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.2);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
}

.sticky-cta-btn {
  background: var(--elegant-gold);
  color: var(--pure-white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
  transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
  background: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Mobile WhatsApp positioning - bottom right corner */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 15px;
    z-index: 9999;
  }
  
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  
  .whatsapp-btn img {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== FINANCE CALCULATOR FLOAT ===== */
.finance-calculator-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
}

.finance-calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--elegant-gold);
    border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
    font-size: 24px;
  animation: financeCalcPulse 3s infinite;
}

.finance-calc-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.4);
  background: var(--gold-accent);
}

@keyframes financeCalcPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== FINANCE CALCULATOR MODAL ===== */
.finance-calculator-modal {
  position: fixed;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.finance-calculator-content {
  background: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

.calculator-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
    border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--warm-gray);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.calculator-close:hover {
  background: #f8f9fa;
  color: var(--regal-black);
}

.finance-calculator-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 2rem;
    text-align: center;
}

.calculator-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 0.5rem;
    font-size: 14px;
  }
  
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--elegant-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.calculator-results {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
    text-align: center;
  border: 2px solid var(--elegant-gold);
}

.calculator-results h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 1rem;
}

.monthly-payment {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--elegant-gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.payment-breakdown p {
  margin-bottom: 0.5rem;
  color: var(--warm-gray);
  font-size: 14px;
}

.payment-breakdown span {
  font-weight: 600;
  color: var(--regal-black);
}

.calculator-disclaimer {
  font-size: 12px;
  color: var(--warm-gray);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.4;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --space-xxxl: 3rem;
  }

  .header-main {
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 0;
  }

  .header-search {
    order: 3;
    max-width: 100%;
  }

  .header-actions {
    order: 2;
    justify-content: space-between;
    width: 100%;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 12px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-accent-hero {
    padding: 12px 24px;
    font-size: 15px;
    text-align: center;
  }

  .hero-controls {
    bottom: 20px;
    gap: 1rem;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-card {
    padding: 2rem 1.5rem;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .finance-calculator-float {
    bottom: 160px;
    right: 15px;
  }

  .finance-calc-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta-group {
    width: 100%;
  }

  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-accent-hero {
    width: 100%;
  }

  .trust-card {
    padding: 1.5rem 1rem;
  }

  .trust-icon {
    font-size: 2.5rem;
  }
}

/* ===== FINANCE PAGE FIXES ===== */
.image-overlay .overlay-text h3,
.image-overlay .overlay-text p {
  color: var(--pure-white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.image-overlay .overlay-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-overlay .overlay-text p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-method .method-details h4,
.contact-method .method-details p {
  color: var(--regal-black) !important;
}

.contact-method .method-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method .method-details p {
  color: var(--warm-gray) !important;
  font-size: 0.9rem;
}

.contact-method .method-details a {
  color: var(--regal-black) !important;
  text-decoration: none;
  font-weight: 500;
}

.contact-method .method-details a:hover {
  color: var(--elegant-gold) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .header-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .header-contact {
    justify-self: start;
  }
  
  .social-icons {
    justify-self: end;
  }
  
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .site-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .vehicle-actions {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .form-luxury {
    padding: var(--space-lg);
  }
  
  .vehicle-card {
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

/* ===== LOADING STATES ===== */
.loading-state {
  text-align: center;
  padding: var(--space-xxl);
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
  border-top-color: var(--luxury-gold);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-state {
  text-align: center;
  padding: var(--space-xxl);
  color: #dc3545;
}

.no-stock {
  text-align: center;
  padding: var(--space-xxl);
  color: var(--text-muted);
}

/* ===== FINANCE CALCULATOR SPECIFIC ===== */
.finance-hero {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.9) 0%, 
    rgba(30, 42, 61, 0.9) 100%),
    url('../img/hero-bg.jpg') center/cover;
  padding: 8rem 0 4rem;
  color: var(--text-light);
  text-align: center;
}

.finance-calculator {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.1);
  margin: -4rem auto 0;
  position: relative;
  z-index: 10;
  max-width: 1000px;
}

/* Dark theme finance calculator - box goes dark, text white */
.ssc-dark-theme .finance-calculator {
  background: var(--primary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
}

.ssc-dark-theme .finance-calculator h2 {
  color: var(--pure-white) !important;
}

/* Dark theme form elements */
.ssc-dark-theme .form-input,
.ssc-dark-theme .form-select {
  background: var(--secondary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
}

.ssc-dark-theme .form-label {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .text-large {
  color: var(--pure-white) !important;
}

/* ===== AFTER SALES LAYOUT ===== */
.after-sales-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-promise h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--pure-white);
}

.service-content {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  margin-bottom: 2rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--pure-white) !important;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-feature {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-black);
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-black);
}

.service-feature h4 {
  margin-bottom: 0.5rem;
  color: var(--pure-white);
  font-size: 1.1rem;
}

.service-feature p {
  font-size: 0.9rem;
  color: var(--pure-white);
  margin: 0;
}

.service-support {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  position: sticky;
  top: 2rem;
}

.service-support h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.support-contact {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-label {
  font-weight: 600;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--accent-gold);
}

.contact-info {
  color: var(--pure-white);
}

/* ===== VEHICLE SOURCING LAYOUT ===== */
.sourcing-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sourcing-expertise h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--pure-white);
}

.sourcing-content {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  margin-bottom: 2rem;
}

.sourcing-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--pure-white);
}

.sourcing-content p:last-child {
  margin-bottom: 0;
}

.sourcing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sourcing-feature {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-black);
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
}

.sourcing-feature h4 {
  margin-bottom: 0.5rem;
  color: var(--pure-white);
  font-size: 1.1rem;
}

.sourcing-feature p {
  font-size: 0.9rem;
  color: var(--pure-white);
  margin: 0;
}

.sourcing-support {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  position: sticky;
  top: 2rem;
}

.sourcing-support h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* ===== CONTACT PAGE LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-section {
  grid-column: 1 / -1;
}

.contact-info-section {
  grid-column: 1 / -1;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-info-grid .info-group {
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  background: var(--secondary-black);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-info-grid .info-content {
  flex: 1;
}

.contact-info-grid .info-content h3 {
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.contact-details, .address-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-grid .contact-label {
  font-weight: 600;
  color: var(--accent-gold) !important;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-info-grid .contact-link {
  color: var(--pure-white) !important;
  text-decoration: none;
  font-size: 1rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--pure-white) !important;
}

/* Dark theme overrides for contact page */
.ssc-dark-theme .contact-form {
  background: var(--secondary-black) !important;
  color: var(--pure-white) !important;
}

.ssc-dark-theme .contact-form input,
.ssc-dark-theme .contact-form textarea {
  background: var(--primary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
}

.ssc-dark-theme .contact-form input::placeholder,
.ssc-dark-theme .contact-form textarea::placeholder {
  color: #999 !important;
}

.ssc-dark-theme .info-content h3 {
  color: var(--accent-gold) !important;
}

.ssc-dark-theme .info-content p,
.ssc-dark-theme .info-content .contact-link {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .hours-info p {
  color: var(--pure-white) !important;
}

/* ===== HOMEPAGE DARK THEME ===== */
.ssc-dark-theme .services-cta {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

.ssc-dark-theme .services-cta h2 {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .services-cta p {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .testimonials {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

.ssc-dark-theme .testimonials h2 {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .testimonials .subtitle {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .review-card {
  background: var(--secondary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
  padding: 2rem !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.ssc-dark-theme .review-text {
  color: var(--pure-white) !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  font-style: italic !important;
}

.ssc-dark-theme .review-author {
  color: var(--accent-gold) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.ssc-dark-theme .review-stars {
  color: var(--accent-gold) !important;
  font-size: 1.2rem !important;
  margin-bottom: 1rem !important;
}

.ssc-dark-theme .scroll-hint {
  color: var(--pure-white) !important;
  opacity: 0.8 !important;
}

.ssc-dark-theme .nav-btn {
  background: var(--secondary-black) !important;
  border: 2px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
}

.ssc-dark-theme .nav-btn:hover {
  background: var(--accent-gold) !important;
  color: var(--primary-black) !important;
  transform: scale(1.1) !important;
}

/* About section dark theme */
.ssc-dark-theme .about-section {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

.ssc-dark-theme .about-content-modern {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

.ssc-dark-theme .about-header h2 {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .about-subtitle {
  color: var(--accent-gold) !important;
}

.ssc-dark-theme .about-description p {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .about-closing {
  color: var(--accent-gold) !important;
}

.ssc-dark-theme .about-cta {
  background: var(--secondary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
}

.contact-form {
  background: var(--secondary-black) !important;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--primary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999 !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--primary-black) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--pure-white) !important;
  outline: none;
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}


.info-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--secondary-black);
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  flex-shrink: 0;
}

.info-content h3 {
  color: var(--accent-gold) !important;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-content p,
.info-content .contact-link {
  color: var(--pure-white) !important;
  margin: 0;
  line-height: 1.5;
}

.contact-link {
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--accent-gold);
}

.hours-info p {
  margin-bottom: 0.5rem;
}

.hours-info p:last-child {
  margin-bottom: 0;
}

/* Combined contact groups */
.combined-group {
  min-height: auto;
  padding: 2rem;
}

.contact-details,
.location-hours {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.address-section,
.hours-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-label {
  font-weight: 600;
  color: var(--accent-gold) !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* Responsive contact layout */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive sourcing features */
@media (max-width: 768px) {
  .sourcing-features {
    grid-template-columns: 1fr;
  }
  
  .sourcing-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== VIP PAGE LAYOUT ===== */
.vip-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vip-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--pure-white);
}

.vip-content .service-content {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  margin-bottom: 2rem;
}

.vip-content .service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--pure-white);
}

.vip-content .service-content p:last-child {
  margin-bottom: 0;
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vip-feature {
  padding: 2rem;
  background: var(--secondary-black);
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.vip-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.vip-feature .feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
}

.vip-feature h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.vip-feature p {
  color: var(--pure-white);
  line-height: 1.7;
  margin: 0;
}

.vip-contact {
  background: var(--secondary-black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  position: sticky;
  top: 2rem;
}

.vip-contact h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.vip-contact .contact-item {
  margin-bottom: 2rem;
}

.vip-contact .contact-label {
  font-weight: 600;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-contact .contact-link {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.vip-contact .contact-link:hover {
  color: var(--accent-gold);
}

.vip-contact .contact-info {
  color: var(--pure-white);
}

/* VIP Exclusive Note */
.vip-exclusive-note {
  color: var(--accent-gold) !important;
  font-style: italic;
  font-weight: 600;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1rem;
  margin-top: 1rem;
}

/* VIP Contact Redesign */
.vip-contact-info {
  margin-bottom: 1.5rem;
}

.vip-contact-intro {
  color: var(--pure-white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vip-contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vip-contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--primary-black);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.vip-contact-option:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.vip-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  flex-shrink: 0;
}

.vip-contact-link,
.vip-contact-text {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.vip-contact-link:hover {
  color: var(--accent-gold);
}

.vip-cta-btn {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* Responsive VIP layout */
@media (max-width: 768px) {
  .vip-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vip-contact {
    position: static;
    margin-top: 2rem;
  }
  
  .vip-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vip-feature {
    padding: 1.5rem;
  }
  
  .vip-intro h2 {
    font-size: 1.5rem;
  }
}

/* Hide mobile menu button and overlay on desktop */
.mobile-menu-btn {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

/* Hide header contact on medium screens to prevent overlap */
@media (max-width: 1200px) {
  .header-contact {
    display: none !important;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  /* Global mobile fixes */
  .container {
    padding: 0 1rem;
  }
  
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-btn {
    display: block !important;
  }
  
  .nav-container {
    display: none !important;
  }
  
  /* Header mobile layout with hamburger */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
.header-contact,
.header-contact .social-icons {
  display: none !important;
}
  
  .logo {
    max-width: 120px;
    height: auto;
  }
  
  /* Hamburger menu button */
  .mobile-menu-btn {
    display: block !important;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 8px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.1);
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile navigation overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-y: auto;
  }
  
  .mobile-nav-overlay.active {
    display: flex !important;
  }
  
  .mobile-nav-overlay .site-nav {
    width: 90%;
    max-width: 350px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  
  .mobile-nav-overlay .site-nav ul {
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .mobile-nav-overlay .site-nav li {
    margin: 0;
    width: 100%;
  }
  
  .mobile-nav-overlay .site-nav a {
    font-size: 1.1rem;
    color: var(--pure-white);
    text-decoration: none;
    padding: 1.5rem 2rem;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-sizing: border-box;
  }
  
  .mobile-nav-overlay .site-nav a:hover,
  .mobile-nav-overlay .site-nav a.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
  }
  
  .mobile-nav-overlay .site-nav li:last-child a {
    border-bottom: none;
  }
  
  .mobile-nav-overlay .site-nav li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .mobile-nav-overlay .site-nav li:last-child a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  
  /* Hide desktop nav on mobile only */
  
  /* Hero sections mobile - compact */
  .ssc-hero {
    padding: 1.5rem 0;
    /* Mobile responsive height that scales with width */
    height: clamp(40vh, 15vw + 30vh, 60vh);
    min-height: 300px;
    max-height: 500px;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center 20% !important;
  }
  
  /* Mobile-specific hero images */
  .ssc-hero.hero-1 {
    background-image: url('/assets/img/hero/mhero1.jpg?v=2025') !important;
    background-color: #1a1a1a !important; /* Fallback for debugging */
  }
  
  .ssc-hero.hero-2 {
    background-image: url('/assets/img/hero/mhero2.jpg?v=2025') !important;
    background-color: #2a2a2a !important; /* Fallback for debugging */
  }
  
  .ssc-hero.hero-3 {
    background-image: url('/assets/img/hero/mhero3.jpg?v=2025') !important;
    background-color: #3a3a3a !important; /* Fallback for debugging */
  }
  
  .ssc-hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .ssc-hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .ssc-hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Prevent swipe on mobile */
  body {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
  }
  
  /* Testimonials mobile fix */
  .testimonials {
    padding: 2rem 0 !important;
    overflow-x: hidden !important;
  }
  
  .reviews-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .review-card {
    min-width: 85vw;
    scroll-snap-align: center;
    margin-right: 1rem;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .testimonials .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Stock page mobile - hide sidebar by default */
  .stock-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stock-sidebar {
    display: none;
  }
  
  .stock-sidebar.mobile-active {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-black);
    z-index: 999;
    overflow-y: auto;
    padding: 1rem;
    border-top: 2px solid var(--accent-gold);
  }
  
  /* Filter toggle button */
  .filter-toggle-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary-black);
    border: 2px solid var(--accent-gold);
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .stock-content {
    margin-left: 0;
  }
  
  .vehicle-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stock-search-controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ssc-search-bar {
    width: 100%;
  }
  
  .ssc-sort-select-main {
    width: 100%;
  }
  
  /* Filter groups always collapsed on mobile */
  .filter-group-content {
    max-height: 0;
    overflow: hidden;
  }
  
  .filter-group.active .filter-group-content {
    max-height: 500px;
  }
  
  /* Vehicle cards mobile */
  .vehicle-card-ssc {
    margin-bottom: 1.5rem;
  }
  
  .vehicle-image-ssc {
    height: 200px;
  }
  
  .vehicle-content-ssc {
    padding: 1rem;
  }
  
  .vehicle-title-ssc {
    font-size: 1.2rem;
    height: auto;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .vehicle-actions-ssc {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-chat-ssc,
  .btn-reserve-ssc {
    width: 100%;
    padding: 0.75rem;
  }
  
  /* Vehicle details mobile */
  .vehicle-details-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vehicle-gallery-ssc {
    order: 1;
  }
  
  .vehicle-info-ssc {
    order: 2;
  }
  
  .main-vehicle-image-ssc {
    height: 300px;
    min-height: 300px;
    max-height: 400px;
  }
  
  .vehicle-title-section h1 {
    font-size: 1.8rem;
  }
  
  .vehicle-price-badge {
    padding: 0.75rem 1rem;
  }
  
  .vehicle-price-badge .price-value {
    font-size: 1.5rem;
  }
  
  .vehicle-actions-ssc {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-primary-ssc,
  .btn-secondary-ssc,
  .btn-tertiary-ssc {
    width: 100%;
    padding: 0.75rem;
  }
  
  .finance-calculator {
    padding: 1.5rem;
  }
  
  .finance-input-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-navigation-ssc {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-btn-ssc {
    width: 100%;
  }
  
  /* Finance page mobile */
  .finance-contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .method-icon {
    margin: 0 auto;
  }
  
  /* After-sales page mobile */
  .after-sales-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-support {
    position: static;
    margin-top: 2rem;
  }
  
  .service-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-feature {
    padding: 1rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-promise h2 {
    font-size: 1.5rem;
  }
  
  .service-support h3 {
    font-size: 1.2rem;
  }
  
  /* Sourcing page mobile */
  .sourcing-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sourcing-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sourcing-feature {
    padding: 1rem;
  }
  
  /* Contact page mobile */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-group {
    padding: 1rem;
  }
  
  /* Homepage mobile */
  .services-cta {
    padding: 3rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  .testimonials {
    padding: 3rem 0;
  }
  
  .reviews-container {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .review-card {
    min-width: 280px;
    margin-right: 1rem;
  }
  
  .about-section {
    padding: 3rem 0;
  }
  
  .about-header h2 {
    font-size: 2rem;
  }
  
  .about-description p {
    text-align: center;
  }
  
  .about-cta {
    padding: 2rem;
    text-align: center;
  }
  
  /* Footer mobile */
  .ssc-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 2rem;
  }
  
  .ssc-footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  /* Maps mobile */
  .map-container-ssc iframe {
    height: 300px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .ssc-hero-title {
    font-size: 1.8rem;
  }
  
  .ssc-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .vehicle-title-ssc {
    font-size: 1.1rem;
  }
  
  .price-value-ssc {
    font-size: 1.5rem;
  }
  
  .main-vehicle-image-ssc {
    height: 250px;
    min-height: 250px;
    max-height: 350px;
  }
  
  .service-content,
  .sourcing-content {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix,
.input-suffix {
  position: absolute;
  color: var(--luxury-gold);
  font-weight: 600;
  font-size: 1rem;
  z-index: 5;
}

.input-prefix {
  left: 1rem;
}

.input-suffix {
  right: 1rem;
}

.input-wrapper .form-input {
  padding-left: 2.5rem;
}

.input-wrapper:has(.input-suffix) .form-input {
  padding-right: 2.5rem;
}

.finance-result {
  background: linear-gradient(135deg, 
    var(--luxury-gold) 0%, 
    var(--luxury-gold-light) 100%);
  color: var(--luxury-black);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-strong);
  animation: fadeInUp 0.6s ease-out;
}

.finance-result h3 {
  color: var(--luxury-black);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.monthly-payment {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: var(--space-md) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-details {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid rgba(26, 26, 26, 0.1);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
  color: rgba(26, 26, 26, 0.8);
}

.result-value {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--luxury-black);
}

.result-disclaimer {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.7);
  font-style: italic;
}

.finance-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
}

.finance-features li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.bg-secondary {
  background: var(--bg-secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-luxury {
  background: var(--bg-secondary);
  padding: var(--space-xxxl) 0;
}

  .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.contact-card {
  background: var(--bg-primary);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--luxury-black);
  font-size: 1.5rem;
  font-weight: bold;
}

/* ===== MAP SECTION ===== */
.map-section {
  margin: var(--space-xxxl) 0;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== PREMIUM COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--regal-black) 0%, rgba(20, 20, 20, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--elegant-gold);
  color: var(--pure-white);
  padding: 1.5rem;
  z-index: 10000;
    display: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
    justify-content: space-between;
  gap: 2rem;
  }
  
.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
  color: var(--elegant-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-text h4::before {
  content: "🍪";
  font-size: 1.2rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pure-white);
}

.cookie-banner-text a {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: var(--pure-white);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
    border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
    cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.cookie-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
    width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cookie-btn:hover::before {
  left: 100%;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--elegant-gold) 0%, #d4af37 100%);
  color: var(--regal-black);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--elegant-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--elegant-gold);
  border: 2px solid var(--elegant-gold);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.cookie-btn-settings:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    width: 100%;
    padding: 1rem;
  }
  
  .cookie-btn-settings {
    order: -1;
    width: auto;
    align-self: center;
  }
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: var(--regal-black);
  border: 2px solid var(--elegant-gold);
  border-radius: 12px;
  padding: 2rem;
    max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--pure-white);
}

.cookie-settings-content h3 {
  color: var(--elegant-gold);
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}

.cookie-category {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.cookie-category h4 {
  color: var(--elegant-gold);
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--elegant-gold);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--off-white);
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 5rem 0;
  background: var(--primary-black);
  position: relative;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--regal-black);
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonials .subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--warm-gray);
  font-size: 1.1rem;
}

.reviews-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--elegant-gold) var(--off-white);
}

.reviews-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
  background: var(--secondary-black);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--elegant-gold), #d4af37);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #d4af37, var(--elegant-gold));
}

.review-card {
  min-width: 400px;
  max-width: 400px;
  background: var(--pure-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.2);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--elegant-gold);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--elegant-gold);
  font-family: serif;
  opacity: 0.3;
}

.review-stars {
  color: var(--elegant-gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-style: italic;
  color: var(--regal-black);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--warm-gray);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.review-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  background: linear-gradient(135deg, var(--elegant-gold), #d4af37);
  color: var(--regal-black);
    border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--regal-black), #1a1a1a);
  color: var(--elegant-gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Testimonials scroll hint */
.scroll-hint {
    text-align: center;
  margin-top: 1rem;
  color: var(--warm-gray);
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-hint::after {
  content: " →";
  color: var(--elegant-gold);
  font-weight: bold;
}

/* ===== SIMPLIFIED FINANCE SECTION ===== */
.finance-info-simple {
  max-width: 800px;
    margin: 0 auto;
}

.hp-benefits {
  background: var(--pure-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.hp-benefits h3 {
  color: var(--regal-black);
  margin-bottom: 2rem;
  font-size: 1.5rem;
    text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--off-white);
    border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  color: var(--elegant-gold);
    font-weight: bold;
  font-size: 1.2rem;
  min-width: 20px;
}

.other-options {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
    text-align: center;
  }
  
.other-options h4 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.other-options p {
  color: var(--warm-gray);
  line-height: 1.6;
}

.finance-disclaimer {
  background: linear-gradient(135deg, #fff3e0, #ffeaa7);
  border: 2px solid var(--elegant-gold);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.finance-disclaimer h4 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.finance-disclaimer p {
  color: var(--regal-black);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.finance-disclaimer p:last-child {
  margin-bottom: 0;
  font-style: italic;
}

  @media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .hp-benefits,
  .other-options,
  .finance-disclaimer {
    padding: 1.5rem;
  }
}

/* ===== FINANCE HELP SYSTEM ===== */
.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--elegant-gold);
  color: var(--regal-black);
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.help-icon:hover {
  background: var(--regal-black);
  color: var(--elegant-gold);
  transform: scale(1.1);
}

/* Finance Help Modal */
.finance-help-modal {
    position: fixed;
  top: 0;
  left: 0;
  right: 0;
    bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
    display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.finance-help-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.finance-help-content {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.help-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
    border: none;
  font-size: 1.5rem;
  color: var(--warm-gray);
    cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.help-close:hover {
  background: var(--off-white);
  color: var(--regal-black);
}

.help-title {
  color: var(--regal-black);
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.finance-option {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 2px solid var(--off-white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.finance-option:hover {
  border-color: var(--elegant-gold);
  background: rgba(201, 169, 97, 0.05);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.option-icon {
  font-size: 1.8rem;
}

.option-title {
  color: var(--regal-black);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.option-content {
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.option-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.option-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  color: var(--regal-black);
  font-size: 0.9rem;
}

.option-benefits li::before {
  content: '✓';
  color: var(--elegant-gold);
  font-weight: bold;
  font-size: 1rem;
}

.option-note {
  background: var(--off-white);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 4px solid var(--elegant-gold);
}

.option-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-style: italic;
}

@media (max-width: 768px) {
  .finance-help-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .option-benefits {
    grid-template-columns: 1fr;
  }
}

/* ===== FINANCE CONTACT SECTION ===== */
.finance-contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

/* Dark theme finance contact section */
.ssc-dark-theme .finance-contact-section {
  background: var(--primary-black) !important;
  color: var(--pure-white);
}

/* Only the heading and subtitle text should be white */
.ssc-dark-theme .finance-contact-section h2 {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .finance-contact-section .contact-subtitle {
  color: var(--pure-white) !important;
}

/* Dark theme contact method cards */
.ssc-dark-theme .contact-method {
  background: var(--secondary-black) !important;
  color: var(--pure-white) !important;
}

.ssc-dark-theme .contact-method .method-details h4,
.ssc-dark-theme .contact-method .method-details p {
  color: var(--pure-white) !important;
}

.ssc-dark-theme .contact-method .method-details a {
  color: var(--accent-gold) !important;
}

.finance-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.finance-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  color: var(--regal-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-subtitle {
  color: var(--warm-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--elegant-gold), #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-details h4 {
  color: var(--regal-black);
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-link {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--regal-black);
}

.method-details p {
  color: var(--warm-gray);
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
}

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

.finance-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.finance-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.finance-image:hover .finance-hero-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: var(--pure-white);
}

.overlay-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.overlay-text p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .finance-contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-method {
      flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .finance-hero-img {
    height: 250px;
  }
}

/* ===== AFTER SALES PAGE STYLING ===== */
.after-sales-hero {
  padding: 5rem 0;
  background: var(--pure-white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
      align-items: center;
    }
  
.hero-text h1 {
  color: var(--regal-black);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  color: var(--warm-gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
      flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--off-white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.service-hero-img, .sourcing-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.service-info-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.service-description h2 {
  color: var(--regal-black);
  font-size: 2.5rem;
  margin-bottom: 2rem;
      text-align: center;
    }
  
.service-description p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.benefit-card {
  background: var(--pure-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h4 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Contact Cards Modern */
.after-sales-contact, .sourcing-contact {
  padding: 5rem 0;
  background: var(--pure-white);
}

.after-sales-contact h2, .sourcing-contact h2 {
  text-align: center;
  color: var(--regal-black);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--warm-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
    margin: 0 auto;
}

.contact-card-modern {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--elegant-gold);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--elegant-gold), #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
}

.contact-card-modern h3 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.contact-number, .contact-email, .contact-location {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-number:hover, .contact-email:hover, .contact-location:hover {
  color: var(--regal-black);
}

.contact-card-modern p {
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== SOURCING PAGE STYLING ===== */
.sourcing-hero {
  padding: 5rem 0;
  background: var(--pure-white);
}


.sourcing-services {
  padding: 5rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.service-content {
  padding: 2rem;
}

.service-content h3 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-content p {
  color: var(--warm-gray);
  line-height: 1.6;
}

.sourcing-promise {
  text-align: center;
  padding: 3rem;
  background: var(--pure-white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sourcing-promise h2 {
  color: var(--regal-black);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sourcing-promise p {
  color: var(--warm-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== CLEAN PAGE LAYOUTS ===== */
.page-hero {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--regal-black);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  color: var(--warm-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-points {
  margin-bottom: 2rem;
}

.point {
  color: var(--regal-black);
  margin-bottom: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.content-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 25%, #f8f9fa 50%, #ffffff 75%, #f8f9fa 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 75%, rgba(201, 169, 97, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 75% 25%, rgba(201, 169, 97, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.text-content h2 {
  color: var(--regal-black);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.text-content p {
  color: var(--warm-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-simple {
  background: var(--pure-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.contact-simple h3 {
  color: var(--regal-black);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.contact-info-grid .contact-item {
  margin-bottom: 0.75rem;
  padding: 0;
  border-bottom: none;
}

.contact-info-grid .contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  color: var(--regal-black);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--regal-black);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-image img {
    height: 250px;
  }
}

/* ===== SERVICES CTA SECTION ===== */
.services-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--regal-black), #1a1a1a);
  color: var(--pure-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--pure-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  color: var(--off-white);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
    border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  justify-content: center;
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--elegant-gold), #d4af37);
  color: var(--regal-black);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary.btn-large:hover {
  background: linear-gradient(135deg, #d4af37, var(--elegant-gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary.btn-large {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--elegant-gold);
}

.btn-secondary.btn-large:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
  transform: translateY(-3px);
}

.quick-contact {
  margin-top: 2rem;
}

.quick-contact p {
  color: var(--off-white);
  font-size: 1rem;
  margin: 0;
}

.contact-quick {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-quick:hover {
  color: var(--pure-white);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 0;
  background: #fafafa;
  position: relative;
}

.about-content-modern {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  margin-bottom: 3rem;
}

.about-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--regal-black);
  margin-bottom: 1rem;
}

.about-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--elegant-gold);
  font-style: italic;
  margin: 0;
}

.about-description {
  margin-bottom: 3rem;
}

.about-description p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-cta {
  background: var(--pure-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.about-closing {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--elegant-gold);
  font-style: italic;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about-header h2 {
    font-size: 2rem;
  }
  
  .about-description p {
    text-align: center;
  }
  
  .about-cta {
    padding: 2rem;
  }
}

/* ===== CONTACT PAGE STYLING ===== */
.hours-list {
  margin: 1.5rem 0;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.hour-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: var(--regal-black);
}

.time {
  color: var(--warm-gray);
}

.contact-form-simple {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--off-white);
}

.contact-form-simple h4 {
  color: var(--regal-black);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.contact-form-simple input,
.contact-form-simple textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid var(--off-white);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
    outline: none;
  border-color: var(--elegant-gold);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  width: 100%;
}

/* ===== SIMPLE CONTACT PAGE ===== */
.contact-page {
  padding: 5rem 0;
  background: #f8f9fa;
  position: relative;
}

.contact-page h1 {
    text-align: center;
  color: var(--regal-black);
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Proper spacing for maps section */
.map-section {
  margin-top: 3rem;
  padding: 2rem 0;
  background: var(--primary-black);
  position: relative;
  z-index: 1;
}

.contact-form-section h2,
.contact-info-section h2 {
  color: var(--regal-black);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--elegant-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1.5rem;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* Contact Info */
.contact-info-section {
  padding: 2.5rem;
}

.info-group {
  margin-bottom: 2.5rem;
}

.info-group h3 {
  color: var(--regal-black);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-link {
  color: var(--elegant-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--regal-black);
}

.info-group p {
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

.hours-simple p {
  margin-bottom: 0.5rem;
  color: var(--warm-gray);
}

.hours-simple strong {
  color: var(--regal-black);
}

/* Mobile Responsive */
  @media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-page h1 {
    font-size: 2.5rem;
  }
  
  .contact-form,
  .contact-info-section {
    padding: 2rem;
    }
  }

/* ===== MODERN STOCK PAGE STYLES ===== */

/* SSC-Style Stock Header */
.ssc-stock-header {
  background: var(--primary-black);
  padding: 1rem 0 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gray);
}

.ssc-showroom-title h1 {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ssc-vehicle-count {
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.ssc-header-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.ssc-search-container {
  position: relative;
  flex: 1;
  max-width: 300px;
}

.ssc-search-bar {
  display: flex;
  background: var(--dark-gray);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gray);
  height: 35px;
}

.ssc-search-input {
  flex: 1;
  padding: 0.4rem 1rem;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-size: 0.85rem;
  outline: none;
}

.ssc-search-input::placeholder {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.ssc-search-clear {
  padding: 0.4rem;
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  display: none;
}

.ssc-search-btn {
  padding: 0.4rem 0.8rem;
  background: var(--accent-gold);
  border: none;
  color: var(--primary-black);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 35px;
}

.ssc-search-btn:hover {
  background: var(--accent-gold-hover);
}

.ssc-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-black);
  border: 1px solid var(--border-gray);
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.ssc-suggestion-item {
  padding: 0.5rem 1rem;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.2s ease;
}

.ssc-suggestion-item:hover {
  background: var(--dark-gray);
  color: var(--accent-gold);
}

.ssc-suggestion-item:last-child {
  border-bottom: none;
}

.ssc-sort-select {
  padding: 0.4rem 0.8rem;
  background: var(--dark-gray);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  color: var(--pure-white);
  font-size: 0.85rem;
  min-width: 180px;
  height: 35px;
  cursor: pointer;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.breadcrumb span:last-child {
  color: var(--accent-gold);
  font-weight: 500;
}

.stock-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stock-summary h1 {
  font-size: 1.5rem;
  color: var(--pure-white);
  margin: 0;
}

.sort-controls .sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 0.9rem;
}

/* Stock Layout */
.stock-main {
  padding: 1rem 0;
}

.stock-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
}

/* Left Sidebar - Integrated Layout */
.stock-sidebar {
  background: var(--primary-black);
  padding: 0;
  border-right: 1px solid var(--border-gray);
  height: fit-content;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  margin-bottom: 2rem;
}

.stock-content {
  padding: 0 1rem;
  min-width: 0;
}

/* Search Controls Above Vehicle Grid */
.stock-search-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.ssc-search-container-main {
  position: relative;
}

.ssc-search-container-main .ssc-search-bar {
  width: 100%;
  max-width: none;
}

.ssc-sort-select-main {
  padding: 0.4rem 0.8rem;
  background: var(--dark-gray);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  color: var(--pure-white);
  font-size: 0.85rem;
  height: 35px;
  cursor: pointer;
  width: 100%;
}

/* SSC-Style Filter Header */
.refine-search h3 {
  color: var(--pure-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  padding: 1rem 1rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SSC-Style Collapsible Filter Groups */
.filter-group {
  border-bottom: 1px solid var(--border-gray);
}

.filter-group.collapsed .filter-group-content {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  background: var(--primary-black);
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.filter-group-header:hover {
  background: var(--dark-gray);
}

.filter-group-title {
  color: var(--pure-white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.filter-group-arrow {
  color: var(--accent-gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.filter-group.collapsed .filter-group-arrow {
  transform: rotate(-90deg);
}

.filter-group-content {
  padding: 0 1.5rem 1rem;
  background: var(--primary-black);
  max-height: 200px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.filter-group.collapsed .filter-group-content {
  max-height: 0;
  padding: 0 1.5rem;
}

.filter-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 0.9rem;
  color: var(--regal-black);
}

.filter-select:focus {
  border-color: var(--elegant-gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.2);
}

/* Price Toggle */
.price-toggle {
  display: flex;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  padding: 0.5rem;
  background: white;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--elegant-gold);
  color: var(--regal-black);
  font-weight: 600;
}

.price-inputs {
  display: flex;
  gap: 0.5rem;
}

.price-inputs .filter-select {
  flex: 1;
}

/* Search Button */
.search-btn {
  width: 100%;
  padding: 1rem;
  background: var(--regal-black);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.search-btn:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
}

/* Vehicle Grid Modern */
.vehicle-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* SSC-Style Vehicle Cards */
.vehicle-card-ssc {
  background: var(--secondary-black);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--border-gray);
}

.vehicle-card-ssc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.vehicle-image-modern {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.vehicle-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealer-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--elegant-gold);
  color: var(--regal-black);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vehicle-price-modern {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--regal-black);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
}

.finance-from {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.vehicle-info-modern {
  padding: 1rem;
}

.vehicle-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--regal-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vehicle-specs-modern {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.vehicle-specs-modern span {
  background: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.vehicle-actions-modern {
  display: flex;
  gap: 0.5rem;
}

.btn-view-modern, .btn-finance-modern {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
    text-align: center;
  text-decoration: none;
  display: block;
}

.btn-view-modern {
  background: #6c757d;
  color: white;
}

.btn-view-modern:hover {
  background: var(--regal-black);
}

.btn-finance-modern {
  background: #6c757d;
  color: white;
}

.btn-finance-modern:hover {
  background: var(--elegant-gold);
  color: var(--regal-black);
}

/* Pagination Modern */
.pagination-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--elegant-gold);
  background: var(--regal-black);
  color: var(--elegant-gold);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: var(--elegant-gold);
  border-color: var(--elegant-gold);
  color: var(--regal-black);
}

.page-btn.active {
  background: var(--elegant-gold);
  border-color: var(--elegant-gold);
  color: var(--pure-white);
}

.page-next {
  color: var(--elegant-gold);
  font-weight: 500;
  cursor: pointer;
  margin-left: 1rem;
}

.page-next:hover {
  color: var(--regal-black);
}

/* Mobile Responsive */
  @media (max-width: 768px) {
  .stock-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stock-sidebar {
    order: 2;
  }
  
  .vehicle-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .stock-summary {
      flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ===== SSC-INSPIRED GORGEOUS FOOTER ===== */
.ssc-footer {
  background: var(--primary-black);
  color: var(--text-gray);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-gray);
  position: relative;
}

.ssc-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.ssc-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ssc-footer-brand {
  max-width: 400px;
}

.ssc-footer-logo {
  height: 80px;
  margin-bottom: 2rem;
  filter: brightness(0.9);
}

.ssc-footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.ssc-footer-section h3 {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ssc-footer-links {
  list-style: none;
}

.ssc-footer-links li {
  margin-bottom: 0.8rem;
}

.ssc-footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.ssc-footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

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

.ssc-footer-links a:hover::before {
  width: 100%;
}

.ssc-contact-info {
  display: flex;
      flex-direction: column;
  gap: 1rem;
}

.ssc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ssc-contact-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}

.ssc-contact-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ssc-contact-item a:hover {
  color: var(--accent-gold);
}

.ssc-opening-hours {
  margin-top: 1.5rem;
}

.ssc-hours-title {
  color: var(--pure-white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.ssc-hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ssc-hours-day {
  color: var(--text-gray);
}

.ssc-hours-time {
  color: var(--pure-white);
  font-weight: 500;
}

.ssc-footer-bottom {
  background: var(--secondary-black);
  padding: 2rem;
  border-top: 1px solid var(--border-gray);
      text-align: center;
    }
  
.ssc-footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
      align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ssc-footer-legal {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.ssc-footer-social {
  display: flex;
  gap: 1rem;
}

.ssc-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--border-gray);
  border-radius: 50%;
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.ssc-social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .ssc-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 2rem;
  }
  
  .ssc-footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  }

/* ===== SSC FOOTER CONTENT ===== */
.ssc-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ssc-footer-section {
  display: flex;
  flex-direction: column;
}

.ssc-footer-section h3 {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ssc-footer-section p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ssc-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ssc-footer-section ul li {
  margin-bottom: 0.8rem;
}

.ssc-footer-section ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.ssc-footer-section ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.ssc-footer-section ul li a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.ssc-footer-section ul li a:hover::before {
  width: 100%;
}

.ssc-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.ssc-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--border-gray);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ssc-social-icons a:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.ssc-social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0.8);
}

.ssc-social-icons a:hover img {
  filter: brightness(1);
}

.ssc-footer-bottom {
  background: var(--secondary-black);
  padding: 2rem;
  border-top: 1px solid var(--border-gray);
  text-align: center;
}

.ssc-footer-bottom p {
  margin: 0.5rem 0;
  color: var(--off-white);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ssc-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 2rem;
  }
}

/* ===== SSC-STYLE VEHICLE CARDS ===== */

.vehicle-image-ssc {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-image-ssc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vehicle-card-ssc:hover .vehicle-image-ssc img {
  transform: scale(1.05);
}

.vehicle-badges-ssc {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 0.5rem;
}

.image-count-badge, .video-badge {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.dealer-commitment {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--accent-gold);
  color: var(--primary-black);
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 140px;
}

.vehicle-content-ssc {
  padding: 1rem;
  background: var(--secondary-black);
}

.vehicle-features-ssc {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vehicle-title-ssc {
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  height: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-attention-grabber-ssc {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-description-header-ssc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
}

.vehicle-specs-line-ssc {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
  line-height: 1.4;
}

.pricing-section-ssc {
  margin-bottom: 1.5rem;
}

.price-row-ssc {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.price-label-ssc {
  color: var(--text-gray);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-values-ssc {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.our-price-ssc {
  color: var(--pure-white);
  font-size: 1.8rem;
  font-weight: 700;
}

.monthly-price-ssc {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.vehicle-actions-ssc {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.btn-chat-ssc, .btn-reserve-ssc, .btn-finance-ssc {
  flex: 1;
  padding: 0.75rem 0.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.btn-chat-ssc {
  background: var(--accent-gold);
  color: var(--primary-black);
}

.btn-chat-ssc:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

.btn-reserve-ssc {
  background: var(--accent-gold);
  color: var(--primary-black);
}

.btn-reserve-ssc:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

.btn-finance-ssc {
  background: #dc3545;
  color: white;
}

.btn-finance-ssc:hover {
  background: #c82333;
  transform: translateY(-1px);
}

.more-details-ssc {
  text-align: center;
  border-top: 1px solid var(--border-gray);
  padding-top: 1rem;
}

.more-details-ssc a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.more-details-ssc a:hover {
  color: var(--accent-gold-hover);
}

/* Mobile Responsive Cards */
@media (max-width: 768px) {
  .vehicle-actions-ssc {
      flex-direction: column;
    }
  
  .price-values-ssc {
    flex-direction: column;
    gap: 0.5rem;
    }
  }
  