/* ===================================
   MYSTIC OCEAN - 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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   VIBRANT ENERGETIC COLOR SCHEME
   Electric & Dynamic Palette
   =================================== */

:root {
  --primary: #FF0066;
  --primary-light: #FF3385;
  --primary-dark: #CC0052;
  --secondary: #00FFCC;
  --secondary-light: #33FFDB;
  --secondary-dark: #00CCA3;
  --accent: #FFD700;
  --accent-light: #FFE44D;
  --accent-dark: #CCAC00;
  --electric-blue: #00D4FF;
  --neon-purple: #B833FF;
  --hot-pink: #FF0095;
  --lime-green: #00FF66;
  --text-dark: #0a0a0a;
  --text-light: #ffffff;
  --text-muted: #333333;
  --bg-light: #f0f0f0;
  --shadow: 0 8px 32px rgba(255, 0, 102, 0.2);
  --shadow-heavy: 0 12px 48px rgba(255, 0, 102, 0.3);
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   TYPOGRAPHY - BOLD & ENERGETIC
   =================================== */

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

h2 {
  font-size: 36px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

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

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

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

strong {
  font-weight: 700;
  color: var(--primary);
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

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

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section {
  padding: 60px 0;
  position: relative;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

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

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

.main-nav a {
  color: var(--text-light);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-heavy);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-light);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
  border-color: var(--text-light);
}

/* ===================================
   BUTTONS - ELECTRIC & DYNAMIC
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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;
  z-index: -1;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--lime-green));
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0, 255, 204, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 255, 204, 0.4);
}

/* ===================================
   HERO SECTION - EXPLOSIVE ENERGY
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 50%, var(--electric-blue) 100%);
  color: var(--text-light);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.2), transparent);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slide-up 0.8s ease;
  background: none;
  -webkit-text-fill-color: var(--text-light);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  animation: slide-up 0.8s ease 0.2s both;
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slide-up 0.8s ease 0.4s both;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  animation: slide-up 0.8s ease 0.6s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.trust-item strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.trust-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   HERO SECONDARY (SUBPAGES)
   =================================== */

.hero-secondary {
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-secondary .container {
  position: relative;
  z-index: 10;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: var(--text-light);
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.hero-secondary h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-light);
  background: none;
  -webkit-text-fill-color: var(--text-light);
}

.hero-secondary p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 20px;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.trust-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

/* ===================================
   SERVICES GRID - DYNAMIC CARDS
   =================================== */

.services-overview,
.services-detailed {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--text-light);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

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

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

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--hot-pink);
  margin-bottom: 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  border-radius: 50%;
}

.benefits h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
}

.benefits h2::after {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  left: 50%;
  transform: translateX(-50%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 10;
}

.benefit-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.benefit-item h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

/* ===================================
   HOW IT WORKS - STEP PROCESS
   =================================== */

.how-it-works {
  background: #ffffff;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 56px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  position: relative;
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 0, 102, 0.3);
}

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

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--text-light);
  padding: 40px;
  border-radius: var(--border-radius);
  border-left: 6px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 0, 102, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-left-color: var(--hot-pink);
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-card span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===================================
   CTA BANNER - EXPLOSIVE CALL TO ACTION
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--neon-purple) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::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: diagonal-move 20s linear infinite;
}

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

.cta-banner .container {
  position: relative;
  z-index: 10;
}

.cta-banner h2 {
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

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

.guarantee {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 24px;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-quick {
  background: #ffffff;
  padding: 60px 0;
}

.contact-quick h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-item strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-quick .btn {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* ===================================
   FLEET PAGE - VEHICLE CARDS
   =================================== */

.fleet-filters {
  background: #f8f8f8;
  padding: 40px 0;
}

.fleet-filters h2 {
  text-align: center;
  margin-bottom: 32px;
}

.filter-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: var(--text-light);
  border: 2px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 0, 102, 0.3);
}

.vehicle-grid {
  padding: 60px 0;
}

.vehicles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.vehicle-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--text-light);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 3px solid transparent;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--secondary), var(--lime-green));
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

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

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

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

.vehicle-card ul {
  margin-bottom: 20px;
}

.vehicle-card li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-left: 24px;
}

.vehicle-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}

.vehicle-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--hot-pink);
  margin-bottom: 0;
}

/* Fleet Features */
.fleet-features {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  padding: 60px 0;
}

.fleet-features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 24px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(8px);
  border-left-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ===================================
   SERVICES DETAILED
   =================================== */

.service-detail {
  margin-bottom: 48px;
  padding: 40px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.service-detail:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.price-highlight {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
  border-radius: 30px;
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(255, 0, 102, 0.3);
}

.service-features {
  margin-top: 24px;
}

.service-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
}

.service-features li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
}

/* Additional Services */
.additional-services {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
  color: var(--text-light);
  padding: 60px 0;
}

.additional-services h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 16px;
}

.additional-services h2::after {
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.additional-services > .container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.addon-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.addon-item:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--accent);
  transform: translateX(8px);
}

/* FAQ Services */
.faq-services {
  padding: 60px 0;
  background: #ffffff;
}

.faq-services h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 32px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border-left: 6px solid var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateX(8px);
  border-left-color: var(--primary);
  box-shadow: var(--shadow);
}

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

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================
   PRICING PAGE
   =================================== */

.pricing-overview {
  text-align: center;
  padding: 40px 0;
  background: #f8f8f8;
}

.pricing-overview h2 {
  margin-bottom: 16px;
}

.pricing-overview p {
  font-size: 18px;
  color: var(--text-muted);
}

.pricing-table {
  padding: 60px 0;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.price-table thead {
  background: linear-gradient(135deg, var(--primary), var(--hot-pink));
  color: var(--text-light);
}

.price-table th {
  padding: 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--bg-light);
  font-size: 15px;
  color: var(--text-muted);
}

.price-table tbody tr {
  transition: var(--transition);
}

.price-table tbody tr:hover {
  background: #f8f8f8;
  transform: scale(1.01);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  font-weight: 700;
  color: var(--primary);
}

.table-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* Long-term Pricing */
.pricing-longterm {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  padding: 60px 0;
}

.pricing-longterm h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-longterm > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.longterm-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.plan-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 40px 32px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border: 3px solid transparent;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.plan-item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--secondary), var(--lime-green));
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.plan-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-heavy);
}

.plan-item:hover::before {
  opacity: 1;
}

.plan-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary);
}

.plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--hot-pink);
  margin-bottom: 0;
}

.benefits-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Pricing Add-ons */
.pricing-addons {
  padding: 60px 0;
  background: #ffffff;
}

.pricing-addons h2 {
  text-align: center;
  margin-bottom: 48px;
}

.addons-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: #f8f8f8;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.addon-row:hover {
  background: var(--text-light);
  border-left-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.addon-row span:first-child {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.addon-row span:last-child {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

.pricing-faq {
  padding: 60px 0;
  background: #f8f8f8;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-story {
  padding: 60px 0;
}

.about-story h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.text-section p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-values {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  padding: 60px 0;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border-top: 6px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-8px);
  border-top-color: var(--hot-pink);
  box-shadow: var(--shadow);
}

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

.value-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About Numbers */
.about-numbers {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.about-numbers .container {
  position: relative;
  z-index: 10;
}

.about-numbers h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 56px;
}

.about-numbers h2::after {
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods {
  padding: 60px 0;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

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

.contact-method p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-method span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-placeholder p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.form-placeholder strong {
  display: block;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

/* Office Hours */
.office-hours {
  padding: 60px 0;
}

.office-hours h2 {
  text-align: center;
  margin-bottom: 40px;
}

.hours-list {
  max-width: 600px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: #f8f8f8;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.hours-item:hover {
  background: var(--text-light);
  border-left-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hours-item strong {
  font-size: 15px;
  color: var(--text-dark);
}

.hours-item span {
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
}

.special-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* Map Section */
.map-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-placeholder {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid #d0d0d0;
}

.map-placeholder p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.map-placeholder strong {
  display: block;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}

.directions {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.directions h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--primary);
}

.directions ul {
  margin-bottom: 24px;
}

.directions li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.directions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.parking-info {
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.faq-contact {
  padding: 60px 0;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 0;
  background: #ffffff;
}

.legal-content .text-section {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--hot-pink);
}

/* Rights Cards */
.rights-cards {
  background: #f8f8f8;
  padding: 60px 0;
}

.rights-cards h2 {
  text-align: center;
  margin-bottom: 48px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.right-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border-left: 6px solid var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.right-card:hover {
  transform: translateX(8px);
  border-left-color: var(--primary);
  box-shadow: var(--shadow);
}

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

.right-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cookies Table */
.cookies-table {
  background: #f8f8f8;
  padding: 60px 0;
}

.cookies-table h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cookies-details {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cookies-details thead {
  background: linear-gradient(135deg, var(--secondary), var(--lime-green));
  color: var(--text-dark);
}

.cookies-details th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookies-details td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--bg-light);
  font-size: 14px;
  color: var(--text-muted);
}

.cookies-details tbody tr:hover {
  background: #f8f8f8;
}

.cookies-details tbody tr:last-child td {
  border-bottom: none;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--secondary), var(--lime-green));
  padding: 80px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 56px;
  color: var(--lime-green);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: success-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.thank-you-hero h1 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: var(--text-dark);
}

.subtitle {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 600;
}

.thank-you-message {
  padding: 60px 0;
}

.thank-you-message .text-section {
  text-align: center;
}

.thank-you-message p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.thank-you-message .btn {
  margin-top: 32px;
}

/* Next Steps */
.next-steps {
  background: #f8f8f8;
  padding: 60px 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-list .step-item {
  padding: 24px 28px;
  background: var(--text-light);
  border-radius: 12px;
  border-left: 6px solid var(--primary);
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.steps-list .step-item:hover {
  transform: translateX(8px);
  border-left-color: var(--hot-pink);
  box-shadow: var(--shadow);
}

/* While You Wait */
.while-you-wait {
  padding: 60px 0;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.suggestion-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

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

.suggestion-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-alternatives {
  background: #f8f8f8;
  padding: 60px 0;
}

.contact-alternatives h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-alternatives .contact-methods {
  padding: 0;
}

.method-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: var(--text-light);
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.method-item:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.2);
}

.method-item strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.method-item p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  padding-left: 16px;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  color: var(--accent);
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 24px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--neon-purple));
  color: var(--text-light);
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-banner.show {
  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;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

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

.modal-content {
  background: var(--text-light);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modal-appear 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 32px 32px 24px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}

.modal-header h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
}

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

.category-header h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 0;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 30px;
  transition: var(--transition);
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--secondary);
}

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

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

.category-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-footer {
  padding: 24px 32px 32px;
  border-top: 2px solid var(--bg-light);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0 50px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  .trust-item {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 40px 0;
  }
  
  .section {
    margin-bottom: 40px;
    padding: 30px 15px;
  }
  
  /* Cards - Full Width on Mobile */
  .service-card,
  .benefit-item,
  .step-item,
  .testimonial-card,
  .vehicle-card,
  .value-item,
  .stat-item,
  .contact-method,
  .plan-item,
  .right-card,
  .suggestion-card,
  .method-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Grids to Column */
  .services-grid,
  .benefits-grid,
  .steps-grid,
  .testimonials-grid,
  .vehicles-list,
  .features-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .longterm-plans,
  .rights-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  /* CTA Banner */
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-banner p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Tables */
  .price-table,
  .cookies-details {
    font-size: 12px;
  }
  
  .price-table th,
  .price-table td,
  .cookies-details th,
  .cookies-details td {
    padding: 12px 8px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

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

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-in-up {
  animation: slideInUp 0.6s ease;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print Styles */
@media print {
  header,
  .mobile-menu,
  .mobile-menu-toggle,
  footer,
  #cookie-banner,
  #cookie-modal,
  .btn,
  .cta-banner {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}