/* ========================================
   agtaxi.ch - Design System & Styles
   Swiss Taxi Aarau - Rot/Weiss Design
   ======================================== */

/* Google Fonts werden per <link> im HTML geladen (kein @import = kein Render-Blocking) */

/* ========================================
   CSS Variables - Design System
   ======================================== */
:root {
  /* Colors */
  --color-primary: #CC0000;
  --color-primary-dark: #990000;
  --color-primary-light: #ff3333;
  --color-dark: #2d2d2d;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-success: #22c55e;
  --color-border: #e0e0e0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 30px rgba(204, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Keyboard skip link for accessibility */
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2100;
  background: #111111;
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform var(--transition-fast);
}

.skip-link:focus-visible {
  transform: translateY(0);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-lg) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Touch-friendly link targets */
a, button {
  -webkit-tap-highlight-color: rgba(204, 0, 0, 0.2);
  touch-action: manipulation;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

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

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border-color: transparent;
}

.btn-dark {
  background: rgba(45, 45, 45, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-dark:hover {
  background: rgba(45, 45, 45, 1);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-red:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-call {
  background: #CC0000;
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.btn-call:hover {
  background: #990000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(204, 0, 0, 0.4);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(204, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 24px rgba(204, 0, 0, 0.5);
  }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #ffffff;
  box-shadow: none;
  z-index: 1000;
  transition: all var(--transition-normal);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


/* Header uses full width, not constrained container */
.header > .container {
  max-width: 100%;
  padding: 0 1.5rem;
}

@media (max-width: 480px) {
  .header > .container {
    padding: 0 1rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.25rem;
}

/* ========================================
   Logo Image
   ======================================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header logo: constrained to header */
.header .logo {
  height: var(--header-height);
  max-height: var(--header-height);
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.header .logo .logo-img {
  height: var(--header-height);
  max-height: var(--header-height);
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.logo-img-footer {
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  min-width: 0;
  flex-wrap: nowrap;
  height: 100%;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 0.58rem 0.3rem;
  transition: color var(--transition-fast);
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.1;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link:focus-visible,
.nav-dropdown-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(204, 0, 0, 0.35);
  outline-offset: 2px;
}

.nav-cta {
  display: none;
}

@media (min-width: 769px) {
  .nav-cta {
    display: block;
    margin-left: 0.35rem;
  }
}

@media (max-width: 1360px) {
  .nav {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.94rem;
    padding: 0.55rem 0.2rem;
  }

  .header > .container {
    padding: 0 1rem;
  }
}

@media (max-width: 1220px) {
  .nav {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: 0.5rem 0.15rem;
  }

  .nav-cta {
    display: none;
  }
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-toggle::after {
  content: '▼';
  font-size: 0.55rem;
  transition: transform var(--transition-normal) ease-in-out;
  display: inline-block;
  transform-origin: center;
}

.nav-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--color-text);
}

.nav-language-toggle::after {
  content: none;
}

.nav-language-label {
  line-height: 1.1;
}

.nav-language-chevron {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.78;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.nav-dropdown.active .nav-language-chevron,
.nav-dropdown:hover .nav-language-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-language-toggle:hover {
  color: var(--color-primary);
}

.nav-more-toggle {
  gap: 0.45rem;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #222;
  font-weight: 600;
  margin-left: -0.35rem;
}

.nav-language-dropdown + .nav-more-dropdown {
  margin-left: -0.45rem;
}

.nav-more-toggle::after {
  content: none;
}

.nav-more-toggle::before {
  content: '⋯';
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.75;
  transform: translateY(-1px);
}

.nav-more-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.nav-more-dropdown .nav-dropdown-menu {
  left: auto;
  right: 0;
  min-width: 190px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e8e9ed;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(10, 15, 25, 0.14);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 1000;
  margin-top: 0.62rem;
  padding: 0.3rem;
  backdrop-filter: blur(4px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-link {
  display: block;
  padding: 0.64rem 0.82rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav-dropdown-link:hover {
  background: rgba(204, 0, 0, 0.08);
  color: var(--color-primary);
  padding-left: 1rem;
}

.nav-dropdown-link.active {
  background: rgba(204, 0, 0, 0.1);
  color: var(--color-primary);
  font-weight: 700;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-normal);
  display: block;
}

/* Touch targets - minimum 44px for mobile accessibility */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-link,
  .logo,
  .address-option,
  .faq-question {
    min-height: 44px;
    touch-action: manipulation;
  }

  /* Remove hover effects on touch devices */
  .btn:hover,
  .service-card:hover,
  .vehicle-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .faq-item:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 0.8rem) 1rem 1rem;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;
    z-index: 1000;
    gap: 0.2rem;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    color: #ffffff;
    font-size: 1rem;
    padding: 0.62rem 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
  }

  .nav-link:hover {
    color: var(--color-primary-light);
  }

  .nav-link.active {
    color: var(--color-primary-light);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    background: var(--color-primary-light);
  }

  .nav-cta {
    display: block;
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    min-height: 44px;
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.2rem;
    padding: 0;
    transition: none;
    width: 100%;
    text-align: left;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-link {
    padding: 0.56rem 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    display: block;
    width: 100%;
    text-align: left;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0.32rem;
  }

  .nav-dropdown-link:hover {
    background: rgba(204,0,0,0.35);
    color: white;
    padding-left: 0.75rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .nav-dropdown-toggle::after {
    float: none;
    margin-left: auto;
  }

  .nav-dropdown.active .nav-dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .nav-language-toggle {
    color: #fff;
    font-size: 1rem;
    justify-content: flex-start;
  }

  .nav-more-toggle {
    background: transparent;
    border-color: transparent;
    color: #fff;
    justify-content: flex-start;
    margin-left: 0;
    font-size: 1rem;
  }

  .nav-more-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  .nav-language-dropdown + .nav-more-dropdown {
    margin-left: 0;
  }

  .nav-language-label {
    text-align: left;
  }

  .nav-language-chevron {
    margin-left: auto;
  }

  .menu-toggle {
    z-index: 1102;
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(1px);
    z-index: 999;
  }
}

/* ========================================
   Hero Section
   ======================================== */
/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* ========================================
   Mobile Hero – Bild oben, separater Content unten
   ======================================== */

/* Desktop: Mobile-Card verstecken */
.hero-mobile-card { display: none; }

@media (max-width: 768px) {
  /* Hero wird zum reinen Bild – kein Content */
  .hero {
    height: calc(var(--header-height) + 75vw) !important;
    min-height: unset !important;
    overflow: hidden !important;
  }

  /* Desktop-Content innerhalb des Hero ausblenden */
  .hero > .container { display: none !important; }

  /* Mobile-Card direkt unter dem Bild */
  .hero-mobile-card {
    display: block;
    background: #ffffff;
    padding: 1.75rem 0 2rem;
  }

  .hero-mobile-title {
    font-size: 1.85rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
  }

  .hero-mobile-title span { color: #CC0000; }

  .hero-mobile-text {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero-mobile-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }

  .hero-mobile-buttons .btn-lg {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.75rem 0.5rem;
    text-align: center;
  }

  .hero-mobile-stats {
    display: flex;
    gap: 0;
    border: 1.5px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 0.25rem;
  }

  .hero-mobile-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border-right: 1.5px solid #ebebeb;
    background: #fff;
  }

  .hero-mobile-stat:last-child {
    border-right: none;
  }

  .hero-mobile-stat strong {
    font-size: 1.25rem;
    color: #CC0000;
    font-weight: 800;
    line-height: 1.1;
  }

  .hero-mobile-stat span {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.2rem;
    text-align: center;
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  background-color: #151515;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  backdrop-filter: blur(4px);
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title span {
  color: #ffffff;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 36ch;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons-break {
  flex-basis: 100%;
  height: 0;
}

.hero-info {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

@media (max-width: 400px) {
  .hero-info {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero-info-text strong {
  display: block;
  font-size: 1.125rem;
}

.hero-info-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

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

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-desc {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-card {
  flex: 0 1 calc(25% - 1.5rem);
  min-width: 200px;
}

@media (max-width: 992px) {
  .service-card {
    flex: 0 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 0 1 calc(50% - 0.5rem);
    min-width: 0;
  }
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 2px solid var(--color-border);
  max-width: 280px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--color-primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.service-link:hover {
  color: var(--color-primary-dark);
}

/* ========================================
   Wheelchair Highlight (SEO)
   ======================================== */
.wheelchair-highlight {
  padding: var(--space-xl) 0;
}

.wheelchair-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.wheelchair-highlight-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.wheelchair-highlight-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.wheelchair-highlight-card p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.wheelchair-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wheelchair-highlight-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.wheelchair-highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .wheelchair-highlight-grid {
    gap: 1rem;
  }

  .wheelchair-highlight .section-header {
    margin-bottom: 1.5rem;
  }

  .wheelchair-highlight-card {
    padding: 1.4rem;
    border-radius: 16px;
  }

  .wheelchair-highlight .utility-center-mt {
    display: grid;
    gap: 0.75rem;
  }

  .wheelchair-highlight .utility-center-mt .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .wheelchair-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .wheelchair-highlight .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1.3px;
    margin-bottom: 0.6rem;
  }

  .wheelchair-highlight .section-title {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .wheelchair-highlight .section-desc {
    font-size: 0.98rem;
  }

  .wheelchair-highlight-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    line-height: 1.25;
  }

  .wheelchair-highlight-card p,
  .wheelchair-highlight-list li {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .wheelchair-highlight-card {
    padding: 1rem;
  }

  .wheelchair-highlight-list li {
    margin-bottom: 0.4rem;
    padding-left: 1rem;
  }

  .wheelchair-highlight-list li::before {
    top: 0.55rem;
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 390px) {
  .wheelchair-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Features / Why Choose Us
   ======================================== */
.features {
  background: var(--color-dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.features .section-subtitle {
  color: var(--color-primary-light);
}

.features .section-title {
  color: #ffffff;
}

.features .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition-normal);
}

.feature-item:hover {
  background: rgba(255,255,255,0.05);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: rgba(204, 0, 0, 0.2);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--color-primary-light);
  transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.feature-item h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ========================================
   Vehicles Section
   ======================================== */
.vehicles-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

.vehicle-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: all var(--transition-normal);
}

.vehicle-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.vehicle-img-wrap {
  background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
  padding: 0;
  position: relative;
  border-bottom: 3px solid var(--color-primary);
  overflow: hidden;
  height: 280px;
}

.vehicle-emoji {
  font-size: 5rem;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  position: relative;
  z-index: 1;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder for future real vehicle photos */
.vehicle-photo-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 4rem;
  color: #ccc;
  border: 2px dashed #ccc;
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-body {
  padding: 1.75rem;
}

.vehicle-body h3 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.vehicle-model {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.vehicle-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.vehicle-specs span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.vehicle-specs span strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.vehicle-features {
  margin-bottom: 1.5rem;
}

.vehicle-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.vehicle-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.vehicle-card .btn {
  width: 100%;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  padding: var(--space-xl) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-red);
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(204,0,0,0.25);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-text-light);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   Area Coverage
   ======================================== */
.area {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .area-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.area-text h2 {
  margin-bottom: 1.5rem;
}

.area-text p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .area-list {
    grid-template-columns: 1fr;
  }
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}

.area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-item-link {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}
.area-item-link:hover {
  color: var(--color-primary);
}

/* Stadtfahrten Tarife Cards */
.stadtfahrt-tarife-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
}

.stadtfahrt-card {
  background: #f0f0f0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  box-shadow: 0 4px 0 #CC0000, 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
}

.stadtfahrt-label {
  font-weight: 700;
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.stadtfahrt-price {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stadtfahrt-desc {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 640px) {
  .stadtfahrt-tarife-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    max-width: 100%;
  }

  .stadtfahrt-card {
    min-width: 0;
    max-width: none;
    padding: 1.25rem 0.9rem;
    border-radius: 16px;
  }

  .stadtfahrt-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 240px);
    justify-self: center;
  }

  .stadtfahrt-label {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
  }

  .stadtfahrt-price {
    font-size: 2.2rem;
  }

  .stadtfahrt-desc {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .stadtfahrt-tarife-grid {
    grid-template-columns: 1fr;
  }

  .stadtfahrt-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}

/* Anfrage Cards */
.anfrage-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  min-width: 220px;
  max-width: 280px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
}

.anfrage-card h4 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.1rem;
}

.anfrage-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.anfrage-icon {
  font-size: 2.5rem;
}

.anfrage-badge {
  display: inline-block;
  background: #f5f5f5;
  color: #555;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid #ddd;
}

.area-map {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.area-map-placeholder {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-md);
  padding: 3rem;
  color: #ffffff;
}

.area-map-placeholder h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.area-map-placeholder p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: var(--space-xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-red);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-text {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
  font-style: italic;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-text h2 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-dark);
  padding: var(--space-lg) 0 var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-normal);
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact span {
  color: var(--color-primary-light);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--color-primary-light);
}

/* ========================================
   Floating Action Buttons
   ======================================== */
.feedback-float {
  display: none !important;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: none;
  z-index: 999;
  transition: transform 0.22s ease;
  animation: whatsapp-float-bob 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  color: white;
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 50px;
  height: 50px;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:focus-visible,
.review-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@keyframes whatsapp-float-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .feedback-float {
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    font-size: 0.65rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 46px;
    height: 46px;
  }

  .review-float {
    bottom: 20px;
    left: 20px;
    min-width: 116px;
    height: 44px;
    padding: 0 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
  }
}

/* ========================================
   Mobile Call Sticky Button
   ======================================== */
.mobile-call-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

@media (max-width: 768px) {
  .mobile-call-sticky {
    display: flex;
  }
}

.mobile-call-sticky .btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 1rem;
  animation: pulse 2s infinite;
}


/* ========================================
   Page Header (Leistungen, Kontakt, Fahrzeuge)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-md);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header > .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .section-subtitle {
  color: rgba(255,255,255,0.75);
}

/* ========================================
   Leistungen Page
   ======================================== */
.leistungen-list {
  padding: var(--space-xl) 0;
}

.leistung-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.leistung-item:last-child {
  border-bottom: none;
}

.leistung-item:nth-child(even) {
  direction: rtl;
}

.leistung-item:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .leistung-item,
  .leistung-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.leistung-icon-lg {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 4rem;
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.leistung-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.leistung-content p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.leistung-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .leistung-features {
    grid-template-columns: 1fr;
  }
}

.leistung-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
}

.leistung-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
}

.leistung-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ========================================
   Contact Page & Booking Form
   ======================================== */
.contact-section {
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-primary);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition-fast);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

/* Form row for two fields side by side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Success message */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
  border-radius: var(--radius-lg);
  border: 2px solid #bbf7d0;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  color: #166534;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: #15803d;
  margin-bottom: 0.5rem;
}

.form-success a {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-info {
  padding: 2rem 0;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  border: 2px solid rgba(204,0,0,0.2);
}

.contact-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-info a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--color-primary-dark);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
}

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

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal);
}

.faq-item.active {
  box-shadow: var(--shadow-red);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-light);
}

/* ========================================
   Animations
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Adjustments - Tablets & Mobile
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-lg: 2.5rem;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-info {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Responsive Adjustments - Mobile Phones
   ======================================== */
@media (max-width: 480px) {
  :root {
    --container-max: 100%;
    --space-xl: 2.5rem;
    --space-lg: 2rem;
    --space-md: 1.25rem;
    --space-sm: 0.75rem;
  }

  .container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 52px;
  }

  .header .logo {
    height: var(--header-height);
    max-height: var(--header-height);
    max-width: calc(100vw - 80px);
  }

  .header .logo .logo-img {
    height: var(--header-height);
    max-height: var(--header-height);
    max-width: 100%;
    transform: none;
  }

  .nav-link {
    font-size: 0.98rem;
    padding: 0.56rem 0.62rem;
    min-height: 44px;
  }

  .hero {
    height: calc(var(--header-height) + 75vw) !important;
    min-height: unset !important;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .page-header {
    padding: calc(var(--header-height) + 1rem) 0 1rem;
  }

  .btn-call {
    padding: 0.55rem 0.6rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .testimonials-grid,
  .pricing-grid,
  .features-grid,
  .vehicles-grid,
  .services-grid {
    gap: 1rem;
  }

  .service-card,
  .feature-item,
  .vehicle-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .area-content {
    gap: 1.5rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .leistung-item {
    padding: 1.5rem 0;
  }

  .leistung-icon-lg {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .vehicle-specs {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 16px;
  }

  .cta-banner {
    padding: 2rem 0;
  }
}

/* Very small screens - iPhone SE, etc. */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .service-card,
  .feature-item,
  .vehicle-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .hero-info-icon {
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
  }
}

/* ─── Address Autocomplete Dropdown ──────────────────────────────────────── */
.address-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: none;
  max-height: 260px;
  overflow-y: auto;
}

.form-group-address {
  position: relative;
}

.address-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.address-option:last-child {
  border-bottom: none;
}

.address-option:hover,
.address-option.active {
  background: rgba(204, 0, 0, 0.06);
  color: var(--color-primary);
}

.address-option b {
  font-weight: 700;
  color: var(--color-primary);
}

.address-option-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.address-dropdown::-webkit-scrollbar {
  width: 8px;
}

.address-dropdown::-webkit-scrollbar-thumb {
  background: rgba(204, 0, 0, 0.28);
  border-radius: 999px;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1eb85a;
  color: #ffffff;
}

.review-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: auto;
  min-width: 132px;
  height: 48px;
  padding: 0 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(91, 115, 231, 0.35);
  background-color: #5b73e7;
  z-index: 999;
  white-space: nowrap;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
  animation: review-float-bob 2.8s ease-in-out infinite;
}

.review-float:hover {
  transform: translateY(-2px) scale(1.03);
  background-color: #4f66d1;
  box-shadow: 0 10px 28px rgba(91, 115, 231, 0.48);
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    right: 20px;
    bottom: 92px;
  }
}

@keyframes review-float-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.vehicle-emoji-fallback {
  display: none;
}

.vehicle-image.hidden {
  display: none;
}

.vehicle-emoji-fallback.show {
  display: flex;
}

.utility-center-mt {
  text-align: center;
  margin-top: 2.5rem;
}

.area-cta {
  margin-top: 2rem;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.scroll-top-btn {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 120px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 99;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.scroll-top-btn.visible {
  display: block;
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
}

/* Contact Hub + booking channel fallbacks */
.contact-hub {
  padding: 2.5rem 0 1.5rem;
}

@media (max-width: 768px) {
  .contact-sections-wrapper {
    display: flex;
    flex-direction: column;
  }
  .contact-section {
    order: 1;
  }
  .contact-hub {
    order: 2;
  }
}

.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-hub-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-hub-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.contact-hub-card p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.55;
}

.contact-method-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.contact-method-call {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(204, 0, 0, 0.28);
}

.contact-method-call:hover {
  color: #ffffff;
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.contact-method-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.contact-method-whatsapp:hover {
  color: #ffffff;
  background: #1eb85a;
  transform: translateY(-1px);
}

.contact-method-email {
  background: #f3f4f6;
  color: #1f2937;
  border: 1px solid #d1d5db;
}

.contact-method-email:hover {
  color: #111827;
  background: #e5e7eb;
  transform: translateY(-1px);
}

.contact-points {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  border-radius: 10px;
  color: var(--color-text-light);
}

.form-alt-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-alt-actions--single {
  grid-template-columns: 1fr;
}

.form-alt-btn {
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid #d9d9d9;
  background: #f9fafb;
  color: #222;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-alt-btn:hover {
  background: #f1f3f5;
  color: #111;
  transform: translateY(-1px);
}

.form-alt-btn-email {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.form-alt-btn-call {
  border-color: #fecaca;
  background: #fff1f2;
  color: #9f1239;
}

.form-alt-btn-call:hover {
  background: #ffe4e6;
  color: #881337;
}

.submit-channel-open {
  overflow: hidden;
}

.submit-channel-modal {
  position: fixed;
  inset: 0;
  z-index: 10030;
  background: rgba(15, 23, 42, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.submit-channel-modal.is-open {
  display: flex;
}

.submit-channel-dialog {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  padding: 1.5rem;
}

.submit-channel-title {
  margin: 0;
  font-size: 1.35rem;
  color: #111827;
}

.submit-channel-subtitle {
  margin: 0.4rem 0 1.1rem;
  color: #4b5563;
  font-size: 0.96rem;
}

.submit-channel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.submit-channel-btn {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.submit-channel-btn:hover {
  transform: translateY(-1px);
}

.submit-channel-btn-whatsapp {
  border-color: #1fb85a;
  background: #25d366;
  color: #ffffff;
}

.submit-channel-btn-whatsapp:hover {
  background: #1fb85a;
}

.submit-channel-btn-email {
  background: #f8fafc;
  color: #111827;
}

.submit-channel-btn-email:hover {
  background: #eef2f7;
}

.submit-channel-cancel {
  margin-top: 0.9rem;
  width: 100%;
  min-height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
}

.submit-channel-cancel:hover {
  background: #f3f4f6;
}

@media (max-width: 992px) {
  .contact-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-alt-actions {
    grid-template-columns: 1fr;
  }

  .booking-form-status {
    display: flex;
    border-radius: 14px;
  }

  .submit-channel-actions {
    grid-template-columns: 1fr;
  }
}

/* Mobile cleanup: hide bottom number bar and keep floating actions low */
@media (max-width: 768px) {
  body .mobile-call-sticky {
    display: none;
  }

  body .review-float {
    left: 14px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 1000;
  }

  body .whatsapp-float {
    right: 14px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 1000;
  }

  body .scroll-top-btn {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

/* ========================================
   Vehicle Detail Pages
   ======================================== */
.vehicle-gallery-section {
  padding: 4rem 0;
  padding-top: calc(var(--header-height) + 3rem);
}

.vehicle-title {
  text-align: center;
  margin-bottom: 3rem;
}

.vehicle-title h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vehicle-title p {
  color: #999;
  font-size: 1.1rem;
}

.wheelchair-title-logo {
  width: auto;
  height: 56px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-item {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.vehicle-specs {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.spec-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.spec-item:nth-child(odd):nth-last-child(1),
.spec-item:nth-child(even):nth-last-child(1) {
  border-bottom: none;
}

.spec-label {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5rem;
}

.features-list li {
  padding: 0.625rem 0;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #f5f5f5;
}

.features-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vehicle-specs h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.vehicle-detail-panel {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.vehicle-detail-panel-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.vehicle-detail-panel-intro {
  color: #666;
  margin-bottom: 2rem;
}

.wheelchair-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.wheelchair-spec-card,
.wheelchair-rate-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e0e0e0;
  text-align: center;
  min-width: 0;
  overflow-wrap: anywhere;
}

.wheelchair-rates-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.wheelchair-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wheelchair-rate-card {
  border-top: 4px solid #CC0000;
}

.wheelchair-rates-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: #888;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #990000 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 3rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 0.9rem 2rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .vehicle-title h1 {
    font-size: 2rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .wheelchair-specs-grid,
  .wheelchair-rates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .vehicle-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .vehicle-gallery > .gallery-item:only-child {
    grid-column: 1 / -1;
  }

  .wheelchair-title-logo {
    height: 44px;
  }

  .vehicle-detail-panel {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .vehicle-detail-panel-title,
  .wheelchair-rates-title {
    font-size: 1.35rem;
  }

  .vehicle-detail-panel-intro {
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
  }

  .wheelchair-specs-grid,
  .wheelchair-rates-grid,
  .features-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .wheelchair-spec-card,
  .wheelchair-rate-card {
    padding: 1rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .vehicle-gallery,
  .wheelchair-specs-grid,
  .wheelchair-rates-grid,
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Leistungen Page - Service Cards
   ======================================== */
.leistungen-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.leistung-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  padding: 2.75rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.leistung-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 10;
}

.leistung-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 0%, rgba(204,0,0,0.02) 0%, transparent 80%);
  pointer-events: none;
}

.leistung-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.leistung-card:hover::before {
  transform: scaleY(1);
}

.leistung-card.compact {
  grid-column: span 4;
  padding: 2rem;
}

@media (max-width: 1200px) {
  .leistung-card { grid-column: span 6; }
  .leistung-card.compact { grid-column: span 6; }
}

@media (max-width: 768px) {
  .leistung-card { grid-column: span 12; }
  .leistung-card.compact { grid-column: span 12; }
}

.leistung-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #fff8f7 0%, #ffe8e5 100%);
  border-radius: 14px;
  margin-bottom: 1.75rem;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(204,0,0,0.08);
}

.leistung-card.compact .leistung-icon-box {
  width: 75px;
  height: 75px;
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
}

.leistung-icon-box::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 25% 50%, rgba(204,0,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.leistung-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.leistung-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.leistung-card.compact .leistung-content h2 {
  font-size: 1.3rem;
}

.leistung-content > p {
  color: var(--color-text-light);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.leistung-card.compact .leistung-content > p {
  font-size: 0.88rem;
}

.leistung-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.leistung-features li {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: 'Open Sans', sans-serif;
}

.leistung-card.compact .leistung-features li {
  font-size: 0.85rem;
}

.leistung-features li::before {
  content: '\2192';
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.leistung-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f5f5f5;
}

.leistung-card.compact .leistung-footer {
  gap: 1rem;
  padding-top: 1.25rem;
}

.leistung-footer--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.leistung-icon-box--blue {
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
}

.leistung-price {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(204,0,0,0.05) 0%, rgba(204,0,0,0.02) 100%);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary);
}

.leistung-card.compact .leistung-price {
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem;
}

.leistung-price::before {
  content: '\1F4B0';
  font-size: 1.1rem;
}

.leistung-card .btn {
  padding: 0.8rem 1.75rem;
  font-size: 0.9rem;
  align-self: flex-start;
  font-weight: 600;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(204,0,0,0.15);
}

.leistung-card .btn:hover {
  background: #990000;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.3);
}

.leistung-card.compact .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}

.leistung-card {
  opacity: 0;
  animation: slideUpFade 0.6s cubic-bezier(0.23, 1, 0.320, 1) forwards;
}

.leistung-card:nth-child(1) { animation-delay: 0.1s; }
.leistung-card:nth-child(2) { animation-delay: 0.15s; }
.leistung-card:nth-child(3) { animation-delay: 0.2s; }
.leistung-card:nth-child(4) { animation-delay: 0.25s; }
.leistung-card:nth-child(5) { animation-delay: 0.3s; }
.leistung-card:nth-child(6) { animation-delay: 0.35s; }
.leistung-card:nth-child(7) { animation-delay: 0.4s; }
.leistung-card:nth-child(8) { animation-delay: 0.45s; }
.leistung-card:nth-child(9) { animation-delay: 0.5s; }

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

@media (max-width: 600px) {
  .leistungen-section {
    padding: 2.5rem 0;
  }

  .leistungen-grid {
    gap: 1.75rem;
  }

  .leistung-card {
    padding: 1.75rem;
  }

  .leistung-icon-box {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .leistung-content h2 {
    font-size: 1.3rem;
  }

  .leistung-content > p {
    font-size: 0.88rem;
  }

  .leistung-features li {
    font-size: 0.8rem;
  }
}

/* ========================================
   Fahrzeuge Page - Vehicle Grid
   ======================================== */
.vehicles-showcase {
  display: grid;
  gap: 4rem;
  margin-bottom: 4rem;
}

.vehicle-showcase-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(to bottom, #fff, #fafafa);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.vehicle-showcase-hero:hover {
  border-color: #ddd;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  transform: translateY(-8px);
}

.vehicle-showcase-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 70%, rgba(204,0,0,0.02) 0%, transparent 45%);
  pointer-events: none;
}

.vehicle-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5rem;
  background: linear-gradient(135deg, #fff8f7 0%, #fff0f0 100%);
  position: relative;
  padding: 4rem 3.5rem;
  border-right: 1px solid #f5f5f5;
}

.vehicle-icon-large::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at 30% 50%, rgba(204,0,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.vehicle-info-hero {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-badge-primary {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  width: fit-content;
  letter-spacing: 0.95px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(204,0,0,0.2);
}

.vehicle-info-hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
  line-height: 1.1;
}

.vehicle-model-text {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-specs-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.vehicle-spec-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.25rem;
  background: rgba(204,0,0,0.04);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: #555;
  border: 1px solid rgba(204,0,0,0.08);
  border-left: 3px solid var(--color-primary);
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-spec-item:hover {
  background: rgba(204,0,0,0.06);
}

.vehicle-spec-item strong {
  color: var(--color-primary);
  font-weight: 700;
}

.vehicle-highlight-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-highlight-features li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.vehicle-highlight-features li::before {
  content: '\2192';
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.vehicles-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vehicle-card-secondary {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.vehicle-card-secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
}

.vehicle-card-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 0%, rgba(204,0,0,0.02) 0%, transparent 75%);
  pointer-events: none;
}

.vehicle-card-secondary:hover {
  border-color: #e0e0e0;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.vehicle-card-secondary:hover::before {
  transform: scaleY(1);
}

.vehicle-img-secondary {
  background: linear-gradient(135deg, #fff8f7 0%, #fff0f0 100%);
  padding: 3rem 2.5rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.vehicle-img-secondary::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 35% 45%, rgba(204,0,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.vehicle-body-secondary {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-body-secondary h2,
.vehicle-body-secondary h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 0.2rem;
  color: #1a1a1a;
  line-height: 1.2;
}

.vehicle-model-secondary {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.vehicle-features-secondary {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  flex: 1;
}

.vehicle-features-secondary li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vehicle-features-secondary li::before {
  content: '\2192';
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
}

.vehicle-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(204,0,0,0.05) 0%, rgba(204,0,0,0.02) 100%);
  border: 1px solid rgba(204,0,0,0.12);
  border-left: 3px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-family: 'Open Sans', sans-serif;
}

.vehicle-body-secondary .btn {
  font-family: 'Open Sans', sans-serif;
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vehicle-body-secondary .btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .vehicle-showcase-hero {
    grid-template-columns: 1fr;
  }

  .vehicle-icon-large {
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
    padding: 3.5rem;
  }

  .vehicle-info-hero {
    padding: 3.5rem;
  }

  .vehicles-secondary-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 700px) {
  .vehicle-showcase-hero {
    border-radius: 16px;
  }

  .vehicle-icon-large {
    font-size: 5.5rem;
    padding: 3rem 2.5rem;
  }

  .vehicle-info-hero {
    padding: 3rem;
  }

  .vehicle-info-hero h2 {
    font-size: 2rem;
  }

  .vehicle-spec-item {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
  }

  .vehicle-img-secondary {
    min-height: 160px;
    font-size: 4rem;
    padding: 2.5rem;
  }

  .vehicle-body-secondary {
    padding: 2rem;
  }

  .vehicle-body-secondary h2,
  .vehicle-body-secondary h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 500px) {
  .vehicle-icon-large {
    font-size: 4.5rem;
    padding: 2.5rem;
  }

  .vehicle-info-hero {
    padding: 2rem;
  }

  .vehicle-info-hero h2 {
    font-size: 1.7rem;
  }

  .vehicle-card-secondary {
    border-radius: 14px;
  }

  .vehicle-model-text {
    font-size: 0.85rem;
  }
}

.vehicle-showcase-media,
.vehicle-card-secondary-media {
  display: block;
  width: 100%;
}

.vehicle-showcase-media picture,
.vehicle-card-secondary-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vehicle-showcase-media img,
.vehicle-card-secondary-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-cta-wrap {
  margin-top: 1.5rem;
}

.vehicle-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.vehicle-info-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.vehicle-info-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .vehicles-showcase {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .vehicles-secondary-grid {
    gap: 1rem;
  }

  .vehicle-showcase-media {
    min-height: 220px;
    border-right: none !important;
    border-bottom: 1px solid #ececec !important;
  }

  .vehicle-showcase-media img {
    aspect-ratio: 16 / 11;
  }

  .vehicle-card-secondary-media {
    min-height: 150px !important;
  }

  .vehicle-cta-wrap {
    margin-top: 1rem !important;
  }

  .vehicle-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .vehicle-info-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .vehicle-info-card-icon {
    font-size: 2rem;
    margin-bottom: 0.65rem;
  }

  .vehicle-info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.45rem !important;
  }

  .vehicle-info-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .vehicle-showcase-media {
    min-height: 190px;
  }

  .vehicle-card-secondary-media {
    min-height: 128px !important;
  }

  .vehicle-info-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-info-card {
    padding: 0.9rem;
  }

  .vehicle-info-card-icon {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
}

/* ========================================
   Contact/Booking Page - Form Styles
   ======================================== */
.booking-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.booking-form-wrapper .section-subtitle {
  display: block;
  text-align: center;
}

.booking-form-wrapper h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.booking-form-intro {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.booking-form-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.6rem;
  padding: 0.7rem 1rem;
  background: #fff4f4;
  border: 1px solid rgba(204, 0, 0, 0.14);
  border-radius: 999px;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.booking-form-status::before {
  content: '●';
  color: var(--color-primary);
}

.booking-form {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-required {
  color: var(--color-primary);
  font-weight: 700;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204,0,0,0.3);
}

.form-info-box {
  background: #f9f9f9;
  border-left: 4px solid var(--color-primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.form-info-box strong {
  color: #333;
}

.form-error {
  display: none;
  color: var(--color-primary);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input {
  border-color: var(--color-primary);
  background: rgba(204,0,0,0.02);
}

/* Custom radio buttons */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
  user-select: none;
}

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  position: relative;
}

.radio-label input[type="radio"]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  box-shadow: inset 0 0 0 4px white;
}

.radio-label input[type="radio"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.5rem;
  }
}

/* Booking Tabs */
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
}

.booking-tab-btn {
  flex: 1;
  padding: 1.25rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #999;
  transition: all 0.3s ease;
  position: relative;
}

.booking-tab-btn:hover {
  color: #555;
}

.booking-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3.5rem 0;
  }

  .booking-form-wrapper {
    max-width: 100%;
  }

  .booking-form-wrapper h2 {
    font-size: clamp(1.6rem, 5.8vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .booking-form-intro {
    font-size: 0.93rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .booking-form-status {
    margin-bottom: 1rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .booking-tabs {
    gap: 0.45rem;
    margin-bottom: 1rem;
    border-bottom: 0;
  }

  .booking-tab-btn {
    min-height: 48px;
    padding: 0.72rem 0.45rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .booking-tab-btn.active {
    color: #ffffff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(204, 0, 0, 0.16);
  }

  .booking-form {
    padding: 1rem;
    border-width: 1px;
    border-radius: 14px;
  }

  .booking-form .form-group {
    margin-bottom: 0.95rem;
  }

  .booking-form .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
  }

  .booking-form .form-group input,
  .booking-form .form-group select,
  .booking-form .form-group textarea {
    min-height: 44px;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-size: 16px;
  }

  .booking-form .form-group textarea {
    min-height: 78px;
  }

  .booking-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .booking-form .form-row > :only-child {
    grid-column: 1 / -1;
  }

  .booking-form .form-section-title {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    margin-top: 0.85rem !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.55rem !important;
  }

  .booking-form .form-section-title[style*="margin-top: 0;"] {
    margin-top: 0 !important;
  }

  .booking-form #kurierBanner {
    padding: 1rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    border-radius: 12px !important;
  }

  .booking-form #kurierBanner > div {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
  }

  .booking-form #kurierBanner strong {
    font-size: 1rem !important;
  }

  .booking-form #kurierBanner p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .booking-form #kurierBanner a {
    width: 100%;
    text-align: center;
    padding: 0.72rem 0.9rem !important;
  }

  .booking-form [style*="display:flex;gap:1.5rem;margin-top:0.5rem;"] {
    gap: 0.85rem !important;
    flex-wrap: wrap !important;
  }

  .booking-form [style*="display:flex;align-items:center;gap:0.5rem;font-weight:normal;cursor:pointer;"] {
    font-size: 0.9rem;
  }

  .booking-form .form-submit-btn {
    min-height: 46px;
    margin-top: 0.65rem;
    padding: 0.88rem;
    font-size: 0.95rem;
  }

  .booking-form .form-info-box {
    padding: 0.85rem 0.95rem;
    margin-top: 1rem;
    border-left-width: 3px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .booking-form .form-error {
    margin-top: 0.3rem;
    font-size: 0.78rem;
  }

  .form-alt-actions {
    gap: 0.6rem;
  }

  .form-alt-btn {
    padding: 0.72rem 0.85rem;
    font-size: 0.9rem;
  }

  .address-dropdown {
    max-height: 180px;
    font-size: 0.88rem;
  }

  .submit-channel-dialog {
    max-width: 380px;
    padding: 1.15rem;
    border-radius: 14px;
  }

  .submit-channel-title {
    font-size: 1.15rem;
  }

  .submit-channel-subtitle {
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
  }

  .submit-channel-btn {
    min-height: 44px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .booking-form-status {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .booking-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-tab-btn {
    min-height: 50px;
    padding: 0.66rem 0.3rem;
    font-size: 0.78rem;
  }

  .booking-form {
    padding: 0.85rem;
  }

  .booking-form .form-group input,
  .booking-form .form-group select,
  .booking-form .form-group textarea {
    padding: 0.66rem 0.75rem;
  }

  .booking-form .form-submit-btn {
    font-size: 0.92rem;
  }

  .booking-form .form-info-box {
    font-size: 0.8rem;
  }

  .form-alt-btn {
    font-size: 0.86rem;
  }
}

@media (max-width: 380px) {
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form .form-row > :only-child {
    grid-column: auto;
  }
}

/* ========================================
   Kurier Page - Courier Form
   ======================================== */
.kurier-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.form-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.form-section-title .section-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.form-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  .form-row-3,
  .form-row-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .form-row-3,
  .form-row-4 {
    grid-template-columns: 1fr;
  }
}

.form-group label span.optional {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.submit-bar {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.submit-bar .btn {
  min-width: 180px;
}

.kurier-success {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: none;
}

.kurier-success .success-icon {
  width: 90px;
  height: 90px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.kurier-success h2 {
  color: #166534;
  margin-bottom: 0.75rem;
}

.kurier-success p {
  color: #15803d;
  font-size: 1.0625rem;
}

.kurier-success a {
  color: var(--color-primary);
}

.info-box {
  background: rgba(204,0,0,0.06);
  border: 1.5px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
  font-size: 0.9375rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-box span {
  flex-shrink: 0;
  font-size: 1.25rem;
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.about-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(204,0,0,0.1);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.stats-section {
  background: #f9f9f9;
  padding: 3rem 2rem;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-content h2 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   404 Page
   ======================================== */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found-inner {
  max-width: 520px;
}

.not-found-code {
  font-size: 7rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.not-found-emoji {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.not-found h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.not-found p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.not-found-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Impressum Page
   ======================================== */
.impressum-container {
  max-width: 760px;
  margin: 0 auto;
}

.impressum-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.impressum-card h2 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.impressum-table tr {
  border-bottom: 1px solid var(--color-border);
}

.impressum-table tr:last-child {
  border-bottom: none;
}

.impressum-table td {
  padding: 0.75rem 0;
}

.impressum-table td:first-child {
  font-weight: 600;
  width: 160px;
  color: var(--color-dark);
}

.impressum-table a {
  color: var(--color-primary);
}

.impressum-card p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.impressum-card p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .header,
  .footer,
  .mobile-call-sticky,
  .whatsapp-float,
  .review-float,
  .scroll-top-btn,
  #cookieBanner,
  .skip-link,
  .menu-toggle {
    display: none !important;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.6;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1rem 0;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
  }
}

/* ============================================================
   MOBILE IMPROVEMENTS – Targeted Enhancements
   ============================================================ */

/* --- Hero: kompaktere Darstellung auf kleinen Screens --- */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 34ch;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1rem;
  }

  /* Hero-Info: 3 Items nebeneinander (nicht gestapelt) */
  .hero-info {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 2rem;
    justify-content: flex-start;
  }

  .hero-info-item {
    flex: 0 0 auto;
  }

  /* Hero-Buttons: 2er-Spalten-Layout auf Tablet */
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    text-align: center;
    justify-content: center;
  }

  /* Der Zeilenumbruch-Div zwischen Tel und WhatsApp */
  .hero-buttons-break {
    flex-basis: 100% !important;
    height: 0;
    display: block;
  }

}

/* --- Features Grid: 2 Spalten auch auf Mobile --- */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem;
  }

  .feature-item {
    padding: 1rem 0.75rem;
  }

  .feature-item h3 {
    font-size: 0.9rem;
  }

  .feature-item p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .feature-icon img {
    width: 44px !important;
    height: auto !important;
  }
}

/* --- Zahlungsmethoden Cards: Stack auf Mobile --- */
@media (max-width: 640px) {
  /* Wrapper-Flex der Zahlungskarten */
  .section > .container > div[style*="Zahlungsmethoden"] ~ div,
  div[style*="justify-content:center"][style*="gap:1.5rem"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}

/* --- Service Cards: min-width fix --- */
@media (max-width: 576px) {
  .service-card .service-icon img {
    width: 48px !important;
    height: auto !important;
  }
}

/* --- Hero auf kleinen Phones (480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-info {
    margin-top: 1.5rem;
    gap: 0.5rem 1rem;
  }

  .hero-info-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  .hero-info-text strong {
    font-size: 0.9rem;
  }

  .hero-info-text span {
    font-size: 0.75rem;
  }

}

/* --- Tarife-Grid responsive (rollstuhl Seiten) --- */
@media (max-width: 640px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 380px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Footer Mobile: bessere Lesbarkeit --- */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

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

  .footer-social {
    justify-content: center;
  }

  .footer-col h4 {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.6;
  }
}

/* --- Section Titles Mobile --- */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 1.25rem;
  }
}

/* --- Zahlungsmethoden Cards: präzises Mobile-Targeting --- */
@media (max-width: 640px) {
  #zahlungsmethoden .payment-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem !important;
    align-items: stretch !important;
  }

  #zahlungsmethoden {
    margin-top: 2rem !important;
  }

  #zahlungsmethoden .payment-methods-title {
    margin-bottom: 1rem !important;
    font-size: 1.12rem !important;
  }

  #zahlungsmethoden .payment-cards > .payment-card {
    min-width: 0 !important;
    max-width: none !important;
    width: 100%;
    flex: 0 1 auto !important;
    padding: 1rem 0.95rem !important;
    border-radius: 14px !important;
  }

  #zahlungsmethoden .payment-cards > .payment-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 280px);
    justify-self: center;
  }

  #zahlungsmethoden .payment-card-head {
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 0.9rem !important;
  }

  #zahlungsmethoden .payment-card-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
  }

  #zahlungsmethoden .payment-card-name {
    font-size: 0.95rem !important;
    line-height: 1.2;
  }

  #zahlungsmethoden .payment-card-subtitle {
    font-size: 0.78rem !important;
    line-height: 1.25;
  }

  #zahlungsmethoden .payment-card-body {
    padding-top: 0.8rem !important;
    font-size: 0.82rem !important;
    line-height: 1.45;
  }

  #zahlungsmethoden .payment-card-logos {
    gap: 0.4rem !important;
  }

  #zahlungsmethoden .payment-logo {
    width: 48px !important;
    height: 30px !important;
  }
}

@media (max-width: 390px) {
  #zahlungsmethoden .payment-cards {
    grid-template-columns: 1fr !important;
  }

  #zahlungsmethoden .payment-cards > .payment-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}

/* ============================================================
   MOBILE BUTTONS – Stark verkleinert für bessere Übersicht
   ============================================================ */

/* Tablet (768px): Hero-Buttons 2-spaltig, kompakter */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.6rem !important;
  }

  .hero-buttons .btn {
    flex: 1 1 calc(50% - 0.3rem) !important;
    width: auto !important;
    padding: 0.65rem 0.75rem !important;
    font-size: 0.875rem !important;
    min-height: 40px !important;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons .btn-call {
    font-size: 0.875rem !important;
    padding: 0.65rem 0.75rem !important;
  }
}

/* Mobile (480px): Buttons noch kompakter, 2er-Raster beibehalten */
@media (max-width: 480px) {
  .hero-buttons {
    gap: 0.5rem !important;
  }

  .hero-buttons .btn {
    flex: 1 1 calc(50% - 0.25rem) !important;
    width: auto !important;
    padding: 0.55rem 0.6rem !important;
    font-size: 0.82rem !important;
    min-height: 38px !important;
    border-radius: 8px !important;
  }

  /* Der Zeilenumbruch-Div bleibt aktiv */
  .hero-buttons-break {
    flex-basis: 100% !important;
    height: 0 !important;
  }
}

/* Sehr kleine Screens (360px) */
@media (max-width: 360px) {
  .hero-buttons .btn {
    padding: 0.5rem 0.5rem !important;
    font-size: 0.78rem !important;
    min-height: 36px !important;
  }
}

/* ============================================================
   KARTEN-GRID – 2 Spalten auf Mobile für bessere Übersicht
   ============================================================ */

/* Service-Cards: 2 pro Zeile, kompakter */
@media (max-width: 576px) {
  .services-grid {
    gap: 0.75rem !important;
  }

  .service-card {
    flex: 0 1 calc(50% - 0.375rem) !important;
    min-width: 0 !important;
    padding: 1rem 0.75rem !important;
  }

  .service-card h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.4rem !important;
  }

  .service-card p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
  }

  .service-card .service-link {
    font-size: 0.78rem !important;
  }

  .service-card .service-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .service-card .service-icon img {
    width: 36px !important;
  }
}

/* Fahrzeug-Cards: vertikal auf Mobile (Bild oben, Content unten) */
@media (max-width: 576px) {
  .vehicles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.1rem !important;
  }

  .vehicle-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
  }

  /* Bild: volle Breite, gutes Seitenverhältnis */
  .vehicle-img-wrap {
    width: 100% !important;
    height: 54vw !important;
    border-radius: 14px 14px 0 0 !important;
    border-bottom: 3px solid var(--color-primary) !important;
    border-right: none !important;
  }

  .vehicle-img-wrap .vehicle-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .vehicle-body {
    padding: 1rem 1.1rem 1.1rem !important;
  }

  .vehicle-body h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.2rem !important;
  }

  .vehicle-model {
    font-size: 0.82rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Specs: Pills nebeneinander, kein schwerer Rahmen */
  .vehicle-specs {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem !important;
    margin-bottom: 0.9rem !important;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    flex-wrap: wrap !important;
  }

  .vehicle-specs span {
    font-size: 0.82rem !important;
    background: #f5f5f5 !important;
    padding: 0.3rem 0.7rem !important;
    border-radius: 50px !important;
    color: #333 !important;
  }

  .vehicle-specs span strong {
    color: var(--color-primary) !important;
  }

  .vehicle-features {
    display: none !important;
  }

  .vehicle-card .btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.9rem !important;
  }

  .vehicle-badge {
    font-size: 0.68rem !important;
    padding: 0.25rem 0.6rem !important;
  }
}

/* Preis-Cards: 2 pro Zeile */
@media (max-width: 576px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .pricing-card {
    padding: 1rem 0.75rem !important;
  }

  .pricing-card .price {
    font-size: 1.5rem !important;
  }

  .pricing-card h3 {
    font-size: 0.9rem !important;
  }
}

/* Testimonial-Cards: 1 pro Zeile bleibt (Text-Inhalt braucht Platz) */

/* Feature-Items: bereits 2 Spalten via früherer Regel */
@media (max-width: 576px) {
  .feature-item {
    padding: 0.9rem 0.65rem !important;
  }

  .feature-item h3 {
    font-size: 0.85rem !important;
    margin-bottom: 0.3rem !important;
  }

  .feature-item p {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .feature-icon {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem !important;
  }
}

/* ============================================================
   HAMBURGER MENU – Flex-basiert, immer sichtbar
   ============================================================ */
@media (max-width: 768px) {
  /* Header-Höhe auf Mobile reduzieren – alle abhängigen Werte passen sich automatisch an */
  :root {
    --header-height: 56px;
  }

  /* Gap entfernen – Abstand wird über margin-left:auto geregelt */
  .header-inner {
    gap: 0 !important;
    position: relative !important;
    min-width: 0 !important;
  }

  /* Logo darf nicht zu breit werden – lässt dem Hamburger 48px Platz */
  .header .logo {
    flex-shrink: 1 !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 48px) !important;
    overflow: hidden !important;
    height: var(--header-height) !important;
    max-height: var(--header-height) !important;
  }

  .header .logo .logo-img {
    height: var(--header-height) !important;
    max-height: var(--header-height) !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  /* Hamburger: festes Flex-Item 44px breit, margin-left:auto drückt ihn nach rechts */
  .menu-toggle {
    display: flex !important;
    position: static !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 1200 !important;
    background: none !important;
    border: none !important;
    padding: 0.5rem !important;
    flex-direction: column !important;
    gap: 5px !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
  }

  .menu-toggle span {
    background: #2d2d2d !important;
    display: block !important;
    width: 25px !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   MOBILE NORMALIZATION - compact, clearer, consistent sizing
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.75rem;
    --space-lg: 2rem;
    --space-md: 1rem;
    --space-sm: 0.7rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section,
  .services,
  .contact-section {
    padding: 2.25rem 0 !important;
  }

  .leistungen-section,
  .leistungen-list {
    padding: 2.5rem 0 !important;
  }

  .contact-hub {
    padding: 2rem 0 1.25rem !important;
  }

  .cta-banner {
    padding: 1.85rem 0 !important;
  }

  .footer {
    padding: 2rem 0 1rem !important;
  }

  .section-header {
    max-width: 34rem;
    margin-bottom: 1.15rem !important;
  }

  .section-subtitle,
  .booking-form-wrapper .section-subtitle,
  .page-header .section-subtitle {
    font-size: 0.72rem !important;
    letter-spacing: 1.6px !important;
    margin-bottom: 0.55rem !important;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.4vw, 1.95rem) !important;
    margin-bottom: 0.55rem !important;
  }

  .section-desc,
  .page-header p,
  .about-content p,
  .booking-form-intro,
  .booking-form-status,
  .contact-hub-card p,
  .contact-points,
  .cta-text p,
  .cta-section p,
  .faq-answer-inner,
  .impressum-card p,
  .vehicle-model-text,
  .vehicle-features-secondary li,
  .vehicle-highlight-features li,
  .value-card p,
  .service-card p,
  .testimonial-card p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }

  .page-header {
    padding: calc(var(--header-height) + 0.9rem) 0 1rem !important;
  }

  .page-header h1,
  .about-content h2,
  .team-section h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem) !important;
    margin-bottom: 0.6rem !important;
  }

  .page-header p {
    max-width: 34ch !important;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.76rem !important;
    padding: 0.38rem 0.8rem !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.2vw, 2.35rem) !important;
    margin-bottom: 1rem !important;
  }

  .hero-text {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.1rem !important;
    max-width: 32ch !important;
  }

  .hero-info {
    gap: 0.6rem 1rem !important;
    margin-top: 1.5rem !important;
  }

  .hero-info-item {
    gap: 0.55rem !important;
  }

  .hero-info-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.95rem !important;
  }

  .hero-info-text strong {
    font-size: 0.86rem !important;
  }

  .hero-info-text span {
    font-size: 0.72rem !important;
  }

  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn,
  .vehicle-card .btn,
  .leistung-card .btn,
  .form-alt-btn,
  .contact-method-btn,
  .submit-channel-btn,
  .form-submit-btn {
    min-height: 44px !important;
    padding: 0.72rem 0.9rem !important;
    font-size: 0.88rem !important;
    border-radius: 10px !important;
  }

  .btn-call,
  .hero-buttons .btn-call {
    font-size: 0.88rem !important;
    padding: 0.72rem 0.9rem !important;
  }

  .mobile-call-sticky {
    padding: 0.75rem !important;
  }

  .mobile-call-sticky .btn {
    font-size: 0.95rem !important;
  }

  .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
  }

  .whatsapp-float svg {
    width: 42px !important;
    height: 42px !important;
  }

  .review-float {
    left: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    min-width: 104px !important;
    height: 40px !important;
    padding: 0 0.8rem !important;
    font-size: 0.85rem !important;
  }

  .scroll-top-btn {
    width: 42px !important;
    height: 42px !important;
    bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }

  .service-card,
  .feature-item,
  .pricing-card,
  .testimonial-card,
  .contact-form,
  .contact-hub-card,
  .value-card,
  .impressum-card {
    padding: 1rem !important;
    border-radius: 14px !important;
  }

  .vehicle-card,
  .vehicle-card-secondary,
  .booking-form,
  .cta-section,
  .stats-section,
  .vehicle-showcase-hero,
  .leistung-card {
    border-radius: 14px !important;
  }

  .service-icon,
  .service-card .service-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }

  .service-card .service-icon img {
    width: 34px !important;
  }

  .service-card h3,
  .pricing-card h3,
  .value-card h3,
  .contact-hub-card h3 {
    font-size: 0.98rem !important;
    line-height: 1.3 !important;
  }

  .pricing-card .price {
    font-size: 1.35rem !important;
  }

  .cta-content {
    gap: 1rem !important;
  }

  .cta-text h2,
  .cta-section h2 {
    font-size: clamp(1.35rem, 5vw, 1.8rem) !important;
    margin-bottom: 0.5rem !important;
  }

  .cta-section {
    padding: 1.35rem 1rem !important;
    margin-bottom: 2rem !important;
  }

  .cta-section p,
  .cta-text p {
    margin-bottom: 1rem !important;
  }

  .cta-buttons {
    gap: 0.65rem !important;
  }

  .about-hero {
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .values-grid {
    gap: 1rem !important;
    margin-top: 1.75rem !important;
    margin-bottom: 2.5rem !important;
  }

  .stats-section {
    gap: 0.85rem !important;
    padding: 1.25rem 1rem !important;
    margin-bottom: 2.5rem !important;
  }

  .stat-item {
    padding: 0.9rem 0.75rem !important;
  }

  .stat-number {
    font-size: 1.75rem !important;
  }

  .stat-label {
    font-size: 0.82rem !important;
  }

  .leistung-card {
    padding: 1.35rem !important;
  }

  .leistung-icon-box {
    width: 62px !important;
    height: 62px !important;
    font-size: 2.15rem !important;
    margin-bottom: 0.85rem !important;
  }

  .leistung-content {
    gap: 0.65rem !important;
  }

  .leistung-content h2 {
    font-size: 1.15rem !important;
  }

  .leistung-content > p,
  .leistung-features li,
  .leistung-price {
    font-size: 0.83rem !important;
    line-height: 1.5 !important;
  }

  .leistung-footer {
    gap: 0.9rem !important;
    padding-top: 1rem !important;
  }

  .leistung-card .btn {
    font-size: 0.84rem !important;
  }

  .vehicle-icon-large {
    padding: 1.9rem !important;
    font-size: 3.8rem !important;
  }

  .vehicle-info-hero {
    padding: 1.4rem !important;
  }

  .vehicle-badge-primary {
    font-size: 0.58rem !important;
    padding: 0.45rem 0.8rem !important;
    margin-bottom: 0.9rem !important;
  }

  .vehicle-info-hero h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.95rem) !important;
  }

  .vehicle-model-text {
    font-size: 0.82rem !important;
    margin-bottom: 1rem !important;
  }

  .vehicle-specs-grid {
    gap: 0.7rem !important;
    margin-bottom: 1.25rem !important;
  }

  .vehicle-spec-item {
    padding: 0.75rem 0.85rem !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
  }

  .vehicle-highlight-features,
  .vehicle-features-secondary {
    gap: 0.4rem !important;
  }

  .vehicle-highlight-features li,
  .vehicle-features-secondary li {
    font-size: 0.84rem !important;
    gap: 0.5rem !important;
  }

  .vehicle-img-secondary {
    min-height: 130px !important;
    padding: 1.5rem !important;
    font-size: 3rem !important;
  }

  .vehicle-body-secondary {
    padding: 1rem !important;
  }

  .vehicle-body-secondary h2,
  .vehicle-body-secondary h3 {
    font-size: 1.05rem !important;
  }

  .vehicle-model-secondary {
    font-size: 0.82rem !important;
    margin-bottom: 0.9rem !important;
  }

  .vehicle-price-badge {
    font-size: 0.82rem !important;
    padding: 0.55rem 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .faq-question {
    padding: 0.95rem 1rem !important;
    font-size: 0.94rem !important;
    gap: 0.75rem !important;
  }

  .faq-answer-inner {
    padding: 0 1rem 1rem !important;
    font-size: 0.88rem !important;
  }

  .impressum-card h2 {
    font-size: 1.12rem !important;
    margin-bottom: 0.9rem !important;
  }

  .impressum-table {
    font-size: 0.88rem !important;
  }

  .impressum-table td {
    padding: 0.55rem 0 !important;
  }

  .impressum-table td:first-child {
    width: 120px !important;
  }

  .footer-grid {
    gap: 1.25rem !important;
  }

  .footer-col h4 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-links a,
  .footer-contact a,
  .footer-brand p {
    font-size: 0.88rem !important;
  }

  .footer-bottom {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2.3rem;
    --space-lg: 1.6rem;
    --space-md: 0.95rem;
  }

  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .section,
  .services,
  .contact-section,
  .leistungen-section,
  .leistungen-list {
    padding: 2rem 0 !important;
  }

  .contact-hub {
    padding: 1.8rem 0 1rem !important;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1rem) !important;
  }

  .hero-title {
    font-size: clamp(1.55rem, 6.2vw, 2rem) !important;
  }

  .hero-text {
    font-size: 0.9rem !important;
  }

  .hero-buttons {
    gap: 0.45rem !important;
  }

  .hero-buttons .btn,
  .btn,
  .form-alt-btn,
  .contact-method-btn,
  .submit-channel-btn,
  .form-submit-btn {
    font-size: 0.84rem !important;
    padding: 0.66rem 0.8rem !important;
  }

  .section-title {
    font-size: clamp(1.32rem, 5.5vw, 1.7rem) !important;
  }

  .section-desc,
  .page-header p,
  .cta-text p,
  .cta-section p,
  .about-content p,
  .faq-answer-inner,
  .booking-form-intro,
  .booking-form-status {
    font-size: 0.86rem !important;
  }

  .service-card,
  .feature-item,
  .vehicle-card,
  .pricing-card,
  .testimonial-card,
  .contact-form,
  .contact-hub-card,
  .value-card,
  .impressum-card,
  .booking-form,
  .cta-section {
    padding: 0.9rem !important;
  }

  .service-card h3,
  .pricing-card h3,
  .value-card h3,
  .contact-hub-card h3,
  .vehicle-body-secondary h2,
  .vehicle-body-secondary h3 {
    font-size: 0.92rem !important;
  }

  .service-card p,
  .pricing-card p,
  .testimonial-card p,
  .value-card p,
  .contact-hub-card p {
    font-size: 0.8rem !important;
  }

  .pricing-card .price {
    font-size: 1.25rem !important;
  }

  .leistung-card {
    padding: 1.1rem !important;
  }

  .leistung-content h2 {
    font-size: 1.05rem !important;
  }

  .vehicle-info-hero {
    padding: 1rem !important;
  }

  .vehicle-icon-large {
    padding: 1.4rem !important;
    font-size: 3.2rem !important;
  }

  .vehicle-img-secondary {
    min-height: 112px !important;
    padding: 1.2rem !important;
    font-size: 2.5rem !important;
  }

  .faq-question {
    padding: 0.85rem 0.9rem !important;
    font-size: 0.9rem !important;
  }

  .impressum-table td:first-child {
    width: 104px !important;
  }

  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-float svg {
    width: 38px !important;
    height: 38px !important;
  }

  .review-float {
    min-width: 96px !important;
    height: 38px !important;
    font-size: 0.8rem !important;
  }
}
