:root {
    --black-main: #0a0a0a;
    --black-dark: #000000;
    --black-light: #1a1a1a;
    --white-pure: #ffffff;
    --white-off: #f8f9fa;
    --white-warm: #f5f5f5;
    --gold-primary: #d4af37;
    --gold-secondary: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #f4e4a6;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
    --gray-dark: #2d2d2d;
    --gray-medium: #666666;
    --gray-light: #e0e0e0;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, var(--white-off) 0%, var(--white-warm) 100%);
  color: var(--black-main);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black-dark);
}

.hero-title {
  font-size: clamp(1rem, 3vw, 2rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 1rem 0 1rem;
  line-height: 1.1;
  font-weight: 800;
}

.section-title {
  position: relative;
  font-size: 1.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  color: var(--black-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--black-dark);
}

.section-header p {
  color: var(--gray-medium);
  font-size: 1.1rem;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

/* ===== BREADCRUMB ===== */
.custom-breadcrumb {
  padding: 1rem 0;
  width: 100%;
  overflow-x: auto;
}

.custom-breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding: 0.75rem 1rem;
  background: var(--white-pure);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--gray-light);
}

.custom-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.custom-breadcrumb .breadcrumb-item a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-item::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gray-medium);
}

.custom-breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--black-dark);
  font-weight: 600;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 2rem 0;
  position: relative;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Main Gallery Container */
.gallery-container {
  position: relative;
  width: 100%;
  background: var(--black-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

/* Main Swiper - RESPONSIVE */
.main-swiper-container {
  width: 100%;
  height: 500px;
  position: relative;
}

.main-swiper-container .swiper {
  width: 100%;
  height: 100%;
}

.main-swiper-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-dark);
}

.main-swiper-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.gallery-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav button:hover {
  background: var(--gold-gradient);
  color: var(--black-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

/* Gallery Counter */
.gallery-counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: var(--gold-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  z-index: 10;
  border: 1px solid var(--gold-dark);
  backdrop-filter: blur(10px);
}

/* Thumbnail Gallery - RESPONSIVE */
.thumbnail-container {
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.thumbnail-swiper {
  width: 100%;
  height: 100px;
}

.thumbnail-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.thumb-slide {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
}

.thumb-slide:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.thumb-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-light);
}

.thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery Actions */
.gallery-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-action-btn:hover {
  background: var(--gold-gradient);
  color: var(--black-dark);
  transform: scale(1.1);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .main-swiper-container {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .gallery-container {
    border-radius: 12px;
  }
  
  .main-swiper-container {
    height: 400px;
  }
  
  .gallery-nav button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .thumbnail-swiper {
    height: 90px;
  }
  
  .thumb-slide {
    width: 90px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 1rem 0;
  }
  
  .main-swiper-container {
    height: 350px;
  }
  
  .thumbnail-swiper {
    height: 80px;
  }
  
  .thumb-slide {
    width: 80px;
    height: 60px;
  }
  
  .gallery-nav {
    padding: 0 0.5rem;
  }
  
  .gallery-nav button {
    width: 36px;
    height: 36px;
  }
  
  .gallery-counter {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .gallery-actions {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .gallery-action-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .main-swiper-container {
    height: 300px;
  }
  
  .thumbnail-swiper {
    height: 70px;
  }
  
  .thumb-slide {
    width: 70px;
    height: 50px;
  }
  
  .gallery-wrapper {
    padding: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .main-swiper-container {
    height: 250px;
  }
  
  .thumbnail-swiper {
    height: 60px;
  }
  
  .thumb-slide {
    width: 60px;
    height: 45px;
  }
  
  .gallery-nav button {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .gallery-nav button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .gallery-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .main-swiper-container {
    height: 300px;
  }
  
  .thumbnail-container {
    display: none; /* Hide thumbnails in landscape to save space */
  }
}

/* Fix for Swiper overflow */
.swiper {
  overflow: hidden !important;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

/* Ensure images don't break layout */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Loading state */
.swiper-lazy-preloader {
  border-color: var(--gold-primary);
  border-top-color: transparent;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-light);
}

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--white-pure);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-medium);
}

.pricing-card.active {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, var(--white-warm) 0%, var(--white-pure) 100%);
  box-shadow: var(--shadow-medium);
}

.pricing-card.active::before {
  content: 'SELECTED';
  position: absolute;
  top: 0;
  right: -25px;
  background: var(--gold-gradient);
  color: var(--black-dark);
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: center;
  letter-spacing: 1px;
}

.pricing-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.pricing-info {
  position: relative;
  z-index: 1;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
}

.period {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.best-value {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--black-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
  border: 1px solid var(--gold-dark);
}
/*
.discount {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
*/

.savings-amount {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    margin-top: 3px;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Optional: Style adjustments for discount badge */
.discount {
    font-size: 14px;
    color: #dc3545;
    font-weight: 600;
    background: rgba(220, 53, 69, 0.1);
    padding: 2px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 5px;
}
/* ===== SPECIFICATIONS SECTION ===== */
.specs-section {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-light);
}

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

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white-off);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-light);
}

.spec-item:hover {
  transform: translateX(5px);
  background: var(--white-warm);
  border-color: var(--gold-light);
}

.spec-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-dark);
  font-size: 1.25rem;
  font-weight: bold;
}

.spec-content {
  flex: 1;
}

.spec-label {
  font-size: 0.875rem;
  color: var(--gray-medium);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 600;
  color: var(--black-dark);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-light);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--white-off);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-light);
}

.feature-item:hover {
  background: var(--white-warm);
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.feature-item i {
  color: var(--gold-primary);
  font-size: 1.25rem;
}

/* ===== DESCRIPTION SECTION ===== */
.description-section {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-light);
}

.description-content {
  line-height: 1.8;
  color: var(--black-main);
}

.description-content p {
  margin-bottom: 1.5rem;
}

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  background: var(--white-pure);
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 2px solid var(--gold-light);
}

.booking-widget.sticky-top {
  position: sticky;
  top: 2rem;
}

.widget-header {
  background: var(--black-dark);
  color: var(--gold-light);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--gold-primary);
}

.widget-header h3 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
}

.widget-body {
  padding: 1.5rem;
}

.price-display {
  text-align: center;
  padding: 1.5rem;
  background: var(--black-light);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold-dark);
}

.selected-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.vat-note {
  font-size: 0.875rem;
  color: var(--gray-medium);
}

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

.btn-call,
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-call:hover {
  background: var(--gold-gradient);
  color: var(--black-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white-pure);
  border: 2px solid #1da851;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.quick-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--white-off);
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}

.info-item i {
  color: var(--gold-primary);
  font-size: 1.25rem;
}

/* ===== TERMS SECTION ===== */
.terms-section {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-light);
}

.accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white-off);
  color: var(--black-dark);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gold-light);
  color: var(--black-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold-primary);
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white-warm);
}

/* ===== LOCATION SECTION ===== */
.location-section {
  padding: 4rem 0;
  background: var(--white-pure);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--gray-light);
}

/* ===== RELATED CARS ===== */
.related-cars {
  padding: 4rem 0;
  background: var(--white-off);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.car-card {
  background: var(--white-pure);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-light);
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--gold-primary);
}

.car-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--black-dark);
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.1);
}

.car-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-gradient);
  color: var(--black-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--gold-dark);
}

.car-details {
  padding: 1.5rem;
}

.car-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--black-dark);
}

.car-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.spec {
  font-size: 0.875rem;
  color: var(--gray-medium);
  background: var(--white-off);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  border: 1px solid var(--gray-light);
}

.car-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.car-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.car-price .period {
  color: var(--gray-medium);
}

.car-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-view,
.btn-inquire {
  padding: 0.75rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-view:hover {
  background: var(--gold-gradient);
  color: var(--black-dark);
  transform: translateY(-2px);
}

.btn-inquire {
  background: var(--gold-gradient);
  color: var(--black-dark);
  font-weight: 700;
}

.btn-inquire:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 4rem 0;
  background: var(--white-pure);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 2px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  color: var(--gold-primary);
  background: var(--white-off);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

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

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

@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== UTILITY CLASSES ===== */
.sticky-top {
  position: sticky;
  top: 2rem;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-actions {
    grid-template-columns: 1fr;
  }
  
  .cars-grid {
    grid-template-columns: 1fr;
  }
  
  .car-actions {
    grid-template-columns: 1fr;
  }
  
  .gallery-wrapper {
    gap: 1rem;
  }
  
  .main-gallery .swiper {
    height: 300px;
  }
  
  .thumbnail-gallery {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 1.75rem;
  }
  
  .selected-price {
    font-size: 2rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .booking-widget,
  .mobile-sticky-buttons,
  .btn,
  .car-actions,
  .contact-actions {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .container {
    max-width: 100% !important;
  }
  
  .section-title {
    color: black !important;
  }
  
  .section-title::after {
    display: none;
  }
}

/* ===== CAR SHOW SECTION UPDATES ===== */
.car-show-section {
  background: var(--white-pure);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-heavy);
  position: relative;
  z-index: 1;
  margin: 2rem auto;
  max-width: 1200px;
}

/* Button gradient updates */
.btn-gradient-blue {
  background: linear-gradient(135deg, var(--black-dark) 0%, var(--gray-dark) 50%, var(--black-light) 100%);
  background-size: 400% 400%;
  color: var(--gold-light) !important;
  border: 2px solid var(--gold-primary) !important;
  animation: gradientSlide 6s ease infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 50px;
  font-weight: 600;
}

.btn-gradient-green {
  background: linear-gradient(135deg, #1da851 0%, #25d366 50%, #128c7e 100%);
  background-size: 400% 400%;
  color: var(--white-pure) !important;
  border: none !important;
  animation: gradientSlide 6s ease infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 50px;
  font-weight: 600;
}

.btn-gradient-blue:hover,
.btn-gradient-green:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Mobile sticky buttons update */
.mobile-sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black-dark);
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  display: flex;
  gap: 1rem;
  border-top: 3px solid var(--gold-primary);
}

.mobile-sticky-buttons .btn {
  flex: 1;
  background: var(--gold-gradient);
  color: var(--black-dark);
  font-weight: 600;
  border: none;
  padding: 0.75rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-sticky-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Swiper arrows update */
.swiper-button-prev, .swiper-button-next {
  background: var(--gold-gradient);
  color: var(--black-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--black-dark);
  color: var(--gold-light);
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}
/* Core Row Styling */
.concierge-row {
    background: var(--white-off);
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon Containers */
.glass-icon-wa, .glass-icon-call { width: 48px; height: 48px; }

.glass-icon-wa { background: #e8f5e9; color: #2e7d32; }
.glass-icon-call { background: #e3f2fd; color: #1565c0; }

/* Interactive States */
.success-hover:hover {
    background: var(--white-pure);
    border-color: #2e7d32;
    transform: translateY(-3px);
}

.primary-hover:hover {
    background: var(--white-pure);
    border-color: #1565c0;
    transform: translateY(-3px);
}

/* Status Indicators */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Modal Backdrop Performance */
.modal-backdrop.show {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.7);
}
