/* ========================================
   RESET & BASE
   ======================================== */
   :root {
    --bg: #3a7ab5;
    --surface: rgba(135, 206, 235, 0.45);
    --surface2: rgba(135, 206, 235, 0.25);
    --border: rgba(255,255,255,0.15);
    --brand: #3a7ab5;
    --brand-dark: #1a4b6d;
    --brand-light: #5a9dc7;
    --steel: #5a9dc7;
    --light: #87CEEB;
    --ink: #ffffff;
    --muted: rgba(255,255,255,0.85);
    --faint: rgba(255,255,255,0.5);
    --cta: #e87007;
    --cta-dark: #c25903;
    --cta-light: #f0842a;
    --pastel-blue: #b5d8f0;
    --neon-blue: #3a7ab5;
    --neon-orange: #e87007;
    --border-glow: 2px solid rgba(232, 112, 7, 0.3);
    --text-glow: 0 0 20px rgba(232, 112, 7, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.route {
    height: 4px;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 16px, transparent 16px 32px);
}

::selection {
    background: var(--cta);
    color: white;
}

:focus-visible {
    outline: 2px solid var(--cta);
    outline-offset: 3px;
}

/* ========================================
   LOGO TEXT - Größer im Header
   ======================================== */
.logo-text, .logo-text-footer, .logo-text-intro {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-text .rhine, .logo-text-footer .rhine-footer, .logo-text-intro .rhine-intro, .map-brand .map-rhine {
    color: #ffffff;
}
.logo-text .optex, .logo-text-footer .optex-footer, .logo-text-intro .optex-intro, .map-brand .map-optex {
    color: #87CEEB;
}
.logo-text-intro {
    font-size: clamp(40px, 8vw, 80px);
}
.logo-text-footer {
    font-size: 28px;
}

/* ========================================
   BACKGROUND ANIMATIONS - MOBILE OPTIMIERT
   ======================================== */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: -1px;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 40%, transparent 90%);
    animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 480px 0, 0 480px;
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation-timing-function: ease-in-out;
}

.blob-a {
    width: 700px;
    height: 700px;
    left: -200px;
    top: -300px;
    background: radial-gradient(circle, rgba(232, 112, 7, 0.35), transparent 70%);
    animation: float-blob-a 18s infinite alternate;
}

.blob-b {
    width: 600px;
    height: 600px;
    right: -180px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(232, 112, 7, 0.25), transparent 70%);
    animation: float-blob-b 22s infinite alternate;
}

.blob-c {
    width: 500px;
    height: 500px;
    left: 30%;
    top: 40%;
    background: radial-gradient(circle, rgba(232, 112, 7, 0.20), transparent 70%);
    animation: float-blob-c 20s infinite alternate;
}

.blob-d {
    width: 450px;
    height: 450px;
    right: 10%;
    top: 10%;
    background: radial-gradient(circle, rgba(232, 112, 7, 0.15), transparent 70%);
    animation: float-blob-d 25s infinite alternate;
}

@keyframes float-blob-a {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.2); }
}
@keyframes float-blob-b {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -120px) scale(1.15); }
}
@keyframes float-blob-c {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -60px) scale(1.1); }
}
@keyframes float-blob-d {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 40px) scale(1.25); }
}

.route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route-path {
    fill: none;
    stroke: url(#routeGrad);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 8 20;
    opacity: 0.9;
    animation: flow 6s linear infinite;
}

.route-glow {
    fill: none;
    stroke: #5a9dc7;
    stroke-width: 10;
    stroke-linecap: round;
    opacity: 0.05;
    filter: blur(4px);
}

.rp1 {
    animation-duration: 7s;
}
.rp2 {
    animation-duration: 9s;
    animation-direction: reverse;
}
.rp3 {
    animation-duration: 8s;
}

@keyframes flow {
    to {
        stroke-dashoffset: -320;
    }
}

.hub {
    fill: #e87007;
    filter: drop-shadow(0 0 10px rgba(232, 112, 7, 0.9));
}

.vehicle-body {
    fill: #5a9dc7;
    filter: drop-shadow(0 0 6px rgba(90, 157, 199, 0.6));
}

.vehicle-window {
    fill: #d4e8f5;
    opacity: 0.9;
}

.vehicle-stripe {
    fill: #e87007;
    opacity: 0.85;
}

.vehicle-wheel {
    fill: #0B0F17;
}

.vehicle-hub {
    fill: #5B647C;
}

.vehicle-light {
    fill: #FFD166;
    opacity: 0.9;
}

/* ===== MOBILE: Nur Blobs und Grid ausblenden, Vans bleiben sichtbar ===== */
@media (max-width: 768px) {
    /* Blobs ausblenden (Performance) */
    .blob {
        display: none !important;
    }
    
    /* Grid nur leicht sichtbar lassen */
    .hero-grid {
        opacity: 0.15 !important;
    }
    
    /* SVG bleibt sichtbar, aber optimiert */
    .route-svg {
        display: block !important;
        opacity: 0.8;
    }
    
    /* Routen-Linien dünner für Performance */
    .route-path {
        stroke-width: 2.5 !important;
        stroke-dasharray: 4 12 !important;
        animation-duration: 8s !important;
    }
    
    .route-glow {
        display: none !important;
    }
    
    /* Fahrzeuge kleiner für Performance */
    .vehicle-body {
        fill: #5a9dc7 !important;
    }
    
    /* Hub-Punkte kleiner */
    .hub {
        r: 3 !important;
    }
}

@media (max-width: 480px) {
    /* Auf sehr kleinen Geräten noch optimierter */
    .route-svg {
        opacity: 0.6;
    }
    
    .route-path {
        stroke-width: 2 !important;
        stroke-dasharray: 3 10 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-grid,
    .blob,
    .route-path,
    .vehicle-body {
        animation: none !important;
    }
    .site-bg animateMotion {
        display: none;
    }
}

/* ========================================
   INTRO OVERLAY - MOBILE OPTIMIERT
   ======================================== */
#intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #1a4b6d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease-in-out;
}

#intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

#intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Mobile: Video vollständig sichtbar */
@media (max-width: 768px) {
    #intro video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

.intro-blank {
    position: absolute;
    inset: 0;
    background: #1a4b6d;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.intro-blank.show {
    opacity: 1;
}

.intro-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    text-align: center;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 0.9, 0.24, 1.05);
}

.intro-logo.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(43, 105, 150, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: env(safe-area-inset-top);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.nav-links a {
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cta);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.nav-cta .btn {
    font-size: 15px;
    padding: 10px 20px;
}

/* ========================================
   HEADER BUTTONS - IMMER ORANGE GEFÜLLT
   ======================================== */
.nav-cta .btn,
.nav-cta .btn-outline,
.nav-cta .btn-primary {
    background: var(--cta) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.30) !important;
}

.nav-cta .btn:hover,
.nav-cta .btn-outline:hover,
.nav-cta .btn-primary:hover {
    background: var(--cta-dark) !important;
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.40) !important;
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(43, 105, 150, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -8px 0 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 80px 32px 40px;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    z-index: 200;
    border-left: 1px solid rgba(255,255,255,0.1);
}

#mobile-menu.open {
    right: 0;
}

#mobile-menu .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

#mobile-menu .menu-close:hover {
    transform: rotate(90deg);
}

#mobile-menu a {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}
#mobile-menu a:hover {
    color: #ffffff;
}

#mobile-menu .btn {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* ========================================
   BUTTONS - Alle Buttons Orange gefüllt
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--cta);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.30);
}

.btn-primary:hover {
    background: var(--cta-dark);
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.40);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ========================================
   TOGGLE BUTTONS
   ======================================== */
.toggle {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.tab {
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--cta);
    color: #ffffff;
    background: var(--cta);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.25);
}

.tab:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 112, 7, 0.35);
}

.tab.active {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(232, 112, 7, 0.4);
}

@media (max-width: 700px) {
    .toggle {
        flex-direction: column;
    }
    .tab {
        justify-content: center;
    }
}

/* ========================================
   MAIN LAYOUT
   ======================================== */
#main {
    opacity: 0;
    transition: opacity 0.6s;
    position: relative;
    z-index: 1;
}

#main.visible {
    opacity: 1;
}

section {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 120px 24px;
}

@media (max-width: 700px) {
    section {
        padding: 60px 16px;
    }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    border-top: none;
    background: linear-gradient(170deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 60%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    max-width: 800px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #e87007 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.lead {
    margin-top: 28px;
    max-width: 600px;
    font-size: 21px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero .route {
    margin-top: 80px;
}

@media (max-width: 700px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .lead {
        font-size: 16px;
    }
}

/* ========================================
   LABELS & HEADLINES
   ======================================== */
.label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cta);
    opacity: 1;
    margin-bottom: 20px;
    background: var(--pastel-blue);
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(232, 112, 7, 0.2);
}

.h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    max-width: 650px;
    margin-top: 12px;
    color: #ffffff;
}

/* ========================================
   STATS
   ======================================== */
#stats {
    padding-top: 40px;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px 44px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(135, 206, 235, 0.65);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    color: var(--cta);
    line-height: 1;
    display: inline-block;
}

.stat-number::after {
    content: "+";
    color: rgba(255,255,255,0.5);
    font-size: 0.6em;
    margin-left: 4px;
}

.stat-label {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.stat-sub {
    margin-top: 8px;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 700px) {
    .stat-card {
        padding: 32px 20px;
    }
    .stat-number {
        font-size: 3.5rem;
    }
}

/* ========================================
   SERVICES CARDS
   ======================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 20px;
    padding: 40px 34px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.card:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(135, 206, 235, 0.65);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: var(--cta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.3);
}

.card:hover .icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.5);
}

.card-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.card h3 {
    margin-top: 24px;
    font-size: 26px;
    font-weight: 700;
    color: var(--cta);
}

.card p {
    margin-top: 12px;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

@media (max-width: 700px) {
    .card {
        padding: 28px 20px;
    }
}

/* ========================================
   ABOUT - Größere Schrift & Höhere Deckkraft
   ======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.about-content {
    display: contents;
}

.about-text p {
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 16px;
    background: rgba(135, 206, 235, 0.45);
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content {
        display: flex;
        flex-direction: column;
    }
    .about-text p {
        padding: 16px 18px;
        font-size: 19px;
    }
}

/* ========================================
   STANDORT / MAPS
   ======================================== */
#standort {
    padding: 80px 0;
}

#standort .h2 {
    max-width: 100%;
    text-shadow: var(--text-glow);
}

.map-wrapper {
    background: #1a4b6d;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(232, 112, 7, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-top: 32px;
}

.map-header {
    background: rgba(26, 75, 109, 0.95);
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(232, 112, 7, 0.2);
    flex-wrap: wrap;
    gap: 12px;
}

.map-brand {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.map-address {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
}

.map-interactive {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-interactive iframe {
    filter: hue-rotate(200deg) saturate(1.6) brightness(0.9) contrast(1.1);
}

.map-pin-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

.map-pin-icon {
    background: rgba(26, 75, 109, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 16px;
    border: 2px solid rgba(232, 112, 7, 0.5);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    pointer-events: auto;
}

.map-pin-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.map-footer {
    background: rgba(26, 75, 109, 0.95);
    padding: 18px 32px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(232, 112, 7, 0.2);
}

.map-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.map-info-icon {
    font-size: 20px;
    color: var(--cta);
}

.map-info-text {
    font-weight: 400;
}

.map-info-text a {
    color: #e87007;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .map-interactive {
        height: 250px;
    }
    .map-header {
        padding: 14px 18px;
        flex-direction: column;
        text-align: center;
    }
    .map-brand {
        font-size: 22px;
    }
    .map-address {
        font-size: 14px;
    }
    .map-footer {
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .map-info-card {
        font-size: 14px;
    }
    .map-pin-icon svg {
        width: 28px;
        height: 28px;
    }
    .map-pin-icon {
        padding: 8px 12px;
    }
}

/* ========================================
   ADVANTAGES
   ======================================== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.adv-line {
    display: none;
}

.adv-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.3);
}

.reveal:hover .adv-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.5);
}

.adv-grid h3 {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}

.adv-grid p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
    line-height: 1.7;
    background: var(--surface);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

@media (max-width: 700px) {
    .adv-grid p {
        padding: 12px 16px;
        font-size: 17px;
    }
}

/* ========================================
   CONTACT / FORM - Höhere Deckkraft
   ======================================== */
.contact-wrap {
    max-width: 900px;
    margin: 0 auto;
}

form.form {
    margin-top: 36px;
    border: 1px solid var(--border);
    background: rgba(135, 206, 235, 0.45);
    border-radius: 20px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.field input,
.field select,
.field textarea {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(135, 206, 235, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 18px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.field input::placeholder,
.field select,
.field textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--cta);
    background: rgba(135, 206, 235, 0.15);
    box-shadow: 0 0 0 4px rgba(232, 112, 7, 0.08);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field.full {
    grid-column: 1 / -1;
}

/* Custom Select - ALWAYS Orange with Blue Text */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #e87007 !important;
    color: #87CEEB !important;
    font-weight: 600;
    border: 2px solid #e87007 !important;
    border-radius: 12px;
    padding: 16px 44px 16px 18px;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2387CEEB' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
}

.custom-select:hover {
    background: #c25903 !important;
    border-color: #c25903 !important;
}

.custom-select:focus {
    outline: none;
    border-color: #c25903 !important;
    box-shadow: 0 0 0 4px rgba(232, 112, 7, 0.3);
}

.custom-select option {
    background: #1a4b6d;
    color: #87CEEB;
    padding: 12px;
    font-weight: 400;
}

.custom-select option:hover {
    background: #e87007;
    color: #ffffff;
}

@media (max-width: 700px) {
    form.form {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(26, 75, 109, 0.85);
    padding: 64px 24px calc(32px + env(safe-area-inset-bottom));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 17px;
}

.footer-grid ul li a {
    transition: color 0.2s;
}
.footer-grid ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1280px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: #e87007;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f0842a;
}

footer .route {
    max-width: 1280px;
    margin: 48px auto 0;
    opacity: 0.15;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cards .card:nth-child(2) { transition-delay: 0.08s; }
.cards .card:nth-child(3) { transition-delay: 0.16s; }
.cards .card:nth-child(4) { transition-delay: 0.24s; }

.adv-grid > div:nth-child(2) { transition-delay: 0.06s; }
.adv-grid > div:nth-child(3) { transition-delay: 0.12s; }
.adv-grid > div:nth-child(4) { transition-delay: 0.18s; }
.adv-grid > div:nth-child(5) { transition-delay: 0.24s; }

.about > div:nth-child(2) { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .gradient-text {
        animation: none;
        background: #ffffff;
        -webkit-text-fill-color: white;
    }
}

/* ========================================
   IMPRESSUM PAGE STYLES
   ======================================== */
.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.impressum-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.impressum-card:hover {
    transform: translateY(-4px);
    background: rgba(135, 206, 235, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.25);
}

.impressum-card.full-width {
    grid-column: 1 / -1;
}

.impressum-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cta);
    margin-bottom: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232, 112, 7, 0.2);
}

.impressum-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.impressum-card p strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.impressum-card a {
    color: var(--cta);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-card a:hover {
    color: var(--cta-light);
}

@media (max-width: 700px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .impressum-card {
        padding: 20px 22px;
    }
    .impressum-card h3 {
        font-size: 18px;
    }
    .impressum-card p {
        font-size: 15px;
    }
}

/* ========================================
   DATENSCHUTZ PAGE STYLES
   ======================================== */
.datenschutz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.datenschutz-card {
    background: rgba(135, 206, 235, 0.25);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.datenschutz-card:hover {
    transform: translateY(-4px);
    background: rgba(135, 206, 235, 0.40);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.25);
}

.datenschutz-card.full-width {
    grid-column: 1 / -1;
}

.datenschutz-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cta);
    margin-bottom: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232, 112, 7, 0.2);
}

.datenschutz-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.datenschutz-card p strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.datenschutz-card a {
    color: var(--cta);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.datenschutz-card a:hover {
    color: var(--cta-light);
}

.datenschutz-card ul {
    list-style: none;
    padding-left: 0;
}

.datenschutz-card ul li {
    padding: 4px 0 4px 24px;
    position: relative;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.datenschutz-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--cta);
    font-weight: 700;
}

@media (max-width: 700px) {
    .datenschutz-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .datenschutz-card {
        padding: 20px 22px;
    }
    .datenschutz-card h3 {
        font-size: 18px;
    }
    .datenschutz-card p,
    .datenschutz-card ul li {
        font-size: 15px;
    }
    .datenschutz-card ul li {
        padding-left: 20px;
    }
}

/* ========================================
   COOKIE BANNER - MOBILE OPTIMIERT
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-150px) scale(0.85);
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.cookie-banner.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.cookie-banner.drive-away {
    opacity: 0;
    transform: translateX(120vw) scale(0.9);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.cookie-van-container {
    position: relative;
    width: 520px;
    max-width: calc(100vw - 80px);
}

.cookie-van-body {
    position: relative;
    background: rgba(26, 75, 109, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid rgba(232, 112, 7, 0.35);
    border-radius: 16px 16px 8px 8px;
    padding: 40px 44px 36px 44px;
    box-shadow: 
        inset 0 -4px 0 rgba(232, 112, 7, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5);
    min-height: 220px;
}

.cookie-van-windscreen {
    position: absolute;
    bottom: 70px;
    right: -8px;
    width: 100px;
    height: 70px;
    background: rgba(135, 206, 235, 0.30);
    border: 3px solid rgba(135, 206, 235, 0.20);
    border-radius: 12px 4px 4px 12px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: inset 0 0 40px rgba(135, 206, 235, 0.08);
    z-index: 1;
}

.cookie-van-stripe {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(232, 112, 7, 0.6) 20%, 
        rgba(232, 112, 7, 0.8) 50%, 
        rgba(232, 112, 7, 0.6) 80%, 
        transparent 100%
    );
    opacity: 0.5;
    z-index: 2;
}

.cookie-van-headlight {
    position: absolute;
    bottom: 80px;
    left: -10px;
    width: 16px;
    height: 16px;
    background: rgba(255, 209, 102, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 209, 102, 0.3);
    z-index: 2;
}

.cookie-van-headlight-right {
    left: auto;
    right: -10px;
}

.cookie-van-wheel {
    position: absolute;
    bottom: -28px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 40% 40%, #1a1a2e, #0B0F17);
    border-radius: 50%;
    border: 5px solid #2a2a3e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cookie-van-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 40% 40%, #4a4a5e, #2a2a3e);
    border-radius: 50%;
    border: 3px solid #3a3a4e;
}

.cookie-van-wheel-front {
    right: 20px;
}

.cookie-van-wheel-back {
    left: 20px;
}

.cookie-van-shadow {
    width: 80%;
    height: 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 12px auto 0;
    filter: blur(6px);
}

.cookie-content {
    position: relative;
    z-index: 3;
}

.cookie-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.cookie-link {
    color: var(--cta);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--cta-light);
}

.cookie-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 32px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.cookie-btn-accept {
    background: var(--cta) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.30) !important;
}

.cookie-btn-accept:hover {
    background: var(--cta-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.40) !important;
}

.cookie-btn-decline {
    background: var(--cta) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(232, 112, 7, 0.30) !important;
}

.cookie-btn-decline:hover {
    background: var(--cta-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(232, 112, 7, 0.40) !important;
}

/* Mobile Cookie Banner */
@media (max-width: 700px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: translateY(120px) scale(0.9);
    }

    .cookie-banner.show {
        transform: translateY(0) scale(1);
    }

    .cookie-banner.drive-away {
        transform: translateX(120vw) scale(0.8);
    }

    .cookie-van-container {
        width: 100%;
        max-width: 100%;
    }

    .cookie-van-body {
        padding: 28px 20px 24px 20px;
        min-height: auto;
        border-radius: 12px 12px 6px 6px;
    }

    .cookie-van-windscreen {
        bottom: 50px;
        right: -4px;
        width: 60px;
        height: 45px;
        border-radius: 8px 2px 2px 8px;
        border-width: 2px;
    }

    .cookie-van-wheel {
        width: 32px;
        height: 32px;
        bottom: -18px;
        border-width: 3px;
    }

    .cookie-van-wheel::after {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .cookie-van-wheel-front {
        right: 12px;
    }

    .cookie-van-wheel-back {
        left: 12px;
    }

    .cookie-van-stripe {
        bottom: 38px;
        height: 3px;
    }

    .cookie-van-headlight {
        width: 10px;
        height: 10px;
        bottom: 52px;
        left: -6px;
    }

    .cookie-van-headlight-right {
        right: -6px;
    }

    .cookie-van-shadow {
        width: 70%;
        height: 8px;
    }

    .cookie-title {
        font-size: 18px;
        text-align: center;
    }

    .cookie-text {
        font-size: 14px;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        padding: 12px 20px !important;
        font-size: 15px !important;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .cookie-van-body {
        padding: 20px 14px 18px 14px;
    }

    .cookie-van-windscreen {
        width: 45px;
        height: 35px;
        bottom: 40px;
    }

    .cookie-title {
        font-size: 16px;
    }

    .cookie-text {
        font-size: 13px;
    }
}