/*
Theme Name: Onderhoudsland
Description: Custom WordPress theme voor Onderhoudsland - Auto onderhoud waar je mee weg rijdt
Version: 1.0
Author: Onderhoudsland
*/

/* Google Fonts are enqueued via functions.php to avoid @import blocking */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove white borders from all images */
img {
    border: none;
    border-bottom: none;
}

:root {
    /* Brand Colors */
    --primary-blue: #347fc2;
    --accent-orange: #f9af3d;
    --secondary-orange: #f9af3d;
    --cta-green: #95c11f;
    --light-green: #f3f7e8;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;

    /* Typography */
    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Layout */
    --container-max: 1600px;
    --container-padding: 40px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h1 .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h2 .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

h3 {
    font-size: 2rem;
}

h3 .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    max-width: 400px;
}

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

.btn-primary:hover {
    background-color: #7ba319;
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--cta-green) !important;
    color: var(--white) !important;
}

.btn-green:hover {
    background-color: #7ba319 !important;
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e89b2a;
    transform: translateY(-2px);
}

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

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

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Utility Classes */
.text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.text-uppercase {
    text-transform: uppercase;
}

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

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

.text-green {
    color: var(--cta-green);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

.bg-light-green {
    background-color: var(--light-green);
}

.section-padding {
    padding: 4rem 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* Header Styles - Exact Match */

/* Topbar with USPs - New Implementation */
.topbar {
    background-color: #0350B5;
    
    margin: 0 8px;
    width:100%;
    margin: 0 auto;
}

.topbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    height: 46px;
}

/* Desktop: Horizontal USPs */
.usp-horizontal-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    height: 100%;
}

.usp-horizontal-container .usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile: Marquee Slider */
.usp-marquee-container {
    display: none;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.usp-marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: marqueeScroll 20s linear infinite;
    gap: 60px;
}

.usp-marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.usp-circle {
    background-color: #B6CE32;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-check {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Behavior */
@media (max-width: 992px) {
    .usp-horizontal-container {
        display: none;
    }

    .usp-marquee-container {
        display: block;
    }
}

/* Main Header */
.main-header {
    background-color: white;
    padding: 10px 0;
}

.header-container {
    max-width: 95%;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 400px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 20px 40px;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-main {
    margin: 10px 0 0 0;
}

.logo-link {
    display: block;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.mobile-logo-link {
    display: block;
    transition: var(--transition);
}

.mobile-logo-link:hover {
    opacity: 0.8;
}

.service-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    background-color: #347fc2;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tagline {
    color: #6c757d;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 6px;
    letter-spacing: 0.3px;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: none;
    margin: 0;
}

.search-container {
    position: relative;
    background-color: white;
    border: 1px solid #cdd0d9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    overflow: visible;
    height: 60px;
    padding: 10px;
}

.search-btn {
    background-color: #09A5E8;
    color: white;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 8px;
    margin-right: 10px;
}

.search-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    color: #495057;
    outline: none;
    height: 100%;
}

.search-field::placeholder {
    color: #adb5bd;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.action-icon {
    position: relative;
    color: #6c757d;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    border-radius: 12px;
}

.action-icon:hover {
    color: #347fc2;
    background-color: rgba(52, 127, 194, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 127, 194, 0.2);
}

.notification-icon {
    position: relative;
}

.red-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.user-label {
    font-size: 14px;
    color: #6c757d;
}

.btn-login {
    background-color: #09A5E8;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.btn-login:hover {
    background-color: #0891d1;
}

/* Login/User Section Logic - Handled by PHP conditionals in header.php */
.user-section {
    display: flex;
}

.btn-login {
    display: flex;
}

.mobile-toggle {
    display: none;
    background: rgba(52, 127, 194, 0.1);
    border: 2px solid #347fc2;
    font-size: 28px;
    color: #347fc2;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 52px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 127, 194, 0.2);
}

.mobile-toggle:hover {
    background-color: #347fc2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(52, 127, 194, 0.3);
}

.mobile-toggle:focus {
    outline: 2px solid #347fc2;
    outline-offset: 2px;
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Desktop Navigation - Improved UX */
.desktop-nav {
    background-color: transparent;
    border-bottom: none;
    padding: 0;
    box-shadow: none;
}

/* Hide mobile navigation by default */
.main-nav:not(.desktop-nav) {
    display: none;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
}

.nav-left ul,
.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-left li,
.nav-right li {
    position: relative;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    padding: 16px 20px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.main-nav a:hover {
    color: #347fc2;
    background-color: transparent;
    transform: translateY(-1px);
}

.main-nav a.active {
    color: #347fc2;
    background-color: transparent;
    font-weight: 600;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #347fc2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

/* Menu styling for service links */
.scroll-to-packages {
    cursor: pointer;
}

/* ===== MOBILE MENU ELEMENTS (Hidden by default) ===== */
.mobile-menu-overlay {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop - 1200px and up */
@media (max-width: 1400px) {
    .header-container {
        max-width: 1400px;
        padding: 15px 30px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-img {
        width: 350px;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 20px 30px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-img {
        width: 300px;
        max-width: 300px;
    }

    .logo-section {
        order: 1;
        align-items: center;
    }

    .search-section {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .header-actions {
        order: 3;
        justify-content: center;
        gap: 2rem;
    }

    .service-badges {
        justify-content: center;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .topbar-container {
        padding: 8px 20px;
    }

    .header-container {
        padding: 15px 25px;
        gap: 1.2rem;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-img {
        width: 280px;
        max-width: 280px;
    }

    .search-section {
        max-width: 500px;
    }

    .header-actions {
        gap: 1.5rem;
    }
}

/* Small Tablet - 992px */
@media (max-width: 992px) {
    .topbar {
        padding: 8px 0;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        text-align: left;
    }

    .logo-section {
        order: 1;
        align-items: flex-start;
    }

    .header-actions {
        order: 2;
        justify-content: flex-end;
        gap: 1rem;
    }

    .search-section {
        order: 3;
        grid-column: 1 / -1;
        margin-top: 1rem;
        max-width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hide desktop navigation on tablet/mobile */
    .desktop-nav {
        display: none;
    }

    /* Show mobile menu overlay and panel */
    .mobile-menu-overlay {
        display: block;
    }

    /* Show mobile navigation */
    .main-nav:not(.desktop-nav) {
        display: block;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* ===== MOBILE TOPBAR ===== */
    .topbar {
        padding: 8px 0;
    }

    .topbar-container {
        padding: 0 15px;
        height: 40px;
    }

    /* ===== MOBILE HEADER ===== */
    .main-header {
        padding: 8px 0;
    }

    .header-container {
        grid-template-columns: 1fr auto auto;
        gap: 25px;
        padding: 12px 15px;
        align-items: center;
        text-align: left;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-section {
        order: 1;
        align-items: flex-start;
    }

    .logo-img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .header-actions {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        justify-content: flex-end;
    }

    .mobile-toggle {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: rgba(52, 127, 194, 0.1);
        border: 2px solid #347fc2;
        font-size: 26px;
        color: #347fc2;
        cursor: pointer;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(52, 127, 194, 0.2);
    }

    .mobile-toggle:hover {
        background-color: #347fc2;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(52, 127, 194, 0.3);
    }

    .mobile-toggle:active {
        transform: scale(0.95);
    }

    /* Hide search section on mobile - will be in slide-out menu */
    .search-section {
        display: none;
    }

    /* Hide user info on mobile, show simplified login */
    .user-section {
        display: none;
    }

    .btn-login {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 80px;
    }

    /* ===== CORPORATE MOBILE NAVIGATION 2025 ===== */

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu Panel - Clean Corporate Design */
    .main-nav:not(.desktop-nav) {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(380px, 85vw);
        height: 100vh;
        background: #ffffff;
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        overflow-y: hidden;
        overflow-x: hidden;
        display: block;
    }

    .main-nav:not(.desktop-nav).active {
        right: 0;
    }

    /* Corporate Mobile Nav Container */
    .main-nav:not(.desktop-nav) .nav-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0;
        background: #ffffff;
    }

    /* Corporate Header Section */
    .mobile-menu-header {
        padding: 20px 24px 16px;
        border-bottom: 1px solid #e9ecef;
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 10;
        width: 100%;
    }

    .mobile-menu-close {
        position: absolute;
        top: 16px;
        right: 24px;
        width: 36px;
        height: 36px;
        border: none;
        background: #f8f9fa;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 16px;
        color: #6c757d;
    }

    .mobile-menu-close:hover {
        background: #e9ecef;
        color: #495057;
    }

    .mobile-menu-logo {
        text-align: center;
        margin-bottom: 12px;
    }

    .mobile-menu-logo img {
        width: 150px;
        height: auto;
    }

    /* Corporate Search Section */
    .mobile-menu-search {
        margin-bottom: 0;
        padding: 0 24px;
    }

    .mobile-menu-search .search-container {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        height: 42px;
        padding: 3px;
        transition: all 0.2s ease;
    }

    .mobile-menu-search .search-container:focus-within {
        border-color: #347fc2;
        box-shadow: 0 0 0 2px rgba(52, 127, 194, 0.1);
    }

    .mobile-menu-search .search-btn {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        margin-right: 3px;
        background: #347fc2;
        transition: all 0.2s ease;
    }

    .mobile-menu-search .search-btn:hover {
        background: #2968a3;
    }

    .mobile-menu-search .search-field {
        font-size: 15px;
        font-weight: 400;
        color: #495057;
    }

    /* Corporate Content Section */
    .mobile-menu-content {
        flex: 1;
        padding: 0;
        overflow-y: hidden;
        width: 100%;
        background: #ffffff;
    }

    .main-nav:not(.desktop-nav) .nav-left,
    .main-nav:not(.desktop-nav) .nav-right {
        margin-bottom: 0;
        padding: 0;
        width: 100%;
        background: #ffffff;
    }

    .main-nav:not(.desktop-nav) .nav-left {
        border-bottom: 1px solid #e9ecef;
    }

    /* Corporate Service Section Header - Better Separation */
    .service-section-header {
        padding: 24px 24px 16px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
        width: 100%;
        margin: 16px 0 0 0;
    }

    .service-section-header h3 {
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 600;
        color: #347fc2;
        margin: 0;
        text-align: right;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .main-nav:not(.desktop-nav) .nav-left ul,
    .main-nav:not(.desktop-nav) .nav-right ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .main-nav:not(.desktop-nav) .nav-left li,
    .main-nav:not(.desktop-nav) .nav-right li {
        width: 100%;
        border-bottom: 1px solid #f1f3f4;
    }

    .main-nav:not(.desktop-nav) .nav-left li:last-child {
        border-bottom: none;
    }

    .main-nav:not(.desktop-nav) .nav-right li:last-child {
        border-bottom: none;
    }

    /* Corporate Mobile Menu Links - Compact Spacing */
    .main-nav:not(.desktop-nav) a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 16px 24px;
        margin: 0;
        border-radius: 0;
        background: #ffffff;
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.3;
        position: relative;
        text-align: right;
        width: 100%;
    }

    .main-nav:not(.desktop-nav) a:hover,
    .main-nav:not(.desktop-nav) a:focus {
        background-color: #ffffff;
        color: #347fc2;
    }

    .main-nav:not(.desktop-nav) a.active {
        background-color: #ffffff;
        color: #347fc2;
        font-weight: 600;
    }



    /* Corporate Footer Section */
    .mobile-menu-footer {
        padding: 0;
        border-top: 1px solid #e9ecef;
        background: #f8f9fa;
        margin-top: auto;
        width: 100%;
    }

    .mobile-menu-contact {
        margin-bottom: 0;
        padding: 16px 24px;
        width: 100%;
        background: #f8f9fa;
    }

    .mobile-menu-contact h4 {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 600;
        color: #495057;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        text-align: right;
    }

    .mobile-menu-contact h4 ion-icon {
        font-size: 18px;
        color: #347fc2;
        order: 2;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        line-height: 1.4;
        text-align: right;
        width: 100%;
    }

    .contact-info .location {
        font-weight: 600;
        color: #347fc2;
    }

    .contact-info .address {
        color: #6c757d;
        font-weight: 400;
    }

    .contact-info .email {
        color: #347fc2;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .contact-info .email:hover {
        color: #2968a3;
        text-decoration: underline;
    }

    .mobile-menu-legal {
        padding: 14px 24px 16px;
        border-top: 1px solid #dee2e6;
        font-size: 11px;
        color: #6c757d;
        line-height: 1.3;
        text-align: right;
        width: 100%;
        background: #f8f9fa;
    }

    .mobile-menu-legal .legal-item {
        margin-bottom: 4px;
    }

    /* ===== CORPORATE MOBILE MENU - NO ANIMATIONS ===== */

    /* Focus management for accessibility */
    .main-nav a:focus {
        outline: 2px solid #347fc2;
        outline-offset: 2px;
    }
}

/* ===== CORPORATE DESIGN - MINIMAL ANIMATIONS ===== */
/* No menu item animations for clean corporate look */

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .mobile-toggle,
    .main-nav,
    .nav-container,
    .main-nav a {
        transition: none;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-toggle {
        border: 2px solid currentColor;
    }

    .main-nav a {
        border: 1px solid currentColor;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    /* ===== SMALL MOBILE TOPBAR ===== */
    .topbar-container {
        padding: 0 10px;
        height: 36px;
    }

    .usp-circle {
        width: 20px;
        height: 20px;
    }

    .usp-check {
        font-size: 11px;
    }

    /* ===== SMALL MOBILE HEADER ===== */
    .header-container {
        padding: 10px 12px;
        gap: 25px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .logo-img {
        width: 180px;
        max-width: 180px;
    }

    .header-actions {
        gap: 0.6rem;
    }

    .btn-login {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 70px;
    }

    .mobile-toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    /* ===== SMALL MOBILE SEARCH ===== */
    .search-section {
        margin-top: 0.8rem;
    }

    .search-container {
        padding: 0;
    }

    .search-field {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .search-btn {
        padding: 10px;
    }

    /* ===== CORPORATE SMALL MOBILE NAVIGATION ===== */
    .main-nav {
        width: min(360px, 90vw);
    }

    .mobile-menu-header {
        padding: 18px 20px 14px;
    }

    .mobile-menu-logo img {
        width: 140px;
    }

    .mobile-menu-search {
        padding: 0 20px;
    }

    .mobile-menu-search .search-container {
        height: 40px;
    }

    .main-nav a {
        padding: 14px 20px;
        font-size: 14px;
    }

    .service-section-header {
        padding: 16px 20px 12px;
        margin: 10px 0 0 0;
    }

    .service-section-header h3 {
        font-size: 12px;
    }

    .mobile-menu-contact {
        padding: 14px 20px;
    }

    .mobile-menu-legal {
        padding: 12px 20px 14px;
    }

    .mobile-menu-contact h4 {
        font-size: 14px;
    }

    .contact-info {
        font-size: 12px;
    }

    /* ===== GENERAL SMALL MOBILE ===== */
    .service-badges {
        flex-direction: column;
        gap: 0.2rem;
    }

    .action-icon {
        font-size: 20px;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .header-container {
        padding: 8px 10px;
        margin-left: 8px;
        margin-right: 8px;
        gap: 25px;
    }

    .logo-img {
        width: 160px;
        max-width: 160px;
    }

    .topbar-container {
        padding: 0 8px;
        height: 32px;
    }

    .main-nav {
        width: min(340px, 95vw);
    }

    .mobile-menu-header {
        padding: 16px 16px 12px;
    }

    .mobile-menu-logo img {
        width: 120px;
    }

    .mobile-menu-close {
        width: 32px;
        height: 32px;
        top: 14px;
        right: 16px;
    }

    .mobile-menu-search {
        padding: 0 16px;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 13px;
    }

    .service-section-header {
        padding: 14px 16px 10px;
        margin: 8px 0 0 0;
    }

    .service-section-header h3 {
        font-size: 11px;
    }

    .mobile-menu-contact {
        padding: 12px 16px;
    }

    .mobile-menu-legal {
        padding: 10px 16px 12px;
    }

    .mobile-menu-contact h4 {
        font-size: 14px;
    }

    .contact-info {
        font-size: 12px;
    }

    .mobile-menu-legal {
        font-size: 11px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: white;
    padding: 0;
}

.hero-background {
    position: relative;
    background: url('assets/images/onderhoudsland-homepage-hero.jpg') center/cover;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 75px 20px;
}

.hero-diagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(60deg,
        rgba(52, 127, 194, 0.6) 0%,
        rgba(52, 127, 194, 0.4) 40%,
        transparent 70%);
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

/* Hero Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.tagline-line {
    width: 30px;
    height: 2px;
    background-color: white;
}

.tagline-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    max-width: 600px;
}

/* Hero title highlight orange - same size as rest of heading */
.hero-title .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

.highlight-orange {
    color: #f9af3d;
}

/* Hero Subtitle Box */
.hero-subtitle-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(52, 127, 194, 0.9);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 3rem;
    max-width: 500px;
}

.subtitle-arrow {
    background-color: #f9af3d;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.subtitle-arrow ion-icon {
    color: white;
    font-size: 20px;
}

.hero-subtitle-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: white;
}

/* Kenteken Section */
.hero-kenteken-section {
    max-width: 400px;
}

.kenteken-label {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-kenteken-form {
    position: relative;
}

.kenteken-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f9af3d;
    border-radius: 8px;
    overflow: hidden;
    height: 60px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.kenteken-input-wrapper:focus-within {
    border-color: var(--primary-blue);
}

.nl-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    background-color: #347fc2;
    height: 100%;
}

.flag-stars {
    width: 20px;
    height: 15px;
    background-color: #003DA5;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-circle {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #FFD700 30%, #003DA5 30%);
    border-radius: 50%;
}

.flag-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.kenteken-input-wrapper input {
    flex: 1;
    height: 100%;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 20px 0 20px;
    padding-right: 60px; /* Extra ruimte voor submit button */
    text-transform: uppercase;
    letter-spacing: 3px;
    outline: none;
}

.kenteken-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.kenteken-input-wrapper input:focus {
    background-color: transparent;
}

/* Error message styling for kenteken forms */
.kenteken-error-message {
    background-color: white;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: none;
    max-width: 400px;
}

/* Kenteken CTA Section Max Width - Consistent styling for all kenteken sections */
.kenteken-cta-section,
.hero-kenteken-section {
    max-width: 400px;
}

/* Ensure all kenteken forms have consistent styling */
.kenteken-cta-form,
.hero-kenteken-form {
    position: relative;
}

/* Kenteken CTA Instruction Styling - Consistent across all pages */
.kenteken-cta-instruction {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    max-width: 400px;
}

/* Kenteken Success Validation Bar */
.kenteken-success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
    max-width: 400px;
    animation: slideInUp 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kenteken-success-message.show {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Car Info Modal Styling */
.car-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.car-info-modal .modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.car-info-modal .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-info-modal .modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
}

.car-info-modal .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.car-info-modal .modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.car-info-modal .modal-body {
    padding: 24px;
}

.car-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.car-info-grid .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.car-info-grid .info-item strong {
    color: #333;
    font-weight: 600;
}

.car-info-grid .info-item span {
    color: #666;
    font-weight: 500;
}

.car-info-modal .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.car-info-modal .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.car-info-modal .btn-primary {
    background: var(--primary-blue);
    color: white;
}

.car-info-modal .btn-primary:hover {
    background: #2a6ba8;
    transform: translateY(-1px);
}

.car-info-modal .btn-outline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.car-info-modal .btn-outline:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .car-info-grid {
        grid-template-columns: 1fr;
    }

    .car-info-modal .modal-content {
        width: 95%;
        margin: 20px;
    }

    .car-info-modal .modal-footer {
        flex-direction: column;
    }

    .car-info-modal .btn {
        width: 100%;
        text-align: center;
    }
}

/* Kenteken Submit Button - Show on typing with animation */
.kenteken-submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background-color: var(--primary-blue);
    border: none;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.2rem;
    color: white;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.kenteken-submit-btn.show {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: translateY(-50%) scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scale(1.2) rotate(-90deg);
    }
    100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.kenteken-submit-btn:hover {
    background-color: #2a6ba3;
    transform: translateY(-50%) scale(1.1);
    animation: none; /* Stop pulse on hover */
}

/* Subtle pulse when button is visible */
.kenteken-submit-btn.show:not(:hover) {
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
               subtlePulse 2s ease-in-out 0.5s infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(52, 127, 194, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(52, 127, 194, 0);
    }
}

.kenteken-submit-btn ion-icon {
    color: white;
    font-size: 20px;
}



/* General Section Centering */
.section-padding {
    padding: 4rem 0;
}

.container {
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
}

/* Legacy kenteken form styles - kept for other forms */
.kenteken-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.kenteken-form input::placeholder {
    color: var(--text-light);
    font-weight: normal;
    letter-spacing: normal;
}

/* Kenteken CTA Instruction */
.kenteken-cta-instruction {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    max-width: 300px;
    text-align: left;
}

/* Typewriter Animation for Kenteken Input */
.kenteken-input-typewriter {
    position: relative;
}

.kenteken-input-typewriter::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-weight: normal;
    letter-spacing: 2px;
    pointer-events: none;
    opacity: 0.7;
    animation: typewriter 3s infinite;
}

@keyframes typewriter {
    0%, 20% { content: ""; }
    25% { content: "1"; }
    30% { content: "12"; }
    35% { content: "12-"; }
    40% { content: "12-A"; }
    45% { content: "12-AB"; }
    50% { content: "12-AB-"; }
    55% { content: "12-AB-1"; }
    60% { content: "12-AB-12"; }
    80%, 100% { content: "12-AB-12"; }
}

/* Kenteken Duidelijkheid Section */
.kenteken-duidelijkheid {
    padding: 120px 0;
    background-color: white;
}

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

/* Linkerkolom: Visueel */
.kenteken-visual {
    position: relative;
    height: 600px;
}

.monteur-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    z-index: 2;
}

.monteur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.monteur-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.werkplaats-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 45%;
    z-index: 1;
}

.werkplaats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.werkplaats-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Image Tooltips */
.image-tooltip {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
    max-width: 200px;
    line-height: 1.4;
}

.monteur-image:hover .image-tooltip,
.werkplaats-image:hover .image-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(52, 127, 194, 0.9);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 127, 194, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 127, 194, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 127, 194, 0);
    }
}

/* Rechterkolom: Tekst en badges */
.kenteken-text {
    position: relative;
}

.usp-tagline {
    font-size: 0.9rem;
    color: #347fc2;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.kenteken-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
}

.highlight-orange {
    color: #f9af3d;
}



.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.check-icon {
    background-color: #B6CE32;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.satisfaction-badge img{
    position: absolute;
    top: 20px;
    right: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-content {
    transform: rotate(-45deg);
    text-align: center;
    color: white;
}

.badge-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

/* Diensten Pakketten Section */
.diensten-pakketten {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.diensten-pakketten h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.diensten-pakketten .highlight {
    color: var(--accent-orange);
}

/* Service Toggle */
.service-toggle-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem 0;
}

.service-toggle {
    display: flex;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.toggle-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

.toggle-btn:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), #2a6ba8);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(52, 127, 194, 0.3);
}

.toggle-btn i {
    font-size: 1.1rem;
}

/* Appointment page specific styling */
.form-section .service-toggle-container {
    margin: 1.5rem 0;
}

.form-section .service-toggle {
    max-width: 400px;
    margin: 0 auto;
}

.pakket-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pakket-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pakket-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pakket-card.featured {
    border-color: var(--cta-green);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(149, 193, 31, 0.2);
}

.pakket-icon {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.pakket-icon i {
    color: var(--accent-orange);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.pakket-icon .animated-star {
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.pakket-label {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 auto 1rem;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(52, 127, 194, 0.3);
    transition: all 0.3s ease;
}

.pakket-label.prominent-label {
    font-size: 1rem;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-blue), #2a6ba8);
    box-shadow: 0 6px 20px rgba(52, 127, 194, 0.4);
}

.pakket-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pakket-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.pakket-price small {
    font-size: 1rem;
    color: var(--text-light);
}

.pakket-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}

.pakket-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pakket-features li i {
    color: var(--cta-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Improved Pakket Features Section */
.pakket-features-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pakket-features-section:hover {
    transform: translateY(-2px);
}

.pakket-features-section h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pakket-features-section h4::before {
    content: "✓";
    background-color: var(--cta-green);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.pakket-features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: left;
    padding: 0;
}

.pakket-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 8px 0;
    border-bottom: 1px solid rgba(52, 127, 194, 0.1);
    transition: all 0.2s ease;
}

.pakket-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pakket-features li:hover {
    background-color: rgba(52, 127, 194, 0.05);
    padding-left: 8px;
    border-radius: 4px;
}

.pakket-features li i {
    color: var(--cta-green);
    font-size: 0.9rem;
    flex-shrink: 0;
    background-color: rgba(149, 193, 31, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pakket-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Waarom wij de beste zijn Section */
.waarom-beste {
    padding: 10rem 0;
}

.waarom-beste-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.waarom-beste-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.waarom-beste-text h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.usp-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.usp-list li i {
    color: var(--cta-green);
    font-size: 1.2rem;
    background-color: rgba(149, 193, 31, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    background-color: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background-color: rgba(52, 127, 194, 0.1);
    color: var(--primary-blue);
}

.tab-btn.active {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 127, 194, 0.3);
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

/* Comparison Card */
.comparison-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.service-header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.service-header h4 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.2rem;
}

/* Price Comparison */
.price-comparison {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.our-price {
    background-color: rgba(149, 193, 31, 0.1);
    padding: 16px 12px;
    border-radius: 8px;
    border: 2px solid var(--cta-green);
    margin-bottom: 8px;
}

.price-row.our-price .company {
    font-weight: 700;
    color: var(--cta-green);
}

.price-row.our-price .price {
    font-weight: 700;
    color: var(--cta-green);
    font-size: 1.2rem;
}

.price-row.competitor {
    opacity: 0.7;
}

.price-row.competitor .price {
    text-decoration: line-through;
    color: #dc3545;
}

.badge {
    background-color: var(--cta-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings {
    text-align: center;
    padding: 1rem;
    background-color: rgba(149, 193, 31, 0.1);
    border-radius: 8px;
    color: var(--cta-green);
    font-size: 1.1rem;
}

.price-comparison {
    margin-top: 3rem;
}

.price-service-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-check {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--cta-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-item h3 {
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
    text-align: center;
}

.price-comparison-table {
    padding: 0 1.5rem 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .company {
    font-weight: 500;
    color: var(--text-dark);
}

.price-row .price {
    font-weight: 700;
    font-size: 1.1rem;
}

.our-price {
    background-color: var(--cta-green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
}

.competitor-price {
    color: var(--text-light);
}

/* Vertical Price Comparison */
.price-comparison-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.price-comparison-vertical .service-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
}

.service-header .service-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.service-header .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header .service-check {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--cta-green);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
}

.price-comparison-vertical .price-comparison-table {
    padding: 0;
}

.price-comparison-vertical .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.price-comparison-vertical .price-row:last-child {
    border-bottom: none;
}

.price-row.our-company {
    background-color: rgba(149, 193, 31, 0.1);
    border-left: 4px solid var(--cta-green);
}

.price-row.our-company .company {
    color: var(--cta-green);
    font-weight: 700;
}

.price-row.our-company .price {
    background-color: var(--cta-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

.price-row.competitor-company {
    background-color: rgba(255, 99, 99, 0.05);
    border-left: 4px solid #ff6363;
}

.price-row.competitor-company .company {
    color: #ff6363;
    font-weight: 600;
}

.price-row.competitor-company .price {
    background-color: #ff6363;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Win Factuur Terug Section */
.win-factuur {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)),
                url('assets/images/250531-onderhoudsland-hero-1.jpg') center/cover;
    background-attachment: fixed;
    background-size: cover;
    color: var(--white);
    text-align: center;
    position: relative;
}

.win-factuur h2 {
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.win-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.win-step {
    background-color: rgba(0,0,0,0.7);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.win-step-header {
    margin-bottom: 1.5rem;
}

.win-step-number {
    background-color: #09A5E8;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.win-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.win-step p {
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Win Newsletter Section */
.win-newsletter {
    background: rgba(9, 165, 232, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.win-newsletter h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.win-newsletter p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.win-newsletter .newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: none;
}

.win-newsletter .newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.win-newsletter .newsletter-form button {
    background-color: var(--white);
    color: #09A5E8;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nieuwsbrief Section */
.nieuwsbrief {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 127, 194, 0.9), rgba(52, 127, 194, 0.8)),
                url('assets/images/car-engine-bg.jpg') center/cover;
    color: var(--white);
    text-align: center;
}

.nieuwsbrief h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.nieuwsbrief p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Parallax Newsletter Section */
.parallax-newsletter {
    position: relative;
    background-image: url('assets/images/onderhoudsland-wil-je-niets-missen-1920.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(52, 127, 194, 1) 0%,
        rgba(52, 127, 194, 0.6) 50%,
        rgba(52, 127, 194, 0.2) 80%,
        rgba(52, 127, 194, 0.2) 100%
    );
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.parallax-newsletter h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.parallax-newsletter p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer Introduction Section */
.footer-intro {
    margin-top: 1rem;
}

.footer-intro .intro-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Footer USPs */
.footer-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.footer-usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-usp-item .usp-circle {
    background-color: #B6CE32;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-usp-item .usp-check {
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.footer-usp-item .usp-text {
    line-height: 1.4;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--white);
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-orange);
}

/* Footer Services Section with Icons */
.footer-services-section .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-section .services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-services-section .services-list li:hover {
    transform: translateX(5px);
}

.footer-services-section .service-icon {
    color: var(--accent-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-services-section .services-list li:hover .service-icon {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.footer-services-section .services-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-services-section .services-list li:hover a {
    color: var(--primary-blue);
}

/* Footer Contact Section - Orange Styling */
.footer-contact-section .contact-orange {
    color: var(--accent-orange) !important;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-section .contact-orange:hover {
    color: var(--primary-blue) !important;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-credits a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    color: var(--accent-orange);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    .kenteken-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kenteken-visual {
        height: 400px;
        order: 2;
    }

    .kenteken-text {
        order: 1;
    }

    .kenteken-text h2 {
        font-size: 2.2rem;
    }

    .satisfaction-badge {
        position: static;
        margin: 2rem auto 0;
        width: 100px;
        height: 100px;
        transform: rotate(45deg);
    }

    .pakket-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .service-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .toggle-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-background {
    
        padding:20px 20px 75px 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight-orange {
        font-size: inherit;
    }

    .hero-subtitle-box {
        max-width: 100%;
    }

    .kenteken-input-wrapper {
        height: 50px;
    }

    .usp-marquee-item {
        font-size: 13px;
    }

    .pakket-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-service-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .win-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .win-newsletter .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .waarom-beste-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-navigation {
        flex-direction: column;
        gap: 8px;
    }

    .parallax-newsletter {
        background-attachment: scroll;
        padding: 3rem 1rem;
    }

    .pakket-icon i {
        font-size: 1.8rem;
    }

    .pakket-label.prominent-label {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .kenteken-input-wrapper input {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .kenteken-visual {
        height: 300px;
    }

    .kenteken-text h2 {
        font-size: 1.8rem;
    }

    .usp-tagline {
        font-size: 0.8rem;
    }

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

    .win-factuur h2 {
        font-size: 2rem;
    }

    .nieuwsbrief h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo-section {
        order: -1;
        margin-bottom: 1rem;
    }

    .footer-section ul li a:hover {
        transform: none;
    }

    .social-icons {
        margin-top: 2rem;
    }

    /* Mobile Footer USPs */
    .footer-usps {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-intro .intro-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-services-section .services-list li:hover {
        transform: none;
    }

    .footer-contact-section .contact-orange:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-background {
       
        text-align: center;
        padding:20px 20px 75px 20px;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .highlight-orange {
        font-size: inherit;
    }

    .hero-tagline {
        justify-content: center;
    }

    .tagline-line {
        width: 20px;
    }

    .usp-circle {
        width: 18px;
        height: 18px;
    }

    .usp-check {
        font-size: 10px;
    }

    .usp-marquee-item {
        font-size: 12px;
    }

    .tagline-text {
        font-size: 0.8rem;
    }

    .hero-subtitle-box {
        text-align: left;
    }

    .kenteken-input-wrapper {
        height: 45px;
    }

    .kenteken-input-wrapper input {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .kenteken-visual {
        height: 250px;
    }

    .kenteken-text h2 {
        font-size: 1.5rem;
    }

    .monteur-image {
        width: 65%;
        height: 55%;
    }

    .werkplaats-image {
        width: 75%;
        height: 40%;
    }

    .pakket-cards {
        grid-template-columns: 1fr;
    }

    .parallax-newsletter h3 {
        font-size: 1.5rem;
    }

    .parallax-newsletter p {
        font-size: 1rem;
    }

    .waarom-beste-text h2 {
        font-size: 2rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .win-steps {
        grid-template-columns: 1fr;
    }

    .price-table {
        font-size: 0.8rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.5rem;
    }

    /* Extra Small Mobile Footer Adjustments */
    .footer-usp-item {
        font-size: 0.8rem;
    }

    .footer-usp-item .usp-circle {
        width: 16px;
        height: 16px;
    }

    .footer-usp-item .usp-check {
        font-size: 9px;
    }

    .footer-intro .intro-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-services-section .service-icon {
        font-size: 1rem;
    }

    .footer-services-section .services-list li a {
        font-size: 0.9rem;
    }
}

/* Afspraak Page Styles */
.afspraak-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/onderhoudsland-monteur-achter-auto.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.afspraak-section {
    background-color: white;
}

.afspraak-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Car Info Column */
.car-info-column {
    background: white;
    border-radius: 12px;
    padding: 2rem;
}

.car-info-column .section-header,
.appointment-form-column .section-header {
    margin-bottom: 2rem;
}

.car-info-column .section-header h2,
.appointment-form-column .section-header h2 {
    margin-bottom: 1rem;
}

.car-info-column .intro-text,
.appointment-form-column .intro-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.car-data-table {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
    overflow: hidden;
}

.car-data-table .loading-state {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.car-data-table .loading-state ion-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.car-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.car-data-row:last-child {
    border-bottom: none;
}

.car-data-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.car-data-value {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* USPs */
.afspraak-usps h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usp-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.usp-list li ion-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Online Planner Menu Link Styling */
.online-planner-link {
    background: linear-gradient(135deg, var(--cta-green), #7ba818) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    display: inline-block !important;
}

.online-planner-link:hover {
    background: linear-gradient(135deg, #7ba818, var(--cta-green)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.3) !important;
}

/* Desktop Navigation Layout - Online Planner rechts uitlijnen */
.desktop-nav .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav .nav-left {
    display: flex;
    align-items: center;
}

.desktop-nav .nav-right {
    display: flex !important;
    align-items: center;
}

.desktop-nav .nav-right ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav .nav-right ul li {
    margin: 0;
}

@media (max-width: 1024px) {
    .desktop-nav .nav-right {
        display: none !important;
    }
}

/* Mobile Online Planner Styling */
.mobile-online-planner {
    margin: 1rem 0;
    padding: 0 1rem;
}

.mobile-online-planner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--cta-green), #7ba818);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.2);
}

.mobile-online-planner-link:hover {
    background: linear-gradient(135deg, #7ba818, var(--cta-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 193, 31, 0.3);
    color: white;
}

.mobile-online-planner-link ion-icon {
    font-size: 1.5rem;
}

.mobile-online-planner-link span {
    flex: 1;
    text-align: center;
}

/* Appointment Form Column */
.appointment-form-column {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.appointment-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Service Packages */
.service-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-option {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.package-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 127, 194, 0.15);
}

.package-option.selected {
    border-color: var(--primary-blue);
    background: rgba(52, 127, 194, 0.05);
}

.package-header {
    text-align: center;
    margin-bottom: 1rem;
}

.package-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.package-header h5 {
    margin: 0.5rem 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
}

.package-price {
    color: var(--cta-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Other Question Checkbox */
.other-question {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

.btn-large ion-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsive Styles for Afspraak Page */
@media (max-width: 1024px) {
    .afspraak-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-packages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-option {
        padding: 1rem;
    }
}

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

    .car-info-column,
    .appointment-form-column {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-packages {
        grid-template-columns: 1fr;
    }

    .package-option {
        padding: 1rem;
    }

    .afspraak-content {
        gap: 1.5rem;
    }
}

/* ===== APK KEURING PAGE STYLES ===== */

/* APK Section */
.apk-section {
    background-color: white;
}

.apk-content {
    display: grid;
    grid-template-columns: minmax(300px, 35%) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

/* APK Sidebar Column */
.apk-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* APK USPs Card */
.apk-usps-card .usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apk-usps-card .usp-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.apk-usps-card .usp-list li:last-child {
    margin-bottom: 0;
}

.apk-usps-card .usp-list ion-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Other Services Card - External Link Style */
.other-services-card {
    background: white;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.other-services-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
}

.other-services-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

.other-services-card .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.other-services-card .services-list li {
    margin: 0;
}

.other-services-card .services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    background: white;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.other-services-card .services-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 127, 194, 0.1), transparent);
    transition: left 0.5s ease;
}

.other-services-card .services-list a:hover::before {
    left: 100%;
}

.other-services-card .services-list a:hover {
    color: var(--primary-blue);
    background: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 127, 194, 0.2);
}

.other-services-card .service-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.other-services-card .service-icon {
    font-size: 1.3rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.other-services-card .external-icon {
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.other-services-card .services-list a:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.other-services-card .services-list a:hover .external-icon {
    color: var(--primary-blue);
    transform: translateX(3px);
}

/* Other Services CTA Styling */
.other-services-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.other-services-cta .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--cta-green) !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.other-services-cta .btn:hover {
    background-color: #7ba319 !important;
    transform: translateY(-2px);
}

.other-services-cta .btn ion-icon {
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

/* Contact Form Card */
.sidebar-contact-form .form-group {
    margin-bottom: 1rem;
}

.sidebar-contact-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.sidebar-contact-form input,
.sidebar-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.sidebar-contact-form input:focus,
.sidebar-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.sidebar-contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* Contact Info Card */
.contact-info-card .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-info-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-info-card .contact-item:hover {
    transform: translateX(5px);
}

.contact-info-card .contact-item ion-icon {
    font-size: 1.1rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-card .contact-item div {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.contact-info-card .contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-card .contact-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card .contact-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}



/* APK Main Column */
.apk-main-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* APK Hero Image */
.apk-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
   
}

.apk-hero-image img {
    width: 100%;
    
    border: none;
    
}

.hero-usp-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.usp-badge {
    background: var(--cta-green);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.usp-badge ion-icon {
    font-size: 1.1rem;
}

/* Quick CTA Section after intro */
.quick-cta-section {
    margin: 2rem 0;
}

.quick-cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ba8 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(52, 127, 194, 0.15);
}

.quick-cta-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.quick-cta-banner .btn-cta {
    background: var(--cta-green);
    color: white;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(149, 193, 31, 0.3);
}

.quick-cta-banner .btn-cta:hover {
    background: #7fa01a;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(149, 193, 31, 0.4);
}

.quick-cta-banner .btn-cta ion-icon {
    font-size: 1.1rem;
}

/* APK SEO Title */
.apk-seo-title {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* APK Introduction */
.apk-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Why Onderhoudsland Section - Card Style */
.why-onderhoudsland-section {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;

}



.why-onderhoudsland-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.why-onderhoudsland-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

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

.why-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ba8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon ion-icon {
    font-size: 1.5rem;
    color: white;
}

.why-item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps Section - Compact Horizontal Timeline */
.steps-section {
    background: linear-gradient(135deg, var(--cta-green) 0%, #a8cc3a 100%);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.steps-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-20px, 20px);
}

.steps-section h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1rem auto;
    box-shadow: 0 3px 10px rgba(52, 127, 194, 0.3);
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Section */
.pricing-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background-color: var(--light-gray);
}

.pricing-row.featured {
    background: linear-gradient(135deg, var(--light-green) 0%, #f8fdf4 100%);
    position: relative;
}

.service-name h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.service-name p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.popular-badge {
    background: var(--cta-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    display: inline-block;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.faq-accordion {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question ion-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question ion-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    display: none;
    overflow: hidden;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Section */
.reviews-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars ion-icon {
    font-size: 1.2rem;
    color: var(--secondary-orange);
}

.review-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-item cite {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ba8 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner .btn-cta {
    background: var(--cta-green);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 193, 31, 0.3);
}

.cta-banner .btn-cta:hover {
    background: #7fa01a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 193, 31, 0.4);
}

.cta-banner .btn-cta ion-icon {
    font-size: 1.2rem;
}

/* CTA Banner Section */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ba8 100%);
    padding: 4rem 0;
}

.cta-banner-section .cta-banner {
    background: transparent;
    padding: 0;
}

.cta-usps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-usp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-usp ion-icon {
    font-size: 1.2rem;
    color: var(--cta-green);
}

/* Sustainability Section */
.sustainability-section {
    background: var(--light-green);
    border-radius: 12px;
    padding: 2rem;
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sustainability-icon {
    width: 60px;
    height: 60px;
    background: var(--cta-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sustainability-icon ion-icon {
    font-size: 1.8rem;
    color: white;
}

.sustainability-text h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sustainability-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Case Study Section */
.case-study-section {
    margin: 3rem 0;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.case-study-images {
    margin-bottom: 1.5rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-content {
    text-align: center;
}

.customer-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.customer-quote cite {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* APK Page Responsive Styles */
@media (max-width: 1024px) {
    .apk-content {
        grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        left: 20px;
    }

    .step-item {
        padding: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .apk-seo-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .apk-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reorder columns on mobile - main content first, sidebar second */
    .apk-main-column {
        gap: 2rem;
        order: 1;
    }

    .apk-sidebar-column {
        order: 2;
    }

    .sidebar-card {
        padding: 1.25rem;
    }

    .apk-hero-image img {
        height: 200px;
    }

    .hero-usp-overlay {
        top: 1rem;
        right: 1rem;
    }

    .usp-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .apk-seo-title {
        font-size: 1.4rem;
    }

    .why-onderhoudsland-section h2,
    .steps-section h2,
    .pricing-section h2,
    .faq-section h2,
    .reviews-section h2 {
        font-size: 1.5rem;
    }

    .why-item,
    .step-item {
        padding: 1.25rem;
    }

    .pricing-row {
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .review-item {
        padding: 1.5rem;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .sustainability-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Case Study Responsive */
    .case-study-card {
        padding: 1.5rem;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-container img {
        height: 150px;
    }

    .customer-quote p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sidebar-card {
        padding: 1rem;
        margin: 0 -10px;
    }

    .apk-hero-image img {
        height: 180px;
    }

    .apk-seo-title {
        font-size: 1.2rem;
    }

    .why-item,
    .step-item {
        padding: 1rem;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .review-item {
        padding: 1.25rem;
    }

    .cta-banner {
        padding: 1.5rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Quick CTA mobile styling */
    .quick-cta-banner {
        padding: 1.5rem 1rem;
    }

    .quick-cta-content h3 {
        font-size: 1.3rem;
    }

    .quick-cta-content p {
        font-size: 0.9rem;
    }

    .sustainability-section {
        padding: 1.5rem;
    }

    .steps-grid::before {
        left: 15px;
    }

    .step-item {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .other-services-card .services-list a {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .other-services-card .service-icon {
        font-size: 1.1rem;
    }

    .contact-info-card .contact-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Case Study Mobile */
    .case-study-card {
        padding: 1rem;
    }

    .image-container img {
        height: 120px;
    }

    .customer-quote p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .car-info-column,
    .appointment-form-column {
        padding: 1rem;
        margin: 0 -10px;
    }

    .car-data-row {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .car-data-label {
        font-size: 0.8rem;
    }

    .car-data-value {
        font-size: 0.9rem;
        font-weight: 700;
    }
}

/* Notification Styles for Appointment Page */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: var(--cta-green);
}

.notification-error {
    background-color: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    margin-left: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Form Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Custom placeholder styling for message field */
.custom-placeholder::placeholder {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #999;
    opacity: 1;
}

.custom-placeholder::-webkit-input-placeholder {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #999;
}

.custom-placeholder::-moz-placeholder {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #999;
    opacity: 1;
}

.custom-placeholder:-ms-input-placeholder {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #999;
}

/* Modal Styles */
.car-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--cta-green);
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-info {
    border-left: 4px solid var(--primary-blue);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    margin-left: auto;
}

/* Floating WhatsApp Button - Mobile Only */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp ion-icon {
    font-size: 28px;
    color: white;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Show WhatsApp button only on mobile screens */
@media (max-width: 768px) {
    .floating-whatsapp {
        display: flex;
    }
}

/* Adjust position for smaller screens */
@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp ion-icon {
        font-size: 24px;
    }
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Form Error Styles */
.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* Post Card Styles for Blog */
.post-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card .entry-title {
    margin-bottom: 1rem;
}

.post-card .entry-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.post-card .entry-title a:hover {
    color: var(--primary-blue);
}

.post-card .entry-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-card .entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-card .entry-meta ion-icon {
    font-size: 1rem;
}

.post-card .entry-footer {
    margin-top: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--light-gray);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Zo werkt het aanmaken van jouw afspraak Section */
.zo-werkt-het {
    padding: 4rem 0;
    background-color: var(--white);
}

.title-block {
    text-align: left;
    margin-bottom: 3rem;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: #09A5E8;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 0.9rem;
    color: #09A5E8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0;
}

.main-title .highlight-orange {
    color: #F8B03B;
}

/* Zo Werkt Het Carousel - 5 Steps Clean Design */
.zo-werkt-het-carousel {
    position: relative;
    width: 100%;
    margin: 3rem 0;
    cursor: default;
}

.zo-werkt-het-carousel:hover {
    /* Visual indication that auto-play is paused */
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-step {
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

/* Clean Onderhoudsland Carousel Cards */
.step-item {
    flex: 1;
    max-width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(52, 127, 194, 0.08);
    border: 1px solid rgba(52, 127, 194, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(52, 127, 194, 0.15);
    border-color: var(--secondary-orange);
}

/* Clean SVG Container */
.step-svg-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4a90e2 100%);
    position: relative;
    overflow: hidden;
}

.step-svg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.step-svg {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-item:hover .step-svg {
    transform: scale(1.15) rotate(5deg);
}

/* Clean Content Area */
.step-overlay {
    position: static;
    background: white;
    color: var(--text-dark);
    padding: 1.5rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Step Number Badge - Hidden for cleaner look */
.step-number {
    display: none;
}

/* Clean Typography */
.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    line-height: 1.3;
    text-transform: none;
    margin-top: 0;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}
}

.step-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

/* Clean Navigation Buttons */
.step-nav-btn {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(52, 127, 194, 0.15);
}

.step-nav-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 127, 194, 0.25);
}

.step-nav-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

/* Clean Step Progress Bar */
.step-indicators {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(52, 127, 194, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.zo-werkt-het-carousel:hover .step-indicators {
    background: rgba(52, 127, 194, 0.15);
    box-shadow: 0 2px 8px rgba(52, 127, 194, 0.1);
}

.step-indicator {
    width: 32px;
    height: 6px;
    border-radius: 3px;
    background: rgba(52, 127, 194, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.step-indicator.active {
    background: var(--secondary-orange);
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.step-indicator:hover {
    background: rgba(52, 127, 194, 0.5);
}

.step-indicator.active:hover {
    background: var(--secondary-orange);
}

/* Clean Current Step Text */
.current-step {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Clean Tooltip */
.step-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    box-shadow: 0 4px 16px rgba(52, 127, 194, 0.3);
    z-index: 10;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.step-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.step-item:hover .step-tooltip {
    opacity: 1;
    visibility: visible;
    top: -60px;
}

/* Mobile Responsiveness - Compact Triangle Cards */
@media (max-width: 768px) {
    .zo-werkt-het-carousel {
        margin: 2rem 0;
    }

    .carousel-container {
        overflow: hidden;
        padding: 0 1rem;
    }

    .carousel-step {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 1.5rem 0;
        min-width: 100%;
        flex-wrap: nowrap;
        position: relative;
    }

    /* Triangle formation: first card on top */
    .step-item:first-child {
        align-self: center;
        margin-bottom: 0.5rem;
    }

    /* Bottom row container for 2nd and 3rd cards */
    .carousel-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        justify-items: center;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .step-item:first-child {
        grid-column: 1 / -1; /* Span both columns */
        grid-row: 1;
    }

    .step-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .step-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .step-item {
        flex: none;
        max-width: 120px;
        width: 120px;
        height: 120px;
        margin: 0;
        background: white;
        box-shadow: 0 2px 8px rgba(52, 127, 194, 0.1);
        border: 1px solid rgba(52, 127, 194, 0.1);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .step-item:hover {
        transform: none;
        box-shadow: none;
    }

    /* Compact card styling for triangle formation */
    .step-svg-container {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #4a90e2 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .step-svg-container::before {
        display: none;
    }

    .step-svg {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1);
    }

    .step-item:hover .step-svg {
        transform: scale(1.1);
    }

    .step-overlay {
        padding: 0.25rem;
        background: transparent;
        text-align: center;
        position: static;
        flex: 1;
    }

    .step-title {
        font-size: 0.8rem;
        font-weight: 600;
        margin: 0;
        color: var(--primary-blue);
        line-height: 1.2;
        text-align: center;
    }

    .step-description {
        display: none; /* Hide description on mobile */
    }

    .step-tooltip {
        display: none; /* Hide tooltips on mobile */
    }

    .step-item img:not(.step-svg) {
        display: none; /* Hide regular images, only show SVG */
    }

    .step-navigation {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .step-nav-btn {
        width: 48px;
        height: 48px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .carousel-step {
        gap: 0.5rem;
        max-width: 280px;
    }

    .step-item {
        max-width: 100px;
        width: 100px;
        height: 100px;
    }

    .step-svg-container {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }

    .step-svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .step-overlay {
        padding: 0.25rem;
    }
        font-size: 1.1rem;
    }

    .step-indicators {
        gap: 0.4rem;
        padding: 6px 12px;
    }

    .step-indicator {
        width: 24px;
        height: 4px;
        border-radius: 2px;
    }

    .current-step {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .step-item {
        flex: 0 0 260px;
        max-width: 260px;
        width: 260px;
    }

    .step-svg-container {
        height: 120px;
    }

    .step-svg {
        width: 40px;
        height: 40px;
    }

    .step-overlay {
        padding: 0.875rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .step-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .step-indicators {
        padding: 5px 10px;
    }

    .step-indicator {
        width: 20px;
        height: 3px;
    }
}

/* ===== STANDARDIZED HEADING STRUCTURE ===== */

/* Section Tagline - Like hero tagline */
.section-tagline {
 
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.section-tagline .tagline-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
}

.section-tagline .tagline-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

/* Section Title */
.section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    text-transform: uppercase;
}

.section-title .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

.highlight-orange {
    color: #f9af3d;
    font-size: 1.8rem;
}

/* Intro Text */
.intro-text {
    margin-bottom: 2rem;
    max-width: 800px;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

/* ===== OVER ONDERHOUDSLAND PAGE STYLES ===== */

/* Hero Section for About Page */
.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/over-onderhoudsland.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* ===== AUTOONDERHOUD & REPARATIE PAGE STYLES ===== */

/* Hero Section for Services Page */
.services-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/onderhoudsland-homepage-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* APK Hero specific background */
.apk-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/apk-keuring-1.jpg');
}

/* Reparatie Hero specific background */
.reparatie-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/auto-reparatie-uithoorn.jpg');
}

/* Airco Service Hero specific background */
.airco-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/airco-service-uithoorn.jpg');
}

/* Diagnose Hero specific background */
.diagnose-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/diagnose-auto-uithoorn.jpg');
}

/* Banden Service Hero specific background */
.banden-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/onderhoudsland-banden.jpg');
}

/* Auto Check Hero specific background */
.autocheck-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/apk-keuring-1.jpg');
}

/* ===== SEARCH RESULTS PAGE STYLES ===== */

/* Search Hero Section */
.search-hero {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.search-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.search-stats {
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-stats span {
    font-weight: 600;
}

/* Search Results Content */
.search-results-section {
    background: #f8f9fa;
    min-height: 60vh;
}

.search-results-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Search Results Column */
.search-results-column {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Individual Search Result */
.search-result-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f9fa;
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
    border-radius: 8px;
}

.search-result-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.search-result-title:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.search-result-url {
    color: var(--cta-green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.search-result-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.search-result-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.search-result-price {
    background: var(--light-green);
    color: var(--cta-green);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* No Results */
.no-results-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Popular Services */
.popular-services-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.popular-services-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.popular-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.popular-service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.popular-service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(52, 127, 194, 0.1);
    transform: translateY(-2px);
}

.popular-service-card .service-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.popular-service-card h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.popular-service-card p {
    margin: 0;
    color: var(--cta-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Search Sidebar */
.search-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.search-contact-card,
.search-usp-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-contact-card h3,
.search-usp-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.search-contact-card .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.search-contact-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.search-contact-card .contact-item ion-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.search-contact-card .contact-details {
    flex: 1;
}

.search-contact-card .contact-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.search-contact-card .contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.search-contact-card .contact-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.search-contact-card .contact-text {
    color: var(--text-medium);
    line-height: 1.4;
}

/* Search CTA Section */
.search-cta-section {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.search-cta-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
}

.search-cta-btn ion-icon {
    margin-right: 0.5rem;
}

.cta-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Search USP Card */
.search-usp-card .usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-usp-card .usp-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.search-usp-card .usp-list li:last-child {
    border-bottom: none;
}

.search-usp-card .usp-list ion-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-usp-card .usp-list span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Auto-suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-suggestion-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: #f8f9fa;
}

.search-suggestion-item ion-icon {
    color: var(--primary-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-suggestion-text {
    flex: 1;
}

.search-suggestion-title {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.search-suggestion-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Search Results Responsive */
@media (max-width: 1024px) {
    .search-results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .search-sidebar-column {
        order: -1;
    }

    .popular-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .search-hero {
        padding: 2rem 0 1.5rem;
    }

    .search-hero-content h1 {
        font-size: 2rem;
    }

    .search-stats {
        font-size: 1rem;
    }

    .search-sidebar-column {
        order: -1;
    }

    .search-results-column,
    .search-contact-card,
    .search-usp-card {
        padding: 1.5rem;
    }

    .search-result-item {
        padding: 1rem 0;
    }

    .search-result-item:hover {
        margin: 0 -0.5rem;
        padding: 1rem 0.5rem;
    }

    .search-result-title {
        font-size: 1.1rem;
    }

    .search-result-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .popular-services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .popular-service-card {
        padding: 0.75rem;
    }

    .search-contact-card .contact-info {
        gap: 1rem;
    }

    .search-cta-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    background: #ffffff;
    padding: 4rem 0 8rem;
    text-align: center;
}

.services-grid-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid-section .section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid Section Tagline - Full Width Centered */
.services-grid-section .section-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    width: 100%;
}

.services-grid-section .section-tagline .tagline-line {
    flex: 1;
    height: 2px;
    background-color: var(--primary-blue);
    max-width: 100px;
}

.services-grid-section .section-tagline .tagline-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    font-family: var(--font-heading);
}

/* Services Grid Section Highlight Orange */
.services-grid-section .highlight-orange {
    color: var(--secondary-orange);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Services Grid Layout */
.services-grid-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px 32px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Service Card Styling */
.services-grid-section .service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.services-grid-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

/* Card Content */
.services-grid-section .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Icon Styling */
.services-grid-section .icon-wrap {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #b6cf38;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 16px;
}

.services-grid-section .icon-wrap svg {
    stroke-width: 2;
}

/* Service Title */
.services-grid-section .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    text-transform: capitalize;
    font-family: var(--font-heading);
}

/* Service Description */
.services-grid-section .service-desc {
    font-size: .9375rem;
    line-height: 1.5;
    color: #404040;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

/* Service Link */
.services-grid-section .service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.services-grid-section .service-link:hover {
    color: var(--primary-blue);
}

/* Service Image */
.services-grid-section .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-top: auto;
}

/* Responsive Design for Services Grid */
@media (min-width: 1200px) {
    .services-grid-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 40px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .services-grid-section .container {
        padding: 0 32px;
    }
}

@media (max-width: 767px) {
    .services-grid-section .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .services-grid-section {
        padding: 3rem 0 6rem;
    }

    .services-grid-section .container {
        padding: 0 24px;
    }

    .services-grid-section .section-header {
        margin-bottom: 3rem;
    }

    .services-grid-section .card-content {
        padding: 24px;
    }

    .services-grid-section .service-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .services-grid-section .container {
        padding: 0 20px;
    }

    .services-grid-section .services-grid {
        gap: 24px;
    }
}

.hero-content {
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: rgba(255,255,255,0.8);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font-heading);
}

.about-hero h1 .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

/* Value Proposition Section - New Design */
.value-proposition-section {
    background-color: white;
    padding: 4rem 0;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Left Column: Image Collage - Exact Screenshot Layout */
.image-collage {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Top Row: Blue Badge + Large Image side by side */
.top-row {
    display: flex;
    gap: 15px;
    height: 250px;
    align-items: flex-end; /* Badge uitlijnen aan onderkant */
}

/* Blue Statistics Badge - 180px breed, uitgelijnd aan onderkant */
.stats-badge {
    background: linear-gradient(135deg, #00A9E0 0%, #347fc2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 169, 224, 0.3);
    width: 180px;
    height: 180px; /* Vierkant formaat */
    flex-shrink: 0;
}

.stats-badge ion-icon {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.95;
    text-align: center;
}

/* Large Photo of Man with Car - Rechts van blauwe badge */
.main-image {
    flex: 1;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Bottom Row: Familie Photo - Niet langer dan helft van man-afbeelding */
.bottom-row {
    width: 60%; /* Ongeveer helft van de breedte */
}

.family-image-container {
    position: relative;
    width: 100%;
    height: 200px; /* Verhoogd naar 200px */
    border-radius: 12px; /* Zelfde border-radius als man-afbeelding */
    overflow: visible; /* Voor badge overlap */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.family-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
    border-radius: 12px;



}

/* White Experience Badge - Positionering right -130px, bottom 30px */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -130px;
    background: white;
    color: #333;
    border-radius: 8px; /* Licht afgeronde hoeken (niet volledig rond) */
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    z-index: 2;
}

.experience-badge ion-icon {
    font-size: 22px;
    color: #B6CE32;
    flex-shrink: 0;
}

.experience-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.experience-number {
    font-size: 26px;
    font-weight: 900;
    color: #333;
    line-height: 1;
    margin-bottom: 2px;
}

.experience-text {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    font-weight: 500;
}

/* Right Column: Text Content */
.text-column {
    padding-left: 2rem;
}

.text-column .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.text-column .section-title .highlight-orange {
    color: #f9af3d;
    font-size: inherit;
}

.text-column .description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.text-column .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.text-column .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.feature-icon ion-icon {
    font-size: 24px;
    color: var(--primary-blue);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}



/* Services Section - 4 Column Grid */
.services-section {
    background: #ffffff;
    padding: 4rem 0 8rem;
    text-align: center;
}

.services-section .section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Laag 1: De Subtitel (Tagline) - Context-zettend */
.services-section .section-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.services-section .section-tagline .tagline-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    flex-shrink: 0;
}

.services-section .section-tagline .tagline-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    font-family: var(--font-heading);
}

/* Laag 2: De Hoofdkop (Kernboodschap) - Absolute blikvanger */
.services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

/* Laag 3: De Ondersteunende Regel (Versterking) - Goudgele accent */
.services-section .section-header .highlight-orange {
    color: var(--secondary-orange);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-top: 0.8rem;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-blue);
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.service-card .card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #B6CE32;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Intro Text Styling */
.intro-text {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Responsiveness for Services and Value Proposition */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-proposition-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .text-column {
        padding-left: 0;
    }

    .text-column .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-section {
        padding: 3rem 0 12rem;
    }

    .services-section .section-header {
        margin-bottom: 3rem;
    }

    /* Behoud hiërarchie op mobile */
    .services-section .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .services-section .section-header h2 .highlight-orange {
        font-size: 1.1rem;
        margin-top: 0.6rem;
    }

    .services-section .section-tagline .tagline-line {
        width: 20px;
    }

    .services-section .section-tagline .tagline-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .tagline-line::before,
    .tagline-line::after {
        width: 20px;
    }

    .usp-tagline {
        margin: 0 50px;
        font-size: 0.8rem;
    }

    .value-proposition-grid {
        gap: 2rem;
    }

    .text-column .section-title {
        font-size: 2rem;
    }

    .image-collage {
        gap: 1rem;
    }

    .top-row {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        align-items: stretch; /* Reset align-items voor mobile */
    }

    .stats-badge {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .main-image {
        height: 200px;
    }

    .bottom-row {
        width: 100%; /* Op mobile volledige breedte */
    }

    .family-image-container {
        height: 180px; /* Aangepast voor nieuwe desktop hoogte */
    }

    .stats-number {
        font-size: 32px;
    }

    .stats-badge ion-icon {
        font-size: 32px;
    }

    .experience-badge {
        right: -20px; /* Aangepast voor mobile */
        bottom: 20px;
        padding: 10px 16px;
        min-width: 140px;
        gap: 8px;
        border-radius: 6px;
    }

    .experience-number {
        font-size: 22px;
    }

    .experience-text {
        font-size: 11px;
    }

    .experience-badge ion-icon {
        font-size: 18px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon ion-icon {
        font-size: 20px;
    }
}

/* Testimonial CTA Section */
.testimonial-cta-section {
    position: relative;
}

/* Homepage testimonial CTA banner - only absolute on homepage */
.testimonial-cta-section .cta-banner {
    position: absolute;
    top: -50px;
    left: 25%;
    right: 0;
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0;
    z-index: 2;
    border-radius: 16px 0 0 16px;
}



.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner-content .kenteken-cta-section {
    max-width: 400px;
    flex-shrink: 0;
}

.banner-text .eyebrow-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.banner-text h2 {
    font-size: 2.2rem;
    margin: 0;
    color: white;
}

.cta-button {
    background-color: var(--dark-bg);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.testimonial-background {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/onderhoudsland-tevreden-vrouw-met-auto.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 800px;
    padding: 12rem 0 5rem 0;
    color: white;
    text-align: right;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-content .section-header {
    margin-bottom: 3rem;
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

.testimonial-content {
    text-align: right;
}

.testimonial-content .eyebrow-text {
    color: rgba(255,255,255,0.9);
}

.testimonial-content h2 {
    color: white;
    font-size: 2.5rem;
}

.testimonial-box {
    background: rgba(30, 30, 30, 0.7);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 0 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    text-align: left;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.customer-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating ion-icon {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--primary-blue);
}

.rating-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars ion-icon {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-blue);
}

/* Responsive Styles for Over Onderhoudsland Page */
@media (max-width: 1200px) {
    .value-content-grid {
        gap: 3rem;
    }

    .text-content {
        padding-left: 1rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .value-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .text-content {
        padding-left: 0;
        text-align: center;
    }

    .image-collage {
        height: 400px;
        order: 2;
        grid-template-columns: 1fr 1.5fr;
        grid-template-rows: 1fr 1fr;
    }

    .text-content {
        order: 1;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        background-attachment: scroll;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .image-collage {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }

    .image-with-badge img {
        height: 200px;
    }

    .text-content h2 {
        font-size: 2.2rem;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-background {
        background-attachment: scroll;
        padding: 6rem 0 3rem 0;
        text-align: center;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-content .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: none;
        margin-top: 65px;
    }

    .testimonial-box {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cta-banner {
        position: relative;
        top: 0;
        left: 0;
        padding: 2rem 0;
        border-radius: 16px;
    }

    .testimonial-background {
        min-height: 600px;
        padding: 8rem 0 5rem 0;
    }

    .quote-icon {
        font-size: 3rem;
        top: 0.5rem;
        right: 1rem;
    }

    .banner-text h2 {
        font-size: 1.8rem;
    }

    .testimonial-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .badge {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .badge-content strong {
        font-size: 1rem;
    }

    .badge-content span {
        font-size: 0.7rem;
    }

    .blue-badge {
        top: 10px;
        left: 10px;
    }

    .service-card .card-content {
        padding: 1rem;
    }

    .services-section {
        padding: 2rem 0 8rem;
    }

    .services-section .section-header {
        margin-bottom: 2.5rem;
    }

    /* Behoud visuele hiërarchie op zeer kleine schermen */
    .services-section .section-tagline {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 1.5rem;
    }

    .services-section .section-tagline .tagline-line {
        width: 20px;
    }

    .services-section .section-tagline .tagline-text {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }

    .services-section .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .services-section .section-header h2 .highlight-orange {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Wachtruimte Info Card */
.wachtruimte-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.wachtruimte-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wachtruimte-icon {
    background: var(--primary-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.wachtruimte-content h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
}

.wachtruimte-content p {
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.wachtruimte-content strong {
    color: var(--secondary-orange);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wachtruimte-info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .wachtruimte-icon {
        margin: 0 auto;
    }
}

/* Global gutter correction
   Houd links/rechts consistente ruimte op alle pagina's. */
:root {
    --page-inline-gutter: clamp(16px, 3vw, 40px);
}

.container,
.topbar-container,
.nav-container,
.hero-content {
    padding-left: max(var(--page-inline-gutter), env(safe-area-inset-left)) !important;
    padding-right: max(var(--page-inline-gutter), env(safe-area-inset-right)) !important;
}

.header-container {
    padding-left: max(14px, env(safe-area-inset-left)) !important;
    padding-right: max(14px, env(safe-area-inset-right)) !important;
}

@media (min-width: 1025px) {
    .header-container {
        padding-left: max(24px, env(safe-area-inset-left)) !important;
        padding-right: max(24px, env(safe-area-inset-right)) !important;
    }
}

/* Homepage onderhoudspakketten: lichtgewicht kentekeninvoer */
.homepage-rdw-prijs-note {
    margin: 0.9rem auto 1.6rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.homepage-kenteken-edit-btn {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.42rem 0.85rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.homepage-kenteken-edit-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.homepage-kenteken-edit-btn:hover {
    background: #e2e8f0;
    color: #1f2937;
}

.pakket-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.pakket-price .pakket-price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent-orange);
}

.pakket-price-kenteken-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 255px;
    overflow: hidden;
    max-height: 56px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s ease, margin 0.35s ease;
}

.pakket-price-kenteken-form input {
    width: 100%;
    min-width: 0;
    border: 1px solid #d3d8e0;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pakket-price-kenteken-form input::placeholder {
    color: #aeb6c2;
    opacity: 1;
    font-weight: 500;
}

.pakket-price-kenteken-form input:focus {
    border-color: var(--primary-blue);
    outline: 0;
    box-shadow: 0 0 0 2px rgba(52, 127, 194, 0.18);
}

.pakket-price-kenteken-form button {
    border: 0;
    border-radius: 8px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pakket-price-kenteken-form button:hover {
    background: #2a6ba8;
}

.pakket-price-kenteken-form button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.diensten-pakketten.kenteken-resolved .pakket-price-kenteken-form {
    max-height: 0;
    opacity: 0;
    transform: translateY(-7px);
    margin-top: -0.15rem;
    pointer-events: none;
}

/* Vacatures: hero + cards + detailpagina */
.vacatures-hero {
    height: auto;
    min-height: 250px;
    padding: 2.4rem 0;
    background-image: linear-gradient(120deg, rgba(7, 22, 40, 0.75) 0%, rgba(7, 22, 40, 0.58) 52%, rgba(0, 0, 0, 0.46) 100%), url('assets/images/onderhoudsland-monteur-in-werkplaats2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
}

.vacatures-hero-content {
    width: 100%;
    max-width: 860px;
}

.vacatures-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.84);
}

.vacatures-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.vacatures-hero-kicker {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
}

.vacatures-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.08;
    color: #fff;
}

.vacatures-hero-intro {
    margin: 1rem 0 1.2rem;
    font-size: 1.05rem;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.93);
}

.vacatures-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.8rem;
    margin-bottom: 1.2rem;
}

.vacatures-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    border-radius: 999px;
    padding: 0.36rem 0.8rem;
    font-size: 0.85rem;
}

.vacatures-hero-cta {
    margin-top: 0.3rem;
}

.vacatures-overview-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.vacature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.vacature-card {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.vacature-card-media {
    display: block;
}

.vacature-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.vacature-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.vacature-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
}

.vacature-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #344054;
    background: #f5f8fb;
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
}

.vacature-card-content h3 {
    font-size: 1.2rem;
    margin: 0.25rem 0 0;
    color: #0f172a;
    text-transform: none;
}

.vacature-card-content p {
    margin: 0;
    color: #475467;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vacature-card-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.vacature-card-btn {
    width: 100%;
    justify-content: center;
}

.vacature-empty {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 1.7rem;
    max-width: 800px;
    margin: 0 auto;
}

.vacatures-employer {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    border-top: 1px solid #e9eff6;
}

.vacatures-employer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
}

.vacatures-employer-list {
    list-style: none;
    margin: 0;
    padding: 1.2rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8edf3;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.vacatures-employer-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.82rem;
}

.vacatures-employer-list li:last-child {
    margin-bottom: 0;
}

.vacatures-employer-list i {
    color: var(--cta-green);
    margin-top: 0.15rem;
}

.vacature-detail-container {
    max-width: 1160px;
}

.vacature-status-message {
    margin-bottom: 1.2rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
}

.vacature-status-success {
    border-color: #b9e3a9;
    color: #24592a;
    background: #f1fbec;
}

.vacature-status-error {
    border-color: #f4c2c2;
    color: #912626;
    background: #fff1f1;
}

.vacature-detail-main {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 1.35rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.vacature-detail-layout {
    display: grid;
    grid-template-columns: minmax(300px, 35%) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.vacature-detail-layout .vacature-detail-main {
    order: 2;
}

.vacature-detail-layout .vacature-sidebar-column {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vacature-detail-header-card {
    border: 1px solid #e8edf3;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.vacature-detail-lead {
    margin: 0 0 0.9rem;
    color: #334155;
    line-height: 1.65;
    font-size: 1rem;
}

.vacature-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.vacature-detail-facts span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dce6f1;
    color: #273444;
    font-size: 0.86rem;
}

.vacature-content-section {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.vacature-content-section .section-tagline {
    margin-bottom: 1rem;
}

.vacature-rich-content {
    color: #344054;
    line-height: 1.75;
}

.vacature-rich-content h2,
.vacature-rich-content h3 {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    margin: 1.5rem 0 0.65rem;
}

.vacature-rich-content p {
    margin: 0 0 0.95rem;
    font-size: 1rem;
}

.vacature-rich-content ul {
    margin: 0 0 1rem 1.15rem;
    padding: 0;
}

.vacature-rich-content li {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.vacature-best-practice {
    margin-top: 1.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e8edf3;
}

.vacature-best-practice h2,
.vacature-best-practice h3 {
    color: #0f172a;
    margin: 1rem 0 0.55rem;
}

.vacature-best-practice p {
    color: #344054;
    font-size: 1rem;
}

.vacature-best-practice ul {
    margin: 0 0 0.9rem 1.15rem;
    padding: 0;
}

.vacature-best-practice li {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.vacature-apply-card {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.vacature-apply-card h3 {
    margin: 0 0 0.6rem;
    color: var(--primary-blue);
}

.vacature-apply-card > p {
    margin: 0 0 1rem;
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.55;
}

.vacature-apply-form {
    display: block;
}

.vacature-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0;
}

.vacature-apply-form .form-group:last-of-type {
    margin-bottom: 1rem;
}

.vacature-apply-form input[type="text"],
.vacature-apply-form input[type="email"],
.vacature-apply-form input[type="tel"],
.vacature-apply-form input[type="file"],
.vacature-apply-form textarea {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fff;
}

.vacature-apply-form input:focus,
.vacature-apply-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.vacature-file-group {
    margin-top: -0.1rem;
}

.vacature-file-label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.vacature-apply-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.2rem;
}

.vacature-apply-submit ion-icon {
    font-size: 1rem;
}

.vacature-usps-card .usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacature-usps-card .usp-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.vacature-usps-card .usp-list li:last-child {
    margin-bottom: 0;
}

.vacature-usps-card .usp-list ion-icon {
    color: #95c11f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vacatures-hero-archive {
    background-image: linear-gradient(120deg, rgba(7, 22, 40, 0.76) 0%, rgba(7, 22, 40, 0.6) 52%, rgba(0, 0, 0, 0.44) 100%), url('assets/images/onderhoudsland-monteur-in-werkplaats2.jpg');
}

.vacatures-hero-single h1 {
    text-transform: none;
}

.vacature-single-page {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.vacature-detail-main h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.vacature-detail-media {
    margin: 0 0 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8edf3;
}

.vacature-detail-media img {
    width: 100%;
    height: clamp(210px, 33vw, 360px);
    object-fit: cover;
    display: block;
}

.vacature-card-media img {
    transition: transform 0.35s ease;
}

.vacature-card:hover .vacature-card-media img {
    transform: scale(1.03);
}

.vacature-card:hover {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.vacature-contact-card p:last-child {
    margin-bottom: 0;
}

.vacature-contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.vacature-contact-card a:hover {
    text-decoration: underline;
}

.vacature-cta-section .cta-banner {
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 1140px) {
    .vacature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vacatures-hero {
        min-height: 280px;
        padding: 2.25rem 0 2rem;
        background-attachment: scroll;
    }

    .vacatures-hero-intro {
        font-size: 0.98rem;
    }

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

    .vacatures-employer-grid {
        grid-template-columns: 1fr;
    }

    .vacature-form-grid {
        grid-template-columns: 1fr;
    }

    .pakket-price .pakket-price-value {
        font-size: 1.7rem;
    }
}

@media (max-width: 991px) {
    .vacature-detail-layout {
        grid-template-columns: 1fr;
    }

    .vacature-detail-layout .vacature-detail-main,
    .vacature-detail-layout .vacature-sidebar-column {
        order: initial;
    }

    .vacature-apply-card {
        position: static;
    }
}

/* Notification contrast fix (voorkomt wit-op-wit tekst) */
.notification {
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

.notification span,
.notification div,
.notification p {
    color: inherit !important;
}

.notification-success {
    background-color: #f1faec !important;
    border-left: 4px solid var(--cta-green) !important;
    color: #1f4d0e !important;
}

.notification-error {
    background-color: #fff1f1 !important;
    border-left: 4px solid #dc3545 !important;
    color: #7f1d1d !important;
}

.notification-info {
    background-color: #eef6ff !important;
    border-left: 4px solid var(--primary-blue) !important;
    color: #1e3a8a !important;
}

.notification-close {
    color: inherit !important;
    opacity: 0.7;
}
