/* Global Styles */
:root {
    --primary-orange: #FF7420;
    --text-dark: #111111;
    --text-grey: #666666;
    --text-light: #999999;
    --bg-light: #F9F9F9;
    --border-color: #E5E5E5;
    --white: #FFFFFF;
    --max-width: 1140px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    /* Sicherheitsnetz gegen horizontales Scrollen; clip statt hidden,
       damit position: sticky im Header weiter funktioniert */
    overflow-x: clip;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle-label:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

.text-orange {
    color: var(--primary-orange);
}

.text-white {
    color: var(--white);
}

/* Skip-Link: unsichtbar, bis er per Tastatur fokussiert wird */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 6px 0;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Optional: nice separation */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.logo-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-text {
    font-size: 22px;
    letter-spacing: -0.5px;
    color: #444;
}

.logo-main {
    font-weight: 800;
    color: #222;
}

.logo-dot {
    color: #999;
}

.logo-sub {
    font-weight: 700;
    color: #888;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.main-nav a:hover {
    color: var(--primary-orange);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    /* 24px Icon + 2x10px Padding = 44px Tap-Target */
}

/* Inline-SVG-Icons (Burger/Schließen/Telefon): Pfade aus Font Awesome Free, CC BY 4.0.
   Bewusst kein Icon-Font, damit die Navigation auch ohne CDN funktioniert. */
.nav-toggle-label svg {
    width: 24px;
    height: 24px;
    display: block;
}

.nav-toggle-label .icon-close {
    display: none;
}

.nav-toggle:checked ~ .nav-toggle-label .icon-burger {
    display: none;
}

.nav-toggle:checked ~ .nav-toggle-label .icon-close {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-outline {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 1px solid var(--primary-orange);
}

.btn-primary-outline:hover {
    background-color: #e05e0f;
    border-color: #e05e0f;
}

.btn-call svg {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #0F1115;
    /* Fallback dark color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Landingpage-1.webp');
    background-size: cover;
    background-position: center;
    height: 600px;
    /* Approx height based on screenshot */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-bottom: 80px;
    /* Space for cards overlap */
}

/* Dark overlay to match screenshot darkness */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    /* Push text up slightly */
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-title-sub {
    color: var(--white);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #e0e0e0;
}

.hero-contact-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 600;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Cards */
.hero-cards-container {
    position: absolute;
    bottom: -80px;
    /* Negative margin to overlap section below */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    /* Remove underline from anchor */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.card-desc {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.card-link {
    margin-top: auto;
    /* Push to bottom if height varies */
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.hero-card:hover .card-link {
    gap: 10px;
    /* Expand gap on hover for arrow animation effect */
}

/* Trust Bar */
.trust-bar {
    padding-top: 120px;
    /* Space for overlapped cards */
    padding-bottom: 40px;
    text-align: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    /* Separator implied */
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
}

.trust-text {
    color: var(--text-dark);
}

.trust-subtext {
    color: var(--text-grey);
}

.hero-trust {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-trust .stars {
    font-size: 13px;
}

.hero-trust-divider {
    opacity: 0.4;
}

/* Responsive */
/* Sections General */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
}

/* Offers Section */
.offer-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.offer-row:last-child {
    margin-bottom: 0;
}

.offer-row.reverse {
    flex-direction: row-reverse;
}

.offer-text {
    flex: 1;
}

.offer-image {
    flex: 1;
}

.offer-icon {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.offer-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-sub {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.check-list i {
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.service-item i {
    color: #333;
    /* Dark icon */
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e05e0f;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-orange);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
    /* Match placeholder ratio */
}

/* Fleet Section */
.fleet-section {
    background-color: #111;
    color: var(--white);
    padding: 120px 0;
}

.fleet-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.fleet-content {
    flex: 1;
}

.fleet-image {
    flex: 1;
}

.fleet-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.fleet-text {
    font-size: 18px;
    color: #CCC;
    margin-bottom: 40px;
    line-height: 1.6;
}

.fleet-badge {
    background-color: #222;
    border: 1px solid #333;
    padding: 16px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: #EEE;
    border-left: 4px solid var(--primary-orange);
}

/* Contact Section */
.contact-row {
    display: flex;
    gap: 80px;
    margin-top: 0;
    /* Title is now inside, so no gap needed */
    align-items: flex-start;
}

.contact-title {
    margin-bottom: 30px;
    /* Override section-title 80px margin */
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    /* Push down slightly to align with text */
}

.text-left {
    text-align: left;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 18px;
}

.c-icon-box {
    width: 24px;
    display: flex;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 20px;
    margin-top: 4px;
}

/* Form */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: var(--white);
    color: #333;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-orange);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Formular: Fehler- und Erfolgsanzeige (AJAX-Submit, siehe script.js) */
.form-error {
    color: #C62828;
    font-size: 15px;
    margin-bottom: 15px;
}

.form-success {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-light);
}

.form-success i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 16px;
    display: block;
}

.form-success h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-grey);
}

/* Footer */
.site-footer {
    background-color: #000;
    padding-top: 80px;
    color: var(--white);
    font-size: 15px;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.brand-col {
    flex: 2;
    /* Bigger width for brand info */
    padding-right: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: #999;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-nav,
.footer-contact-list {
    list-style: none;
}

.footer-nav li,
.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #CCC;
}

.footer-contact-list i {
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cards-container {
        position: static;
        transform: none;
        grid-template-columns: 1fr;
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .hero {
        height: auto;
        padding-top: 80px;
    }

    .hero-trust {
        position: static;
        flex-direction: column;
        gap: 8px;
        margin-top: 32px;
        padding-bottom: 40px;
    }

    .hero-trust-divider {
        display: none;
    }

    .trust-bar {
        padding-top: 40px;
    }

    .trust-content {
        flex-direction: column;
        gap: 8px;
    }

    /* Offers Responsive */
    .offer-row,
    .offer-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        text-align: left;
    }

    .offer-text,
    .offer-image {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* Fleet Responsive */
    .fleet-container {
        flex-direction: column;
        gap: 40px;
    }

    .fleet-title {
        font-size: 32px;
    }

    /* Contact Responsive */
    .contact-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 36px;
        padding-bottom: 40px;
    }

    .brand-col {
        padding-right: 0;
    }
}

/* Fahrdienste / Business Page Styles */

/* Business Hero */
.hero-business {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Fahrdienst-1.webp');
    padding-bottom: 0;
    height: 520px;
}

/* Service Grid */
.service-grid-section {
    background-color: #f9f9f9;
    /* Light background to contrast with white cards */
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns for detailed content */
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    text-align: left;
    /* Better for long text */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-icon {
    align-self: center;
    margin-bottom: 24px;
}

.service-card .card-title {
    text-align: center;
    margin-bottom: 20px;
}



.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Feature List inside Cards */
.service-features {
    margin-top: auto;
    /* Pushes list to bottom if needed, or just spaced */
    padding-top: 20px;
    border-top: 1px solid #eee;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.service-features i {
    color: var(--primary-orange);
    font-size: 14px;
}

/* Feature Section */
.feature-section {
    background-color: var(--white);
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

.feature-item {
    flex: 1;
}

.feature-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* Dark CTA */
.dark-cta {
    background-color: #111;
    color: var(--white);
    padding: 80px 0;
}

.dark-cta .container.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 700px;
    text-align: center;
}

/* Responsive updates for new sections */
@media (max-width: 1024px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        /* Stack earlier on tablet/smaller screens */
    }
}

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

    .features-row {
        flex-direction: column;
        gap: 40px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* Taxi Page Styles */

/* Taxi Hero Background */
.hero-taxi {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/Taxi-1.webp');
    padding-bottom: 0;
    /* Remove extra bottom padding */
    height: 520px;
    /* Adjust height slightly less than main hero */
}

/* Krankenfahrten Hero Background */
.hero-kranken {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Krankenfahrt-1.webp');
    padding-bottom: 0;
    height: 520px;
}

/* Quick Benefits Section */
.quick-benefits {
    background-color: #F8F8F8;
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 4px;
    border: 1px solid var(--border-color);
}

.benefit-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.benefit-text {
    font-size: 14px;
    color: var(--text-grey);
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

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

/* Rechtsseiten (Impressum / Datenschutz) */
.legal-section .container {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 12px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 8px;
}

.legal-content p {
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-content li {
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a:not(.btn) {
    color: var(--primary-orange);
    text-decoration: underline;
    overflow-wrap: break-word;
}

/* ==========================================================================
   Mobile-/Tablet-Fixes
   Bewusst am Dateiende, damit sie die weiter oben definierten Seiten-Klassen
   (.hero-taxi, .hero-kranken, .hero-business, .fleet-section) überschreiben.
   ========================================================================== */

/* Tablet: Burger-Navigation schon ab 1024px, da Logo + 4 Nav-Punkte +
   Buttons darunter nicht nebeneinander passen */
@media (max-width: 1024px) {
    .header-container {
        gap: 10px;
    }

    .logo {
        margin-right: auto;
    }

    /* Checkbox fokussierbar halten (statt display: none), damit das Menü
       auch per Tastatur bedienbar ist */
    .nav-toggle {
        display: block;
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .nav-toggle:focus-visible ~ .nav-toggle-label {
        outline: 2px solid var(--primary-orange);
        outline-offset: 3px;
    }

    .nav-toggle-label {
        display: inline-flex;
        order: 2;
        margin-right: 6px;
    }

    .site-header .btn-primary-outline {
        order: 3;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-toggle:checked ~ .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .main-nav a {
        display: block;
        padding: 14px 24px;
    }

    /* Erzwungener Umbruch im Hero-Titel (index.html) erzeugt unterhalb der
       Desktop-Breite ein einsames "&" bzw. abgeschnittene Zeilen */
    .hero-title br {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Feste Hero-Höhen der Unterseiten aufheben (überschreiben sonst das
       height: auto aus der älteren Media Query, da später im Stylesheet) */
    .hero,
    .hero-taxi,
    .hero-kranken,
    .hero-business {
        height: auto;
    }

    /* Kleinere Hero-Bilder für Mobile (960px statt 1920px) */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Landingpage-1-mobile.webp');
    }

    .hero-taxi {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/Taxi-1-mobile.webp');
    }

    .hero-business {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Fahrdienst-1-mobile.webp');
    }

    /* Krankenfahrt-1.webp ist bereits klein (68K), keine Mobile-Variante —
       muss aber die .hero-Regel oben wieder überschreiben */
    .hero-kranken {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Krankenfahrt-1.webp');
    }

    /* Weniger Leerraum auf kleinen Screens (Desktop: 100-120px) */
    .section,
    .fleet-section,
    .dark-cta {
        padding: 60px 0;
    }

    /* "Datenschutzerklärung" (20 Zeichen) passt bei 36px nicht in 375px */
    .legal-content h1 {
        font-size: 28px;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Telefon + E-Mail im Hero passen auf schmalen Geräten nicht nebeneinander */
    .hero-contact-bar {
        flex-wrap: wrap;
        gap: 12px 30px;
        font-size: 16px;
    }

    /* Header entschlacken, damit nichts überläuft:
       Instagram nur noch im Footer, Logo etwas kleiner */
    .header-social {
        display: none;
    }

    .logo img {
        height: 32px;
    }

    .site-header .btn-call {
        padding: 10px 16px;
    }
}

/* Sehr schmale Geräte: Anruf-Button nur noch als Icon */
@media (max-width: 480px) {
    .btn-call .btn-call-text {
        display: none;
    }

    .btn-call svg {
        margin-right: 0;
        width: 16px;
        height: 16px;
    }

    .site-header .btn-call {
        padding: 12px;
    }

    /* Lange Einzelwörter ("Qualitätsversprechen") und nowrap-Buttons
       sprengen sonst 320px-Screens. Hero-Titel bewusst ohne hyphens:
       er passt dank 30px auch ohne Trennung und sähe getrennt hässlich aus. */
    .section-title,
    .offer-heading,
    .cta-title {
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        white-space: normal;
    }
}