/* ============================================
   Cologne Truck Wash — 1:1 Original-Design
   Quelle: colognetruckwash.de (Hello Elementor + Pro)
   Farben/Fonts/Spacing exakt aus elementor-kit-5
   ============================================ */

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

:root {
  /* Original Elementor-Kit Farbwerte */
  --primary:        #125B84;  /* CTW Primärblau (alle Headings + Text) */
  --primary-dark:   #0d4666;
  --primary-trans:  #125B84CF;  /* Hero-Overlay 81% */
  --secondary:      #DCDEDC;
  --accent:         #FFFFFF;
  --bg-page:        #ffffff;
  --bg-soft:        #f5f7f9;
  --text:           #125B84;
  --btn-dark:       #32373c;  /* WP-Default-Button-Hintergrund */
  --border-soft:    #d6d6d6;

  --ff: 'Josefin Sans', Sans-serif;

  --max-w: 1140px;
  --header-h: 90px;
  --news-h: 0;
  --radius: 1.5em;        /* button pill radius */
  --shadow-natural: 6px 6px 9px rgba(0,0,0,.2);
  --shadow-deep:    12px 12px 50px rgba(0,0,0,.4);
  --transition: .45s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); max-width: 100vw; overflow-x: hidden; }

body {
  font-family: var(--ff);
  background: var(--bg-page);
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: underline; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
p { margin-bottom: 5px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff);
  color: var(--primary);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}
h1 { font-size: 3.1rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; text-transform: none; }
h4 { font-size: 1rem; text-transform: none; }
h5, h6 { font-size: 1rem; text-transform: none; }

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h4 { line-height: 1.3em; }
}

.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }

/* --- Buttons (Elementor-Stil: Pill, outlined) --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff);
  font-size: 16px; font-weight: 400;
  text-decoration: none; line-height: 1.4em;
  color: var(--text);
  background-color: rgba(255,255,255,0);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  padding: 10px 25px 6px 25px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { background-color: var(--primary); color: var(--accent); border-color: var(--primary); }
.btn::after {
  content: ''; width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.76 37.76'><path d='m37.72.84c-.01-.07-.02-.15-.04-.22-.1-.25-.3-.44-.54-.54-.1-.04-.21-.06-.32-.07-.02,0-.04-.01-.06-.01H1C.45,0,0,.45,0,1s.45,1,1,1h33.34L.29,36.05c-.39.39-.39,1.02,0,1.41.19.19.44.29.71.29.27,0,.52-.11.71-.29L35.76,3.41v33.34c0,.55.45,1,1,1s1-.45,1-1V1c0-.06-.02-.11-.03-.16Z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37.76 37.76'><path d='m37.72.84c-.01-.07-.02-.15-.04-.22-.1-.25-.3-.44-.54-.54-.1-.04-.21-.06-.32-.07-.02,0-.04-.01-.06-.01H1C.45,0,0,.45,0,1s.45,1,1,1h33.34L.29,36.05c-.39.39-.39,1.02,0,1.41.19.19.44.29.71.29.27,0,.52-.11.71-.29L35.76,3.41v33.34c0,.55.45,1,1,1s1-.45,1-1V1c0-.06-.02-.11-.03-.16Z'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}
/* Hero-Buttons: weiß auf Foto */
.hero .btn {
  color: var(--accent);
  border-color: var(--accent);
}
.hero .btn:hover { background: var(--accent); color: var(--primary); }

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

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

/* --- Header (Sticky, transparent → blau) --- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100vw;
  z-index: 10000; height: var(--header-h);
  background: rgba(0,0,0,0);
  transition: all .5s ease;
}
.site-header__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1em 2em;
  border-bottom: 1px solid #fff;
  transition: all var(--transition);
  height: 100%;
}
.site-header.scrolled { background: var(--primary); }
.site-header.scrolled .site-header__inner { border-bottom-color: transparent; padding: 4px 2em; }
.site-header.scrolled .site-header__logo,
.site-header.scrolled .site-header__icon-link,
.site-header.scrolled .site-header__menu-toggle { transform: scale(.85); }

.site-header__icon-link {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--accent); text-decoration: none;
  font-family: var(--ff); font-size: 16px; font-weight: 400;
  transition: transform var(--transition);
}
.site-header__icon-link:hover { color: var(--accent); opacity: .8; }
.site-header__icon-link svg { width: 32px; height: 32px; fill: var(--accent); }

.site-header__logo {
  flex: 1; text-align: center;
  transition: transform var(--transition);
}
.site-header__logo img,
.site-header__logo svg { height: 36px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); }

.site-header__menu-toggle {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--accent);
  transition: transform var(--transition);
}
.site-header__menu-toggle svg { width: 32px; height: 32px; fill: var(--accent); }

/* === Off-Canvas Hamburger-Menü (Popup, 1:1 wie Original Elementor #2173) === */
.menu-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(90deg, #DCDEDC 26%, #FFFFFFDE 26%);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 99999;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
  overflow-y: auto;
  display: flex; flex-direction: row;
  gap: 2em;
  padding: 0 1em;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

/* Linker Sidebar (26% — Logo + Kontaktdaten + Legal-Links) */
.menu-overlay__sidebar {
  flex: 0 0 26%;
  display: flex; flex-direction: column;
  padding: 2em 1em 2em 0;
  gap: 1.5em;
}
.menu-overlay__sidebar-logo {
  width: 100%; max-width: 220px; height: 40px;
  background-color: var(--primary);
  -webkit-mask: url('../images/logo.svg') no-repeat left center / contain;
          mask: url('../images/logo.svg') no-repeat left center / contain;
  margin-bottom: 1em;
}
.menu-overlay__sidebar-block { color: var(--primary); font-size: 0.9rem; line-height: 1.5; }
.menu-overlay__sidebar-block p { margin: 0 0 0.5em; }
.menu-overlay__sidebar-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.menu-overlay__sidebar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px 4px;
  background: transparent; color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--ff); font-size: 0.85rem; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition);
}
.menu-overlay__sidebar-btn:hover {
  background: var(--primary); color: var(--accent);
}
.menu-overlay__sidebar-btn:hover svg { fill: var(--accent); }
.menu-overlay__sidebar-btn svg {
  width: 14px; height: 14px; fill: var(--primary);
  transition: fill var(--transition);
}
.menu-overlay__sidebar-legal {
  list-style: none; padding: 0; margin: 1em 0 0;
  display: flex; flex-direction: column; gap: 2px;
}
.menu-overlay__sidebar-legal a {
  font-family: var(--ff); font-size: 0.9rem; font-weight: 400;
  color: var(--primary); text-decoration: none;
  text-transform: none;
  padding: 2px 0;
  transition: color var(--transition);
}
.menu-overlay__sidebar-legal a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Rechter weißer Hauptbereich */
.menu-overlay__content {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 1em 1em 2em 0;
  min-height: 100vh;
}

/* Header mit Menü-Titel + Close-Button (oben in der weißen Spalte) */
.menu-overlay__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1em 0 1.5em;
}
.menu-overlay__title {
  font-family: var(--ff);
  font-size: 2rem; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0; line-height: 1;
}
.menu-overlay__close {
  background: none; border: none; cursor: pointer;
  color: var(--primary);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0;
}
.menu-overlay__close svg { width: 28px; height: 28px; fill: currentColor; }

/* Kachel-Grid (3 Spalten Desktop, 2 mobile) — fixe Größe wie Original */
.menu-overlay__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  grid-auto-rows: 180px;
  gap: 3px;
}
@media (max-width: 768px) {
  .menu-overlay__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(120px, 1fr);
  }
}

/* Kachel — fix sizing, kein aspect-ratio Stretch */
.menu-overlay__tile {
  position: relative;
  background: var(--primary);
  border: 1px solid transparent;
  display: flex; flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  padding: 12px;
  transition: all var(--transition);
  overflow: hidden;
}
.menu-overlay__tile:hover {
  background: #fff;
  border-color: var(--secondary);
}
.menu-overlay__tile-top {
  display: flex; justify-content: flex-end;
  min-height: 24px;
}
.menu-overlay__tile-arrow {
  width: 22px; height: 22px;
  fill: var(--accent);
  transition: fill var(--transition);
}
.menu-overlay__tile:hover .menu-overlay__tile-arrow { fill: var(--primary); }
.menu-overlay__tile-title {
  font-family: var(--ff);
  font-size: 1.4rem; font-weight: 400;
  line-height: 1.05;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
  transition: color var(--transition);
}
.menu-overlay__tile:hover .menu-overlay__tile-title { color: var(--primary); }

@media (max-width: 480px) {
  .menu-overlay__tile-title { font-size: 1.1rem; }
}

/* Mobile: kein Sidebar, voll-weißer Hintergrund */
@media (max-width: 767px) {
  .menu-overlay { background: #FFFFFFDE; flex-direction: column; gap: 0; padding: 0; }
  .menu-overlay__sidebar { display: none; }
  .menu-overlay__content { padding: 1em; }
  .menu-overlay__title { font-size: 1.6rem; }
  .menu-overlay__tile { padding: 0.6em; }
  .menu-overlay__tile-title { font-size: 1.05rem; }
  .menu-overlay__tile-arrow { width: 1.2rem; height: 1.2rem; }
}

/* --- Hero (Foto-BG + Blauer Gradient + Text links 60%) --- */
.hero {
  position: relative; overflow: hidden;
  min-height: 75vh;
  display: flex; align-items: flex-end;
  background: url('../images/hero-truckwash.jpg') center/cover no-repeat;
  margin-block-start: 0;
  padding-block-end: 3em;
  padding-block-start: calc(var(--header-h) + 4em);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, var(--primary-trans) 100%);
  mix-blend-mode: multiply; opacity: .63;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, var(--primary-trans) 0%, transparent 60%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2em;
}
.hero__inner { max-width: 60%; text-align: left; }
@media (max-width: 1024px) {
  .hero__inner { max-width: 90%; }
}

.hero h1 {
  color: var(--accent);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.hero h4 {
  color: var(--accent);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  text-transform: none;
  margin-bottom: 32px;
  line-height: 1.4;
  max-width: 60ch;
}
.hero__buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* --- Sliding Text Bar (NEWS-Ticker, blau, Original-Effekt) --- */
.sliding-text {
  background: var(--primary);
  padding: 6px 0 4px;
  overflow: hidden;
  position: relative;
}
.sliding-text__track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: sliding 25s linear infinite;
  font-family: var(--ff); font-size: 16px; font-weight: 400;
  color: var(--accent);
}
.sliding-text__track a { color: var(--accent); text-decoration: none; flex-shrink: 0; }
.sliding-text__track a:hover { text-decoration: underline; }
@keyframes sliding {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- "NUMMER 1 IN DEUTSCHLAND" Section (2-spaltig: Text + Icon-Liste) --- */
.intro-section { padding: 5em 0 3em; background: var(--bg-page); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6em;
  align-items: center; min-height: 369px;
}
.intro-text h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
  text-transform: none; letter-spacing: 1px;
}
.intro-text h1 {
  font-size: 3.1rem; color: var(--primary);
  margin-bottom: 24px; line-height: 1;
}
.intro-text p { margin-bottom: 1em; color: var(--text); font-size: 1rem; line-height: 1.6; }

.intro-list { list-style: none; padding: 0; }
.intro-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 0;
  font-size: 1rem; color: var(--primary); line-height: 1.4;
}
.intro-list li svg {
  width: 24px; height: 24px; flex-shrink: 0;
  fill: var(--primary); margin-top: 2px;
}
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2em; min-height: auto; }
}

/* === STANDORTE-PAGE — 1:1 wie Original (Elementor post-3600) === */

/* Page-Wrapper für Standorte */
.standorte-page {
  margin-top: var(--header-h);
  padding: 3em 1em;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* Mobile-only "Unsere Standorte" h2 */
.standorte-mobile-h2 {
  display: none;
  text-align: center; margin: 1em 0;
  color: var(--primary); font-size: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .standorte-mobile-h2 { display: block; }
}

/* Hauptbereich: Map LINKS, Standort-Kacheln RECHTS (wie Original 4227b0d) */
.standorte-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5em;
  align-items: stretch;
  margin: 0 0 3em;
}
@media (max-width: 1024px) {
  .standorte-row { grid-template-columns: 1fr; gap: 2em; }
}

/* Map-Bereich (links) mit überlappender "UNSERE STANDORTE" Headline (wie Original) */
.standorte-row__map {
  position: relative;
}
.standorte-row__title {
  position: absolute; top: 0; left: 0;
  font-family: var(--ff); font-weight: 700;
  font-size: 3.1rem;
  color: var(--primary); line-height: 1.3em;
  text-transform: uppercase;
  pointer-events: none; z-index: 2;
  margin: 0; padding: 0;
}
@media (max-width: 767px) {
  .standorte-row__title { font-size: 2rem; }
}

.standorte-map {
  position: relative; width: 100%;
  margin: 0 auto;
}
.standorte-map img {
  width: 100%; height: auto; display: block;
}

/* Standort-Kacheln (rechts neben Map): 3 Spalten — bei < 768 px → 2 Spalten */
.kachel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .kachel-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === Navigations-Kacheln (Sektion 2: post-3676) === */
.nav-kacheln-section {
  margin: 3em 0 5em;
}
.nav-kacheln-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 1024px) {
  .nav-kacheln-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .nav-kacheln-grid { grid-template-columns: repeat(2, 1fr); }
}

.nav-kachel {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 150px;
  background: var(--primary);
  border: 1px solid var(--secondary);
  display: flex; flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--accent);
  transition: background .3s ease, opacity .3s ease;
  overflow: hidden;
}
.nav-kachel:hover {
  background: var(--primary-dark);
  color: var(--accent);
}
.nav-kachel__top {
  display: flex; justify-content: flex-end;
  padding: 14px 14px 0;
}
.nav-kachel__arrow {
  width: 22px; height: 22px;
  fill: var(--accent);
}
.nav-kachel__title {
  font-family: var(--ff); font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1;
  color: var(--accent); text-transform: uppercase;
  padding: 14px; margin: 0;
}

/* === Hotspots auf Karte (1:1 Original Elementor Pro Hotspot Widget) === */
.standorte-hotspot {
  position: absolute;
  /* Anchor: Icon-Mitte auf Position (Y-zentriert, Icon-Center bei left:X) */
  transform: translate(-7px, -50%);
  z-index: 3;
  text-decoration: none;
  display: inline-flex;
}
.standorte-hotspot__btn {
  display: grid; grid-auto-flow: column; align-items: center;
  grid-gap: 5px; gap: 5px;
  position: relative;
  animation: ctw-hotspot-soft-beat .7s infinite alternate ease;
  cursor: pointer;
}
/* Icon = blauer Kreis-Outline mit Punkt — exakt wie far-fa-dot-circle */
.standorte-hotspot__icon {
  width: 15px; height: 15px;
  fill: var(--primary);
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 2;
}
.standorte-hotspot__label {
  font-family: var(--ff);
  font-size: 13px; font-weight: 400;
  color: var(--primary); white-space: nowrap;
  line-height: 1;
}

/* Pulse-Animation (wie Original e-hotspot--soft-beat) */
@keyframes ctw-hotspot-soft-beat {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Expand-Ring beim Hover (wie Original e-hotspot--expand für outer circle) */
.standorte-hotspot__btn::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%) scale(.5);
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.standorte-hotspot:hover .standorte-hotspot__btn::before,
.standorte-hotspot:focus .standorte-hotspot__btn::before {
  animation: ctw-hotspot-expand 1.4s infinite ease-out;
}
@keyframes ctw-hotspot-expand {
  0%   { transform: translateY(-50%) scale(.5); opacity: .8; }
  100% { transform: translateY(-50%) scale(2.4); opacity: 0; }
}

/* Tooltip — wie Original (#FFFFFFBF, Border-Radius 5px, Padding 15px) */
.standorte-hotspot__tooltip {
  position: absolute;
  left: calc(100% + 8px); top: 50%;
  transform: translateY(-50%) scale(.95);
  opacity: 0; pointer-events: none;
  background: rgba(255,255,255,.75);
  color: var(--primary);
  padding: 15px; border-radius: 5px;
  min-width: 220px;
  transition: opacity .3s ease, transform .3s ease;
  font-size: 14px; line-height: 1.45;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  z-index: 5;
}
.standorte-hotspot:hover .standorte-hotspot__tooltip,
.standorte-hotspot:focus .standorte-hotspot__tooltip {
  opacity: 1; transform: translateY(-50%) scale(1); pointer-events: auto;
}
.standorte-hotspot__tooltip .ttort {
  font-weight: 700; display: block; margin-bottom: 4px;
  text-transform: none;
}
.standorte-hotspot__tooltip .ttas {
  display: block; margin-bottom: 8px;
}
.standorte-hotspot__tooltip a {
  color: var(--primary); text-decoration: underline; margin-right: 12px;
}
@media (max-width: 768px) {
  .standorte-hotspot__label { display: none; }
  .standorte-hotspot__tooltip { display: none; }
}

/* Hotspot-Positionen (aus Original-Daten) */
.hp-braunschweig    { left: 50%;   top: 35%;   }
.hp-porta           { left: 34%;   top: 36%;   }
.hp-mogendorf       { left: 23%;   top: 59%;   }
.hp-eifeltor        { left: 13.5%; top: 53.5%; }
.hp-wilnsdorf       { left: 25%;   top: 54%;   }
.hp-porz            { left: 16%;   top: 53%;   }
.hp-rappenau        { left: 36%;   top: 75%;   }
.hp-waldlaubersheim { left: 23%;   top: 66%;   }
.hp-lohfelden       { left: 40%;   top: 49%;   }
.hp-bitterfeld      { left: 68%;   top: 43%;   }

/* Kachel-Grid (3 Spalten, 1:1 Aspect Ratio) */
.kachel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 3em auto 5em;
  padding: 1em;
  max-width: var(--max-w);
}
@media (max-width: 1024px) {
  .kachel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .kachel-grid { grid-template-columns: repeat(2, 1fr); }
}

.kachel {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 150px;
  display: flex; flex-direction: column;
  background: var(--bg-page);
  border: 1px solid var(--secondary);
  overflow: hidden;
  transition: background .3s ease;
}
.kachel--counter {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}
.kachel--counter .kachel-counter-text {
  font-size: 1.6rem; font-weight: 700; line-height: 1.2em;
  color: var(--accent); text-transform: none;
  align-self: flex-start;
}
.kachel--photo {
  background: url('../images/truckwash-tile.jpg') center / cover no-repeat;
  border: none;
}
.kachel--location {
  text-decoration: none; color: var(--primary);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.kachel--location:hover {
  background: var(--primary);
  color: var(--accent);
}
.kachel--location:hover .kachel__highway,
.kachel--location:hover .kachel__city,
.kachel--location:hover .kachel__as,
.kachel--location:hover svg { color: var(--accent); fill: var(--accent); }

/* Kachel-Top: A2/A3 + Pfeil — Margin-Bottom 2em wie Original Container 89c8aa5 */
.kachel__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 14px 0;
  margin-bottom: 2em;
}
.kachel__highway {
  font-family: var(--ff); font-weight: 700;
  font-size: 2.3rem; color: var(--primary); line-height: 1;
  text-transform: uppercase;
}
.kachel__arrow {
  width: 22px; height: 22px;
  fill: var(--primary);
  margin-top: 6px;
}

/* Kachel-Bottom: City + AS — gap 5px wie Original 6ca80d5 */
.kachel__bottom {
  padding: 0 14px 10px;
  margin-top: auto;
  display: flex; flex-direction: column;
  gap: 5px;
}
.kachel__city {
  font-family: var(--ff); font-weight: 700;
  font-size: 15px; line-height: 1.1;
  color: var(--primary); text-transform: none;
  margin: 0; word-break: break-word;
}
.kachel__as {
  font-family: var(--ff); font-weight: 400;
  font-size: 12px; line-height: 1.2;
  color: var(--primary); text-transform: uppercase;
  margin: 0;
}

@media (max-width: 480px) {
  .kachel__highway { font-size: 1.8rem; }
  .kachel__top     { margin-bottom: 1em; }
}

/* Klassisches "Standorte"-Map (alte Klassen, falls woanders genutzt) */
.locations-map-section {
  position: relative; padding: 5em 0; background: var(--bg-soft);
  overflow: hidden;
}
.locations-map-title {
  font-size: clamp(3rem, 8vw, 6rem); line-height: .85;
  color: var(--primary); position: absolute;
  top: 50%; left: 4%; transform: translateY(-50%);
  pointer-events: none; z-index: 0; opacity: .12;
  font-weight: 700;
}
.locations-map-wrap { position: relative; max-width: 700px; margin: 0 auto; z-index: 1; }
.locations-map-wrap img { width: 100%; height: auto; }

.map-pin {
  position: absolute; transform: translate(-50%, -50%);
  cursor: pointer; z-index: 3;
}
.map-pin__dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); border: 2px solid var(--accent);
  box-shadow: 0 0 8px rgba(18,91,132,.5);
  transition: transform var(--transition);
  position: relative;
}
.map-pin__dot::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid var(--primary);
  opacity: 0; animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-pin:hover .map-pin__dot { transform: scale(1.3); }

.map-pin__tooltip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) scale(.85); opacity: 0;
  background: var(--primary); color: var(--accent);
  border-radius: 6px; padding: 12px 16px;
  white-space: nowrap; pointer-events: none;
  transition: all .25s ease;
  min-width: 180px; text-align: center;
}
.map-pin__tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); border: 6px solid transparent;
  border-top-color: var(--primary);
}
.map-pin:hover .map-pin__tooltip { opacity: 1; transform: translateX(-50%) scale(1); }
.map-pin__name    { font-weight: 700; font-size: .95rem; display: block; }
.map-pin__address { font-size: .78rem; opacity: .85; display: block; margin-top: 4px; }
.map-pin__links   { margin-top: 8px; display: flex; gap: 12px; justify-content: center; pointer-events: auto; }
.map-pin__links a { color: var(--accent); text-decoration: underline; font-size: .82rem; }

/* Map pin positions */
.map-pin--braunschweig    { top: 35%;   left: 50%;   }
.map-pin--porta           { top: 36%;   left: 34%;   }
.map-pin--mogendorf       { top: 59%;   left: 23%;   }
.map-pin--eifeltor        { top: 53.5%; left: 13.5%; }
.map-pin--wilnsdorf       { top: 54%;   left: 25%;   }
.map-pin--porz            { top: 53%;   left: 16%;   }
.map-pin--rappenau        { top: 75%;   left: 36%;   }
.map-pin--waldlaubersheim { top: 66%;   left: 23%;   }
.map-pin--lohfelden       { top: 49%;   left: 40%;   }
.map-pin--bitterfeld      { top: 43%;   left: 68%;   }

/* --- Standort-Karten-Grid (eine Card = großer A2/A3-Badge + Ort) --- */
.locations-grid-section { padding: 4em 0; }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--bg-page);
  border: 1px solid var(--border-soft);
  border-radius: 8px; overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-natural); border-color: var(--primary); }

.location-card__img { width: 100%; height: 180px; object-fit: cover; }
.location-card__head {
  display: flex; align-items: baseline; gap: 12px;
  padding: 20px 24px 8px; border-bottom: 1px solid var(--border-soft);
}
.location-card__highway {
  font-family: var(--ff); font-size: 2.5rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase; line-height: 1;
}
.location-card__city {
  font-family: var(--ff); font-size: 1.2rem; font-weight: 400;
  color: var(--primary); text-transform: uppercase;
}
.location-card__body { padding: 16px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.location-card__as { font-size: .9rem; color: var(--primary); margin-bottom: 12px; opacity: .8; }
.location-card__details { font-size: .9rem; color: var(--text); display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.location-card__details a { color: var(--primary); }
.location-card__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.location-card__actions .btn { font-size: 14px; padding: 6px 18px 4px; }
.location-card--hq { border-color: var(--primary); border-width: 2px; }

/* --- Page-Header (für Unterseiten) --- */
.page-header {
  background: var(--primary); color: var(--accent);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}
.page-header h1 { color: var(--accent); margin-bottom: 12px; }
.page-header p  { color: var(--accent); opacity: .9; max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.page-header__breadcrumb {
  font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 16px;
  letter-spacing: 1px; text-transform: uppercase;
}
.page-header__breadcrumb a { color: var(--accent); text-decoration: none; }
.page-header__breadcrumb a:hover { text-decoration: underline; }

/* --- Generische Sections --- */
.section       { padding: 5em 0; }
.section--soft { background: var(--bg-soft); }
.section h2    { text-align: center; margin-bottom: 16px; }
.section .lead { text-align: center; max-width: 720px; margin: 0 auto 48px; font-size: 1.05rem; }

/* --- Pricing Tables --- */
.pricing-section { margin-bottom: 48px; }
.pricing-section h3 {
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  text-transform: uppercase; font-size: 1.4rem;
}
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: 8px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
  background: var(--primary); color: var(--accent);
  padding: 14px 20px; text-align: left;
  font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700;
}
.pricing-table thead th:nth-child(2),
.pricing-table thead th:last-child { text-align: right; }
.pricing-table tbody td {
  padding: 12px 20px; border-bottom: 1px solid var(--border-soft);
  font-size: .95rem; color: var(--text);
}
.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:last-child { text-align: right; font-weight: 700; }
.pricing-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.pricing-table tbody tr:hover { background: rgba(18,91,132,.08); }

/* Discount Cards */
.discount-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin: 48px 0;
}
.discount-card {
  text-align: center; padding: 32px 24px;
  border: 2px solid var(--primary); border-radius: 8px;
  background: var(--bg-page); transition: all var(--transition);
}
.discount-card:hover { background: var(--primary); color: var(--accent); transform: translateY(-4px); }
.discount-card:hover .discount-card__percent,
.discount-card:hover .discount-card__label,
.discount-card:hover .discount-card__desc { color: var(--accent); }
.discount-card__percent { font-size: 3rem; font-weight: 700; color: var(--primary); }
.discount-card__label   { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.discount-card__desc    { font-size: .9rem; color: var(--text); margin-top: 4px; }

/* Tech / Environment */
.tech-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 48px;
}
.tech-feature {
  padding: 36px 28px; background: var(--bg-page);
  border: 1px solid var(--border-soft); border-radius: 8px;
  transition: all var(--transition);
}
.tech-feature:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-natural); }
.tech-feature__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.tech-feature h3 { margin-bottom: 10px; font-size: 1.15rem; text-transform: none; }
.tech-feature p  { color: var(--text); font-size: .95rem; margin: 0; }

.tech-illustration {
  display: block; max-width: 720px; margin: 48px auto 0;
  padding: 32px; background: var(--bg-soft); border-radius: 8px;
}

.env-highlight {
  margin: 48px auto; max-width: 800px;
  padding: 48px; border-radius: 8px;
  background: var(--primary); color: var(--accent);
  text-align: center;
}
.env-highlight__number { font-size: 4rem; font-weight: 700; color: var(--accent); }
.env-highlight__label  { font-size: 1.2rem; color: var(--accent); margin-top: 8px; text-transform: uppercase; letter-spacing: 2px; }
.env-highlight__desc   { color: var(--accent); margin-top: 8px; max-width: 640px; margin-inline: auto; opacity: .9; }

/* Jobs */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px; margin-top: 48px;
}
.job-card {
  padding: 36px 28px; background: var(--bg-page);
  border: 1px solid var(--border-soft); border-radius: 8px;
}
.job-card:hover { border-color: var(--primary); }
.job-card__type {
  display: inline-block; background: var(--primary); color: var(--accent);
  padding: 4px 14px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.job-card h3 { margin-bottom: 12px; font-size: 1.25rem; text-transform: none; }
.job-card p  { font-size: .95rem; color: var(--text); margin-bottom: 16px; }
.job-card__list li {
  position: relative; padding: 4px 0 4px 20px; font-size: .9rem;
}
.job-card__list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .85rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
  background: var(--bg-page); color: var(--text);
  border: 1px solid var(--border-soft); border-radius: 6px;
  padding: 12px 16px; font-family: var(--ff); font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,91,132,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input { margin-top: 4px; accent-color: var(--primary); width: 18px; height: 18px; }
.form-checkbox label { font-size: .9rem; color: var(--text); line-height: 1.5; text-transform: none; letter-spacing: 0; font-weight: 400; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info__text h4 { font-size: 1rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info__text p  { font-size: .95rem; margin: 0; }

/* === FOOTER — 1:1 Original (Elementor post-52, 4 Spalten) === */
/* Background hellgrau (#DCDEDC = secondary), Text blau (#125B84 = primary) */
.footer {
  background: var(--secondary);
  color: var(--primary);
  padding: 0;
}
.footer__main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
  padding: 3em 1em;
}

/* Spalte 1: Logo */
.footer__logo {
  flex: 3 1 0;
  display: flex; align-items: center;
}
.footer__logo a { display: block; line-height: 0; }
.footer__logo-mask {
  display: block;
  width: 220px; height: 44px;
  background-color: var(--primary);
  -webkit-mask: url('../images/logo.svg') no-repeat left center / contain;
          mask: url('../images/logo.svg') no-repeat left center / contain;
}

/* Spalte 2: Adresse */
.footer__address { flex: 2 1 0; }
.footer__address p {
  font-size: 0.9em; line-height: 1.5;
  color: var(--primary);
  margin: 0;
}

/* Spalte 3: Telefon / Fax / Mail */
.footer__contact { flex: 2 1 0; }
.footer__contact p {
  font-size: 0.9em; line-height: 1.5;
  color: var(--primary);
  margin: 0;
}
.footer__contact a { color: var(--primary); text-decoration: underline; }
.footer__contact a:hover { color: var(--primary-dark); }

/* Spalte 4: Vertikales Menü */
.footer__menu {
  flex: 2 1 0;
  display: flex; flex-direction: column;
  align-items: flex-end;
}
.footer__menu a {
  display: block;
  font-size: 0.9em; font-weight: 700;
  color: var(--primary);
  text-decoration: none; padding: 0;
  line-height: 1.6;
  transition: color var(--transition);
}
.footer__menu a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Bottom-Bar */
.footer__bottom {
  background: var(--secondary);
  text-align: center;
  padding: 10px;
}
.footer__bottom p {
  margin: 0;
  font-size: 0.9em;
  color: #A4A4A4;
}

/* Responsive nach Original */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer__main { flex-wrap: wrap; }
  .footer__logo    { flex-basis: 100%; justify-content: center; margin-bottom: 1.5em; }
  .footer__logo-mask { width: 240px; height: 48px; }
  .footer__address { flex-basis: 30%; }
  .footer__contact { flex-basis: 30%; }
  .footer__menu    { flex-basis: 30%; align-items: flex-end; }
}
@media (max-width: 767px) {
  .footer__main {
    flex-direction: column; align-items: center;
    text-align: center; padding: 2em 1em;
    gap: 1.25em;
  }
  .footer__logo-mask { width: 240px; height: 48px; margin: 0 auto; }
  .footer__menu { align-items: center; }
}

/* === STANDORT-DETAIL-SEITE === */
.standort-detail { margin-top: var(--header-h); padding: 3em 1em 5em; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.standort-detail__hero { margin-bottom: 2em; }
.standort-detail__hero h1 {
  font-size: 3.1rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; line-height: 1.1; margin: 0 0 0.5em;
}
.standort-detail__hero h4 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px; margin: 0 0 1.5em;
}
.standort-detail__photo { width: 100%; max-height: 480px; object-fit: cover; border-radius: 6px; }

.standort-detail__grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3em;
  margin-bottom: 3em;
}
@media (max-width: 1024px) {
  .standort-detail__grid { grid-template-columns: 1fr; gap: 1.5em; }
}
.standort-detail__main h5 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  text-transform: none; letter-spacing: 0; margin: 0 0 0.25em;
}
.standort-detail__main h2 {
  font-size: 2.5rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; line-height: 1; margin: 0 0 1em;
}
.standort-detail__main p { color: var(--text); font-size: 15px; line-height: 1.6; margin: 0 0 1em; }
.standort-detail__main h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  text-transform: none; margin: 1.5em 0 0.5em;
}
.standort-detail__main ul { padding-left: 24px; margin: 0 0 1em; }
.standort-detail__main ul li { color: var(--text); padding: 2px 0; list-style: disc; }

.standort-detail__sidebar { display: flex; flex-direction: column; gap: 1.5em; }
.standort-detail__card {
  border: 1px solid var(--secondary);
  border-radius: 6px; padding: 1.25em 1.25em;
  background: var(--bg-page);
}
.standort-detail__card h4 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin: 0 0 0.5em; text-transform: none;
}
.standort-detail__card p { font-size: 0.95rem; color: var(--text); margin: 0 0 0.75em; }
.standort-detail__card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 8px 14px 6px; }

.standort-detail__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1em; margin-top: 2em;
}
@media (max-width: 600px) { .standort-detail__actions { grid-template-columns: 1fr; } }
.standort-detail__action {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--primary); color: var(--accent);
  padding: 1.5em 1em; border-radius: 6px;
  font-family: var(--ff); font-weight: 700; font-size: 1.05rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  transition: background var(--transition);
}
.standort-detail__action:hover { background: var(--primary-dark); color: var(--accent); }
.standort-detail__action svg { width: 24px; height: 24px; fill: currentColor; }

.standort-weitere { margin-top: 4em; padding: 0 1em; }
.standort-weitere__title {
  font-size: 2rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; margin: 0 0 1.5em; text-align: center;
}
.standort-weitere__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  max-width: var(--max-w); margin: 0 auto;
}
@media (max-width: 1024px) { .standort-weitere__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .standort-weitere__grid { grid-template-columns: repeat(2, 1fr); } }

/* Legal pages (Impressum / Datenschutz / AGB) */
.legal-page { margin-top: var(--header-h); padding: 4em 1em 5em; }
.legal-content {
  max-width: 820px; margin: 0 auto;
  font-family: var(--ff); color: var(--text); font-size: 15px; line-height: 1.6;
}
.legal-content h2 {
  font-size: 2.5rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; margin: 0 0 16px; line-height: 1.1;
}
.legal-content h3 {
  font-size: 1.6rem; font-weight: 700; color: var(--primary);
  margin: 32px 0 12px; line-height: 1.2; text-transform: none;
}
.legal-content h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  margin: 24px 0 8px; line-height: 1.3; text-transform: none;
}
.legal-content h5 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin: 18px 0 6px; line-height: 1.3; text-transform: none;
}
.legal-content p { margin: 0 0 12px; }
.legal-content p strong { color: var(--primary); }
.legal-content ul, .legal-content ol { margin: 12px 0 12px; padding-left: 24px; }
.legal-content ul li { color: var(--text); padding: 2px 0; list-style: disc; }
.legal-content ol li { color: var(--text); padding: 4px 0; list-style: decimal; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-dark); }

/* --- Responsive --- */
@media (max-width: 767px) {
  :root { --header-h: 70px; }
  .site-header__inner { padding: .5em 1em; }
  .site-header__icon-link svg,
  .site-header__menu-toggle svg { width: 24px; height: 24px; }
  .site-header__icon-link { font-size: 12px; }
  .site-header__logo img { height: 28px; }

  .hero { min-height: 60vh; align-items: center; padding-block-start: calc(var(--header-h) + 2em); }
  .hero__inner { max-width: 95%; }
  .hero h1 { font-size: 2rem; }
  .hero h4 { font-size: 1rem; }
  .hero__buttons .btn { font-size: 14px; padding: 8px 18px 4px; }

  .intro-section { padding: 3em 0; }
  .intro-text h1 { font-size: 2rem; }
  .section { padding: 3em 0; }
  .menu-overlay__nav a { font-size: 1.4rem; }

  .pricing-table thead th,
  .pricing-table tbody td { padding: 8px 12px; font-size: .82rem; }
  .map-pin__tooltip { display: none; }
}

@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
  .discount-cards  { grid-template-columns: 1fr; }
  .location-card__highway { font-size: 1.8rem; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media print {
  .site-header, .footer, .sliding-text, .menu-overlay { display: none; }
  .hero { min-height: auto; padding: 1rem 0; }
  body { background: #fff; color: #000; }
}
