/* ===================================
   PRESTIGE DRIVE AUSTRALIA - CSS STYLES
   Creative & Artistic Design
   =================================== */

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style-position: inside;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.1);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f5f5f5 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1a1a1a;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* === HEADER === */
header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  border-bottom: 3px solid #d4af37;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  color: #d4af37;
  transform: translateY(-2px);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%);
  color: #1a1a1a;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  transition: all 0.4s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mobile-menu-close:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.2);
  border-left-color: #d4af37;
  transform: translateX(10px);
  color: #d4af37;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: #f5f5f5;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #f5f5f5;
  background: linear-gradient(135deg, #f5f5f5 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 1s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #f5f5f5;
  opacity: 0.9;
  animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.trust-item .trust-icon {
  color: #d4af37;
  font-size: 20px;
}

.trust-item span:first-child {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
}

.trust-item span:last-child {
  font-size: 14px;
  color: #f5f5f5;
  opacity: 0.8;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f5f5f5;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a {
  color: #d4af37;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  color: #f5f5f5;
  margin-bottom: 16px;
}

.page-hero p {
  color: #f5f5f5;
  opacity: 0.9;
  font-size: 18px;
}

/* === VEHICLE GRID === */
.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.vehicle-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.vehicle-card:hover::before {
  left: 100%;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.vehicle-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.vehicle-specs {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.vehicle-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vehicle-status.available {
  background: rgba(40, 200, 120, 0.15);
  color: #28c878;
  border: 1px solid #28c878;
}

.vehicle-status.limited {
  background: rgba(255, 150, 50, 0.15);
  color: #ff9632;
  border: 1px solid #ff9632;
}

/* === SERVICES GRID === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #d4af37;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  color: #d4af37;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
  border-left-width: 8px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

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

/* === BENEFITS GRID === */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-item {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #d4af37;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-item p {
  color: #555;
  line-height: 1.7;
}

/* === LOCATIONS GRID === */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.location-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f5f5f5;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #d4af37;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  text-align: center;
}

.location-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.location-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #d4af37;
}

.location-card p {
  color: #f5f5f5;
  opacity: 0.9;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #d4af37;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  color: rgba(212, 175, 55, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-rating {
  color: #d4af37;
  font-size: 18px;
}

/* === PROCESS STEPS === */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.process-step p {
  color: #555;
  font-size: 14px;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f5f5f5;
  padding: 80px 20px;
  margin: 60px 0;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: #f5f5f5;
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.contact-info {
  color: #f5f5f5;
  opacity: 0.8;
  font-size: 14px;
}

.contact-info a {
  color: #d4af37;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* === SECTION CTA === */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  text-align: center;
}

/* === FEATURES GRID === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.feature-item {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-item:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.feature-item p {
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
}

/* === SERVICE DETAILED === */
.service-detailed {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #d4af37;
}

.service-detailed h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.service-detailed ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detailed li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #333;
}

.service-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
  font-size: 18px;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.features-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 16px;
}

/* === LOCATION DETAILED === */
.location-detailed {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #d4af37;
}

.location-detailed h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.location-detailed p {
  margin-bottom: 12px;
  color: #333;
}

/* === TEXT SECTION === */
.text-section {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.text-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.text-section ul,
.text-section ol {
  margin: 20px 0;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #333;
  line-height: 1.7;
}

/* === STATS GRID === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.stat-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%);
  color: #1a1a1a;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.stat-item strong {
  display: block;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  color: #1a1a1a;
}

/* === CONTACT METHODS === */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #d4af37;
  margin-bottom: 20px;
}

.contact-method h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.contact-method p {
  color: #333;
  margin-bottom: 8px;
}

.contact-method a {
  color: #d4af37;
  font-weight: 600;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* === FAQ === */
.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.faq-item p {
  color: #555;
  margin: 0;
}

/* === REASSURANCE === */
.reassurance {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #f0c674 0%, #d4af37 100%);
  color: #1a1a1a;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 32px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* === THANK YOU PAGE === */
.thankyou-content {
  padding: 60px 20px;
}

.thankyou-message {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #d4af37;
}

.thankyou-message h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.next-steps,
.preparing,
.explore-more,
.contact-reminder {
  margin-bottom: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.next-steps ol {
  margin: 20px 0;
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 16px;
  color: #333;
  line-height: 1.7;
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.explore-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.explore-card:hover {
  border-color: #d4af37;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.explore-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #f5f5f5;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 4px solid #d4af37;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #d4af37;
}

.footer-section p {
  color: #f5f5f5;
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section a {
  color: #f5f5f5;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
  opacity: 1;
  padding-left: 5px;
}

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

.footer-nav a {
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #f5f5f5;
  opacity: 0.7;
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #f5f5f5;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 3px solid #d4af37;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.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 300px;
}

.cookie-text p {
  color: #f5f5f5;
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%);
  color: #1a1a1a;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
}

.cookie-reject:hover {
  background: rgba(245, 245, 245, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.cookie-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #d4af37;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.cookie-preference {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
}

.cookie-preference h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #d4af37;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .vehicle-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .process-step,
  .location-card,
  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: space-between;
  }
  
  .header-cta {
    width: 100%;
    order: 3;
  }
  
  .header-cta .btn-primary {
    width: 100%;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  /* All grids to single column */
  .vehicle-card,
  .service-card,
  .benefit-item,
  .location-card,
  .testimonial-card,
  .process-step,
  .feature-item,
  .contact-method,
  .explore-card,
  .stat-item,
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Section spacing */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  
  .section {
    padding: 32px 16px;
  }
  
  .vehicle-card,
  .service-card,
  .service-detailed,
  .location-detailed {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-primary:active {
  animation: pulse 0.3s ease;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* === END OF STYLES === */