/* --- LOKALE SCHRIFTARTEN (DSGVO-Konform) --- */
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 300; src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 400; src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 900; src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 400; src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 500; src: url('../fonts/oswald-v57-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Oswald'; font-style: normal; font-weight: 700; src: url('../fonts/oswald-v57-latin-700.woff2') format('woff2'); }

:root {
    --primary: #e30613;
    --secondary: #1a1a1a;
    --bg-dark: #0f0f0f;
    --card-bg: #181818;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body { font-family: 'Montserrat', system-ui, -apple-system, sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Oswald', system-ui, sans-serif; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* =========================================================
   BARRIEREFREIHEIT (WCAG 2.1/2.2 AA · EN 301 549 · EAA)
   ========================================================= */

/* Skip-Link: WCAG 2.4.1 – wird beim Fokus sichtbar */
.skip-link { position: absolute; top: -100px; left: 8px; background: #000; color: #fff; padding: 14px 22px; z-index: 99999; text-decoration: none; font-weight: 700; border-radius: 6px; border: 2px solid #fff; transition: top 0.2s; }
.skip-link:focus { top: 8px; outline: 3px solid var(--primary); outline-offset: 2px; }

/* Universelle sichtbare Focus-Indikatoren – WCAG 2.4.7 (AA) und 2.4.11 (AAA) */
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.25); }
.btn-main:focus-visible, .nav-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 6px var(--primary); }

/* A11y-Widget */
.a11y-widget { position: fixed; top: 100px; right: 0; z-index: 9995; display: flex; align-items: flex-start; }
.a11y-btn { background: var(--primary); color: white; border: none; width: 50px; height: 50px; font-size: 1.5rem; cursor: pointer; border-radius: 10px 0 0 10px; box-shadow: -5px 5px 15px rgba(0,0,0,0.3); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.a11y-btn:hover { background: #b3050f; width: 60px; }
.a11y-panel { background: white; width: 320px; max-height: 80vh; overflow-y: auto; padding: 22px 20px; border-radius: 0 0 0 15px; box-shadow: -5px 5px 25px rgba(0,0,0,0.4); display: none; flex-direction: column; gap: 8px; color: var(--secondary); }
.a11y-panel.open { display: flex; }
.a11y-title { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 1.1rem; color: var(--secondary); padding-bottom: 8px; border-bottom: 2px solid var(--primary); margin: 0 0 6px; }
.a11y-intro { font-size: 0.82rem; color: #666; margin: 0 0 12px; }
.a11y-section { margin-bottom: 12px; }
.a11y-section h3 { font-family: 'Oswald', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin: 8px 0 6px; padding-bottom: 4px; border-bottom: 1px solid #eee; }
.a11y-option { background: #f6f6f6; border: 1px solid #e0e0e0; padding: 10px 12px; border-radius: 8px; text-align: left; font-family: inherit; font-size: 0.9rem; color: var(--secondary); cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 10px; width: 100%; margin-bottom: 5px; }
.a11y-option:hover { background: #eee; border-color: #ccc; }
.a11y-option[aria-pressed="true"] { background: var(--primary); color: white; border-color: var(--primary); font-weight: bold; }
.a11y-option i { width: 18px; text-align: center; flex-shrink: 0; }
.a11y-reset { background: transparent; border: 2px dashed #ccc; padding: 10px; border-radius: 8px; color: #555; cursor: pointer; font-family: inherit; font-size: 0.9rem; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; width: 100%; }
.a11y-reset:hover { border-color: var(--primary); color: var(--primary); }
.a11y-footer { margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee; text-align: center; }
.a11y-footer a { color: var(--primary); font-size: 0.82rem; text-decoration: underline; }

/* === MODI === */

/* Hoher Kontrast (WCAG 1.4.6 AAA, hilfreich für Sehbehinderte) */
body.a11y-high-contrast { background: #000 !important; color: #ffff00 !important; }
body.a11y-high-contrast *:not(i):not(.fa-stack):not(.a11y-btn):not(.a11y-option):not(.a11y-option *) { background: #000 !important; color: #ffff00 !important; border-color: #ffff00 !important; }
body.a11y-high-contrast a, body.a11y-high-contrast a * { color: #00ffff !important; text-decoration: underline !important; }
body.a11y-high-contrast button:not(.a11y-option):not(.a11y-btn):not(.a11y-reset), body.a11y-high-contrast .btn-main { background: #ffff00 !important; color: #000 !important; border: 2px solid #ffff00 !important; }
body.a11y-high-contrast img { filter: grayscale(1) contrast(1.4); }

/* Dunkler Modus (eigener Hell-zu-Dunkel-Override für hellen Bereich) */
body.a11y-dark-mode .bg-light { background: #1a1a1a !important; color: #f0f0f0 !important; }
body.a11y-dark-mode .bg-light h2, body.a11y-dark-mode .bg-light h3 { color: #fff !important; }
body.a11y-dark-mode .bg-light p, body.a11y-dark-mode .bg-light .section-header p { color: #ccc !important; }
body.a11y-dark-mode .booking-container, body.a11y-dark-mode .summary-box, body.a11y-dark-mode .service-card-select { background: #222 !important; color: #f0f0f0 !important; border-color: #444 !important; }
body.a11y-dark-mode .service-card-light { background: #222 !important; color: #eee !important; border-color: #444 !important; }
body.a11y-dark-mode .service-card-light h3 { color: #fff !important; }
body.a11y-dark-mode .service-card-light p { color: #bbb !important; }

/* Graustufen (für Migräne / Lichtempfindlichkeit) */
body.a11y-grayscale { filter: grayscale(1); }

/* Größerer Text – stufenweise, bleibt responsive (WCAG 1.4.4) */
body.a11y-large-text { font-size: 118%; }
body.a11y-large-text h1 { font-size: clamp(2.5rem, 9vw, 5.5rem); }
body.a11y-large-text h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
body.a11y-large-text h3 { font-size: 1.6rem; }
body.a11y-large-text p, body.a11y-large-text li, body.a11y-large-text label { font-size: 1.18rem; line-height: 1.7; }
body.a11y-large-text .nav-links a { font-size: 1rem; }

/* Zeilenabstand (WCAG 1.4.12) */
body.a11y-line-spacing p, body.a11y-line-spacing li, body.a11y-line-spacing label, body.a11y-line-spacing span { line-height: 2 !important; }

/* Buchstabenabstand (WCAG 1.4.12) */
body.a11y-letter-spacing * { letter-spacing: 0.12em !important; word-spacing: 0.16em !important; }

/* Lesbare Schrift (für Dyslexie) */
body.a11y-dyslexia, body.a11y-dyslexia * { font-family: "Verdana", "Tahoma", "Lucida Sans Unicode", Arial, sans-serif !important; letter-spacing: 0.05em !important; word-spacing: 0.1em !important; }

/* Links hervorheben (WCAG 1.4.1) */
body.a11y-highlight-links a:not(.btn-main):not(.logo):not(.skip-link) { background: #ffeb3b !important; color: #000 !important; text-decoration: underline !important; padding: 2px 4px !important; border-radius: 3px !important; box-shadow: 0 0 0 1px #000; }

/* Großer Cursor */
body.a11y-big-cursor, body.a11y-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='2' d='M5 3 L5 35 L13 27 L18 38 L23 36 L18 25 L29 25 Z'/%3E%3C/svg%3E") 4 4, auto !important; }
body.a11y-big-cursor a, body.a11y-big-cursor button, body.a11y-big-cursor input, body.a11y-big-cursor select, body.a11y-big-cursor textarea { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23e30613' stroke='%23fff' stroke-width='2' d='M5 3 L5 35 L13 27 L18 38 L23 36 L18 25 L29 25 Z'/%3E%3C/svg%3E") 4 4, pointer !important; }

/* Lese-Hilfe – horizontaler Balken am Cursor */
.reading-guide { display: none; position: fixed; left: 0; right: 0; height: 50px; background: rgba(0,0,0,0.35); pointer-events: none; z-index: 99990; border-top: 2px solid #ffeb3b; border-bottom: 2px solid #ffeb3b; }
body.a11y-reading-guide .reading-guide { display: block; }

/* Animationen aus (WCAG 2.3.3) */
body.a11y-no-animation *, body.a11y-no-animation *::before, body.a11y-no-animation *::after { transition: none !important; animation: none !important; animation-duration: 0s !important; scroll-behavior: auto !important; }

/* Browser-/OS-Setting: Reduced Motion respektieren (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .fade-in, .slide-left, .slide-right { opacity: 1 !important; transform: none !important; }
}

/* Screenreader-only utility (visuell unsichtbar, vorlesbar) */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* --- COOKIE BANNER --- */
.cookie-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 9990; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(10px); }
.cookie-box { background: #1a1a1a; padding: 40px; border-radius: 15px; border: 1px solid #333; max-width: 500px; width: 90%; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.cookie-box a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.cookie-box a:hover { color: var(--primary); }
.cookie-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.btn-cookie { flex: 1; padding: 15px; border-radius: 5px; font-weight: 900; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: 0.3s; font-size: 1rem; }
.btn-cookie-accept { background: var(--primary); color: white; border: none; }
.btn-cookie-accept:hover { background: #b3050f; transform: translateY(-2px); }
.btn-cookie-reject { background: transparent; color: white; border: 2px solid #555; }
.btn-cookie-reject:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* --- FLOATING COOKIE BUTTON --- */
.floating-cookie-btn { position: fixed; bottom: 30px; left: 30px; background: var(--secondary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 2px solid #333; cursor: pointer; transition: 0.3s; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.floating-cookie-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px); }

nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(10px); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass); }
.logo { font-size: 1.8rem; font-weight: 900; color: white; text-decoration: none; font-family: 'Oswald', sans-serif; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 30px; }
.cta-call { color: var(--primary); font-weight: 900; text-decoration: none; font-size: 1.1rem; }
.nav-btn { padding: 12px 25px; font-size: 0.9rem; }

.mobile-toggle { display: none; color: white; font-size: 1.8rem; cursor: pointer; background: transparent; border: none; padding: 8px; font-family: inherit; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(rgba(0,0,0,0.5), rgba(15,15,15,1)), url('../img/onixcarwash_header.PNG') center/cover no-repeat; background-attachment: fixed; text-align: center; padding: 0 20px; }
.hero-content h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 0.9; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary); display: block; }
.hero-content p { font-size: 1.3rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(227, 6, 19, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}
.btn-main { background: var(--primary); color: white; padding: 18px 40px; border-radius: 5px; text-decoration: none; font-weight: 900; text-transform: uppercase; transition: var(--transition); display: inline-block; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; text-align: center; }
.btn-main:hover:not(:disabled) { transform: translateY(-3px); background: #b3050f; box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3); }
.btn-main:disabled { background: #999; cursor: not-allowed; animation: none; }

section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; position: relative; display: inline-block; margin-bottom: 20px; }
.section-header h2::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 60%; height: 4px; background: var(--primary); }
.section-header p { color: var(--text-muted); max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

.bg-light { background-color: #f4f4f4; color: var(--secondary); }
.bg-light .section-header h2 { color: var(--secondary); }
.bg-light .section-header p { color: #555; }

.split-section { display: flex; align-items: center; gap: 60px; }
.split-text { flex: 1; }
.split-text h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.split-text h2 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.1; }
.split-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.split-image { flex: 1; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid var(--glass); }
.split-image img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.split-image:hover img { transform: scale(1.05); }

.premium-banner { background: var(--primary); color: white; text-align: center; padding: 80px 8%; }
.premium-banner h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.premium-banner p { font-size: 1.3rem; max-width: 900px; margin: 0 auto; font-weight: 500; }

.services-grid { display: grid; gap: 30px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card { background: var(--card-bg); padding: 40px 30px; border-radius: 15px; border: 1px solid var(--glass); transition: 0.4s; text-align: center; }
.service-card:hover { border-color: var(--primary); transform: translateY(-10px); background: #1f1f1f; }
/* FIX FÜR DIE ICONS (Inline-Block zentriert sie richtig im text-align: center container) */
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; display: inline-block; transition: 0.3s; }
.service-card:hover i { transform: scale(1.1); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

.ba-wrapper { --pos: 50%; max-width: 1000px; margin: 60px auto 0; border: 10px solid var(--card-bg); border-radius: 20px; overflow: hidden; position: relative; height: 500px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.ba-before { background-image: url('../img/before-after/Before_04.jpg'); z-index: 1; }
.ba-after { background-image: url('../img/before-after/After_04.jpg'); z-index: 2; clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%); }
.ba-slider-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; background: var(--primary); z-index: 10; cursor: ew-resize; transform: translateX(-50%); }
.ba-slider-handle::after { content: '\f07e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--primary); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 0 15px rgba(0,0,0,0.5); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.gallery-item { width: 100%; height: 250px; border-radius: 10px; overflow: hidden; position: relative; background: #ddd; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- MODALS & LIGHTBOX --- */
.modal, .lightbox { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); }
.modal-content { background-color: #fefefe; margin: 5% auto; padding: 30px; border: 1px solid #888; width: 90%; max-width: 800px; border-radius: 15px; position: relative; color: var(--secondary); }
.close, .lightbox-close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; transition: 0.3s;}
.close:hover, .lightbox-close:hover { color: var(--primary); }

.lightbox { display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(5px); }
.lightbox.active { opacity: 1; pointer-events: auto; display: flex; }
.lightbox img { max-width: 80%; max-height: 80vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); object-fit: contain; z-index: 10000; transition: 0.3s; }
.lightbox-close { position: absolute; top: 20px; right: 40px; color: white; font-size: 3.5rem; z-index: 10002; }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: white; border: none; font-size: 1.8rem; width: 60px; height: 60px; border-radius: 50%; cursor: pointer; transition: 0.3s; z-index: 10001; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.lightbox-nav:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: white; font-size: 1rem; font-weight: bold; background: rgba(0,0,0,0.6); padding: 8px 25px; border-radius: 30px; letter-spacing: 2px; backdrop-filter: blur(5px); }

.privacy-content { max-height: 85vh; display: flex; flex-direction: column; }
.privacy-text-body { overflow-y: auto; padding-right: 10px; line-height: 1.6; }

/* --- NEUES ERFOLGS MODAL --- */
.success-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(5px); }
.success-modal.active { display: flex; opacity: 1; pointer-events: auto; }
.success-content { background: #ffffff; padding: 50px 40px; border-radius: 15px; text-align: center; max-width: 450px; width: 90%; transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.success-modal.active .success-content { transform: translateY(0); }
.success-icon { font-size: 5rem; color: #e30613; margin-bottom: 20px; }
.success-btn { background: #e30613; color: white; border: none; padding: 15px 40px; border-radius: 8px; font-size: 1.1rem; font-weight: 900; font-family: inherit; cursor: pointer; transition: 0.3s; width: 100%; text-transform: uppercase; letter-spacing: 1px; }
.success-btn:hover { background: #b3050f; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3); }

/* --- BOOKING BEREICH MULTI-STEP --- */
.booking-container { max-width: 900px; margin: 0 auto; background: white; padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); position: relative; }
.step-indicator { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding: 0 20px; }
.step-dot { width: 40px; height: 40px; border-radius: 50%; background: #eee; color: #999; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem; transition: 0.3s; z-index: 2; position: relative; flex-shrink: 0; }
.step-dot.active { background: var(--primary); color: white; box-shadow: 0 0 15px rgba(227, 6, 19, 0.4); }
.step-line { flex: 1; height: 4px; background: #eee; margin: 0 -5px; z-index: 1; transition: 0.3s; }
.step-line.active { background: var(--primary); }

.services-selection { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: stretch; }
.services-selection:not(.has-active) { grid-auto-rows: 1fr; }
.service-card-select { background: #fff; border: 2px solid #eee; border-radius: 15px; padding: 20px; cursor: pointer; transition: all 0.4s ease; text-align: center; display: flex; flex-direction: column; height: 100%; position: relative; }
.service-card-select:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-card-select.active { border-color: var(--primary); background: #fff5f5; box-shadow: 0 10px 20px rgba(227, 6, 19, 0.1); }
.service-card-select img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; margin-bottom: 15px; display: block; }
.service-card-select h4 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 5px; }
.service-card-select p.desc { font-size: 0.9rem; color: #666; margin-bottom: 15px; flex-grow: 1; display: flex; align-items: flex-start; justify-content: center; }
.service-card-select .price { display: block; font-weight: 900; color: var(--primary); font-size: 1.3rem; margin-top: auto; }
.service-card-select .expanded-content { display: none; }
.services-selection.has-active .service-card-select:not(.active) { display: none; }
.services-selection.has-active .service-card-select.active { grid-column: 1 / -1; max-width: 700px; margin: 0 auto; cursor: default; transform: none !important; }
.services-selection.has-active .service-card-select.active .expanded-content { display: block; animation: fadeInDown 0.4s ease; margin-top: 20px; padding-top: 20px; border-top: 1px dashed #ddd; text-align: left; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.close-card-btn { display: none; position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.5); color: white; width: 35px; height: 35px; border-radius: 50%; text-align: center; line-height: 35px; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: 0.3s; backdrop-filter: blur(5px); }
.close-card-btn:hover { background: var(--primary); transform: scale(1.1); }
.service-card-select.active .close-card-btn { display: block; }
.long-desc { font-size: 0.95rem; color: #555; margin-bottom: 25px; line-height: 1.6; }
.extras-box h5 { margin-bottom: 15px; color: var(--secondary); font-size: 1.1rem; border-bottom: 2px solid #eee; padding-bottom: 5px; display: inline-block;}
.extra-item { display: flex; align-items: center; margin-bottom: 12px; cursor: pointer; font-size: 0.95rem; color: #333; position: relative; user-select: none; background: #f9f9f9; padding: 12px 15px; border-radius: 8px; border: 1px solid #eee; transition: 0.2s; }
.extra-item:hover { border-color: #ccc; }
.extra-item input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark-extra { height: 24px; width: 24px; background-color: #fff; border-radius: 5px; margin-right: 15px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: 0.2s; border: 2px solid #ccc; }
.extra-item:hover input ~ .checkmark-extra { background-color: #f0f0f0; }
.extra-item input:checked ~ .checkmark-extra { background-color: var(--primary); border-color: var(--primary); }
.extra-item input:checked ~ .checkmark-extra::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: white; font-size: 0.9rem; }
.extra-item input:checked ~ .extra-name { font-weight: bold; color: var(--primary); }
.extra-price { font-weight: 900; color: var(--primary); font-size: 1.05rem; }

.btn-back { background: transparent; border: 2px solid #ccc; color: #555; padding: 10px 20px; border-radius: 5px; font-size: 0.9rem; cursor: pointer; font-family: inherit; font-weight: 700; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-back:hover { border-color: var(--primary); color: var(--primary); background: #fff5f5; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group-full { grid-column: span 2; }
.form-grid-2 input { background: #fdfdfd; border: 2px solid #eee; padding: 18px; border-radius: 10px; font-size: 1rem; width: 100%; font-family: inherit; transition: var(--transition); color: var(--secondary); }
.form-grid-2 input:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 15px rgba(227, 6, 19, 0.1); }

.privacy-wrapper { background: #f9f9f9; padding: 20px; border-radius: 10px; border: 1px solid #eee; }
.privacy-label { display: flex; align-items: flex-start; gap: 15px; font-size: 0.9rem; color: #555; cursor: pointer; line-height: 1.5; position: relative; user-select: none; }
.privacy-text { display: block; flex: 1; }
.privacy-label input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: relative; top: 2px; height: 22px; width: 22px; background-color: #eee; border-radius: 5px; border: 2px solid #ccc; flex-shrink: 0; transition: 0.2s; }
.privacy-label:hover input ~ .checkmark { background-color: #e0e0e0; }
.privacy-label input:checked ~ .checkmark { background-color: var(--primary); border-color: var(--primary); }
.checkmark:after { content: ""; position: absolute; display: none; left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; transform: rotate(45deg); }
.privacy-label input:checked ~ .checkmark:after { display: block; }
.privacy-label a { color: var(--primary); text-decoration: underline; }

.summary-box { background: #fff; border: 2px solid #eee; border-radius: 15px; padding: 30px; margin-bottom: 20px; }
.summary-table { width: 100%; border-collapse: collapse; color: var(--secondary); }
.summary-table th { text-align: left; padding: 15px 0; border-bottom: 1px solid #eee; width: 40%; color: #777; font-weight: 500; }
.summary-table td { padding: 15px 0; border-bottom: 1px solid #eee; font-weight: 700; text-align: right; }
.summary-table tr:last-child th, .summary-table tr:last-child td { border-bottom: none; }

.verification-box { text-align: center; padding: 30px; background: #f9f9f9; border-radius: 15px; border: 2px dashed var(--primary); }
.v-input { font-size: 2.5rem !important; text-align: center; letter-spacing: 15px; font-weight: 900; border: 2px solid #ddd !important; border-radius: 10px; margin: 25px auto !important; width: 100%; max-width: 300px; padding: 10px !important; color: var(--secondary); background: #fff !important; }

footer { background: #050505; padding: 80px 8% 30px; border-top: 1px solid var(--glass); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { color: var(--text-muted); font-size: 1.4rem; transition: var(--transition); }
.social-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: #555; padding-top: 30px; border-top: 1px solid var(--glass); font-size: 0.9rem; }
.footer-bottom a { color: var(--primary); text-decoration: none; font-weight: bold; }

/* Cookie Button für die Map */
.map-cookie-btn { background: var(--primary); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: bold; margin-top: 15px; font-family: inherit; transition: 0.3s; }
.map-cookie-btn:hover { background: #b3050f; transform: scale(1.05); }

.scroll-top { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; opacity: 0; pointer-events: none; transition: 0.3s; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: white; color: var(--primary); transform: translateY(-5px); }

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.appear, .slide-left.appear, .slide-right.appear { opacity: 1; transform: translate(0, 0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- GERMAN WORD-BREAK & MOBILE TYPOGRAPHY FIXES --- */
h1, h2, h3, h4, p, span, .service-card-select h4 { word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; }

.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* =========================================================
   WASCHSTRASSE.PHP – eigene Komponenten
   ========================================================= */

/* Sub-Hero (kein Vollbild wie auf der Startseite) */
.hero-sub { height: 60vh; min-height: 420px; background: linear-gradient(rgba(0,0,0,0.65), rgba(15,15,15,1)), url('../img/onixcarwash_header.PNG') center/cover no-repeat; background-attachment: scroll; }
.hero-sub .hero-content h1 { font-size: clamp(2rem, 6vw, 4.5rem); }
.hero-sub .hero-content p { font-size: 1.1rem; margin-bottom: 30px; }

/* Aktiver Nav-Link */
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; display: block; width: 100%; height: 2px; background: var(--primary); margin-top: 4px; }

/* Video-Sektion mit Lazy YouTube Facade */
.video-section { padding: 80px 8%; background: #0a0a0a; }
.video-wrapper { max-width: 900px; margin: 0 auto; }
.yt-facade { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 15px; overflow: hidden; cursor: pointer; box-shadow: 0 20px 50px rgba(0,0,0,0.6); background: #000; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s, filter 0.4s; }
.yt-facade:hover img { transform: scale(1.04); filter: brightness(0.85); }
.yt-facade .yt-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: transparent; border: none; cursor: pointer; padding: 0; transition: transform 0.3s; }
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade .yt-play-btn svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)); }
.yt-facade.yt-loaded { cursor: default; }
.yt-facade iframe { width: 100%; height: 100%; border: 0; }

/* Waschprogramme P1-P5 */
.wash-programs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; max-width: 1400px; margin: 0 auto; }
.program-card { position: relative; background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%); border: 1px solid #2a2a2a; border-radius: 16px; padding: 30px 25px; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; display: flex; flex-direction: column; }
.program-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(227, 6, 19, 0.15); }
.program-card .program-head { border-bottom: 1px solid #2a2a2a; padding-bottom: 18px; margin-bottom: 18px; }
.program-card .program-id { display: inline-block; background: var(--primary); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; margin-bottom: 12px; }
.program-card h3 { color: #fff; font-size: 1.6rem; line-height: 1.1; margin-bottom: 10px; }
.program-card .program-price { display: block; color: var(--primary); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 2rem; letter-spacing: 1px; }
.program-card .program-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.program-card .program-list li { color: var(--text-muted); padding: 8px 0; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.program-card .program-list li i { color: var(--primary); font-size: 0.85rem; margin-top: 5px; flex-shrink: 0; }
.program-card .program-note { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #333; color: #fff; font-size: 0.95rem; font-style: italic; }

.program-card.program-featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 15px 35px rgba(227, 6, 19, 0.15); }
.program-card.program-premium { background: linear-gradient(180deg, #1f1f1f 0%, #0e0e0e 100%); border-color: #444; }
.program-card.program-premium:hover { border-color: #ffd700; box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1); }
.program-card.program-premium .program-id { background: linear-gradient(135deg, #d4af37, #f9d976); color: #1a1a1a; }
.program-card.program-premium .program-price { color: #f9d976; }

.program-badge { position: absolute; top: -12px; right: 20px; background: var(--primary); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 1.5px; text-transform: uppercase; box-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.program-badge-premium { background: linear-gradient(135deg, #d4af37, #f9d976); color: #1a1a1a; }

/* Service-Cards auf hellem Hintergrund (bg-light) */
.service-card-light { background: #fff; padding: 35px 28px; border-radius: 15px; border: 1px solid #e5e5e5; transition: 0.4s; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.04); }
.service-card-light:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(227, 6, 19, 0.08); }
.service-card-light i { font-size: 2.8rem; color: var(--primary); margin-bottom: 18px; display: inline-block; }
.service-card-light h3 { color: var(--secondary); font-size: 1.3rem; margin-bottom: 12px; }
.service-card-light p { color: #555; font-size: 0.95rem; line-height: 1.6; }

/* Mobile */
@media (max-width: 768px) {
    .hero-sub { height: auto; min-height: 380px; padding: 120px 20px 60px; }
    .video-section { padding: 60px 5%; }
    .wash-programs { grid-template-columns: 1fr; gap: 20px; }
    .program-card h3 { font-size: 1.4rem; }
    .program-card .program-price { font-size: 1.7rem; }
}

/* =========================================================
   KONTAKT-POPUP (waschstrasse.php)
   ========================================================= */
.contact-modal { position: fixed; inset: 0; z-index: 10050; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-modal-content { background: #fff; color: var(--secondary); width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto; border-radius: 18px; padding: 40px 35px 30px; box-shadow: 0 25px 60px rgba(0,0,0,0.5); position: relative; transform: translateY(30px) scale(0.98); transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.contact-modal.open .contact-modal-content { transform: translateY(0) scale(1); }
.contact-modal-close { position: absolute; top: 15px; right: 18px; background: transparent; border: none; font-size: 2rem; color: #999; cursor: pointer; line-height: 1; padding: 5px 12px; border-radius: 50%; transition: 0.25s; }
.contact-modal-close:hover { background: #f5f5f5; color: var(--primary); transform: rotate(90deg); }

.contact-modal-header { text-align: center; margin-bottom: 25px; }
.contact-modal-header i { font-size: 2.8rem; color: var(--primary); margin-bottom: 12px; }
.contact-modal-header h2 { font-size: 1.9rem; color: var(--secondary); margin-bottom: 8px; }
.contact-modal-header p { color: #666; font-size: 0.95rem; }

.contact-form { display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.contact-field { display: flex; flex-direction: column; }
.contact-field-full { grid-column: 1 / -1; }
.contact-field label:not(.contact-privacy label) { font-weight: 700; color: #444; font-size: 0.85rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-field input, .contact-field textarea { background: #fafafa; border: 2px solid #e5e5e5; padding: 14px 16px; border-radius: 10px; font-size: 1rem; font-family: inherit; color: var(--secondary); transition: 0.25s; width: 100%; }
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08); }
.contact-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

.contact-privacy label { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; color: #555; line-height: 1.5; cursor: pointer; position: relative; user-select: none; padding: 12px; background: #f9f9f9; border-radius: 10px; border: 1px solid #eee; }
.contact-privacy label input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.contact-privacy .checkmark { position: relative; top: 1px; height: 20px; width: 20px; background-color: #fff; border-radius: 4px; border: 2px solid #ccc; flex-shrink: 0; transition: 0.2s; }
.contact-privacy label:hover .checkmark { border-color: var(--primary); }
.contact-privacy input:checked ~ .checkmark { background-color: var(--primary); border-color: var(--primary); }
.contact-privacy .checkmark:after { content: ""; position: absolute; display: none; left: 5px; top: 1px; width: 4px; height: 9px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.contact-privacy input:checked ~ .checkmark:after { display: block; }
.contact-privacy a { color: var(--primary); text-decoration: underline; }

.contact-submit { width: 100%; margin-top: 8px; padding: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.contact-submit:disabled { opacity: 0.7; cursor: wait; }

.contact-feedback { padding: 14px 16px; border-radius: 10px; font-size: 0.95rem; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-feedback.success { background: #e6f7ec; color: #1b7a3e; border: 1px solid #b6e5c8; }
.contact-feedback.error   { background: #fdecec; color: #b3050f; border: 1px solid #f5b8b8; }

.contact-direct { text-align: center; margin-top: 18px; color: #777; font-size: 0.9rem; }
.contact-direct a { color: var(--primary); text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }

/* Honeypot unsichtbar */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; opacity: 0; pointer-events: none; }

@media (max-width: 600px) {
    .contact-modal-content { padding: 30px 22px 25px; max-height: 95vh; }
    .contact-modal-header h2 { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 992px) { 
    .hero { background-attachment: scroll; background-position: center top; }
    .nav-right .nav-btn { display: none; } 
    .mobile-toggle { display: block; } 
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #0f0f0f; padding: 20px 0; text-align: center; border-bottom: 2px solid var(--primary); }
    .nav-links.active { display: flex; }
    .split-section { flex-direction: column; text-align: center; } 
    .ba-wrapper { height: 350px; } 
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .footer-map iframe { height: 250px; }
    .social-links { justify-content: center; }
    
    .gallery-grid { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; -webkit-overflow-scrolling: touch; }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-grid { -ms-overflow-style: none; scrollbar-width: none; }
    .gallery-item { flex: 0 0 85% !important; max-width: 85% !important; scroll-snap-align: center; }
}

@media (max-width: 768px) {
    .premium-banner { padding: 50px 5%; }
    .premium-banner h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem !important; line-height: 1.2 !important; }
    .split-text h2 { font-size: 2rem !important; line-height: 1.2 !important; }
    .service-card-select h4 { font-size: 1.1rem !important; line-height: 1.4 !important; }
    .booking-container { padding: 25px !important; }
}

@media (max-width: 600px) {
    section { padding: 60px 5%; }
    .section-header h2 { font-size: 2.2rem; }
    .booking-container { padding: 30px 15px; } 
    .step-indicator { padding: 0; margin-bottom: 30px; }
    .step-dot { width: 32px; height: 32px; font-size: 1rem; }
    .services-selection { grid-template-columns: repeat(2, 1fr); gap: 10px; align-items: stretch; }
    .service-card-select { padding: 15px 10px; }
    .service-card-select img { aspect-ratio: 4/3; width: 100%; height: auto; object-fit: cover; }
    .service-card-select h4 { font-size: 0.95rem; line-height: 1.2; }
    .service-card-select p.desc { font-size: 0.75rem; margin-bottom: 10px; }
    .service-card-select .price { font-size: 1.1rem; margin-top: auto; }
    .services-selection.has-active .service-card-select.active { grid-column: span 2; }
    .btn-back { width: 100%; justify-content: center; margin-bottom: 20px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 15px; }
    .form-group-full { grid-column: 1; }
    .summary-box { padding: 20px 15px; }
    .summary-table th, .summary-table td { display: block; width: 100%; text-align: left; padding: 8px 0; }
    .summary-table th { padding-bottom: 2px; color: #555; border-bottom: none; }
    .summary-table td { padding-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
    .v-input { font-size: 2rem !important; letter-spacing: 5px; padding: 10px 5px !important; }
    .modal-content { padding: 20px 15px; width: 95%; margin: 10% auto; }
    .cookie-buttons { flex-direction: column; gap: 10px; }
    .a11y-widget { top: 80px; }
}