/* ═══════════════════════════════════════════════════════════════════
   DAP Krankenbeförderung & Patientenfahrdienst Düsseldorf
   Original DAP Healthcare Design System (Authentic Onest Typography,
   Asymmetric Curvatures & Premium Warm Palette)
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. SELF-HOSTED FONTS ("Onest") ────────────────────────────── */
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Onest';
    src: url('assets/fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── 2. ORIGINAL DAP DESIGN TOKENS ─────────────────────────────── */
:root {
    /* DAP Brand Colors */
    --dap-green:          #14802E;
    --dap-green-accent:   #81C913;
    --dap-green-dark:     #11290B;
    --dap-green-light:    #A5E1C0;
    --dap-green-bg:       #F1F5EA;
    --dap-mint-bg:        #F4FFFC;
    
    --dap-blue:           #006DA4;
    --dap-blue-dark:      #004364;
    --dap-blue-bg:        #E9F3FA;
    --dap-blue-light:     #6AADB0;

    /* Text & Neutrals (High Contrast & Legibility) */
    --dap-text-dark:      #0d2109;
    --dap-text-body:      #1c2d27;
    --dap-text-muted:     #42525a;
    --dap-white:          #FFFFFF;
    --dap-bg-page:        #F1F5EA;
    --dap-card-bg:        #FFFFFF;

    /* Gradients */
    --grad-green-btn:     linear-gradient(135deg, #14802E 0%, #81C913 100%);
    --grad-green-hover:   linear-gradient(135deg, #81C913 0%, #14802E 100%);
    --grad-blue-btn:      linear-gradient(135deg, #006DA4 0%, #004364 100%);
    --grad-hero-overlay:  linear-gradient(175deg, rgba(244, 255, 252, 0.88) 0%, rgba(241, 245, 234, 0.95) 100%);
    --grad-faq-overlay:   linear-gradient(175deg, rgba(17, 41, 11, 0.92) 12%, rgba(0, 109, 164, 0.92) 100%);

    /* Typography */
    --font-onest:         'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Asymmetric Border Radii (Original DAP Signature) */
    --radius-asym-hero:   20px 20px 20px 100px;
    --radius-asym-card:   10px 10px 100px 10px;
    --radius-asym-blue:   20px 20px 20px 100px;
    --radius-card:        20px;
    --radius-pill:        500px;
    --radius-circle:      50%;

    /* Shadows */
    --shadow-card:        0 10px 30px rgba(49, 114, 70, 0.08);
    --shadow-hover:       0 16px 40px rgba(49, 114, 70, 0.16);
    --shadow-btn:         0 8px 20px rgba(20, 128, 46, 0.25);
    --shadow-blue-btn:    0 8px 20px rgba(0, 109, 164, 0.25);

    --container-width:    1200px;
}

/* ── 3. BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: var(--font-onest);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dap-text-body);
    background-color: var(--dap-bg-page);
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
    background-color: var(--dap-bg-page);
    color: var(--dap-text-body);
    font-family: var(--font-onest);
}

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

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: var(--font-onest);
    color: inherit;
    background: transparent;
    border: none;
}

button {
    cursor: pointer;
}

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

.section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
}

/* ── 4. TYPOGRAPHY & SECTION HEADERS ───────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-onest);
    color: var(--dap-text-dark);
    font-weight: 500;
    line-height: 1.25;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(20, 128, 46, 0.18);
    border-radius: var(--radius-pill);
    color: var(--dap-green);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    max-width: 90vw;
}

.section-pill-tag.blue {
    border-color: rgba(0, 109, 164, 0.18);
    color: var(--dap-blue);
    background: #FFFFFF;
}

.section-title {
    font-size: clamp(2.1rem, 3.2vw, 2.75rem);
    font-weight: 600;
    color: var(--dap-text-dark);
    margin-bottom: 16px;
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.section-title span.green {
    color: var(--dap-green);
}

.section-title span.blue {
    color: var(--dap-blue);
}

/* ── HIGHLIGHT PILL BADGES (Webflow Silky Smooth Sweep Physics) ── */
.highlight-pill {
    position: relative;
    display: inline-block;
    padding: 4px 18px;
    border-radius: 14px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 4px;
    vertical-align: baseline;
    z-index: 1;
    color: var(--dap-text-dark);
}

.highlight-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 14px;
    z-index: -1;
    will-change: width;
    transition: width 1.05s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

/* Active State (Triggered on page load or on scroll) */
.highlight-pill.highlight-active::before {
    width: 100%;
}

.highlight-pill-mint::before {
    background: linear-gradient(90deg, #52d69f 0%, #52d69f 90%, #6ee7b7 100%);
    box-shadow: 0 6px 16px rgba(82, 214, 159, 0.28);
}

.highlight-pill-cyan::before {
    background: linear-gradient(90deg, #7dd3fc 0%, #7dd3fc 90%, #bae6fd 100%);
    box-shadow: 0 6px 16px rgba(125, 211, 252, 0.28);
}

.highlight-pill-lightgreen::before {
    background: #A5E1C0;
}

/* ── PLEEG CIRCULAR CHECKMARK BADGES ───────────────────────────── */
.pleeg-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.pleeg-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.4;
}

.pleeg-check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #52d69f;
    background: rgba(82, 214, 159, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #52d69f;
    transition: background 0.2s ease;
}

.pleeg-check-icon svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Light Mode Variant for white/cream backgrounds */
.pleeg-check-icon.light-mode {
    border-color: #14802E;
    color: #14802E;
    background: rgba(20, 128, 46, 0.08);
}

.pleeg-check-item.light-mode {
    color: var(--dap-text-dark);
}

/* ── OVERLAPPING IMAGE & TESTIMONIAL CARD (Pleeg / IBS Style) ──── */
.overlap-showcase-container {
    position: relative;
    border-radius: 28px;
    margin-top: 30px;
}

.overlap-showcase-bg {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.overlap-card-content {
    position: absolute;
    bottom: -36px;
    left: 36px;
    max-width: 580px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 48px rgba(20, 128, 46, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 5;
}

.overlap-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dap-text-dark);
}

.overlap-card-content p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--dap-text-body);
    margin-bottom: 18px;
}

.overlap-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: none;
}

.overlap-author-info {
    font-size: 14px;
    font-weight: 700;
    color: var(--dap-text-dark);
}

.overlap-author-info span {
    display: block;
    font-size: 13px;
    color: var(--dap-text-muted);
    font-weight: 500;
}

.overlap-stars {
    color: #14802E;
    font-size: 18px;
    letter-spacing: 2px;
}

.overlap-accent-circles {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.accent-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.accent-circle-green {
    background: #52d69f;
    margin-bottom: -20px;
    z-index: 2;
}

.accent-circle-cyan {
    background: #7dd3fc;
    z-index: 1;
}

@media (max-width: 900px) {
    .overlap-showcase-bg {
        height: 320px;
    }
    .overlap-card-content {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -40px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .overlap-accent-circles {
        display: none;
    }
}

.section-desc {
    color: var(--dap-text-body);
    font-size: 17px;
    line-height: 1.65;
    max-width: 65ch;
    margin: 0 auto;
}

/* ── 5. BUTTONS (Smooth Continuous Gradient & No Jumpy Transform) ─ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    font-family: var(--font-onest);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    transform: none !important;
}

.btn svg {
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    vertical-align: middle;
}

.btn-primary {
    background: linear-gradient(135deg, #14802E 0%, #1c9b39 35%, #81C913 70%, #14802E 100%);
    background-size: 250% 100%;
    background-position: 0% 0;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(20, 128, 46, 0.25);
    border: none;
    transition: background-position 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.2s ease;
}

.btn-primary:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 26px rgba(20, 128, 46, 0.38);
    color: #FFFFFF;
}

.btn-blue {
    background: linear-gradient(135deg, #006DA4 0%, #0284c7 40%, #38bdf8 80%, #006DA4 100%);
    background-size: 250% 100%;
    background-position: 0% 0;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 109, 164, 0.25);
    border: none;
    transition: background-position 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.btn-blue:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 26px rgba(0, 109, 164, 0.38);
    color: #FFFFFF;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--dap-text-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--dap-green);
    color: var(--dap-green);
    box-shadow: 0 6px 16px rgba(20, 128, 46, 0.12);
}

.header-back-btn {
    padding: 8px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.header-back-btn .mobile-text {
    display: none;
}

@media (max-width: 600px) {
    .header-back-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .header-back-btn .desktop-text {
        display: none;
    }
    .header-back-btn .mobile-text {
        display: inline;
    }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #2bdc6e 50%, #1ebd5b 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: none;
    transition: box-shadow 0.4s ease, opacity 0.2s ease;
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
    color: #FFFFFF;
}

/* ── 6. HEADER (Floating Island Pill Design) ───────────────────── */
.header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.header .container {
    pointer-events: auto;
    max-width: 1220px;
    padding: 0 16px;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 72px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(20, 128, 46, 0.16);
    border-radius: var(--radius-pill);
    padding: 8px 16px 8px 24px;
    box-shadow: 0 12px 36px rgba(20, 128, 46, 0.09), 0 2px 10px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.mobile-nav-bottom {
    display: none;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--dap-text-body);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--dap-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dap-green);
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 500px;
    transition: all 0.2s ease;
}

.header-phone-box:hover {
    background: rgba(20, 128, 46, 0.08);
}

.mobile-header-call-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dap-green);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(20, 128, 46, 0.32);
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-header-call-btn:hover {
    background: var(--dap-green-dark);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F1F5EA;
    color: var(--dap-text-dark);
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .header {
        top: 10px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .header .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .header-inner {
        border-radius: 500px;
        padding: 6px 14px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }
    .logo-img {
        height: 44px;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 2px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 16px;
        font-weight: 600;
        color: var(--dap-text-dark);
        padding: 12px 16px;
        border-radius: 12px;
        transition: background 0.15s ease, color 0.15s ease;
        display: flex;
        align-items: center;
        width: 100%;
        text-decoration: none;
    }
    .nav-link:hover,
    .nav-link:active {
        background: #F1F5EA;
        color: var(--dap-green);
    }
    .mobile-nav-bottom {
        display: block;
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px;
        border-radius: 500px;
        background: #F1F5EA;
        color: var(--dap-green);
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .mobile-nav-phone-btn:hover {
        background: var(--dap-green);
        color: #FFFFFF;
    }
    .mobile-header-call-btn {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--dap-green);
        color: #FFFFFF;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(20, 128, 46, 0.32);
        flex-shrink: 0;
        text-decoration: none;
    }
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #F1F5EA;
        border: 1px solid rgba(20, 128, 46, 0.2);
        color: var(--dap-text-dark);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .header-phone-box {
        display: none;
    }
    .header-cta-btn {
        display: none;
    }
}

/* ── 7. HERO SECTION (Subtiler & warmer Hintergrund) ────────────── */
.hero-section {
    position: relative;
    padding-top: 145px;
    padding-bottom: 160px;
    background-color: #F4FFFC;
    background-image: url('assets/images/driver-patient.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F4FFFC 0%, rgba(244, 255, 252, 0.98) 50%, rgba(244, 255, 252, 0.88) 75%, rgba(244, 255, 252, 0.45) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(244, 255, 252, 0.98) 0%, rgba(244, 255, 252, 0.92) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    font-weight: 600;
    color: var(--dap-text-dark);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--dap-green);
}

.hero-subtext {
    font-size: clamp(1.1rem, 1.35vw, 1.28rem);
    font-weight: 500;
    color: var(--dap-text-body);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto;
}

/* Original DAP Hero Curve Wave */
.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
}

/* ── 8. WEBFLOW / ATOS-STYLE STAT CARDS GRID ───────────────────── */
.stat-cards-section {
    position: relative;
    z-index: 10;
}

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

.hero-stat-card {
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border-radius: 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.stat-card-green {
    background: linear-gradient(135deg, #14802E 0%, #0d5a20 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(20, 128, 46, 0.24);
}

.stat-card-white {
    background: #FFFFFF;
    color: var(--dap-text-dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.stat-card-dark {
    background: linear-gradient(135deg, #004364 0%, #002b40 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(0, 67, 100, 0.24);
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.stat-badge-rating {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 500px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-badge-sub {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 500px;
    background: rgba(20, 128, 46, 0.1);
    color: var(--dap-green);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.stat-card-white .stat-arrow-btn {
    background: #F1F5EA;
    color: var(--dap-green);
}

.stat-number {
    font-size: clamp(1.85rem, 2.3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card-white .stat-label {
    color: var(--dap-text-muted);
}

.trust-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
}

.trust-card-text h4 {
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-card-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero-stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── 9. SERVICES GRID (Unsere Leistungen auf einen Blick) ──────── */
.services-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 32px;
    align-items: stretch;
}

/* Left Large Featured Card */
.service-big-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 5px solid #FFFFFF;
}

.service-big-img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.service-big-body {
    padding: 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-big-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-big-body p {
    color: var(--dap-text-body);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dap-green);
    font-size: 15px;
    font-weight: 700;
}

.service-more-link:hover {
    color: var(--dap-green-dark);
}

/* Right 3 Stacked Horizontal Cards */
.services-mini-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-row-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 20px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: center;
    border: 4px solid #FFFFFF;
}

.service-row-img {
    width: 140px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.service-row-body h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-row-body p {
    color: var(--dap-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    .service-row-card {
        grid-template-columns: 1fr;
    }
    .service-row-img {
        width: 100%;
        height: 180px;
    }
}

/* ── 10. ROUND ICONS HIGHLIGHTS ────────────────────────────────── */
.features-round-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 36px 0;
}

.feature-round-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #FFFFFF;
}

.feature-icon-bubble {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    background: var(--dap-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(20, 128, 46, 0.25);
}

.feature-text-content {
    flex: 1;
    min-width: 0;
}

.feature-round-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-round-card p {
    font-size: 14px;
    color: var(--dap-text-muted);
}

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

/* ── 11. HIER SIND WIR FÜR SIE VOR ORT (Standorte & Formular) ──── */
.location-section-wrap {
    background: #FFFFFF;
    border-top: 5px solid #FFFFFF;
    border-bottom: 5px solid #FFFFFF;
}

.location-inner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.form-clean-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 16px 48px rgba(49, 114, 70, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-clean-card .form-input-field {
    width: 100%;
    height: 52px;
    background: #F8FAF7;
    border: 1.5px solid rgba(20, 128, 46, 0.16);
    border-radius: 12px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dap-text-dark);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-clean-card .form-input-field::placeholder {
    color: #8E9FA5;
    font-weight: 400;
}

.form-clean-card .form-input-field:focus {
    background: #FFFFFF;
    border-color: var(--dap-green);
    box-shadow: 0 0 0 3.5px rgba(20, 128, 46, 0.12);
    outline: none;
}

.form-input-field {
    width: 100%;
    height: 50px;
    background: #F8FAF7;
    border: 1.5px solid rgba(20, 128, 46, 0.16);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dap-text-dark);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input-field:focus {
    background: #FFFFFF;
    border-color: var(--dap-green);
    box-shadow: 0 0 0 3.5px rgba(20, 128, 46, 0.12);
    outline: none;
}

.form-input-field::placeholder {
    color: #8da499;
    font-weight: 400;
}

.districts-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 20px;
}

.district-check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dap-text-dark);
    font-weight: 600;
}

.district-check-row .pleeg-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--dap-green);
    background: rgba(20, 128, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dap-green);
}

.district-check-row .pleeg-check-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
}

@media (max-width: 900px) {
    .location-inner-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 12. STORY / MISSION BOX (Original DAP Asymmetric Signature Design) ── */
.story-split-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border: none;
    position: relative;
}

.story-blue-container {
    background: linear-gradient(145deg, #006DA4 0%, #004364 100%);
    color: #FFFFFF;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 20px 20px 100px;
    box-shadow: 0 16px 40px rgba(0, 67, 100, 0.2);
    position: relative;
    z-index: 2;
}

.story-blue-container h2 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 600;
    margin-bottom: 18px;
}

.story-blue-container p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.story-photo-wrapper {
    position: relative;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    margin-left: -16px;
    z-index: 1;
}

.story-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.story-round-quote-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #81C913;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.partners-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 0 10px 0;
    flex-wrap: wrap;
}

.partners-strip img {
    height: 38px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.2s ease;
}

.partners-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 900px) {
    .story-split-card {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: var(--shadow-card);
    }
    .story-blue-container {
        padding: 40px 24px;
        border-radius: 20px 20px 0 0;
        width: 100%;
        box-sizing: border-box;
    }
    .story-blue-container .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
        box-sizing: border-box;
    }
    .story-photo-wrapper {
        min-height: 260px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        border-radius: 0 0 20px 20px;
        box-sizing: border-box;
    }
}

/* ── 13. INHABERIN SALOUA OUAZZOUZI SECTION ────────────────────── */
.inhaberin-quote-section {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 85px 24px;
}

.inhaberin-circle-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 32px auto;
}

.inhaberin-circle-img {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 6px solid #FFFFFF;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.inhaberin-quote-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    border-radius: var(--radius-circle);
    background: #14802E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #FFFFFF;
    box-shadow: 0 6px 16px rgba(20, 128, 46, 0.35);
}

.inhaberin-quote-badge svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.inhaberin-quote-text {
    font-size: clamp(20px, 2.3vw, 27px);
    color: #1a2924;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.inhaberin-quote-text strong {
    font-weight: 700;
    font-style: italic;
    color: #0c1a15;
}

.inhaberin-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #14802E;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.inhaberin-author-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inhaberin-author-title::before,
.inhaberin-author-title::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.22);
}

/* ── 14. FAQ ACCORDION (Restored White Consultation Card & Clean Accordion) ── */
.faq-wrap-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 44px;
    align-items: flex-start;
}

.faq-contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 38px 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-contact-card .section-pill-tag {
    margin-bottom: 14px;
}

.faq-contact-card h3 {
    font-size: clamp(30px, 2.7vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dap-text-dark);
}

.faq-contact-card p {
    color: var(--dap-text-body);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.faq-phone-pill {
    background: #F1F5EA;
    border: 1px solid rgba(20, 128, 46, 0.16);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

/* FAQ Accordion Cards */
.faq-blue-pill-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-blue-pill-item:hover {
    border-color: rgba(20, 128, 46, 0.4);
    box-shadow: 0 8px 24px rgba(20, 128, 46, 0.08);
}

.faq-blue-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--dap-text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.faq-plus-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F1F5EA;
    border: 1px solid rgba(20, 128, 46, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dap-green);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.faq-pill-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 24px;
    color: var(--dap-text-body);
    font-size: 15.5px;
    line-height: 1.7;
}

/* Active Open FAQ Card */
.faq-blue-pill-item.active {
    border-color: var(--dap-green);
    border-left: 4px solid var(--dap-green);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(20, 128, 46, 0.09);
}

.faq-blue-pill-item.active .faq-plus-badge {
    background: var(--dap-green);
    color: #FFFFFF;
    border-color: var(--dap-green);
    transform: rotate(45deg);
}

.faq-blue-pill-item.active .faq-pill-body {
    max-height: 350px;
    padding-bottom: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .faq-wrap-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 15. TEAM & FUHRPARK SECTION ───────────────────────────────── */
.team-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.team-photos-container {
    position: relative;
    min-height: 360px;
}

.team-photo-base {
    width: 78%;
    height: 300px;
    border-radius: var(--radius-card);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.team-photo-overlap {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 60%;
    height: 220px;
    border-radius: var(--radius-card);
    object-fit: cover;
    border: 5px solid #FFFFFF;
    box-shadow: 0 16px 36px rgba(49, 114, 70, 0.18);
}

@media (max-width: 800px) {
    .team-layout-grid {
        grid-template-columns: 1fr;
    }
    .team-photos-container {
        min-height: 280px;
    }
}

/* ── 16. BOTTOM FULL-WIDTH CTA BANNER (Organic Wave Shape) ─────── */
.bottom-cta-banner-wrapper {
    position: relative;
    margin-top: 40px;
    background: transparent;
    width: 100%;
    overflow: hidden;
}

.bottom-cta-wave-svg {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: -1px;
    line-height: 0;
}

.bottom-cta-wave-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bottom-cta-banner {
    background: linear-gradient(135deg, #14802E 0%, #11290B 100%);
    color: #FFFFFF;
    padding: 40px 0 90px 0;
    text-align: center;
    position: relative;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.bottom-cta-banner h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.bottom-cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 60ch;
    margin: 0 auto 32px auto;
}

/* ── 17. FOOTER ────────────────────────────────────────────────── */
.footer {
    background: #FFFFFF;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: var(--dap-text-body);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dap-text-dark);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li a {
    color: var(--dap-text-body);
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--dap-green);
}

.footer-legal-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .section {
        padding: 55px 0;
    }
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-top: 135px;
        padding-bottom: 110px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(244, 255, 252, 0.98) 0%, rgba(244, 255, 252, 0.94) 100%);
    }

    .hero-title {
        font-size: clamp(1.8rem, 6.5vw, 2.35rem);
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .hero-subtext {
        font-size: 15.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-big-card .service-big-img {
        height: 200px;
    }

    .service-big-body {
        padding: 24px 18px;
    }

    .service-row-card {
        grid-template-columns: 1fr;
    }

    .service-row-img {
        width: 100%;
        height: 180px;
    }

    .service-row-body {
        padding: 20px 18px;
    }

    .features-round-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-round-card {
        padding: 20px 14px;
    }

    .location-inner-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-clean-card {
        padding: 26px 18px;
        border-radius: 20px;
    }

    .story-split-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .story-blue-container {
        padding: 36px 20px;
        border-radius: 20px 20px 0 0;
    }

    .story-photo-wrapper {
        min-height: 260px;
        margin-left: 0;
        border-radius: 0 0 20px 20px;
    }

    .overlap-showcase-bg {
        height: 260px;
    }

    .overlap-card-content {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -24px;
        margin-left: 8px;
        margin-right: 8px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .overlap-accent-circles {
        display: none;
    }

    .inhaberin-quote-section {
        padding: 55px 16px;
    }

    .inhaberin-portrait-img {
        width: 160px;
        height: 160px;
    }

    .inhaberin-quote-badge {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .inhaberin-quote-text {
        font-size: 1.12rem;
        line-height: 1.6;
    }

    .faq-wrap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-contact-card {
        padding: 28px 20px;
    }

    .faq-contact-card h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .team-layout-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bottom-cta-banner {
        padding: 40px 16px 56px 16px;
        border-radius: 0;
    }

    .bottom-cta-banner h2 {
        font-size: 1.8rem;
    }

    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-legal-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .mobile-call-bar {
        display: flex;
    }
    
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 500px) {
    .header {
        padding: 0 8px;
    }

    .header-inner {
        padding: 6px 12px;
        gap: 8px;
    }

    .logo-img {
        height: 38px;
        max-width: 145px;
        flex-shrink: 0;
    }

    .mobile-header-call-btn {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .header-cta-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .features-round-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-round-card {
        flex-direction: row;
        text-align: left;
        padding: 14px 18px;
        gap: 14px;
        align-items: center;
    }

    .feature-icon-bubble {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .feature-text-content {
        flex: 1;
        min-width: 0;
    }

    .feature-round-card h4 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .feature-round-card p {
        font-size: 13.5px;
        line-height: 1.4;
    }

    .bottom-cta-wave-svg {
        height: 28px;
    }

    .districts-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
    }

    .district-check-row {
        font-size: 14.5px;
        gap: 8px;
    }

    #main-booking-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    #main-booking-form > div[style*="display: flex"] {
        flex-direction: column !important;
    }
}

/* ── 18. MOBILE FLOATING CALL BAR ──────────────────────────────── */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    display: none;
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.mobile-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
}
