/* ============================================
   PlagiPrede Autovermietung - Gradient Modern Design
   Design Style: Modern with gradient elements
   ============================================ */

/* 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: #2C3E50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; }
p { margin-bottom: 16px; color: #34495E; }

a {
  color: #1A5F7A;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E85D04;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 61, 79, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(13, 61, 79, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0D3D4F 0%, #1A5F7A 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px 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: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background: rgba(244, 162, 97, 0.3);
  transform: translateX(5px);
}

/* Header */
header {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  box-shadow: 0 4px 20px rgba(13, 61, 79, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: white;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F4A261;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

/* CTA Button */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #E85D04 0%, #F4A261 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
  text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 93, 4, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

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

.btn-link {
  color: #1A5F7A;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 50%, #F4A261 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #F4A261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.trust-indicators span::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(244, 162, 97, 0.3);
  border-radius: 50%;
  font-weight: bold;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

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

.breadcrumb a {
  color: white;
}

.page-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  color: #7F8C8D;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Service Grid */
.services {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.services h2 {
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(13, 61, 79, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1A5F7A 0%, #F4A261 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13, 61, 79, 0.2);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E85D04;
  margin: 16px 0;
}

/* Features */
.features {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.features h2 {
  text-align: center;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #1A5F7A;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-left-color: #F4A261;
}

.feature-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1A5F7A 0%, #F4A261 100%);
  color: white;
  border-radius: 8px;
  font-weight: bold;
}

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

/* Process Steps */
.process {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
  text-align: center;
}

.process h2 {
  margin-bottom: 40px;
}

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

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1A5F7A 0%, #F4A261 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(13, 61, 79, 0.3);
}

.step:hover {
  transform: translateY(-8px);
}

.step h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.testimonials h2 {
  text-align: center;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 15px rgba(13, 61, 79, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 60px;
  color: rgba(26, 95, 122, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(13, 61, 79, 0.15);
}

.testimonial-card p {
  margin: 0;
  color: #2C3E50;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: #1A5F7A;
  margin-top: 8px;
}

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

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1A5F7A;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.2);
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

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

.cta-buttons,
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details p {
  font-size: 16px;
  color: #2C3E50;
}

/* Vehicle Catalog */
.vehicle-catalog {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
  margin-bottom: 40px;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.vehicle-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(13, 61, 79, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  position: relative;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A5F7A 0%, #F4A261 100%);
  border-radius: 16px 16px 0 0;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13, 61, 79, 0.2);
}

.vehicle-card h3 {
  margin-bottom: 12px;
}

.vehicle-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E85D04;
  margin: 16px 0;
}

/* Pricing Tables */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 61, 79, 0.1);
}

.pricing-table thead {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.pricing-table th {
  font-weight: 700;
}

.pricing-table tr:hover {
  background: #f8f9fa;
}

.pricing-table .note {
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 16px;
}

/* Pricing Cards */
.pricing-cards,
.pricing-tiers {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.pricing-grid,
.tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-card,
.tier-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  text-align: center;
  border-top: 4px solid #1A5F7A;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(13, 61, 79, 0.1);
}

.pricing-card:hover,
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13, 61, 79, 0.2);
  border-top-color: #F4A261;
}

.pricing-card .price,
.tier-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #E85D04;
  margin: 16px 0;
}

/* Benefits & Values */
.benefits,
.values {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.benefit-grid,
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item,
.value-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border-left: 4px solid #1A5F7A;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item:hover,
.value-card:hover {
  transform: translateX(8px);
  border-left-color: #F4A261;
}

.benefit-item::before,
.value-card::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1A5F7A 0%, #F4A261 100%);
  color: white;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
}

/* Lists */
.feature-list,
.highlight-list,
.included-list,
.extra-list,
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.feature-list li,
.highlight-list li,
.included-list li,
.extra-list li,
.stats-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1A5F7A;
  color: #2C3E50;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-list li:hover,
.highlight-list li:hover,
.included-list li:hover,
.extra-list li:hover,
.stats-list li:hover {
  background: #e9ecef;
  transform: translateX(8px);
}

.feature-list li::before,
.highlight-list li::before,
.included-list li::before,
.extra-list li::before,
.stats-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #1A5F7A 0%, #F4A261 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

/* Contact Options */
.contact-options {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  text-align: center;
  border-top: 4px solid #1A5F7A;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(13, 61, 79, 0.15);
}

.contact-card h3 {
  margin-bottom: 16px;
}

/* Forms */
.contact-form-section,
.data-request {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #2C3E50;
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #1A5F7A;
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.settings-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.toggle-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toggle-item:hover {
  background: #e9ecef;
}

.toggle-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #2C3E50;
}

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

/* Legal Content */
.legal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  color: #34495E;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 8px;
}

.update-date {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #e9ecef;
  font-style: italic;
  color: #7F8C8D;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 80px 20px;
  margin-bottom: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}

.thank-you-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.confirmation-message,
.quick-actions,
.urgent-contact {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(13, 61, 79, 0.1);
  text-align: center;
}

.confirmation-message ol {
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(13, 61, 79, 0.15);
}

.emergency-note {
  margin-top: 24px;
  padding: 16px;
  background: #FFF3CD;
  border-left: 4px solid #F4A261;
  border-radius: 8px;
  color: #856404;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F4A261;
  transform: translateX(5px);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(13, 61, 79, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.cookie-text a {
  color: #F4A261;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-buttons .accept-all {
  background: linear-gradient(135deg, #E85D04 0%, #F4A261 100%);
  color: white;
}

.cookie-buttons .accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.cookie-buttons .reject-all {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

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

.cookie-buttons .settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-buttons .settings:hover {
  border-color: white;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  background: linear-gradient(135deg, #0D3D4F 0%, #1A5F7A 100%);
  color: white;
  padding: 24px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin: 0;
}

.cookie-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #1A5F7A;
}

.cookie-category h4 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #7F8C8D;
  font-size: 14px;
  margin: 0;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

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

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }

  /* Adjust spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  /* Grid adjustments */
  .service-card,
  .vehicle-card,
  .pricing-card,
  .tier-card,
  .benefit-item,
  .value-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .feature-item {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .contact-card,
  .action-card {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Tables */
  .pricing-table table {
    font-size: 14px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }

  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }

  .service-card,
  .vehicle-card,
  .pricing-card {
    padding: 24px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.vehicle-card,
.testimonial-card,
.pricing-card {
  animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
:focus-visible {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}