/* ===================================
   AUTO LESPRIJZEN - CUSTOM STYLING
   =================================== */

/* === HERO === */
.auto-prices-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auto-prices-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/overons.png') no-repeat center 20%;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}


.auto-prices-hero .container {
    position: relative;
    z-index: 10;
}

.auto-prices-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-blue-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lesson-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 147, 200, 0.1);
    color: var(--gray-700);
}

/* === FASTLANE === */
.section-fastlane { padding: 4rem 0; background: #f0f7ff; }

.fastlane-card {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #003d5b 100%);
    border-radius: 32px;
    padding: 3.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 25px 50px rgba(0, 77, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.fastlane-card::after {
    content: '🚀';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.1;
    transform: rotate(-15deg);
    pointer-events: none; /* 👈 Deze regel toevoegen */
}

.fastlane-badge {
    background: #ffcc00;
    color: #003d5b;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1rem;
}

.fastlane-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fastlane-price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.price-tag { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; }

.btn-fastlane {
    display: block;
    background: var(--white);
    color: var(--primary-blue-dark);
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin: 1.5rem 0;
    transition: transform 0.3s ease;
}

.btn-fastlane:hover { transform: scale(1.05); }

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.3);
}

/* === PACKAGE CARDS === */
.section-packages { padding: 6rem 0; background: var(--white); }

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.card-package {
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-package:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.1);
}

.card-top { padding: 2.5rem; text-align: center; background: #f0f7ff; border-radius: 24px 24px 0 0; }

.p-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.p-badge.yellow { color: #d97706; }

.p-price { font-size: 2.25rem; font-weight: 800; color: var(--primary-blue-dark); margin-top: 1rem; }

.card-body { padding: 2.5rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }

.p-includes { font-weight: 600; color: var(--gray-600); margin-bottom: 1.5rem; }

/* === LISTS === */
.check-list { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.check-list li { 
    padding-left: 1.75rem; 
    position: relative; 
    margin-bottom: 0.75rem;
    color: var(--gray-700); /* Donkere tekst voor cards */
}
.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    font-weight: 800;
}
.check-list.blue li::before { color: var(--primary-blue); }
.check-list.white li { color: var(--white); } /* Witte tekst voor donkere achtergrond */
.check-list.white li::before { color: #ffcc00; }

/* === ADDITIONAL & REFRESH === */
.section-additional { padding: 4rem 0; background: #f8fafc; }
.additional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.mini-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue-dark);
    margin: 0;
}

.mini-card p {
    color: var(--gray-600);
    margin: 0;
    flex-grow: 1;
    line-height: 1.5;
}

.mini-price { 
    font-weight: 800; 
    color: var(--primary-blue); 
    font-size: 1.75rem;
    text-align: right;
}

.section-refresh { padding: 6rem 0; }
.refresh-content {
    background: #f0f7ff;
    padding: 4rem;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 2px solid var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.refresh-badge { color: var(--primary-blue); font-weight: 800; letter-spacing: 1px; }

.refresh-price { text-align: center; background: var(--white); padding: 3rem; border-radius: 24px; }
.price-val { font-size: 3rem; font-weight: 800; color: var(--primary-blue-dark); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .package-grid, .fastlane-body, .refresh-content { grid-template-columns: 1fr; }
    .fastlane-card, .refresh-content { padding: 2rem; text-align: center; }
    .check-list { display: inline-block; }
}

@media (max-width: 768px) {
    .auto-prices-hero h1 { font-size: 2.25rem; }
    .additional-grid { grid-template-columns: 1fr; }
    
    /* Verberg auto op mobiel */
    .auto-prices-hero::after {
        display: none;
    }
    
    /* Fix mini-cards op mobiel */
    .mini-card {
        padding: 1.5rem;
    }
    
    .mini-card h3 {
        font-size: 1.1rem;
    }
    
    .mini-card p {
        font-size: 0.9rem;
    }
    
    .mini-price {
        font-size: 1.5rem;
        text-align: left;
        margin-top: 0.5rem;
    }
    
    /* Fix FastLane button op mobiel */
    .btn-fastlane {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Fix hero subtitle */
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Fix lesson info badge */
    .lesson-info-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Fix FastLane card padding */
    .fastlane-card {
        padding: 2rem 1.5rem;
    }
    
    .fastlane-price-box {
        padding: 2rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .fastlane-card::after {
        display: none;
    }
}
.auto-prices-hero .hero-subtitle {
    color: #ffffff; /* Maakt de tekst wit */
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem; /* Centreert de tekst en geeft ruimte tot de badge */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Zorgt dat wit leesbaar is op de foto */
    font-weight: 500;
}

/* De basis styling (voor het woord 'Tarieven') */
.auto-prices-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-blue-dark); /* Het blauwe gedeelte */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* Een schaduw is hier extra belangrijk omdat wit op een foto snel wegvalt */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
}

/* De styling voor het witte gedeelte */
.auto-prices-hero h1 span {
    color: #ffffff; /* Maakt de rest wit */
    font-size: inherit; /* Houdt de grootte exact gelijk */
    font-weight: inherit; /* Houdt de dikte exact gelijk */
}
@media (max-width: 768px) {
    /* De Hero container zelf centreren */
    .auto-prices-hero {
        padding: 4rem 0;
        min-height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Zorg dat de afbeelding ZICHTBAAR blijft op mobiel */
    .auto-prices-hero::after {
        display: block !important; /* Verwijder de 'display: none' die er stond */
        background-position: center center; /* Centreer de foto voor mobiel */
        opacity: 0.8; /* Optioneel: iets lichter maken voor betere tekst-leesbaarheid */
    }

    /* De content wrapper centreren */
    .auto-prices-hero .hero-content {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 10;
        padding: 0 1.5rem;
    }

    /* Tekstgroottes optimaliseren voor mobiel */
    .auto-prices-hero h1 { 
        font-size: 2.25rem; 
        text-align: center;
    }
    
    .auto-prices-hero .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    /* De witte badge onderaan centreren op mobiel */
    .lesson-info-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        border-radius: 20px;
        font-size: 0.9rem;
    }
}
.fastlane-main-title {
    font-size: 4rem; /* Veel groter voor dominantie */
    font-weight: 900; /* Extra dik */
    text-transform: uppercase; /* Optioneel: maakt het nog krachtiger */
    margin-top: 2rem; /* Duwt de zin naar beneden vanaf de badge */
    margin-bottom: 2.5rem; /* Ruimte tot de content eronder */
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobiele optimalisatie voor de grote titel - VERBETERDE VERSIE */
@media (max-width: 768px) {
    .fastlane-main-title {
        font-size: 1.25rem !important; /* Dubbel zo klein als 2.5rem */
        margin-top: 1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem;
        line-height: 1.2 !important;
    }
    
    /* Zorg dat de FastLane header meer ruimte heeft */
    .fastlane-header {
        padding-bottom: 1rem;
        text-align: center;
    }
    
    /* Geef de hele FastLane card meer ademruimte op mobiel */
    .fastlane-card {
        padding: 2rem 1.5rem !important;
        overflow: visible !important;
    }
    
    /* BELANGRIJKSTE FIX: Maak de body vertical op mobiel */
    .fastlane-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    /* De info sectie volledig breed */
    .fastlane-info {
        width: 100% !important;
        flex: none !important;
        margin-top: 0 !important;
    }
    
    .fastlane-info h2 {
        font-size: 1.5rem;
    }
    
    /* De prijsbox ook volledig breed en niet te groot */
    .fastlane-price-box {
        width: 100% !important;
        flex: none !important;
        margin-top: 0 !important;
        padding: 2rem 1.5rem !important;
    }
    
    .price-tag {
        font-size: 2.5rem !important;
    }
    
    /* Geef de badge ook wat ruimte */
    .fastlane-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
/* 1. Het centreren van de prijsbox ten opzichte van de linker tekst */
.fastlane-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start; /* Veranderd van 'center' naar 'start' om het blok naar boven te halen */
}

/* 2. De tekst 'Beperkte plekken per maand' kleiner maken */
.fastlane-price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-top: 10px; /* Optioneel: hiermee lijn je hem precies uit met de eerste regel tekst links */
}

/* De zin 'Beperkte plekken per maand' kleiner maken */
.fastlane-price-box .note {
    font-size: 0.75rem; /* Nog kleiner gemaakt (was 0.85rem) */
    opacity: 0.7;       /* Iets transparanter gemaakt voor minder dominantie */
    margin-top: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* De grote titel nog dominanter */
.fastlane-main-title {
    margin-top: 1.5rem; 
    font-size: 5rem; /* Verhoogd naar 5rem voor maximale impact */
    font-weight: 900;
    line-height: 1;
}

/* 3. Extra witruimte boven de Fastlane titel voor de dominantie */
.fastlane-main-title {
    margin-top: 2.5rem; /* Iets meer ruimte vanaf de gele badge */
    font-size: 4.5rem;   /* Iets groter voor maximale impact */
}

/* Mobiele fix: zorg dat de prijsbox op mobiel niet teveel ruimte inneemt */
@media (max-width: 1024px) {
    .fastlane-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Forceer de container en lijn alles bovenaan uit */
.fastlane-body {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start !important; /* Forceert beide kolommen naar de absolute bovenkant */
    justify-content: space-between;
    gap: 3rem;
    padding-top: 0;
}

/* Zorg dat de prijsbox geen interne ruimte heeft die hem omlaag duwt */
.fastlane-price-box {
    margin-top: 0 !important; /* Verwijdert alle marge aan de bovenkant */
    padding-top: 2rem !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1; /* Geeft het blok een vaste verhouding */
}

/* De linker tekstkolom ook strak bovenaan */
.fastlane-info {
    flex: 1.5;
    margin-top: 0 !important;
}

/* De boodschap nog dominanter en lager geplaatst zoals gevraagd - ALLEEN VOOR DESKTOP */
@media (min-width: 769px) {
    .fastlane-main-title {
        font-size: 5.5rem !important; /* Nog groter voor maximale dominantie */
        font-weight: 900;
        margin-top: 3rem !important; /* Ruimte boven de zin om hem te laten zakken */
        margin-bottom: 3rem;
        line-height: 1;
        text-transform: uppercase;
    }
}

/* De kleine zin onderaan de prijsbox */
.fastlane-price-box .note {
    font-size: 0.7rem !important; /* Extra klein */
    text-transform: none;
    opacity: 0.7;
    margin-top: 1rem;
}