/* ========================================
   AUTODRIVE DEUTSCHLAND - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #FFF 0%, #F8F9FA 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ========================================
   VIBRANT ENERGETIC COLOR SYSTEM
   ======================================== */

:root {
  --primary: #1A4D8F;
  --primary-light: #2A6BB8;
  --primary-dark: #0D3A6F;
  --secondary: #E63946;
  --secondary-light: #FF4757;
  --secondary-dark: #C82333;
  --accent: #F8F9FA;
  --electric-yellow: #FFD700;
  --electric-cyan: #00E5FF;
  --electric-magenta: #FF00FF;
  --vibrant-orange: #FF6B35;
  --vibrant-green: #4ECDC4;
  --dark: #1A1A1A;
  --gray: #6C757D;
  --light-gray: #E9ECEF;
  --white: #FFFFFF;
  --shadow: rgba(26, 77, 143, 0.15);
  --shadow-strong: rgba(26, 77, 143, 0.25);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--electric-yellow) 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 16px;
}

.hero-subtitle, .section-subtitle {
  font-size: 20px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========================================
   BUTTONS - BOLD & DYNAMIC
   ======================================== */

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--vibrant-orange) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--electric-yellow) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-strong);
}

/* ========================================
   HEADER - ENERGETIC & BOLD
   ======================================== */

header {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--secondary);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--electric-yellow) 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary);
  background: var(--accent);
}

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

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

/* ========================================
   MOBILE MENU - DYNAMIC SLIDE-IN
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--vibrant-orange) 100%);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.7);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--secondary-dark);
}

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

.mobile-nav a {
  padding: 16px 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--electric-yellow);
  padding-left: 30px;
}

/* ========================================
   HERO SECTION - HIGH ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--electric-yellow) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--electric-cyan) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

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

.hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero .hero-subtitle {
  color: var(--accent);
  margin-bottom: 32px;
  font-size: 18px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

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

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 2px solid var(--electric-yellow);
}

/* ========================================
   PAGE HERO - ENERGETIC HEADER
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.page-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--accent);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.last-updated {
  font-size: 14px;
  color: var(--light-gray);
  margin-top: 16px;
}

/* ========================================
   SECTIONS - DYNAMIC SPACING
   ======================================== */

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

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

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

/* ========================================
   FEATURE GRID - VIBRANT CARDS
   ======================================== */

.features {
  background: var(--white);
  padding: 80px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  border: 3px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 250px;
  max-width: 280px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--electric-yellow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--secondary);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px var(--shadow));
  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* ========================================
   SERVICE GRID - ENERGETIC LAYOUTS
   ======================================== */

.services {
  background: linear-gradient(180deg, var(--accent) 0%, var(--white) 100%);
  padding: 80px 20px;
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 320px;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--electric-yellow) 50%, var(--electric-cyan) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--vibrant-orange);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin-top: auto;
  margin-bottom: 0;
}

/* ========================================
   TESTIMONIALS - VIBRANT SOCIAL PROOF
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 5%;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.testimonials h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.testimonials h2::after {
  background: linear-gradient(90deg, var(--electric-yellow) 0%, var(--electric-cyan) 100%);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  flex: 1 1 400px;
  max-width: 500px;
  border: 3px solid var(--electric-yellow);
  position: relative;
}

.testimonial-card::before {
  content: '★';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 40px;
  color: var(--electric-yellow);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.testimonial-card > p:first-child {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--dark);
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.testimonial-card .rating {
  font-size: 20px;
  color: var(--electric-yellow);
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CTA SECTIONS - HIGH IMPACT
   ======================================== */

.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--vibrant-orange) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px);
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.cta-banner h2, .cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after, .cta-section h2::after {
  background: var(--electric-yellow);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p, .cta-section p {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--electric-yellow);
  color: var(--dark);
  border-color: var(--electric-yellow);
}

/* ========================================
   VEHICLE & PRICING CARDS
   ======================================== */

.vehicle-category, .pricing, .offers {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.vehicle-category:nth-child(even) {
  background: var(--accent);
}

.vehicle-category h2, .pricing h2, .offers h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 32px;
}

.vehicle-category > p, .pricing > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--gray);
}

.vehicle-grid, .pricing-grid, .offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vehicle-card, .pricing-card, .offer-card {
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
  position: relative;
}

.vehicle-card:hover, .pricing-card:hover, .offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--secondary);
}

.vehicle-card h3, .pricing-card h3, .offer-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

.specs, .price-daily, .price-weekly, .examples, .code, .benefit {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}

.price, .price-daily {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin: 16px 0;
}

.price-weekly {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

.code {
  display: inline-block;
  padding: 8px 16px;
  background: var(--electric-yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 25px;
  margin-top: 12px;
}

.benefit {
  color: var(--vibrant-green);
  font-weight: 600;
}

/* ========================================
   LOCATION CARDS
   ======================================== */

.locations, .location-list, .contact-methods, .faq {
  padding: 60px 20px;
}

.location-grid, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.location-card, .contact-card {
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  background: var(--white);
  border: 3px solid var(--vibrant-green);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
}

.location-card:hover, .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--secondary);
}

.location-card h3, .contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

.location-card p, .contact-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.location-card .features {
  padding: 0;
  margin-top: 16px;
  font-size: 13px;
  color: var(--vibrant-orange);
  font-weight: 700;
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px var(--shadow));
}

.contact-card .hours {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

/* ========================================
   STATS & VALUES
   ======================================== */

.stats, .values {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
}

.stats-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.stat-card, .value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border: 3px solid var(--electric-cyan);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 220px;
  max-width: 280px;
}

.stat-card:hover, .value-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--secondary);
}

.stat-card .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  text-shadow: 0 4px 10px var(--shadow);
}

.stat-card p, .value-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

/* ========================================
   FAQ & TEXT CONTENT
   ======================================== */

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

.faq-item {
  padding: 30px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px var(--shadow-strong);
  border-color: var(--secondary);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--dark);
  margin-bottom: 0;
}

.story, .contact-info, .office-info {
  padding: 60px 20px;
}

.office-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 3px solid var(--vibrant-green);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
}

.office-info h3 {
  color: var(--primary);
  margin-top: 24px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--electric-cyan) 100%);
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--vibrant-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.thank-you-hero p {
  color: var(--accent);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.confirmation {
  font-size: 16px;
  font-weight: 600;
  color: var(--electric-yellow);
}

.next-steps, .alternative-actions {
  padding: 60px 20px;
  background: var(--white);
}

.steps-grid, .action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.step-card, .action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: var(--accent);
  border: 3px solid var(--electric-cyan);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
}

.step-card:hover, .action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-strong);
  border-color: var(--secondary);
}

.step-card h3, .action-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-compact {
  max-width: 600px;
  margin: 30px auto 0;
  padding: 30px;
  background: var(--accent);
  border: 3px solid var(--primary);
  border-radius: 15px;
  text-align: center;
}

.contact-compact p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  padding: 60px 20px;
  background: var(--white);
}

.legal-content .text-section {
  background: var(--accent);
  padding: 40px;
  border-radius: 15px;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
}

.note {
  padding: 20px;
  background: linear-gradient(135deg, var(--electric-yellow) 0%, var(--vibrant-orange) 100%);
  color: var(--dark);
  border-radius: 10px;
  margin: 24px 0;
  font-weight: 600;
  border: 3px solid var(--vibrant-orange);
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid var(--electric-yellow);
}

#cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--accent);
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--electric-cyan) 100%);
  color: var(--white);
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.5);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border-color: var(--light-gray);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--electric-yellow);
  border-color: var(--electric-yellow);
}

.cookie-btn-settings:hover {
  background: var(--electric-yellow);
  color: var(--dark);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  border: 4px solid var(--primary);
}

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

.cookie-modal-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 16px 16px 0 0;
  position: relative;
}

.cookie-modal-header h2 {
  color: var(--white);
  margin-bottom: 0;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--secondary-dark);
}

.cookie-modal-body {
  padding: 30px;
}

.cookie-category {
  padding: 20px;
  background: var(--accent);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid var(--light-gray);
  transition: border-color 0.3s ease;
}

.cookie-category:hover {
  border-color: var(--primary);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 15px;
}

.cookie-category h3 {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-gray);
  border-radius: 25px;
  transition: 0.3s;
  border: 2px solid var(--gray);
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--vibrant-green);
  border-color: var(--vibrant-green);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 20px 30px;
  background: var(--accent);
  border-radius: 0 0 16px 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER - BOLD & ORGANIZED
   ======================================== */

footer {
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--electric-yellow) 50%, var(--electric-cyan) 100%);
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-col img {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--electric-yellow);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col a:hover {
  color: var(--electric-yellow);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav, .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-indicators span {
    width: 100%;
    justify-content: center;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 50px 20px 40px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Grids */
  .feature-grid,
  .service-grid,
  .testimonial-grid,
  .vehicle-grid,
  .pricing-grid,
  .offer-grid,
  .location-grid,
  .contact-grid,
  .stats-grid,
  .value-grid,
  .steps-grid,
  .action-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .vehicle-card,
  .pricing-card,
  .offer-card,
  .location-card,
  .contact-card,
  .stat-card,
  .value-card,
  .step-card,
  .action-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col {
    width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    width: 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    max-height: 90vh;
  }
  
  .cookie-modal-header {
    padding: 20px;
  }
  
  .cookie-modal-body {
    padding: 20px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .container {
    padding: 0 30px;
  }
  
  .hero {
    padding: 80px 30px;
  }
  
  .main-nav {
    gap: 6px;
  }
  
  .main-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

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

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

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

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--electric-yellow);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* ========================================
   END OF VIBRANT ENERGETIC DESIGN STYLES
   ======================================== */