/* ===========================================
   TAXI WEBSITE — STYLE.CSS

   THEMING: Farben und Fonts hier anpassen ↓
   =========================================== */

:root {
  /* === FARBEN — HIER ANPASSEN === */
  --color-primary: #f5c518;      /* Taxi-Gelb */
  --color-primary-dark: #d4a800;
  --color-dark: #1a1a2e;         /* Dunkles Blau-Schwarz */
  --color-dark-light: #2d2d44;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f8f8;
  --color-bg-dark: #1a1a2e;
  --color-white: #ffffff;
  --color-success: #2ecc71;
  --color-border: #e0e0e0;

  /* === FONTS — HIER ANPASSEN === */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: var(--font-main);

  /* === ABSTÄNDE === */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* === SONSTIGES === */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --max-width: 1100px;
}


/* ===========================================
   RESET & GRUNDLAGEN
   =========================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

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

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

#main-content {
  display: flex;
  flex-direction: column;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xs);
}

.section-intro {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}


/* ===========================================
   BUTTONS
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
}

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

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

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}


/* ===========================================
   MODUL 1: HEADER / NAVIGATION
   =========================================== */

/* DEMO BANNER */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--color-primary, #f5c518);
  color: var(--color-dark, #1a1a2e);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.demo-banner a {
  color: var(--color-dark, #1a1a2e);
  text-decoration: underline;
  font-weight: 700;
}
.demo-banner a:hover {
  opacity: 0.8;
}
.has-demo-banner .site-header {
  top: 36px;
}
.has-demo-banner .hero {
  margin-top: 36px;
}
.has-demo-banner .floating-call {
  bottom: 80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
}

.logo:hover { color: var(--color-dark); }

.logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  flex-wrap: nowrap;
}

.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
}

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

.nav-list a:hover::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.header-phone:hover {
  background: var(--color-primary-dark);
  color: var(--color-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  margin: 5px 0;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===========================================
   MODUL 2: HERO
   =========================================== */

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-dark);
  background-image: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 50%, #3d3d5c 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-sm);
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.hero-available {
  font-size: 0.9rem;
  opacity: 0.7;
}


/* --- Heritage Badge --- */
.heritage-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}


/* --- Hero Varianten --- */

/* hero-centered: Default, keine Aenderungen noetig */

/* hero-split: Text links, Platz fuer Bild rechts */
.hero[data-variant="hero-split"] .hero-content {
  text-align: left;
  max-width: 600px;
  margin-left: 0;
}

.hero[data-variant="hero-split"] .hero-actions {
  justify-content: flex-start;
}

/* hero-fullimage: Voller Hintergrund, dunkles Overlay */
.hero[data-variant="hero-fullimage"] {
  min-height: 80vh;
}

.hero[data-variant="hero-fullimage"] .hero-overlay {
  background: rgba(0,0,0,0.55);
}

/* hero-minimal: Nur Name + Telefon, kompakt */
.hero[data-variant="hero-minimal"] {
  min-height: auto;
  padding: var(--space-lg) 0;
}

.hero[data-variant="hero-minimal"] .hero-content {
  padding: var(--space-md) var(--space-sm);
}

.hero[data-variant="hero-minimal"] .hero-subtitle {
  display: none;
}

.hero[data-variant="hero-minimal"] .hero-available {
  display: none;
}


/* ===========================================
   MODUL 3: LEISTUNGEN
   =========================================== */

.leistungen {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.card-grid[data-cols="1"] { grid-template-columns: 1fr !important; }
.card-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr) !important; }
.card-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr) !important; }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition);
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
}

.card-icon img {
  width: 48px;
  height: 48px;
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

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


/* ===========================================
   FUHRPARK
   =========================================== */

.fuhrpark {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.fuhrpark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.fuhrpark-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition);
}

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

.fuhrpark-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.fuhrpark-bild {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.fuhrpark-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.fuhrpark-kap {
  font-size: 0.9rem;
  color: var(--color-text-light);
}


/* ===========================================
   MODUL 6: ÜBER MICH
   =========================================== */

.ueber-mich {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.ueber-mich-inner {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: var(--space-lg);
  align-items: start;
}

/* Automatischer Umbruch wenn zu eng */
@media (max-width: 700px) {
  .ueber-mich-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fahrer-foto {
    max-width: 220px;
    margin: 0 auto;
  }

  .ueber-mich-text .check-list {
    display: inline-block;
    text-align: left;
  }
}

.fahrer-foto {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.ueber-mich-text h2 {
  margin-bottom: var(--space-sm);
}

.ueber-mich-text p {
  margin-bottom: var(--space-sm);
}

.check-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.check-list li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}


/* ===========================================
   MODUL 7: PREISE
   =========================================== */

.preise {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.preis-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition);
}

.preis-card.highlight {
  border-color: var(--color-primary);
  position: relative;
}

.preis-card.highlight::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.preis-card h3 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.preis-betrag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.preis-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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


/* ===========================================
   MODUL 8: BEWERTUNGEN
   =========================================== */

.bewertungen {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.bewertung-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}

.bewertung-card .stars {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.bewertung-card p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.bewertung-card footer {
  font-weight: 600;
  color: var(--color-text-light);
  font-style: normal;
  font-size: 0.9rem;
}


/* ===========================================
   MODUL 9: FAQ
   =========================================== */

.faq {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.accordion {
  max-width: 700px;
  margin: var(--space-md) auto 0;
  text-align: left;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item[open] {
  border-color: var(--color-primary);
}

.accordion-item summary {
  padding: var(--space-sm) 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.accordion-item summary:hover {
  background: var(--color-bg-alt);
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-text-light);
  transition: transform var(--transition);
}

.accordion-item[open] summary::after {
  content: '−';
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-content {
  padding: 0 1.25rem var(--space-sm);
}

.accordion-content p {
  color: var(--color-text-light);
}


/* ===========================================
   MODUL 10: SERVICEGEBIET
   =========================================== */

.servicegebiet {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.map-wrapper {
  margin: var(--space-md) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-placeholder {
  padding: var(--space-lg);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.map-placeholder p:first-child {
  font-size: 2rem;
}

.map-placeholder .btn-secondary {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.map-placeholder .btn-secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.gebiet-liste {
  margin-top: var(--space-md);
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gebiet-liste h3 {
  margin-bottom: var(--space-xs);
}

.gebiet-liste ul {
  list-style: none;
}

.gebiet-liste li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}


/* ===========================================
   MODUL 4: KONTAKT
   =========================================== */

.kontakt {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.kontakt h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.kontakt-grid.kontakt-centered {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

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

.kontakt-direkt h3 {
  margin-bottom: var(--space-md);
}

.kontakt-telefon {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.kontakt-telefon:hover {
  color: var(--color-primary-dark);
}

.kontakt-email {
  display: block;
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.kontakt-email:hover {
  color: var(--color-primary-dark);
}

.kontakt-whatsapp {
  display: inline-block;
  background: #25d366;
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}

.kontakt-whatsapp:hover {
  background: #1da851;
  color: var(--color-white);
  transform: translateY(-2px);
}

.kontakt-zeiten {
  color: var(--color-text-light);
}

/* Formular */
.kontakt-formular h3 {
  margin-bottom: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-note {
  margin-top: var(--space-xs);
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}


/* ===========================================
   SECTION VARIANTS
   =========================================== */

/* --- LEISTUNGEN: highlight variant --- */
.service-highlight-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}

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

.service-highlight-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-highlight-icon img {
  width: 64px;
  height: 64px;
}

.service-highlight-body h3 {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.service-highlight-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-compact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--space-md);
  justify-content: center;
}

.service-compact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-text);
  white-space: nowrap;
}

.service-compact-item img {
  width: 24px;
  height: 24px;
  display: inline;
}

/* --- LEISTUNGEN: detailed variant --- */
.detail-card {
  background: var(--color-bg-alt, #fff);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--radius, 12px);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.detail-card:hover {
  box-shadow: var(--shadow-hover, 0 8px 24px rgba(0,0,0,0.12));
  transform: translateY(-2px);
}
.detail-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-bg, #f5f5f5);
}
.detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.detail-card-img--icon .card-icon {
  font-size: 3rem;
}
.detail-card-body {
  padding: var(--space-md, 1.2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.detail-card-body h3 {
  margin-bottom: var(--space-xs, 0.4rem);
  font-size: 1.15rem;
}
.detail-card-body p {
  color: var(--color-text-light, #666);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}
.detail-card-link {
  display: inline-block;
  margin-top: var(--space-sm, 0.8rem);
  color: var(--color-primary, #f5c518);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.detail-card-link:hover {
  color: var(--color-primary-dark, #d4a800);
}

@media (max-width: 600px) {
  .detail-card-img { height: 150px; }
}


/* --- LEISTUNGEN: alternate variant --- */
.service-alt-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg, 3rem);
}
.service-alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg, 3rem);
  align-items: center;
}
.service-alt-reverse {
  direction: rtl;
}
.service-alt-reverse > * {
  direction: ltr;
}
.service-alt-img {
  border-radius: var(--space-xs, 0.5rem);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt, #f8f8f8);
}
.service-alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-alt-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-alt, #f8f8f8), var(--color-border, #e0e0e0));
}
.service-alt-img--icon .card-icon {
  font-size: 4rem;
}
.service-alt-img--icon .card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.service-alt-body h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm, 1rem);
  color: var(--color-dark, #1a1a2e);
}
.service-alt-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-light, #666);
}
@media (max-width: 700px) {
  .service-alt-block {
    grid-template-columns: 1fr;
    gap: var(--space-md, 2rem);
  }
  .service-alt-reverse {
    direction: ltr;
  }
  .service-alt-img {
    aspect-ratio: 16/9;
  }
}

/* --- ÜBER MICH: centered variant --- */
.ueber-mich-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fahrer-foto-round {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-primary);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.ueber-mich-centered h2 {
  margin-bottom: var(--space-sm);
}

.ueber-mich-centered-text {
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.ueber-mich-centered-text p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.qual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.qual-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: var(--color-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}


/* --- ÜBER MICH: cover variant --- */
.ueber-mich[data-variant="cover"] {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  padding: 0;
}

.ueber-mich-cover-overlay {
  background: rgba(0,0,0,0.65);
  padding: var(--space-xl) 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.ueber-mich-cover-content {
  color: var(--color-white);
  max-width: 700px;
}

.ueber-mich-cover-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.ueber-mich-cover-content p {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.ueber-mich-cover-content .check-list li {
  color: rgba(255,255,255,0.9);
}

.ueber-mich-cover-content .check-list li::before {
  color: var(--color-primary);
}


/* --- BEWERTUNGEN: featured variant --- */
.bewertung-featured {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-md);
}

.bewertung-featured .stars {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.bewertung-featured blockquote p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.bewertung-featured footer {
  margin-top: var(--space-sm);
  color: var(--color-text-light);
  font-size: 1rem;
}

.bewertungen-rest {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.bewertung-small {
  font-size: 0.9rem;
}

.bewertung-small p {
  font-size: 0.9rem;
}


/* --- PREISE: compact variant (table) --- */
.preise-table {
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.preise-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.preise-table th {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  border-bottom: 2px solid var(--color-border);
}

.preise-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.preise-table td:nth-child(2) {
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.preise-table td:nth-child(3) {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.preise-table tr.highlight {
  background: rgba(245, 197, 24, 0.08);
}

.preise-table tr.highlight td {
  border-bottom-color: var(--color-primary);
}


/* --- PREISE: highlight-only variant --- */
.preise-highlight-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.preise-main-card {
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(245, 197, 24, 0.15);
}

.preise-main-card::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.preise-main-card h3 {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.preise-main-card .preis-betrag {
  font-size: 2.5rem;
}

.preise-rest-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  max-width: 600px;
  width: 100%;
}

.preise-rest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: 0.6rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  flex: 1 1 200px;
  min-width: 200px;
}

.preise-rest-item span {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.preise-rest-item strong {
  color: var(--color-dark);
  font-size: 1rem;
}


/* --- FAQ: cards variant --- */
.faq-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
  text-align: left;
}

.faq-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition);
}

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

.faq-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.faq-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* --- KONTAKT: centered variant --- */
.kontakt-centered-wrap {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.kontakt-centered-wrap .kontakt-formular {
  margin-top: var(--space-lg);
  text-align: left;
}


/* --- KONTAKT: map-focus variant --- */
.kontakt-map-focus .kontakt-map-top {
  margin-bottom: var(--space-lg);
}

.kontakt-map-focus .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}


/* --- FUHRPARK: list variant --- */
.fuhrpark-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fuhrpark-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

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

.fuhrpark-list-item:hover {
  background: var(--color-bg-alt);
}

.fuhrpark-list-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.fuhrpark-list-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.fuhrpark-list-name {
  font-weight: 600;
  color: var(--color-dark);
  flex: 1;
}

.fuhrpark-list-kap {
  font-size: 0.85rem;
  color: var(--color-text-light);
  white-space: nowrap;
}


/* --- Variants responsive --- */
@media (max-width: 600px) {
  .service-highlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fahrer-foto-round {
    width: 140px;
    height: 140px;
  }

  .ueber-mich-cover-overlay {
    min-height: 400px;
  }

  .bewertung-featured blockquote p {
    font-size: 1.15rem;
  }

  .preise-main-card {
    padding: var(--space-md);
  }

  .preise-main-card .preis-betrag {
    font-size: 2rem;
  }

  .preise-rest-list {
    flex-direction: column;
  }

  .preise-rest-item {
    min-width: auto;
  }

  .faq-cards {
    grid-template-columns: 1fr;
  }
}


/* ===========================================
   MODUL 5: FOOTER
   =========================================== */

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-lg) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-xs);
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
}

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

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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


/* ===========================================
   FLOATING CALL BUTTON (MOBIL)
   =========================================== */

.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.5);
}


/* ===========================================
   STICKY MOBILE CTA
   =========================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--color-dark);
    padding: 0.6rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    padding-left: calc(0.6rem + env(safe-area-inset-left, 0px));
    padding-right: calc(0.6rem + env(safe-area-inset-right, 0px));
    gap: 0.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    max-width: 100vw;
    box-sizing: border-box;
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
  }

  .sticky-cta-phone {
    background: var(--color-primary);
    color: var(--color-dark);
  }

  .sticky-cta-wa {
    background: #25d366;
    color: var(--color-white);
  }

  /* Padding am Body-Ende damit Content nicht vom CTA verdeckt wird */
  body {
    padding-bottom: 70px;
  }

  /* Floating-Call ausblenden wenn Sticky-CTA aktiv */
  .floating-call {
    display: none !important;
  }
}


/* ===========================================
   RESPONSIVE
   =========================================== */

/* Zwischen Desktop und Tablet: Nav kompakter */
@media (max-width: 1100px) {
  .nav-list {
    gap: 0.75rem;
  }

  .nav-list a {
    font-size: 0.85rem;
  }

  .header-phone .phone-number {
    display: none;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 1000;
    padding: 80px var(--space-md) var(--space-md);
  }

  .main-nav.open {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list a::after {
    display: none;
  }

  .header-phone .phone-number {
    display: none;
  }

  .hero,
  .hero[data-variant="hero-fullimage"] {
    min-height: 70vh;
    min-height: 70svh; /* safe viewport height für mobile Browser */
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .floating-call {
    display: flex;
    bottom: 20px;
    right: 20px;
  }

  .demo-banner {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .demo-banner span {
    display: none;
  }
  .has-demo-banner .site-header {
    top: 32px;
  }
  .has-demo-banner .hero {
    margin-top: 32px;
  }

  .card-grid,
  .card-grid[data-cols] {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm);
  }

  .card {
    padding: var(--space-sm) var(--space-md);
  }

  .preise-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .preis-card {
    padding: var(--space-sm);
  }

  .preis-betrag {
    font-size: 1.5rem;
  }

  .bewertungen-grid,
  .bewertungen-rest {
    grid-template-columns: 1fr;
  }

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

  /* Kontakt mobil: Telefon & WhatsApp größer */
  .kontakt-telefon {
    font-size: 1.5rem;
  }

  .kontakt-whatsapp {
    display: block;
    text-align: center;
  }

  /* Sections weniger Padding auf mobil */
  .leistungen, .ueber-mich, .preise,
  .bewertungen, .faq, .servicegebiet, .kontakt {
    padding: var(--space-lg) 0;
  }

  /* Footer: engeres Grid */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  /* Touch targets: mindestens 44px */
  .accordion-item summary {
    min-height: 48px;
    padding: var(--space-sm) var(--space-sm);
  }

  .nav-list a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Map full width */
  .map-container iframe {
    height: 280px;
  }
}

/* Sehr kleine Bildschirme */
@media (max-width: 400px) {
  .preise-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5rem;
  }

  .kontakt-telefon {
    font-size: 1.3rem;
  }
}

/* Landscape mobil */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    padding: var(--space-md) var(--space-sm);
  }
}

/* Reduced motion: Animationen abschalten */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
