/* Ländle Flitzer – Premium Dark Theme (Mobile First) */

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

:root {
    color-scheme: dark;
    --text: #eceae4;
    --text-dim: #a7a49c;
    --card: #15151a;
    --card-border: rgba(255,255,255,.08);
    --gold-soft: color-mix(in srgb, var(--accent) 55%, transparent);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font, system-ui, sans-serif);
    background: var(--bg, #0c0c0f);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: .015em;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-heading, Georgia, serif); font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: color-mix(in srgb, var(--primary) 86%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); min-width: 0; }
.brand-logo { height: 40px; width: auto; }
.brand-mark {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--accent);
    color: var(--accent); font-family: var(--font-heading); font-size: 16px;
    letter-spacing: .08em;
}
.brand-name {
    font-family: var(--font-heading); font-size: 19px; letter-spacing: .04em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.main-nav { display: none; gap: 30px; margin-left: auto; }
.main-nav a {
    color: var(--text-dim); text-decoration: none; font-size: 12.5px;
    text-transform: uppercase; letter-spacing: .22em; font-weight: 400;
    transition: color .2s;
}
.main-nav a:hover { color: var(--accent); }
.header-call { margin-left: auto; white-space: nowrap; }
@media (max-width: 759px) {
    .brand-name { font-size: 16px; }
    .brand-mark, .brand-logo { width: 34px; height: 34px; }
    .header-call { padding: 10px 14px; font-size: 11.5px; letter-spacing: .1em; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; border: 1px solid transparent; cursor: pointer;
    padding: 12px 26px;
    font-family: var(--font); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .18em;
    text-decoration: none; text-align: center;
    transition: all .25s ease;
    border-radius: 2px;
}
.btn:active { transform: scale(.98); }
.btn-accent { background: var(--accent); color: #121212; border-color: var(--accent); }
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 85%, #fff); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: transparent; color: #36d178; border-color: #36d178; }
.btn-whatsapp:hover { background: rgba(54,209,120,.1); }
.btn-lg { padding: 15px 34px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: wait; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--bg) center / cover no-repeat;
    min-height: 88vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 22px 90px;
}
.hero-kicker {
    color: var(--accent); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .34em; margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(40px, 9vw, 76px); line-height: 1.08;
    max-width: 800px; margin-bottom: 20px; font-weight: 500;
    text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-sub {
    font-size: clamp(15px, 2.6vw, 19px); color: #d8d5cd;
    max-width: 520px; margin: 0 auto 38px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-line {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ---------- Sections ---------- */
.section { padding: 76px 18px; max-width: 1020px; margin: 0 auto; }
.section h2 {
    font-size: clamp(28px, 5vw, 40px); text-align: center; margin-bottom: 14px;
}
.section h2::after {
    content: ''; display: block; width: 54px; height: 1px;
    background: var(--accent); margin: 18px auto 0;
}
.section-sub {
    text-align: center; color: var(--text-dim); margin: 0 auto 40px;
    max-width: 560px; font-size: 15.5px;
}

/* ---------- Booking ---------- */
.booking-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 28px 22px; max-width: 660px; margin: 0 auto;
}
.field { margin-bottom: 18px; }
.field label {
    display: block; font-size: 11.5px; font-weight: 500; margin-bottom: 7px;
    color: var(--text-dim); text-transform: uppercase; letter-spacing: .16em;
}
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.14); border-radius: 3px;
    font-family: var(--font); font-size: 16px; font-weight: 300;
    background: rgba(255,255,255,.04); color: var(--text);
}
.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a227' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 8px;
    padding-right: 42px;
    cursor: pointer;
}
.field select option { background: #1c1c22; color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: #6d6a63; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }

.geocoder-wrap { position: relative; }
.suggestions {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
    background: #1c1c22; border: 1px solid var(--card-border); border-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    max-height: 240px; overflow-y: auto;
}
.suggestions div {
    padding: 12px 15px; cursor: pointer; font-size: 14.5px;
    border-top: 1px solid rgba(255,255,255,.05); color: #cfccc4;
}
.suggestions div:hover, .suggestions div.active { background: rgba(255,255,255,.06); color: var(--accent); }

.booking-map { height: 280px; border-radius: 4px; margin: 18px 0; overflow: hidden; border: 1px solid var(--card-border); }
.map-note {
    background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.18);
    border-radius: 4px; padding: 16px; text-align: center; margin: 18px 0;
    font-size: 14px; color: var(--text-dim);
}
.map-note .btn { margin-top: 10px; }

.price-box {
    background: color-mix(in srgb, var(--accent) 7%, transparent);
    border: 1px solid var(--gold-soft);
    border-radius: 4px; padding: 18px 20px; margin: 18px 0;
}
.price-row { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; color: var(--text-dim); }
.price-row strong { color: var(--text); font-weight: 500; }
.price-total {
    font-size: 17px; border-top: 1px solid var(--gold-soft);
    margin-top: 10px; padding-top: 12px;
}
.price-total span { color: var(--text); }
.price-total strong { color: var(--accent); font-size: 24px; font-family: var(--font-heading); }
.price-note { font-size: 12.5px; color: var(--text-dim); margin-top: 8px; }

.field label.check-row {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    text-transform: none; letter-spacing: .02em;
    font-size: 14.5px; font-weight: 300; color: var(--text); margin-bottom: 0;
}
.check-row input[type=checkbox] {
    width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer;
}
.field-hint { font-size: 12.5px; color: var(--text-dim); margin-top: 7px; }

.suggestions .suggestion-quick {
    color: var(--text); font-weight: 400;
    background: color-mix(in srgb, var(--accent) 7%, transparent);
}
.suggestions .suggestion-quick:hover { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }

.form-error {
    background: rgba(229,72,60,.12); color: #ff9a8d;
    border: 1px solid rgba(229,72,60,.4);
    border-radius: 4px; padding: 12px 15px; font-size: 14px; margin-bottom: 14px;
}
.form-hint { font-size: 12.5px; color: var(--text-dim); margin-top: 14px; text-align: center; }

.booking-success { text-align: center; }
.success-icon { font-size: 44px; margin-bottom: 10px; }
.booking-success h3 { font-size: 24px; margin-bottom: 12px; }
.booking-success p { margin-bottom: 12px; color: var(--text-dim); }
.booking-success strong { color: var(--accent); }

/* ---------- Preise ---------- */
.price-cards { display: grid; gap: 18px; }
.tariff-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 28px 24px;
}
.tariff-card h3 {
    font-size: 21px; margin-bottom: 18px; color: var(--accent);
    letter-spacing: .02em;
}
.tariff-list { list-style: none; }
.tariff-list li {
    display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
    padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 15px; color: var(--text-dim);
}
.tariff-list li:last-child { border-bottom: 0; }
.tariff-list strong { color: var(--text); font-weight: 500; white-space: nowrap; }
.tariff-note { font-size: 12.5px; color: var(--text-dim); margin-top: 14px; }

/* ---------- Leistungen ---------- */
.services-grid { display: grid; gap: 14px; }
.service-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 28px 20px; text-align: center;
    transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.service-icon { font-size: 30px; margin-bottom: 14px; filter: grayscale(.2); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--text-dim); }

/* ---------- Fahrzeug-Slider ---------- */
.vehicle-slider {
    position: relative; overflow: hidden;
    border-radius: 6px; border: 1px solid var(--card-border);
    aspect-ratio: 16 / 9; max-height: 520px;
    background: var(--card);
}
.vehicle-slide {
    position: absolute; inset: 0; margin: 0;
    opacity: 0; transition: opacity .9s ease;
}
.vehicle-slide.active { opacity: 1; }
.vehicle-slide img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-features {
    list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px;
    justify-content: center; padding: 0; margin: 22px 0 0;
}
.vehicle-features li {
    font-size: 13.5px; color: var(--text-dim);
    display: flex; align-items: center; gap: 9px;
}
.vehicle-features li::before { content: '◆'; color: var(--accent); font-size: 8px; }
.slider-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; gap: 9px;
    padding: 7px 12px; border-radius: 999px;
    background: rgba(8,8,11,.45); backdrop-filter: blur(4px);
}
.slider-dot {
    width: 9px; height: 9px; border-radius: 50%;
    border: 1px solid var(--accent); background: transparent;
    cursor: pointer; padding: 0;
    transition: background .25s, transform .25s;
}
.slider-dot.active { background: var(--accent); transform: scale(1.15); }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(8,8,11,.45); color: var(--text);
    border: 1px solid rgba(255,255,255,.28); cursor: pointer;
    font-size: 23px; line-height: 1; padding: 0 0 3px;
    backdrop-filter: blur(4px);
    transition: border-color .2s, color .2s;
}
.slider-arrow:hover { border-color: var(--accent); color: var(--accent); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
@media (max-width: 759px) {
    .vehicle-slider { aspect-ratio: 4 / 3; }
    .slider-arrow { width: 36px; height: 36px; font-size: 20px; }
}

/* ---------- Kundenstimmen ---------- */
.testimonial-grid { display: grid; gap: 16px; }
.testimonial-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 26px 22px; margin: 0;
}
.testimonial-stars { color: var(--accent); letter-spacing: 4px; font-size: 13px; margin-bottom: 12px; }
.testimonial-text {
    font-size: 14.5px; color: #c6c3bb; font-style: italic;
    line-height: 1.75; margin: 0 0 14px;
}
.testimonial-name {
    font-size: 12px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: .18em;
}
.testimonial-name::before { content: '— '; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; margin-bottom: 10px;
}
.faq-item summary {
    cursor: pointer; padding: 17px 20px; font-size: 15.5px;
    list-style: none; position: relative; padding-right: 44px;
    transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--accent); font-size: 21px; font-weight: 300;
    transition: transform .25s;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 20px 17px; font-size: 14.5px; color: var(--text-dim); }

/* ---------- Über uns ---------- */
.about-section .about-text {
    max-width: 660px; margin: 0 auto; text-align: center;
    color: var(--text-dim); font-size: 16px;
}

/* ---------- Legal ---------- */
.legal-section { max-width: 780px; }
.legal-content {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 6px; padding: 34px 26px;
}
.legal-content h2 { font-size: 28px; margin-bottom: 18px; }
.legal-content h3 { font-size: 17px; margin: 24px 0 8px; color: var(--accent); }
.legal-content p { margin-bottom: 10px; font-size: 14.5px; color: #c6c3bb; }

/* ---------- Footer ---------- */
.site-footer {
    background: #08080b; border-top: 1px solid var(--card-border);
    padding: 56px 22px 26px; margin-top: 50px;
}
.footer-grid { display: grid; gap: 32px; max-width: 1020px; margin: 0 auto; }
.site-footer h3 {
    color: var(--accent); font-size: 13px; font-family: var(--font);
    text-transform: uppercase; letter-spacing: .24em; font-weight: 500;
    margin-bottom: 14px;
}
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 8px; }
.footer-copy {
    text-align: center; font-size: 12.5px; color: #5d5a54; margin-top: 40px;
    letter-spacing: .06em;
}

/* ---------- Floating Call Button ---------- */
.call-fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 60;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: #121212;
    display: flex; align-items: center; justify-content: center;
    font-size: 23px; text-decoration: none;
    box-shadow: 0 8px 26px rgba(0,0,0,.5);
}

/* ---------- Mobile Navigation ---------- */
.nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    flex-shrink: 0; width: 42px; height: 42px; padding: 11px 10px;
    background: transparent; border: 1px solid rgba(255,255,255,.25);
    border-radius: 3px; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 1px; background: var(--text);
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
    position: fixed; inset: 0; z-index: 49;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(10px);
    padding: 96px 26px 30px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 26px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
    color: var(--text); text-decoration: none;
    font-family: var(--font-heading); font-size: 23px;
    padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color .2s;
}
.mobile-nav nav a:hover { color: var(--accent); }
body.nav-open { overflow: hidden; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
    background: #1a1a20; border: 1px solid var(--card-border);
    border-radius: 8px; padding: 18px;
    box-shadow: 0 16px 50px rgba(0,0,0,.6);
    font-size: 13.5px; color: var(--text-dim);
}
.cookie-banner strong { color: var(--text); }
.cookie-banner p { margin-bottom: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
    .main-nav { display: flex; }
    .header-call { margin-left: 0; }
    .nav-toggle, .mobile-nav { display: none; }
    .price-cards { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .booking-map { height: 330px; }
    .call-fab { display: none; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .cookie-banner { left: auto; max-width: 430px; }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 759px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}
