/* ===================================
   LESPRIJZEN INDEX - BLAUWE STYLING
   =================================== */
/* === HERO (GESYNCHRONISEERD MET CONTACT/AUTO) === */
.prices-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px; /* Zelfde hoogte als contact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/* Donkere overlay voor leesbaarheid van witte tekst */
.prices-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.prices-hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 6rem 1.5rem;
}

.prices-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: var(--primary-blue);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 147, 200, 0.2);
}

.prices-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Maakt titel schaalbaar op mobiel */
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Het witte gedeelte van de titel */
.prices-hero-content h1 span {
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
}

.prices-subtitle {
    font-size: 1.35rem;
    color: #ffffff; /* Wit zoals op de andere pagina's */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* Schaduw voor leesbaarheid op foto */
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .prices-hero {
        min-height: 400px;
    }
    
    .prices-hero-content .hero-badge {
        display: none; /* Verberg badge op mobiel voor ruimte */
    }

    .prices-hero-content h1 {
        font-size: 2.25rem;
        text-align: center;
    }

    .prices-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
}

/* === SELECTION GRID === */
.section-selection {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.selection-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 147, 200, 0.1);
    box-shadow: 0 15px 35px rgba(0, 77, 122, 0.08);
    display: flex;
    flex-direction: column;
}

.selection-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 77, 122, 0.15);
    border-color: var(--primary-blue);
}

.selection-image {
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-bg { background: linear-gradient(135deg, #0093c8 0%, #005a82 100%); }
.motor-bg { background: linear-gradient(135deg, #005a82 0%, #003d5b 100%); }

.icon-overlay {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease;
}

.selection-card:hover .icon-overlay {
    transform: scale(1.1) rotate(-5deg);
}

.selection-content {
    padding: 3rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selection-content h2 {
    font-size: 2rem;
    color: var(--primary-blue-dark);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.selection-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.selection-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f0f7ff;
    color: var(--primary-blue);
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.selection-card:hover .selection-btn {
    background: var(--primary-blue);
    color: var(--white);
}

/* === INFO BOX === */
.prices-info {
    padding-bottom: 8rem;
    background: #f0f7ff;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #003d5b 100%);
    padding: 4rem;
    border-radius: 40px;
    color: var(--white);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info-text h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.info-list li svg {
    color: var(--primary-blue-light);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .selection-grid { grid-template-columns: 1fr; padding: 0 1rem; }
    .info-list { grid-template-columns: 1fr; }
    .prices-hero-content h1 { font-size: 2.75rem; }
}