/* ==========================================================================
   KAMARAN TAXI — VIBRANT DESIGN SYSTEM
   ========================================================================== */

/* --- SELF-HOSTED FONT (lokal, kein Google-Server-Kontakt) -----------------
   1. fonts.google.com/specimen/Plus+Jakarta+Sans → "Download family"
   2. ZIP öffnen → Datei "PlusJakartaSans[wght].ttf" umbenennen in:
      PlusJakartaSans-Variable.ttf
   3. Ablegen in: /web-design/fonts/PlusJakartaSans-Variable.ttf
   -------------------------------------------------------------------------*/
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

/* --- DESIGN TOKENS -------------------------------------------------------- */
:root {
    /* Brand */
    --vb-yellow:        #FACC15;
    --vb-yellow-dark:   #EAB308;
    --vb-yellow-glow:   rgba(250, 204, 21, 0.18);

    /* Surfaces (dark UI — reines Schwarz/Grau, kein Blauton) */
    --vb-bg:            #080808;
    --vb-surface-1:     #111111;
    --vb-surface-2:     #1A1A1A;
    --vb-surface-3:     #2D2D2D;
    --vb-glass:         rgba(12, 12, 12, 0.85);

    /* Text */
    --vb-text:          #F1F5F9;
    --vb-text-muted:    #9CA3AF;
    --vb-text-dark:     #080808;

    /* Accent */
    --vb-accent:        #6B7280;
    --vb-accent-light:  #9CA3AF;
    --vb-success:       #10B981;
    --vb-danger:        #EF4444;

    /* Gradients */
    --vb-grad-cta:      linear-gradient(135deg, #FACC15, #F59E0B);
    --vb-grad-hero:     linear-gradient(160deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.82) 100%);
    --vb-grad-accent:   linear-gradient(135deg, #3D3D3D, #111111);

    /* Spacing & Shape */
    --vb-radius-sm:     8px;
    --vb-radius:        14px;
    --vb-radius-lg:     22px;
    --vb-font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --vb-shadow:        0 8px 32px rgba(0, 0, 0, 0.4);
    --vb-shadow-glow:   0 0 48px rgba(250, 204, 21, 0.12);
    --vb-transition:    all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
    font-family: var(--vb-font);
    background: var(--vb-bg);
    color: var(--vb-text);
    padding-top: 85px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--vb-transition); }
img, video { display: block; max-width: 100%; }

/* ==========================================================================
   TOAST SYSTEM
   ========================================================================== */
#toast-container {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-left: 4px solid var(--vb-success);
    color: var(--vb-text);
    padding: 14px 18px;
    border-radius: var(--vb-radius-sm);
    box-shadow: var(--vb-shadow);
    font-size: 0.9rem;
    max-width: 320px;
    pointer-events: auto;
    animation: toastIn 0.28s ease forwards;
}
.toast--error   { border-left-color: var(--vb-danger); }
.toast--warning { border-left-color: var(--vb-yellow); }

@keyframes toastIn  { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }
@keyframes toastOut { to   { opacity:0; transform:translateX(16px); } }

/* ==========================================================================
   HEADER
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: visible;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 85px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    overflow: visible;
}

/* Logo */
.logo {
    align-self: flex-start;
    position: relative;
    z-index: 9001;
    overflow: visible;
}

.logo a { display: flex; align-items: flex-start; }

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

/* Nur Header-Logo: hängt leicht raus, z-index hoch */
.logo .logo-img {
    position: relative;
    z-index: 9001;
    margin-top: 30px;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}

.logo-img--footer {
    height: 135px;
    margin-bottom: 14px;
}

/* Nav */
#main-nav { align-self: center; }
#main-nav ul { display: flex; list-style: none; gap: 2px; }

#main-nav a {
    color: var(--vb-text-muted);
    font-size: 0.88rem; font-weight: 500;
    padding: 6px 11px;
    border-radius: var(--vb-radius-sm);
    transition: var(--vb-transition);
}
#main-nav a:hover,
#main-nav a.active { color: var(--vb-yellow); background: var(--vb-yellow-glow); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; align-self: center; }

.btn-call {
    display: flex; align-items: center; gap: 6px;
    background: var(--vb-success);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.88rem;
    transition: var(--vb-transition);
    animation: callPulse 2.5s infinite;
}
.btn-call:hover { background: #059669; transform: scale(1.03); }

@keyframes callPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
    50%       { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 38px; height: 38px;
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-sm);
    cursor: pointer;
}
.hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--vb-text); border-radius: 2px;
    transition: var(--vb-transition);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 80px;
    /* kein overflow:hidden — sonst werden die Adress-Dropdowns abgeschnitten */
}

/* Video Background */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}


.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.22);
    transform-origin: 40% 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--vb-grad-hero);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding-bottom: 48px;
}

.hero-badge {
    display: inline-block;
    background: rgba(250,204,21,0.12);
    border: 1px solid rgba(250,204,21,0.35);
    color: var(--vb-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.83rem; font-weight: 600; letter-spacing: 0.4px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 18px;
    color: #fff;
}

.hero-highlight {
    background: var(--vb-grad-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(241,245,249,0.75);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 1.25rem; font-weight: 700; color: var(--vb-yellow); }
.stat span   { font-size: 0.73rem; color: rgba(241,245,249,0.6); }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* ==========================================================================
   BOOKING CARD
   ========================================================================== */
.booking-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    background: rgba(12, 12, 12, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--vb-radius-lg);
    padding: 28px 28px 32px;
    box-shadow: var(--vb-shadow);
    margin-top: auto;
    margin-bottom: 60px;
}

/* Booking Header */
.booking-header {
    margin-bottom: 22px;
}

.booking-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vb-text);
    letter-spacing: 0.2px;
}

/* Field Label */
.field-label {
    display: block;
    font-size: 0.75rem; font-weight: 600;
    color: var(--vb-text-muted);
    text-transform: uppercase; letter-spacing: 0.9px;
    margin-bottom: 10px;
}
.optional { text-transform: none; font-weight: 400; font-size: 0.72rem; letter-spacing: 0; }

/* Kategorie-Header in der Dropdown */
.addr-suggestions .sug-category {
    padding: 8px 14px 4px;
    font-size: 0.68rem; font-weight: 700;
    color: var(--vb-accent-light);
    text-transform: uppercase; letter-spacing: 0.9px;
    cursor: default;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}
.addr-suggestions .sug-category:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Dropdown — Scroll */
.addr-suggestions {
    max-height: 300px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--vb-surface-3) var(--vb-surface-2);
}
.addr-suggestions::-webkit-scrollbar       { width: 5px; }
.addr-suggestions::-webkit-scrollbar-track { background: var(--vb-surface-2); }
.addr-suggestions::-webkit-scrollbar-thumb { background: var(--vb-surface-3); border-radius: 99px; }

/* ── Anmerkungen ────────────────────────────────────────────────── */
.notes-field { margin-bottom: 14px; }

.notes-field textarea {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-sm);
    color: var(--vb-text);
    font-family: var(--vb-font); font-size: 0.9rem;
    padding: 11px 14px;
    resize: none;
    line-height: 1.5;
    transition: border-color 0.2s;
}
.notes-field textarea::placeholder { color: var(--vb-text-muted); }
.notes-field textarea:focus {
    outline: none;
    border-color: rgba(250,204,21,0.5);
    box-shadow: 0 0 0 3px rgba(250,204,21,0.08);
}

/* Address Inputs */
.address-inputs {
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius);
    margin-bottom: 14px;
}

.addr-field {
    position: relative;
}

.addr-row {
    display: flex; align-items: center;
    padding: 0 14px; gap: 12px;
}

.addr-row input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--vb-text);
    font-family: var(--vb-font); font-size: 0.95rem;
    padding: 14px 0;
}
.addr-row input::placeholder { color: var(--vb-text-muted); }
.addr-row input:focus { outline: none; }

.addr-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.addr-dot--green { background: var(--vb-success); }
.addr-dot--red   { background: var(--vb-danger); }

.addr-separator {
    height: 1px;
    background: var(--vb-surface-3);
    margin: 0 14px;
}

/* Autocomplete Dropdown — per JS an <body> gehängt (Portal) */
.addr-suggestions {
    display: none;
    position: fixed;   /* koordinaten werden per JS gesetzt */
    z-index: 9999;
    list-style: none;
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-yellow);
    border-top: none;
    border-radius: 0 0 var(--vb-radius-sm) var(--vb-radius-sm);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.addr-suggestions.open { display: block; }

.addr-suggestions li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 11px 14px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
}
.addr-suggestions li:last-child { border-bottom: none; }
.addr-suggestions li:hover,
.addr-suggestions li.focused { background: rgba(250,204,21,0.08); }

.addr-suggestions li .sug-icon { font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; opacity: 0.6; }
.addr-suggestions li .sug-main { color: var(--vb-text); font-weight: 500; line-height: 1.3; }
.addr-suggestions li .sug-sub  { color: var(--vb-text-muted); font-size: 0.78rem; margin-top: 2px; }
.addr-suggestions li .sug-text { display: flex; flex-direction: column; }

.addr-suggestions .sug-loading,
.addr-suggestions .sug-empty {
    padding: 12px 14px;
    color: var(--vb-text-muted);
    font-size: 0.85rem;
    text-align: center;
    cursor: default;
}

/* Price Estimate */
.price-estimate {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(250,204,21,0.06);
    border: 1px solid rgba(250,204,21,0.22);
    border-radius: var(--vb-radius-sm);
    padding: 12px 16px;
    margin-bottom: 14px;
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }

.price-estimate-left { display: flex; flex-direction: column; gap: 2px; }
.price-label  { font-size: 0.83rem; color: var(--vb-text-muted); }
.price-tariff { font-size: 0.72rem; color: rgba(250,204,21,0.6); }

/* Date / Time */
.datetime-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 14px;
    transition: var(--vb-transition);
}
.datetime-row.hidden { display: none; }

.dt-input {
    display: flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-sm);
    padding: 0 12px;
}
.dt-input input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--vb-text); font-family: var(--vb-font); font-size: 0.9rem;
    padding: 12px 0; color-scheme: dark;
}
.dt-icon { display: flex; align-items: center; }

/* Price Estimate */
.price-estimate {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(250,204,21,0.06);
    border: 1px solid rgba(250,204,21,0.22);
    border-radius: var(--vb-radius-sm);
    padding: 11px 16px;
    margin-bottom: 14px;
}
.price-label { font-size: 0.83rem; color: var(--vb-text-muted); }
.price-value {
    font-size: 1.25rem; font-weight: 700;
    color: var(--vb-yellow);
    transition: opacity 0.15s;
}

/* Book Button */
.btn-book {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--vb-grad-cta);
    color: var(--vb-text-dark);
    border: none; border-radius: var(--vb-radius);
    padding: 16px;
    font-family: var(--vb-font); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: var(--vb-transition);
    margin-bottom: 10px;
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(250,204,21,0.4);
}
.btn-book:active { transform: translateY(0); }
.btn-book:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-arrow { transition: transform 0.2s; }
.btn-book:hover .btn-arrow { transform: translateX(4px); }

.agb-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--vb-text-muted);
    margin-bottom: 14px;
    cursor: pointer;
    line-height: 1.4;
}
.agb-check input[type="checkbox"] {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--vb-yellow);
    cursor: pointer;
}
.agb-link {
    color: var(--vb-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.agb-link:hover { color: var(--vb-yellow-dark); }

.booking-note {
    text-align: center; font-size: 0.75rem; color: var(--vb-text-muted);
}

/* ==========================================================================
   FLEET SHOWCASE (Video Section)
   ========================================================================== */
.fleet-showcase { position: relative; overflow: hidden; }

.fleet-video-wrap {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.fleet-video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.fleet-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 100%);
}

.fleet-video-content {
    position: absolute;
    inset: 0;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    max-width: 600px;
}

.fleet-video-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 12px 0 16px;
}

.fleet-video-content p {
    color: rgba(241,245,249,0.72);
    font-size: 1rem;
    margin-bottom: 28px;
}

.btn-fleet {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--vb-grad-cta);
    color: var(--vb-text-dark);
    padding: 12px 24px;
    border-radius: var(--vb-radius-sm);
    font-weight: 700; font-size: 0.95rem;
    transition: var(--vb-transition);
    width: fit-content;
}
.btn-fleet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250,204,21,0.35);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: var(--vb-surface-1);
    padding: 88px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 52px; }

.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--vb-text-muted);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--vb-text-muted);
    font-size: 1rem;
    margin-top: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.service-card {
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-lg);
    padding: 28px;
    display: flex; gap: 20px;
    transition: var(--vb-transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--vb-grad-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover {
    border-color: var(--vb-accent);
    transform: translateY(-4px);
    box-shadow: var(--vb-shadow), 0 0 32px rgba(255,255,255,0.04);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
    width: 50px; height: 50px;
    background: var(--vb-surface-1);
    border-radius: var(--vb-radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.service-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.service-body p  { font-size: 0.88rem; color: var(--vb-text-muted); margin-bottom: 14px; line-height: 1.55; }
.service-link    { font-size: 0.83rem; font-weight: 600; color: var(--vb-accent-light); }
.service-link:hover { color: #a5b4fc; }

/* ==========================================================================
   PHOTO SHOWCASE
   ========================================================================== */
.photo-showcase {
    background: var(--vb-bg);
    padding: 80px 24px;
}

.photo-showcase-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 60%;
    border-radius: var(--vb-radius-lg);
    box-shadow: var(--vb-shadow), var(--vb-shadow-glow);
}

.showcase-caption {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--vb-text-muted);
    font-size: 0.78rem;
    padding: 7px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
    background: var(--vb-surface-1);
    padding: 72px 24px;
    border-top: 1px solid var(--vb-surface-3);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-icon { margin-bottom: 4px; }
.trust-item strong { font-size: 1.05rem; font-weight: 700; }
.trust-item span   { font-size: 0.83rem; color: var(--vb-text-muted); }

/* ==========================================================================
   STICKY MOBILE BAR
   ========================================================================== */
.sticky-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 500;
    background: var(--vb-surface-2);
    border-top: 1px solid var(--vb-surface-3);
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 990;
    gap: 8px;
    box-shadow: 0 -8px 28px rgba(0,0,0,0.35);
}

.sticky-call, .sticky-book, .sticky-whatsapp {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    padding: 12px 8px;
    border-radius: var(--vb-radius-sm);
    font-weight: 600; font-size: 0.83rem;
    text-align: center; transition: var(--vb-transition);
}
.sticky-call      { background: var(--vb-surface-3); color: var(--vb-text); }
.sticky-book      { background: var(--vb-grad-cta); color: var(--vb-text-dark); }
.sticky-whatsapp  { background: #25D366; color: #fff; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: var(--vb-yellow);
    padding: 56px 24px;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #080808;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(8,8,8,0.65);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-btn-call,
.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--vb-radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--vb-transition);
    white-space: nowrap;
}

.cta-btn-call svg,
.cta-btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-btn-call {
    background: #080808;
    color: #fff;
}
.cta-btn-call:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.cta-btn-whatsapp:hover {
    background: #1eb854;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

@media (max-width: 768px) {
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; width: 100%; }
    .cta-btn-call, .cta-btn-whatsapp { flex: 1; justify-content: center; }
}

/* ==========================================================================
   PAGE HERO (Unterseiten)
   ========================================================================== */
.page-hero {
    background: var(--vb-surface-1);
    border-bottom: 1px solid var(--vb-surface-3);
    text-align: center;
    padding: 72px 24px 56px;
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
}
.page-hero p {
    color: var(--vb-text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   LEISTUNGEN DETAIL GRID
   ========================================================================== */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

.leistung-card {
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: var(--vb-transition);
}
.leistung-card:hover {
    border-color: var(--vb-yellow);
    transform: translateY(-3px);
    box-shadow: var(--vb-shadow);
}

.leistung-icon {
    width: 56px;
    height: 56px;
    background: var(--vb-surface-1);
    border-radius: var(--vb-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leistung-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.leistung-body p {
    color: var(--vb-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.leistung-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.leistung-body ul li {
    color: var(--vb-text-muted);
    font-size: 0.85rem;
    padding-left: 16px;
    position: relative;
}
.leistung-body ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--vb-yellow);
    font-weight: 700;
}

/* ==========================================================================
   LEISTUNGEN BARS — Vollbreite Bild-Text-Streifen
   ========================================================================== */
.leistungen-bars {
    background: var(--vb-bg);
}

.leistung-bar {
    display: flex;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.leistung-bar + .leistung-bar {
    border-top: 1px solid var(--vb-surface-2);
}

.leistung-bar:nth-child(even) {
    flex-direction: row-reverse;
}

/* Bild-Seite */
.leistung-bar-img {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.leistung-bar-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.leistung-bar:hover .leistung-bar-img img {
    transform: scale(1.05);
}

/* Gradient-Übergang Bild → Content */
.leistung-bar-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--vb-surface-1) 100%);
    pointer-events: none;
}

.leistung-bar:nth-child(even) .leistung-bar-img::after {
    background: linear-gradient(to left, transparent 55%, var(--vb-surface-1) 100%);
}

/* Text-Seite */
.leistung-bar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
    background: var(--vb-surface-1);
    position: relative;
}

/* Gelber Akzentstreifen links */
.leistung-bar-content::before {
    content: '';
    position: absolute;
    left: 0; top: 36px; bottom: 36px;
    width: 3px;
    background: var(--vb-yellow);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.leistung-bar:nth-child(even) .leistung-bar-content::before {
    left: auto;
    right: 0;
}

.leistung-bar:hover .leistung-bar-content::before {
    opacity: 1;
}

/* Icon */
.leistung-bar-icon {
    width: 48px; height: 48px;
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.leistung-bar-icon svg {
    width: 24px; height: 24px;
    color: var(--vb-yellow);
}

.leistung-bar-content h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--vb-text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.leistung-bar-content > p {
    color: var(--vb-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 480px;
}

.leistung-bar-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 28px;
}

.leistung-bar-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--vb-text-muted);
}

.leistung-bar-content li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--vb-yellow);
    border-radius: 50%;
}

.leistung-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vb-grad-cta);
    color: var(--vb-text-dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 50px;
    align-self: flex-start;
    transition: var(--vb-transition);
    text-decoration: none;
}

.leistung-bar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

@media (max-width: 768px) {
    .leistung-bar,
    .leistung-bar:nth-child(even) { flex-direction: column; min-height: unset; }
    .leistung-bar-img             { flex: 0 0 220px; height: 220px; width: 100%; }
    .leistung-bar-img::after      { background: linear-gradient(to bottom, transparent 40%, var(--vb-surface-1) 100%) !important; }
    .leistung-bar-content         { padding: 28px 20px 32px; }
    .leistung-bar-content::before { top: 0; bottom: 0; left: 0 !important; right: auto !important; }
    .leistung-bar-content h2      { font-size: 1.25rem; }
    .leistung-bar-content > p     { max-width: 100%; }
}

/* ==========================================================================
   KONTAKT GRID
   ========================================================================== */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.kontakt-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kontakt-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius);
    padding: 20px 24px;
    transition: var(--vb-transition);
    text-decoration: none;
    color: var(--vb-text);
}
.kontakt-card:hover {
    border-color: var(--vb-surface-3);
    transform: translateX(4px);
}
.kontakt-card--primary { border-color: var(--vb-yellow); }
.kontakt-card--primary:hover { box-shadow: 0 0 24px rgba(250,204,21,0.15); }
.kontakt-card--whatsapp { border-color: #25D366; }
.kontakt-card--whatsapp:hover { box-shadow: 0 0 24px rgba(37,211,102,0.15); }

.kontakt-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--vb-radius-sm);
    background: var(--vb-surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kontakt-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--vb-yellow);
    stroke: var(--vb-yellow);
}
.kontakt-card--whatsapp .kontakt-card-icon svg {
    color: #25D366;
    stroke: none;
    fill: #25D366;
}

.kontakt-card-label {
    font-size: 0.75rem;
    color: var(--vb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 3px;
}
.kontakt-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vb-text);
}
.kontakt-card-hint {
    font-size: 0.78rem;
    color: var(--vb-text-muted);
    margin-top: 2px;
}

.kontakt-booking {
    position: sticky;
    top: 88px;
}
.kontakt-booking-inner {
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-lg);
    padding: 36px 32px;
}
.kontakt-booking-inner .section-tag { margin-bottom: 14px; }
.kontakt-booking-inner h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.kontakt-booking-inner p {
    color: var(--vb-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================================================
   WHATSAPP EINWILLIGUNGS-MODAL
   ========================================================================== */
.wa-consent-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.wa-consent-backdrop.open { display: flex; }

.wa-consent-box {
    background: var(--vb-surface-2);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-lg);
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--vb-shadow);
}

.wa-consent-icon {
    margin-bottom: 16px;
    display: flex; justify-content: center;
}

.wa-consent-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.wa-consent-box p {
    font-size: 0.88rem;
    color: var(--vb-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.wa-consent-box p a {
    color: var(--vb-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wa-consent-actions {
    display: flex;
    gap: 10px;
}

.wa-consent-accept {
    flex: 1;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--vb-radius-sm);
    font-family: var(--vb-font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--vb-transition);
}
.wa-consent-accept:hover { background: #1eb854; }

.wa-consent-cancel {
    padding: 12px 20px;
    background: var(--vb-surface-3);
    color: var(--vb-text-muted);
    border: none;
    border-radius: var(--vb-radius-sm);
    font-family: var(--vb-font);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--vb-transition);
}
.wa-consent-cancel:hover { color: var(--vb-text); }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 980;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* Auf Mobile über der Sticky-Bar */
@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 88px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-fab svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--vb-surface-2);
    border-top: 1px solid var(--vb-surface-3);
    padding: 64px 24px 24px;
}

.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--vb-text-muted); font-size: 0.88rem;
    margin-top: 14px; line-height: 1.65; max-width: 280px;
}

footer h4 {
    color: var(--vb-text); font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--vb-text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
}
.contact-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--vb-yellow);
    stroke: var(--vb-yellow);
}
.footer-contact a:hover { color: var(--vb-yellow); }

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a  { color: var(--vb-text-muted); font-size: 0.88rem; }
.footer-nav a:hover { color: var(--vb-yellow); }

.footer-bottom {
    border-top: 1px solid var(--vb-surface-3);
    padding-top: 20px; text-align: center;
    color: var(--vb-text-muted); font-size: 0.83rem;
}
.footer-ai-note {
    margin-top: 6px;
    font-size: 0.75rem;
    color: rgba(156,163,175,0.6);
}
.footer-ai-note a { color: inherit; text-decoration: underline; }
.footer-ai-note a:hover { color: var(--vb-text-muted); }

/* ==========================================================================
   PREISE PAGE
   ========================================================================== */

/* Photo Hero */
.preise-hero {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.preise-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
}

.preise-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 100%);
}

.preise-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.preise-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.preise-hero-content p {
    color: rgba(241,245,249,0.8);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.6;
}

/* Price Cards Grid */
.preise-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 48px 24px 0;
    max-width: 900px;
    margin: 0 auto;
}

.preise-card {
    background: var(--vb-surface-1);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-lg);
    padding: 32px 20px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--vb-transition);
}

/* Decorative glow circle top-right */
.preise-card::before {
    content: '';
    position: absolute;
    top: -24px; right: -24px;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(250,204,21,0.07);
    border: 1.5px solid rgba(250,204,21,0.18);
    pointer-events: none;
}

.preise-card:hover {
    border-color: rgba(250,204,21,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(250,204,21,0.12);
}

/* Yellow pill around the price */
.preise-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(250,204,21,0.1);
    border: 1.5px solid rgba(250,204,21,0.35);
    border-radius: 50px;
    padding: 10px 22px;
    margin-bottom: 18px;
}

.preise-card-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--vb-yellow);
    line-height: 1;
    letter-spacing: -0.5px;
}

.preise-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--vb-text);
    margin-bottom: 5px;
}

.preise-card-desc {
    font-size: 0.78rem;
    color: var(--vb-text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .preise-hero { height: 320px; }
    .preise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 16px 0;
    }
}

@media (max-width: 420px) {
    .preise-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .preise-card { padding: 24px 14px 20px; }
    .preise-card-value { font-size: 1.4rem; }
}
.preise-section {
    padding: 72px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tariff-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.tariff-highlight {
    background: var(--vb-surface-1);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--vb-transition);
}

.tariff-highlight:hover {
    border-color: rgba(250,204,21,0.35);
    transform: translateY(-2px);
}

.tariff-highlight-icon {
    width: 44px; height: 44px;
    background: rgba(250,204,21,0.1);
    border-radius: var(--vb-radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}

.tariff-highlight-icon svg { width: 22px; height: 22px; color: var(--vb-yellow); }

.tariff-highlight-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--vb-yellow);
    line-height: 1;
    margin-bottom: 6px;
}

.tariff-highlight-label {
    font-size: 0.8rem;
    color: var(--vb-text-muted);
    font-weight: 500;
}

/* Tariff Table */
.tariff-block { margin-bottom: 56px; }

.tariff-block h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.tariff-block > p {
    color: var(--vb-text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.tariff-table-wrap {
    border-radius: var(--vb-radius);
    overflow: hidden;
    border: 1px solid var(--vb-surface-3);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.tariff-table thead tr {
    background: var(--vb-surface-2);
}

.tariff-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--vb-text-muted);
}

.tariff-table th:not(:first-child) { text-align: right; }

.tariff-table tbody tr {
    border-top: 1px solid var(--vb-surface-2);
    transition: background 0.15s;
}

.tariff-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.tariff-table td {
    padding: 14px 20px;
    color: var(--vb-text);
}

.tariff-table td:not(:first-child) {
    text-align: right;
    font-weight: 600;
    color: var(--vb-yellow);
}

.tariff-table .tariff-row-night td { background: rgba(255,255,255,0.02); }

/* Festpreis */
.festpreis-card {
    background: var(--vb-surface-1);
    border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius);
    padding: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    transition: var(--vb-transition);
}

.festpreis-card:hover { border-color: rgba(250,204,21,0.3); }

.festpreis-route {
    display: flex;
    align-items: center;
    gap: 14px;
}

.festpreis-route-icon {
    width: 44px; height: 44px;
    background: rgba(250,204,21,0.08);
    border-radius: var(--vb-radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.festpreis-route-icon svg { width: 22px; height: 22px; color: var(--vb-yellow); }

.festpreis-route-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.festpreis-route-text span {
    font-size: 0.82rem;
    color: var(--vb-text-muted);
}

.festpreis-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vb-yellow);
    white-space: nowrap;
}

/* Info Box */
.price-info-box {
    background: rgba(250,204,21,0.06);
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: var(--vb-radius);
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--vb-text-muted);
    line-height: 1.65;
}

.price-info-box strong { color: var(--vb-yellow); }

@media (max-width: 768px) {
    .tariff-highlights { grid-template-columns: repeat(2, 1fr); }
    .festpreis-card { flex-direction: column; align-items: flex-start; }
    .festpreis-price { font-size: 1.25rem; }
    .preise-section { padding: 48px 16px; }
}

@media (max-width: 480px) {
    .tariff-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tariff-table th, .tariff-table td { padding: 12px 14px; }
}

/* ==========================================================================
   SHARED / LEGACY — support for leistungen, preise, kontakt, etc.
   ========================================================================== */
.container   { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.page-title  { text-align: center; padding: 60px 24px 40px; }
.page-title h1 { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 700; }
.page-hero   { background: var(--vb-surface-2); text-align: center; padding: 64px 24px; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 700; }

.btn-primary, .btn-submit {
    background: var(--vb-grad-cta); color: var(--vb-text-dark);
    padding: 12px 26px; font-weight: 700; border-radius: var(--vb-radius-sm);
    border: none; cursor: pointer; display: inline-block;
    transition: var(--vb-transition); font-family: var(--vb-font);
}
.btn-primary:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250,204,21,0.3);
}

.btn-secondary {
    background: transparent; color: var(--vb-text);
    padding: 12px 24px; font-weight: 700;
    border-radius: var(--vb-radius-sm); border: 1px solid var(--vb-surface-3);
    display: inline-block; transition: var(--vb-transition);
}
.btn-secondary:hover { border-color: var(--vb-text); background: rgba(255,255,255,0.04); }

label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--vb-text-muted); font-size: 0.9rem; }

input[type="text"], input[type="tel"], input[type="email"],
input[type="date"], input[type="time"], select, textarea {
    width: 100%; padding: 12px;
    background: var(--vb-surface-2); border: 1px solid var(--vb-surface-3);
    border-radius: var(--vb-radius-sm);
    font-family: var(--vb-font); font-size: 1rem; color: var(--vb-text);
    color-scheme: dark;
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--vb-yellow);
    box-shadow: 0 0 0 3px rgba(250,204,21,0.12);
}
textarea { resize: vertical; }

.form-group     { margin-bottom: 20px; }
.form-row       { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }

.booking-section {
    max-width: 600px; margin: -50px auto 50px;
    background: var(--vb-surface-2);
    padding: 30px; border-radius: var(--vb-radius);
    border: 1px solid var(--vb-surface-3);
    box-shadow: var(--vb-shadow); position: relative; z-index: 10;
}
.booking-section h2 { margin-bottom: 20px; text-align: center; }

.price-box {
    background: rgba(250,204,21,0.06);
    padding: 14px; border-left: 4px solid var(--vb-yellow);
    margin-bottom: 20px; border-radius: 4px;
}
.price-box strong { color: var(--vb-yellow); font-size: 1.2rem; }

.services-preview { background: var(--vb-surface-1); padding: 64px 24px; text-align: center; }
.services-preview h2 { margin-bottom: 32px; font-size: 2rem; }

.fleet-grid  { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.fleet-card  { background: var(--vb-surface-2); padding: 28px; border-radius: var(--vb-radius); border: 1px solid var(--vb-surface-3); display: flex; flex-direction: column; }
.fleet-card h3 { margin-bottom: 14px; }
.fleet-card p  { flex-grow: 1; margin-bottom: 18px; color: var(--vb-text-muted); }

.trust-section .features { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto; }
.feature { font-size: 1rem; padding: 20px; background: var(--vb-surface-2); border-radius: var(--vb-radius-sm); border: 1px solid var(--vb-surface-3); min-width: 240px; color: var(--vb-text-muted); }

.service-detail  { background: var(--vb-surface-2); padding: 28px; margin-bottom: 18px; border-radius: var(--vb-radius); border: 1px solid var(--vb-surface-3); }
.service-detail h2 { margin-bottom: 10px; }
.service-detail ul { margin: 14px 0 18px 20px; }
.service-detail li { margin-bottom: 6px; color: var(--vb-text-muted); }

.price-table { width: 100%; border-collapse: collapse; margin: 20px 0 40px; }
.price-table th, .price-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--vb-surface-3); }
.price-table th { background: var(--vb-surface-2); font-weight: 600; }
.price-table tr:nth-child(even) { background: rgba(255,255,255,0.02); }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 40px; margin-top: 30px; }
.contact-item { margin-bottom: 24px; }
.contact-item h3 { margin-bottom: 8px; }

.legal-text h2 { margin: 28px 0 10px; font-size: 1.2rem; }
.legal-text p, .legal-text ul { margin-bottom: 14px; color: var(--vb-text-muted); }
.legal-text ul { margin-left: 20px; }

.benefits { background: var(--vb-surface-2); padding: 28px; border-radius: var(--vb-radius); margin-bottom: 28px; border: 1px solid var(--vb-surface-3); }
.benefits ul { margin: 14px 0 0 20px; }
.benefits li { margin-bottom: 10px; color: var(--vb-text-muted); }
.radio-group { display: flex; gap: 20px; margin-top: 8px; }

/* Mobile Hero CTA — nur auf Handy */
.mobile-hero-cta { display: none; }

/* ==========================================================================
   ICON SVG SIZING
   ========================================================================== */
.service-icon-wrap svg { width: 26px; height: 26px; color: var(--vb-yellow); }
.leistung-icon svg     { width: 28px; height: 28px; color: var(--vb-yellow); }
.trust-icon svg        { width: 28px; height: 28px; color: var(--vb-yellow); }
.dt-icon svg           { width: 16px; height: 16px; color: var(--vb-text-muted); }
.wa-consent-icon svg   { width: 36px; height: 36px; color: var(--vb-yellow); }
.booking-title svg     { width: 17px; height: 17px; vertical-align: -3px; margin-right: 6px; color: var(--vb-yellow); }
.hero-badge svg        { width: 13px; height: 13px; vertical-align: -2px; margin-right: 4px; }
.btn-call svg          { width: 16px; height: 16px; flex-shrink: 0; }
.sticky-call svg,
.sticky-whatsapp svg   { width: 15px; height: 15px; }
.stat strong svg       { width: 15px; height: 15px; vertical-align: -2px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .fleet-video-content { padding: 0 32px; }
}

@media (max-width: 768px) {
    /* Header */
    #main-nav {
        display: none; position: absolute;
        top: 125px; left: 0; right: 0;
        z-index: 9000;
        background: var(--vb-surface-2);
        border-bottom: 1px solid var(--vb-surface-3);
        padding: 14px 20px;
    }
    #main-nav.open { display: block; }
    #main-nav.open::before {
        content: '';
        position: absolute;
        top: -40px; left: 0; right: 0;
        height: 40px;
        background: var(--vb-surface-2);
    }
    #main-nav ul { flex-direction: column; gap: 2px; }
    #main-nav a  { display: block; padding: 10px 12px; }

    .hamburger { display: flex; }
    .btn-call-text { display: none; }

    /* Hero — Video + Buchungsbox, kein Text */
    .hero {
        padding: 40px 16px 32px;
        min-height: 100svh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    /* Hero-Text komplett ausblenden auf Mobil */
    .hero-content { display: none; }

    /* Hero Video — kein Zoom, voller Ausschnitt */
    .hero-video {
        transform: scale(1) !important;
        transform-origin: center center !important;
        object-position: center center;
    }

    /* Mobile CTA Headline — direkt über der Box, fester Abstand */
    .mobile-hero-cta {
        display: block;
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 20px;
        text-align: center;
        margin-bottom: 20px;
    }
    .mobile-hero-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--vb-yellow);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }
    .mobile-hero-title {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    }

    /* Buchungsbox — gleich wie Desktop */
    .booking-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        background: rgba(12, 12, 12, 0.35);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.06);
        box-shadow: none;
        padding: 18px 16px 20px;
    }

    /* Nicht-essentielle Felder auf Mobil ausblenden */
    .notes-field        { display: none; }
    .booking-note       { display: none; }
    .booking-header     { margin-bottom: 14px; }

    /* Vehicle grid */
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }

    /* Datetime */
    .datetime-row { grid-template-columns: 1fr; }

    /* Booking card */
    .booking-card { padding: 20px 16px 26px; }

    /* Fleet video */
    .fleet-video-wrap { height: 340px; }
    .fleet-video-content { padding: 0 24px; max-width: 100%; }
    .fleet-video-content h2 { font-size: 1.6rem; }
    .fleet-video { transform: scale(1.22); transform-origin: 40% 40%; }

    /* Photo showcase */
    .showcase-img { height: 260px; transform: none; }

    /* Sticky bar */
    .sticky-bar { display: flex; }
    body { padding-bottom: 72px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }

    .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .stat strong { font-size: 1.1rem; }
    .vehicle-card { padding: 8px 4px; }
    .fleet-video-content h2 { font-size: 1.4rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ==========================================================================
   TWO-COLUMN HERO (960px+) — Text links, Buchungsbox rechts
   ========================================================================== */
@media (min-width: 960px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
        min-height: 100vh;
        padding: 80px 40px;
    }
    .hero-content {
        text-align: left;
        flex: 1;
        min-width: 0;
        max-width: 600px;
        padding-bottom: 0;
    }
    .hero-stats { justify-content: flex-start; }
    .booking-card {
        flex-shrink: 0;
        width: 460px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ==========================================================================
   LARGE DISPLAYS (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    /* Services: immer 3 Spalten, keine zu breiten Karten */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Trust: immer 4 Spalten */
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }

    /* Booking Card breiter im 2-Spalten-Layout */
    .booking-card { width: 540px; }

    /* Fleet Video: Text besser positioniert */
    .fleet-video-wrap { height: 520px; }
    .fleet-video-content { max-width: 580px; }
}

/* ==========================================================================
   VERY LARGE DISPLAYS (1600px+)
   ========================================================================== */
@media (min-width: 1600px) {
    /* Größere Container */
    .section-inner,
    .cta-inner,
    .footer-inner,
    .header-inner { max-width: 1400px; }

    /* Mehr Luft in den Sektionen */
    .services-section { padding: 108px 40px; }
    .trust-section    { padding: 88px 40px; }
    .photo-showcase   { padding: 96px 40px; }
    .cta-banner       { padding: 72px 40px; }
    footer            { padding: 80px 40px 32px; }

    /* Showcase-Foto höher */
    .showcase-img { height: 520px; }

    /* Fleet Video höher */
    .fleet-video-wrap   { height: 600px; }
    .fleet-video-content { padding: 0 80px; max-width: 680px; }

    /* Hero Stats etwas größer */
    .stat strong { font-size: 1.4rem; }
    .hero p      { font-size: 1.2rem; }
}

/* ==========================================================================
   ULTRA WIDE (1920px+)
   ========================================================================== */
@media (min-width: 1920px) {
    .section-inner,
    .cta-inner,
    .footer-inner,
    .header-inner { max-width: 1600px; }

    .fleet-video-wrap { height: 680px; }
    .showcase-img     { height: 600px; }
    .booking-card { width: 600px; }

    .hero { padding: 100px 80px; gap: 60px; }
    .hero-content { max-width: 760px; }
}
