/* === OPFRISRIJLESSEN SPECIFIEKE STYLING === */
/* === OPFRISRIJLESSEN HERO (SYNCHRONISATIE) === */
.opfris-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Ruimte voor de features en promo tekst */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/* Donkere overlay voor leesbaarheid */
.opfris-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

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

/* Hero Badge Styling */
.opfris-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) */
.opfris-hero-content h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

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

.hero-brand {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* De 3 kenmerken */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.hero-features span { 
    color: #ffffff;
    background: rgba(2, 132, 199, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

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

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .opfris-hero { min-height: 500px; }
    .opfris-hero-content .hero-badge { display: none; }
    
    .opfris-hero-content h1 { 
        font-size: 2rem; 
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-features span {
        width: fit-content;
    }

    /* Intro box aansluiting */
    .intro-premium-box {
        margin-top: -3rem;
        padding: 2.5rem 1.5rem;
    }
}

/* --- Intro --- */
.intro-premium-box {
    max-width: 900px;
    margin: -4rem auto 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 6px solid #0284c7;
}

.intro-premium-box h2 { 
    color: #0c4a6e; 
    margin-bottom: 1.5rem; 
}

.intro-premium-box p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.key-points {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.key-points p {
    font-size: 1.2rem;
    color: #0c4a6e;
    margin: 0.5rem 0;
}

/* --- Section Titles & Text --- */
.section-title { 
    text-align: center; 
    margin-bottom: 2rem; 
    font-size: 2.25rem; 
    color: #0c4a6e;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* --- When Section --- */
.section-when { padding: 6rem 0; }

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

.when-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.when-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.when-card h3 {
    font-size: 1.25rem;
    color: #0284c7;
    margin-bottom: 0.75rem;
}

.when-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.message-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

.message-box p {
    font-size: 1.15rem;
    color: #0c4a6e;
    margin: 0.5rem 0;
}

/* --- What We Practice Section --- */
.section-what-we-practice { padding: 6rem 0; background: #f8fafc; }

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

.practice-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    text-align: center;
    transition: all 0.3s ease;
}

.practice-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.practice-card h3 {
    font-size: 1.05rem;
    color: #0284c7;
    margin: 0;
}

.conclusion-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

.conclusion-box p {
    font-size: 1.15rem;
    color: #92400e;
    margin: 0.5rem 0;
}

/* --- Where Section --- */
.section-where { padding: 6rem 0; }

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

.where-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    text-align: center;
    transition: all 0.3s ease;
}

.where-card:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.where-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.where-card h3 {
    font-size: 1.15rem;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.where-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
}

.city-practice {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    border-left: 6px solid #0284c7;
}

.city-practice h3 {
    font-size: 1.35rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.city-practice p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* --- How It Works Section --- */
.section-how-it-works { padding: 6rem 0; background: #f8fafc; }

.steps-wrapper {
    max-width: 900px;
    margin: 3rem auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 6px solid #0284c7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.step-content p:last-child {
    margin-bottom: 0;
}

/* --- Own Car Section --- */
.section-own-car { padding: 6rem 0; }

.own-car-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.own-car-wrapper h2 {
    font-size: 2rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.own-car-wrapper p {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
}

/* --- Goal Section --- */
.section-goal { padding: 6rem 0; background: #f8fafc; }

.goal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.goal-wrapper h2 {
    font-size: 2.25rem;
    color: #0c4a6e;
    margin-bottom: 2rem;
}

.goal-statements {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 24px;
}

.goal-statements p {
    font-size: 1.25rem;
    color: #0c4a6e;
    margin: 1rem 0;
    line-height: 1.6;
}

/* --- FAQ Section --- */
.section-faq { padding: 6rem 0; }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 6px solid #0284c7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* --- Final CTA --- */
.section-final-cta { 
    padding: 8rem 0; 
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.section-final-cta h2 {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.cta-intro {
    font-size: 1.15rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-actions { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    margin: 3rem 0; 
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #0284c7;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background: #0369a1;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.4);
}

.btn-whatsapp {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #0284c7;
    border: 2px solid #0284c7;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-3px);
}

.cta-footer { 
    color: #475569;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Background utilities --- */
.bg-light { background: #f8fafc; }

/* --- Responsive --- */
@media (max-width: 968px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-premium-box {
        padding: 2rem;
        margin-top: -2rem;
    }
    
    .when-grid,
    .where-grid,
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .section-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .key-points,
    .message-box,
    .conclusion-box,
    .city-practice,
    .own-car-wrapper,
    .goal-statements {
        padding: 2rem;
    }
}