/* ===================================
   MOTOR LESPRIJZEN - LICHTBLAUWE STYLING (MATCH AUTO)
   =================================== */

/* === HEADER ALIGNMENT === */
header {
    background-color: #f0f9ff !important; /* Match met de lichte hero */
    border-bottom: 1px solid rgba(0, 147, 200, 0.1);
}

header nav ul li a, 
header .logo, 
header .mobile-menu-btn {
    color: var(--gray-900) !important; /* Donkere tekst voor leesbaarheid op lichtblauw */
}
/* === MOTOR HERO (SYNCHRONISATIE) === */
.motor-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 550px; /* Iets hoger voor de promo-box */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/* Overlay voor leesbaarheid */
.motor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    z-index: 2;
}

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

/* Hero Badge Styling */
.motor-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: 800;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.25);
}

/* De Titel (Blauw + Wit) */
.motor-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.motor-hero-content h1 span {
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Promo Box Styling */
.gear-promo-box {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* === MOBIEL: CENTRERING EN FIXES === */
@media (max-width: 768px) {
    .motor-hero { min-height: 450px; }
    .motor-hero-content .hero-badge { display: none; }
    
    .motor-hero-content h1 { 
        font-size: 2.25rem; 
        text-align: center;
    }
    
    .hero-subtitle { 
        font-size: 1.05rem; 
        text-align: center;
    }
    
    .gear-promo-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        width: 90%;
    }
}

/* === DUO DEAL === */
.section-duo-deal { padding: 5rem 0; background: #f0f7ff; }

.duo-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 32px;
    padding: 3.5rem;
    color: var(--white);
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 77, 122, 0.2);
}

.duo-visual { text-align: center; position: relative; }
.duo-badge {
    background: #ffcc00;
    color: var(--primary-blue-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-top: 1rem;
}

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

.price-val { font-size: 3rem; font-weight: 800; margin-bottom: 0.25rem; }

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

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

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

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

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

.motor-card.featured {
    border: 2px solid var(--primary-blue);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 147, 200, 0.08);
}

.card-header { padding: 2.5rem; text-align: center; background: #f0f7ff; border-bottom: 1px solid #e2e8f0; }
.m-badge { font-size: 0.8rem; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.m-price { font-size: 2.5rem; font-weight: 800; color: var(--primary-blue-dark); margin-top: 0.5rem; }

.card-body { padding: 2.5rem; text-align: center; flex-grow: 1; }
.m-includes { font-weight: 700; color: var(--gray-700); 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;
    color: var(--primary-blue); /* Blauw vinkje */
}
/* Voor donkere achtergronden (duo deal) */
.check-list.white li { 
    color: var(--white); 
}
.check-list.white li::before { 
    color: #ffcc00; 
}

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

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

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

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

/* === RETAKES === */
.section-retakes { padding: 6rem 0; background: #f8fafc; }
.retake-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.retake-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid #e0f2fe;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.retake-icon { font-size: 2.5rem; }
.retake-content h3 { color: var(--primary-blue-dark); margin-bottom: 0.5rem; font-weight: 800; }
.retake-content p { color: var(--gray-600); font-size: 0.95rem; }
.retake-price { font-size: 1.75rem; font-weight: 800; color: var(--primary-blue); margin-left: auto; }

/* === ADVICE SECTION === */
.section-motor-advice { padding: 6rem 0; background: var(--white); }
.advice-box {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #003d5b 100%);
    padding: 4rem;
    border-radius: 40px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 77, 122, 0.2);
}

.advice-content { position: relative; z-index: 2; max-width: 600px; }
.advice-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.advice-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25d366;
    color: var(--white);
    padding: 1.25rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover { transform: translateY(-3px); }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .duo-card { grid-template-columns: 1fr; text-align: center; padding: 2.5rem; }
    .package-grid { grid-template-columns: 1fr; }
    .retake-grid { grid-template-columns: 1fr; }
    .advice-box { flex-direction: column; text-align: center; padding: 3rem 2rem; }
    .retake-price { margin-left: 0; margin-top: 1rem; }
    .retake-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .motor-hero h1 { font-size: 2.5rem; }
}