/* === VakMatch — Clean Professional Styling (Homedeal-inspired) === */

:root {
    --primary: #00A86B;
    --primary-dark: #008F5B;
    --primary-light: #E6F7F0;
    --secondary: #1A73E8;
    --accent: #F59E0B;
    --dark: #1A1A2E;
    --gray-900: #1F2937;
    --gray-700: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Top Bar === */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar span {
    font-weight: 500;
}

/* === Navbar === */
.navbar {
    background: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-svg {
    flex-shrink: 0;
}

.logo-accent {
    color: var(--primary);
}

.logo-footer {
    color: var(--white);
}

.logo-footer .logo-accent {
    color: #5EEAD4;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,168,107,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

/* === Hero === */
.hero {
    padding: 60px 0 50px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

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

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--dark);
}

.text-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* === Hero Form === */
.hero-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 28px;
}

.form-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* === Hero Proof === */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.hero-stat span {
    font-size: 13px;
    color: var(--gray-500);
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-300);
}

/* === Trust Bar === */
.trust-bar {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item svg {
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.trust-item span {
    font-size: 12px;
    color: var(--gray-500);
}

/* === Sections === */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.section-header p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 auto;
}

/* === Diensten === */
.diensten {
    padding: 60px 0;
    background: var(--white);
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dienst-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dienst-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.dienst-card:hover .dienst-img img {
    transform: scale(1.05);
}

.dienst-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.dienst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dienst-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dienst-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.dienst-card p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 14px;
    flex: 1;
}

.dienst-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dienst-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.dienst-rating {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.dienst-available {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 50px;
    text-align: center;
}

/* === Overige Diensten List === */
.diensten-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dienst-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.dienst-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* === Hoe Werkt Het === */
.hoe-werkt-het {
    padding: 60px 0;
    background: var(--gray-50);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.step {
    flex: 1;
    max-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.step-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 50px;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 50px;
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.steps-note {
    font-size: 13px;
    color: var(--gray-500);
}

/* === Stats === */
.stats {
    padding: 48px 0;
    background: var(--dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    opacity: 0.6;
}

/* === Reviews === */
.reviews {
    padding: 60px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
}

.review-author strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.review-author span {
    font-size: 12px;
    color: var(--gray-500);
}

.review-verified {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.reviews-trust {
    margin-top: 32px;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 8px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

/* === Prijzen === */
.prijzen {
    padding: 60px 0;
    background: var(--gray-50);
}

.prijs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.prijs-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.2s;
}

.prijs-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.prijs-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.prijs-range {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.prijs-card p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.prijs-bespaar {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* === Vakspecialist === */
.vakspecialist {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
}

.vakspec-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vakspec-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
}

.vakspec-text p {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.vakspec-list {
    list-style: none;
    margin-bottom: 28px;
}

.vakspec-list li {
    padding: 6px 0 6px 24px;
    font-size: 14px;
    opacity: 0.85;
    position: relative;
}

.vakspec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.vakspec-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vakspec-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 200px;
}

.vakspec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vakspec-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vakspec-stat {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.vakspec-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.vakspec-stat-label {
    font-size: 13px;
    opacity: 0.6;
}

/* === CTA Section === */
.cta-section {
    padding: 60px 0;
    background: var(--primary-light);
}

.cta-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.cta-content > p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 14px;
    border: 1px solid var(--gray-200);
}

.cta-form select,
.cta-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
}

.cta-form select:focus,
.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.cta-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid var(--gray-200);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,168,107,0.4); }
    70% { box-shadow: 0 0 0 8px rgba(0,168,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,168,107,0); }
}

/* === Form Success Message === */
.form-success {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === FAQ === */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 18px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 10px;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.4;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.6;
    padding: 3px 0;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.4;
}

.footer-payments {
    display: flex;
    gap: 12px;
}

.footer-payments span {
    font-size: 12px;
    opacity: 0.4;
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 4px;
}

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        gap: 12px;
        font-size: 11px;
    }

    .nav-links,
    .nav-actions .nav-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 40px 0 32px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .diensten-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .prijs-grid {
        grid-template-columns: 1fr;
    }

    .vakspec-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .section-header h2 {
        font-size: 24px;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat strong {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar-inner span:nth-child(3) {
        display: none;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}
