/* Apple Style Premium Design */
:root {
    --bg-black: #000000;
    --bg-dark: #111111;
    --bg-card: #1c1c1e;
    --text-primary: #f5f5f7;
    --text-sec: #86868b;
    --accent: #d2d2d7;
    --gold: #b39b5d; /* Optional subtle luxury accent if needed */
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader img {
    width: 180px;
    animation: pulseLoader 2.5s infinite ease-in-out;
}
@keyframes pulseLoader {
    0% { opacity: 0.5; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
    100% { opacity: 0.5; transform: scale(0.97); }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Base sections */
.section-black {
    background-color: var(--bg-black);
    padding: 120px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

.service-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 25px;
    color: var(--text-primary);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, color 0.3s, border-color 0.3s;
}
.service-icon svg {
    width: 22px;
    height: 22px;
}
.service-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.service-panel:hover .service-icon {
    transform: scale(1.1) translateY(-3px);
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.3);
    color: #007AFF;
}

/* Red Submit Button */
.btn-submit-red {
    background-color: #FF3B30;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}
.btn-submit-red:hover {
    background-color: #E02A20;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.6);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
}
#navbar.nav-hidden {
    transform: translateY(-100%);
}
#navbar.nav-compact .nav-item {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
.logo img {
    height: 140px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}
.logo img:hover {
    transform: scale(1.08);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-links a.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a.nav-item:hover {
    color: var(--text-sec);
}
.btn-buchen {
    background-color: #007AFF;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}
.btn-buchen:hover {
    transform: scale(1.05);
    background-color: #006ae6;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.6);
}

.btn-primary-small {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}
.btn-primary-small:hover {
    transform: scale(1.05);
}

/* Hero */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, var(--bg-black) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px; /* Accounts for navbar */
}

.logo-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    transform: scale(1.03);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}
.section-header p {
    font-size: 1.3rem;
    color: var(--text-sec);
    font-weight: 400;
}

/* Split Layouts (About / Women to Women) */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}
.split-layout.flex-reverse {
    flex-direction: row-reverse;
}
.split-text {
    flex: 1;
}
.split-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}
.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.split-image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.split-image.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}
.split-image.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: none; /* Shadow on container instead */
}
.image-title-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 80px 40px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}
.image-title-overlay h2 {
    color: #fff;
    font-size: 3.2rem;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}
.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    color: var(--text-sec);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.split-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1.1;
}
.large-text {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 30px;
    line-height: 1.6;
}
.link-arrow {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}
.link-arrow:hover {
    opacity: 0.7;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-panel {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.service-panel:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
}
.service-panel.full-width {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 40px;
}
.service-panel h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.service-panel p {
    color: var(--text-sec);
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Pricing */
.pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-row:last-child {
    border-bottom: none;
}
.price-desc h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.price-desc p {
    color: var(--text-sec);
    font-size: 1rem;
}
.price-val {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
}
.price-val .unit {
    font-size: 1.1rem;
    color: var(--text-sec);
}
.price-options {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: right;
}
.price-option-col {
    display: flex;
    flex-direction: column;
}
.price-title-small {
    font-size: 0.8rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 600;
}

/* Minikosten Rechner */
.calculator-panel {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    align-items: center;
}
.calc-input {
    text-align: left;
}
.calc-input label {
    display: block;
    color: var(--text-sec);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}
.calc-input select, .calc-input input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.calc-input select:focus, .calc-input input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}
.calc-result {
    background: #000;
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: right;
    min-width: 220px;
}

/* Transparente Infos */
.pricing-info {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}
.info-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.info-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.info-card p {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-card li {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.info-card li:last-child {
    margin-bottom: 0;
}
.info-card li strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

/* Contact */
.contact-container {
    text-align: center;
    max-width: 800px;
}
.contact-container h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.contact-container p {
    font-size: 1.3rem;
    color: var(--text-sec);
    margin-bottom: 50px;
}
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
}
.contact-form select {
    appearance: none;
    cursor: pointer;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 10px;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}
.contact-btn svg {
    width: 24px;
    height: 24px;
}
.contact-btn.mail {
    background: var(--bg-card);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}
.contact-btn.mail:hover {
    background: #2a2a2c;
    transform: translateY(-2px);
}
.contact-btn.whatsapp {
    background: #25D366;
    color: #fff;
}
.contact-btn.whatsapp:hover {
    background: #20BA56;
    transform: translateY(-2px);
}
.contact-btn.telegram {
    background: #229ED9;
    color: #fff;
}
.contact-btn.telegram:hover {
    background: #1C8CBF;
    transform: translateY(-2px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    background: var(--bg-black);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand img {
    height: 120px;
    object-fit: contain;
}
.footer-links a {
    color: var(--text-sec);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.96) rotateX(-4deg);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

/* Cinematic Apple Film Animation */
.cinematic-child {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform, filter;
}

.fade-in-scroll-stagger.visible .cinematic-child {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.fade-in-scroll-stagger.visible .delay-1 { transition-delay: 0.1s; }
.fade-in-scroll-stagger.visible .delay-2 { transition-delay: 0.5s; }
.fade-in-scroll-stagger.visible .delay-3 { transition-delay: 0.9s; }
.fade-in-scroll-stagger.visible .delay-4 { transition-delay: 1.3s; }
.fade-in-scroll-stagger.visible .delay-5 { transition-delay: 1.7s; }

/* Fleet */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}
/* Premium Fleet Card Redesign */
.premium-card {
    background: radial-gradient(circle at center 30%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.8) 70%), #000;
    position: relative;
    padding: 50px 30px 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 122, 255, 0.15); /* Soft blue luxury glow on hover */
    border-color: rgba(255, 255, 255, 0.2);
}
.card-badge {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-sec);
    white-space: nowrap;
    z-index: 20;
}
.premium-card .fleet-img {
    margin-top: 15px;
    margin-bottom: 25px;
    width: 100%;
    height: 160px;
    background: transparent;
}
.premium-card .fleet-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: scale(1.15); /* The hero scale */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    -webkit-box-reflect: below -5px linear-gradient(transparent 70%, rgba(255,255,255,0.1) 100%);
}
.premium-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: #fff;
}
.premium-card p {
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.fleet-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    width: 100%;
}
.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-sec);
    font-weight: 500;
    flex: 1; /* allow elements to shrink uniformly */
}
.spec svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    color: var(--text-primary);
}

/* Carousel Pagination Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.carousel-dots .dot.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s;
}
.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}
.stars {
    color: #F5C518;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}
.stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-sec);
    margin-bottom: 25px;
    font-style: italic;
}
.reviewer {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 800px) {
    #navbar {
        padding: 10px 0;
    }
    .section-black, .section-dark {
        padding: 40px 0;
    }
    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .split-layout.flex-reverse {
        flex-direction: column;
    }
    .split-image {
        order: -1; /* Image always first on mobile */
    }
    .split-text {
        order: 1; /* Text always second on mobile */
        padding: 0 5px;
    }
    .image-title-overlay {
        padding: 50px 25px 25px 25px;
    }
    .image-title-overlay h2 {
        font-size: 2.4rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .fleet-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin-left: -5vw;
        margin-right: -5vw;
        padding: 0 5vw;
        width: 100vw;
    }
    .reviews-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0 7.5vw;
    }
    .carousel-dots {
        display: flex;
    }
    .fleet-card, .review-card {
        min-width: 85vw;
        scroll-snap-align: center;
    }
    .premium-card {
        padding: 30px 15px; /* Kompaktes Padding am Handy */
        margin: 0; /* WICHTIG: Überschreibt margin: 0 auto vom Desktop, das sonst im Flex-Container das Auto nach links aus dem Bildschirm drückt */
    }
    .fleet-specs {
        flex-wrap: wrap;
        gap: 10px;
    }
    .fleet-card:first-child, .review-card:first-child {
        margin-left: 0;
    }
    .fleet-card:last-child, .review-card:last-child {
        margin-right: 0;
    }
    .fleet-card {
        text-align: center;
        transition: transform 0.1s;
    }
    .premium-card .fleet-img {
        height: auto;
    }
    .premium-card .fleet-img img {
        transform: scale(1.15); /* Weniger extrem am Handy */
    }
    .premium-card h3 {
        font-size: 1.5rem;
    }
    .fleet-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }
    .pricing-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        background: #080808; /* Premium Card Background */
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 30px 25px;
        gap: 15px;
        border-bottom: none; /* Remove desktop border */
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .price-row .price-val {
        font-size: 1.8rem;
        letter-spacing: -1px;
        margin-bottom: 0px;
        color: #fff; 
    }
    .price-options {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 20px;
        justify-content: space-between;
        text-align: left;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .price-option-col {
        flex: 1;
    }
    .pricing-info {
        margin-top: 60px;
        padding-top: 40px;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .calculator-panel {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .calc-result {
        text-align: center;
        margin-top: 10px;
    }
    .price-desc h4 {
        font-size: 1.15rem;
        color: var(--accent); /* Leicht blau/akzent für den Titel */
    }
    .price-val {
        font-size: 2rem;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px;
        font-size: 16px; /* 16px prevents iOS auto-zoom on focus */
        border-radius: 12px;
    }
    .contact-form button[type="submit"] {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }
    .nav-links {
        display: none !important;
    }
    /* Simple mobile nav override to keep it accessible */
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .nav-container {
        justify-content: center;
    }
    .nav-item {
        display: none !important;
    }
    .logo img {
        height: 75px; /* Logo viel klarer und größer */
        transition: 0.3s ease;
    }
    
    /* Top of Page: Show only Logo (centered) */
    #navbar:not(.nav-compact) .btn-buchen {
        display: none !important; 
    }
    
    /* Scrolling up: Show only Buchen Button (centered) */
    #navbar.nav-compact .logo {
        display: none !important;
    }
    #navbar.nav-compact .nav-links {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        margin: 0 !important;
    }
    .btn-buchen {
        font-size: 1.05rem;
        padding: 10px 28px;
        margin: 0;
        box-shadow: 0 4px 15px rgba(0, 122, 255, 0.5); /* Glowing CTA */
    }
    #hero {
        height: 100svh;
        min-height: auto;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        padding-top: 0;
        padding-bottom: 60px; /* Raise it slightly for optical balance */
    }
    .logo-title {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .date-time-row {
        flex-direction: row;
    }
    .date-time-row input {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .footer-links a {
        margin-left: 0;
    }
}
