/* ============================================
   LuxDrive Alpine - Geometric Structured Design
   CSS Reset & Base Styles
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background-color: #F4F4F9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A2E;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
  border-left: 4px solid #C9A961;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #C9A961;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1A1A2E;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Layout Containers
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   Header Styles
   ============================================ */

header {
  background-color: #1A1A2E;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #C9A961;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F4F4F9;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C9A961;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #C9A961;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ============================================
   Mobile Menu Styles
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #C9A961;
  color: #1A1A2E;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu-toggle:hover {
  background-color: #1A1A2E;
  color: #C9A961;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #1A1A2E;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #C9A961;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu-close:hover {
  background-color: #C9A961;
  color: #1A1A2E;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #F4F4F9;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #C9A961;
  border-left-color: #C9A961;
  padding-left: 24px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(201, 169, 97, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F4F4F9;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: #C9A961;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-value {
  color: #F4F4F9;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.trust-indicators span {
  color: #F4F4F9;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid #C9A961;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* ============================================
   Button Styles
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary {
  background-color: #C9A961;
  color: #1A1A2E;
  border-color: #C9A961;
}

.btn-primary:hover {
  background-color: #1A1A2E;
  color: #C9A961;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #F4F4F9;
  border-color: #F4F4F9;
}

.btn-secondary:hover {
  background-color: #F4F4F9;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   Card Grid Layouts (FLEXBOX ONLY)
   ============================================ */

.benefits-grid,
.services-grid,
.vehicles-grid,
.categories-grid,
.models-grid,
.cases-grid,
.trends-grid,
.brands-grid,
.metrics-grid,
.reasons-grid,
.team-grid,
.achievements-grid,
.contact-grid,
.locations-grid,
.quick-list,
.promise-grid,
.mission-grid,
.steps-grid,
.suggestions-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.vehicle-card,
.category-card,
.model-card,
.case-card,
.trend-card,
.brand-card,
.metric-card,
.reason-card,
.team-member,
.achievement-card,
.contact-card,
.location-card,
.quick-item,
.promise-card,
.mission-card,
.step-card,
.suggestion-card,
.info-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #1A1A2E;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: all 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.vehicle-card:hover,
.category-card:hover,
.model-card:hover,
.case-card:hover,
.trend-card:hover,
.brand-card:hover,
.contact-card:hover,
.location-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(26, 26, 46, 0.15);
  border-color: #C9A961;
}

.benefit-card::before,
.service-card::before,
.vehicle-card::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #C9A961;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.2;
}

.service-card h3,
.vehicle-card h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.service-price,
.vehicle-price {
  color: #C9A961;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.vehicle-details {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  font-style: italic;
}

.model-details,
.case-result {
  color: #C9A961;
  font-weight: 600;
  margin-top: 12px;
}

.member-role {
  color: #C9A961;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============================================
   Section Spacing
   ============================================ */

.section,
.benefits,
.services-overview,
.featured-vehicles,
.testimonials,
.cta-final,
.investment-categories,
.investment-models,
.success-cases,
.risk-disclosure,
.portfolio-categories,
.investment-metrics,
.services-detail,
.why-choose,
.market-overview,
.brand-performance,
.trends,
.price-development,
.company-story,
.mission-vision,
.team,
.achievements,
.contact-info,
.office-locations,
.quick-contact,
.response-commitment,
.legal-content,
.confirmation-steps,
.next-steps,
.urgent-contact,
.confirmation-info {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.benefits,
.investment-categories,
.portfolio-categories,
.market-overview,
.company-story,
.contact-info {
  background-color: #ffffff;
}

.services-overview,
.investment-models,
.brand-performance,
.mission-vision,
.office-locations {
  background-color: #F4F4F9;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
  background-color: #1A1A2E;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  color: #C9A961;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #F4F4F9;
  padding: 32px;
  border-left: 4px solid #C9A961;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: #1A1A2E;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #C9A961;
}

/* ============================================
   CTA Final Section
   ============================================ */

.cta-final {
  background: linear-gradient(135deg, #C9A961 0%, #B39555 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 26, 46, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #1A1A2E;
  font-size: 40px;
  margin-bottom: 24px;
  border-left: none;
  padding-left: 0;
}

.cta-content p {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-benefits {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-benefits span {
  color: #1A1A2E;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background-color: rgba(26, 26, 46, 0.1);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cta-description {
  font-size: 16px;
  margin-bottom: 24px;
}

/* ============================================
   Text Sections
   ============================================ */

.text-section,
.service-intro,
.disclaimer-section,
.contact-privacy,
.urgent-content,
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-section h2,
.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 16px 0 24px 32px;
}

.text-section li {
  margin-bottom: 12px;
}

.service-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 24px;
  background-color: rgba(201, 169, 97, 0.05);
  border-left: 4px solid #C9A961;
  border-right: 4px solid #C9A961;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.service-item {
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #1A1A2E;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-item h2 {
  color: #1A1A2E;
  font-size: 28px;
  margin-bottom: 16px;
}

.prices-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.price-item {
  padding: 24px;
  background-color: #ffffff;
  border-left: 4px solid #C9A961;
}

.price-item h3 {
  color: #1A1A2E;
  margin-bottom: 8px;
}

.price-item p {
  color: #666;
  font-size: 14px;
}

.values ul {
  list-style: none;
  margin-left: 0;
}

.values li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background-color: #C9A961;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.team-note {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 32px;
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   Footer Styles
   ============================================ */

footer {
  background-color: #1A1A2E;
  color: #F4F4F9;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #C9A961;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h4 {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #F4F4F9;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #F4F4F9;
  font-size: 14px;
  opacity: 0.9;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #C9A961;
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.footer-bottom p {
  color: #F4F4F9;
  font-size: 14px;
  opacity: 0.8;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A2E;
  padding: 24px;
  z-index: 1998;
  border-top: 3px solid #C9A961;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #F4F4F9;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text h4 {
  color: #C9A961;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid #C9A961;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #C9A961;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.cookie-btn-accept {
  background-color: #C9A961;
  color: #1A1A2E;
}

.cookie-btn:hover {
  background-color: #C9A961;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.cookie-btn-accept:hover {
  background-color: #1A1A2E;
  color: #C9A961;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.95);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #F4F4F9;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 4px solid #C9A961;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.cookie-modal h3 {
  color: #1A1A2E;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #C9A961;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h4 {
  color: #1A1A2E;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Card layouts */
  .benefit-card,
  .service-card,
  .vehicle-card,
  .category-card,
  .model-card,
  .case-card,
  .trend-card,
  .brand-card,
  .metric-card,
  .reason-card,
  .team-member,
  .achievement-card,
  .contact-card,
  .location-card,
  .quick-item,
  .promise-card,
  .mission-card,
  .step-card,
  .suggestion-card,
  .info-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-indicators span {
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Sections */
  .section,
  .benefits,
  .services-overview,
  .featured-vehicles,
  .testimonials,
  .cta-final {
    padding: 40px 16px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-benefits {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .vehicle-card,
  .category-card,
  .team-member,
  .contact-card,
  .location-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .metric-card,
  .reason-card,
  .achievement-card,
  .promise-card,
  .step-card,
  .info-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .metric-card,
  .reason-card,
  .achievement-card,
  .promise-card,
  .step-card,
  .info-card {
    flex: 1 1 calc(25% - 24px);
  }
}

/* ============================================
   Animations & Transitions
   ============================================ */

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

.hero-content,
.benefit-card,
.service-card,
.vehicle-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for cards */
.benefit-card:nth-child(1),
.service-card:nth-child(1),
.vehicle-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2),
.service-card:nth-child(2),
.vehicle-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3),
.service-card:nth-child(3),
.vehicle-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4),
.service-card:nth-child(4),
.vehicle-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: #fff;
    color: #000;
  }
  
  .btn {
    border: 2px solid #000;
  }
}