/* ===================================
   Veilig Ontruimen - Modern CSS
   Colors: Blue & Black
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Blue */
    --primary-50: #e6ecf5;
    --primary-100: #ccd9eb;
    --primary-200: #99b3d7;
    --primary-300: #668dc3;
    --primary-400: #3367af;
    --primary-500: #00419b;
    --primary-600: #003384;
    --primary-700: #00266d;
    --primary-800: #001a56;
    --primary-900: #000d3f;

    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Semantic Colors */
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Header height */
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--gray-600);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 51, 132, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--primary-600);
    color: var(--primary-600);
}

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

.btn-light:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Section Styling */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.125rem;
}

/* ===================================
   HEADER - CLEAN & OPTIMIZED
   =================================== */

/* Header Container */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    z-index: 100000;
    transition: all var(--transition-base);
}

.header.menu-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Navigation Container */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    z-index: 100002;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

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

/* ===================================
   DESKTOP NAVIGATION - INDEX.HTML (UL/LI)
   =================================== */

/* Main Menu Container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Nav Links */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
    background: var(--primary-50);
}

/* Dropdown Icon */
.dropdown-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform var(--transition-fast);
}

/* Dropdown Container (INDEX.HTML) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu (INDEX.HTML) */
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: 8px;
    padding: 8px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Categories (INDEX.HTML) */
.dropdown-category {
    padding: 0;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-category:last-of-type {
    border-bottom: none;
}

.dropdown-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-category-header:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.category-arrow {
    width: 16px;
    height: 16px;
    color: var(--gray-500);
    transition: transform var(--transition-base);
}

.dropdown-category.active .category-arrow {
    transform: rotate(180deg);
    color: var(--primary-600);
}

.dropdown-category.active .dropdown-category-header {
    background: var(--primary-50);
    color: var(--primary-700);
}

/* Dropdown Submenu (INDEX.HTML) */
.dropdown-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dropdown-category.active .dropdown-submenu {
    max-height: 1000px;
}

/* Dropdown Links (INDEX.HTML) */
.dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    background: transparent;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-submenu .dropdown-link {
    padding-left: 32px;
}

.dropdown-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.dropdown-submenu .dropdown-link:hover {
    padding-left: 36px;
}

.dropdown-link.standalone {
    padding-left: 16px;
}

.dropdown-separator {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

/* CTA Button */
.nav-cta {
    margin-left: 16px;
}

/* ===================================
   DESKTOP NAVIGATION - SERVICE PAGES (DIV)
   =================================== */

/* Nav Links Container (SERVICE PAGES) */
.nav-menu .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu .btn-primary {
    margin-left: 8px;
}

/* Dropdown Container (SERVICE PAGES) */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

/* Dropdown Menu (SERVICE PAGES) */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: 8px;
    padding: 8px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Links (SERVICE PAGES) */
.dropdown .dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    background: transparent;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown .dropdown-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

/* ===================================
   MOBILE MENU TOGGLES (HIDDEN ON DESKTOP)
   =================================== */

/* Toggle Button (INDEX.HTML) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Toggle Button (SERVICE PAGES) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   NEW HERO SECTION - CLEAN & MODERN
   =================================== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 80px;
    overflow: hidden;
}

.hero-new-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.85) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.hero-new .container {
    position: relative;
    z-index: 1;
}

.hero-new-content {
    max-width: 720px;
}

@media (min-width: 1024px) {
    .hero-new-content {
        max-width: 1000px;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 51, 132, 0.15);
    border: 1px solid rgba(0, 51, 132, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

/* Hero Heading */
.hero-new-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--primary-400);
    position: relative;
}

/* Hero Description */
.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(0, 51, 132, 0.35);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.hero-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.hero-btn-secondary svg {
    width: 20px;
    height: 20px;
    color: var(--primary-400);
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
}

/* Hero Animations */
.hero-badge {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-new-content h1 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-cta-group {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-trust {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
    padding: 80px 0;
    background: var(--primary-600);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    order: 2;
}

.intro-text {
    order: 1;
    max-width: 100%;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text {
    max-width: 100%;
}

.intro-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 100%;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--white);
    font-weight: 600;
}

/* ===================================
   NATIONAL SERVICE SECTION
   =================================== */
.national-service {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.national-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.national-service-grid {
    display: grid;
    grid-template-columns: minmax(400px, 550px) 1fr;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.national-service-map {
    position: relative;
}

.national-service-map img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 65, 155, 0.15));
    transition: transform var(--transition-slow);
}

.national-service-map:hover img {
    transform: scale(1.02);
}

.national-service-content {
    max-width: 550px;
}

.national-service-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    color: var(--primary-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-100);
}

.national-service-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.national-service-content > p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.national-service-content > p strong {
    color: var(--primary-600);
    font-weight: 600;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.province-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
    text-decoration: none;
}

.province-link:hover {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.province-link svg {
    width: 18px;
    height: 18px;
    color: var(--primary-500);
    flex-shrink: 0;
    transition: color var(--transition-base);
}

.province-link:hover svg {
    color: var(--primary-600);
}

/* National Service Responsive */
@media (max-width: 1024px) {
    .national-service {
        padding: 80px 0;
    }

    .national-service-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .national-service-map {
        order: 2 ;
        display: flex;
        justify-content: center;
    }

    .national-service-map img {
        max-width: 320px;
    }

    .national-service-content {
        order: 1 ;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .national-service {
        padding: 60px 0;
    }

    .national-service-grid {
        gap: 40px;
    }

    .national-service-content h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .national-service-content > p {
        font-size: 1rem;
    }

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

    .national-service-map img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .national-service {
        padding: 48px 0;
    }

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

    .province-link {
        padding: 10px 12px;
        font-size: 0.8125rem;
        justify-content: center;
    }

    .province-link svg {
        width: 14px;
        height: 14px;
    }

    .national-service-map img {
        max-width: 100%;
        width: 100%;
    }
}

/* ===================================
   HERO USP SECTION
   =================================== */
.hero-usp-section {
    padding: 40px 0;
    background: var(--white);
}

.hero-usp-slider {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-900);
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-base);
}

.hero-usp-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-usp-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-600);
    flex-shrink: 0;
}

/* ===================================
   HOW CAN WE HELP SECTION
   =================================== */
.help-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.help-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--gray-900);
    margin: 0;
}

.help-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.help-view-all:hover {
    color: var(--primary-700);
    gap: 12px;
}

.help-view-all svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.help-view-all:hover svg {
    transform: translateX(4px);
}

.help-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    width: 100%;
}

.help-service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.help-service-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.help-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.help-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

    .help-service-card:hover .help-service-image img {
        transform: scale(1.05);
    }

.help-service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-service-content {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
}

.help-service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.help-service-card:hover h3 {
    color: var(--primary-700);
}

.help-service-arrow {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.help-service-card:hover .help-service-arrow {
    color: var(--primary-600);
    transform: translateX(4px);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.service-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-600);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-600);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   WHY US SECTION
   =================================== */
/* ===================================
   GOOGLE REVIEWS SECTION
   =================================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.google-badge svg {
    width: 20px;
    height: 20px;
}

.google-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: #FBBC04;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

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

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

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

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBC04;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.review-google-logo {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-google-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-200), var(--primary-400), var(--primary-200));
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 51, 132, 0.3);
}

.step-content {
    padding: 0 8px;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 51, 132, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    min-width: 200px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-600);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary:hover {
    background: var(--gray-50);
    color: var(--primary-700);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-600);
    border: none;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background: var(--gray-50);
    color: var(--primary-700);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cta-section .btn svg {
    width: 20px;
    height: 20px;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.decoration-circle:first-child {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
}

.decoration-circle:last-child {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
}

/* ===================================
   FOOTER - Modern, Clean & Professional
   =================================== */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-600), transparent);
    opacity: 0.3;
}

.footer-main {
    padding: 100px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 100px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform 0.3s ease;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.footer-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    position: relative;
    z-index: 1;
    display: block;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin: 0 0 32px 0;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
}

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

.footer-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-600), transparent);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list li a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-list li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.footer-list li a:hover {
    color: var(--primary-400);
    padding-left: 16px;
}

.footer-list li a:hover::before {
    width: 8px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color 0.25s ease;
}

.footer-contact-list li:hover {
    color: var(--gray-300);
}

.footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 0.25s ease;
}

.footer-contact-list li:hover svg {
    color: var(--white);
    opacity: 0.9;
}

.footer-contact-list a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: var(--primary-400);
}

.footer-contact-list span {
    color: var(--gray-400);
}

/* Footer Bottom */
.footer-bottom {
    background: #0A0E1A;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-500);
    transition: width 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-400);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links span {
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        padding: 80px 0 50px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-content {
        gap: 56px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        display: block;
        margin-bottom: 24px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-description {
        text-align: left;
        margin-bottom: 28px;
    }

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

    .footer-column {
        text-align: left;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-new {
        padding: calc(var(--header-height) + 60px) 0 80px;
    }

    .hero-new-content h1 {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-trust {
        gap: 24px;
    }

    .intro-section {
        padding: 60px 0;
    }

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

    .intro-text {
        order: 1;
    }

    .intro-image {
        order: 2;
    }

    .intro-text h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 20px;
    }

    .intro-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .help-section {
        padding: 60px 0;
    }

    .help-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .help-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .help-service-image {
        height: 180px;
    }

    .help-service-content {
        padding: 20px;
    }

    .help-service-card h3 {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --header-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed ;
        top: var(--header-height) ;
        left: 0 ;
        right: 0 ;
        bottom: 0 ;
        width: 100% ;
        height: calc(100vh - var(--header-height)) ;
        background-color: #ffffff ;
        flex-direction: column ;
        align-items: stretch ;
        padding: 24px ;
        gap: 12px ;
        transform: translateX(100%) ;
        transition: transform 0.3s ease ;
        z-index: 99999 ;
        overflow-y: auto ;
        overflow-x: hidden ;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--gray-100) ;
    }

    .nav-menu.active {
        transform: translateX(0) ;
    }

    .nav-menu li {
        width: 100% ;
        list-style: none ;
    }

    .nav-menu .nav-link {
        display: block ;
        width: 100% ;
        padding: 18px 24px ;
        color: #1f2937 ;
        background-color: #f3f4f6 ;
        border-radius: 12px ;
        font-size: 1.1rem ;
        font-weight: 500 ;
        text-decoration: none ;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background-color: #e6ecf5 ;
        color: #003384 ;
    }

    .nav-menu .nav-cta {
        margin-top: 24px ;
        margin-left: 0 ;
    }

    .nav-menu .nav-cta .btn {
        width: 100% ;
        justify-content: center ;
        padding: 18px 24px ;
    }

    /* Nav Menu for service pages (div structure) */
    .nav-menu .btn-primary {
        margin-top: 24px ;
        width: 100% ;
        justify-content: center ;
        padding: 18px 24px ;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        position: relative;
        z-index: 100001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Toggle (for service pages) */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        position: relative;
        z-index: 100001;
    }

    /* Mobile Nav Links (for service pages) */
    .nav-links {
        flex-direction: column ;
        align-items: stretch ;
        gap: 12px ;
        width: 100% ;
    }

    .nav-links .nav-link {
        display: block ;
        width: 100% ;
        padding: 18px 24px ;
        color: #1f2937 ;
        background-color: #f3f4f6 ;
        border-radius: 12px ;
        font-size: 1.1rem ;
        font-weight: 500 ;
        text-decoration: none ;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        background-color: #e6ecf5 ;
        color: #003384 ;
    }

    /* Mobile Dropdown (for service pages) */
    .dropdown {
        width: 100% ;
    }

    .dropdown-toggle {
        width: 100% ;
        justify-content: space-between ;
        padding: 18px 24px ;
        color: #1f2937 ;
        background-color: #f3f4f6 ;
        border-radius: 12px ;
        font-size: 1.1rem ;
        font-weight: 500 ;
    }

    .dropdown-toggle:hover {
        background-color: #e6ecf5 ;
        color: #003384 ;
    }

    .dropdown .dropdown-menu {
        position: static ;
        opacity: 1 ;
        visibility: visible ;
        transform: none ;
        box-shadow: none ;
        border: none ;
        padding: 0 ;
        margin-top: 12px ;
        display: none ;
        background: transparent ;
        min-width: 100% ;
        max-width: 100% ;
    }

    .dropdown.active .dropdown-menu {
        display: block ;
    }

    .dropdown .dropdown-link {
        display: block ;
        width: 100% ;
        padding: 14px 24px 14px 40px ;
        color: #1f2937 ;
        background-color: #f9fafb ;
        border-radius: 8px ;
        font-size: 1rem ;
        margin-bottom: 8px ;
    }

    .dropdown .dropdown-link:hover {
        background-color: #e6ecf5 ;
        color: #003384 ;
        padding-left: 44px ;
    }

    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 12px;
        display: none;
        background: transparent;
        min-width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown .nav-link {
        display: flex ;
        justify-content: space-between;
    }

    .dropdown-category {
        border-bottom: none;
        padding: 0;
        margin-bottom: 8px;
    }

    .dropdown-category-header {
        display: flex ;
        align-items: center ;
        justify-content: space-between ;
        padding: 16px 20px ;
        margin-bottom: 0;
        background: var(--gray-100) ;
        color: var(--gray-900) ;
        font-size: 0.9rem ;
        border-radius: 8px ;
    }

    .dropdown-category.active .dropdown-category-header {
        border-radius: 8px 8px 0 0 ;
        background: var(--primary-50) ;
        color: var(--primary-700) ;
    }

    .category-arrow {
        width: 18px ;
        height: 18px ;
        color: var(--gray-500) ;
    }

    .dropdown-category.active .category-arrow {
        color: var(--primary-600) ;
    }

    .dropdown-submenu .dropdown-link {
        padding: 14px 20px 14px 32px ;
        background: var(--gray-50) ;
        margin: 0 ;
        border-radius: 0 ;
        color: var(--gray-700) ;
        border-bottom: 1px solid var(--gray-200) ;
        font-size: 0.95rem ;
    }

    .dropdown-submenu .dropdown-link:hover {
        background: var(--primary-50) ;
        color: var(--primary-700) ;
    }

    .dropdown-submenu .dropdown-link:last-child {
        border-radius: 0 0 8px 8px ;
    }

    .dropdown-link.standalone {
        padding: 16px 20px ;
        background: var(--gray-100) ;
        margin: 6px 0 ;
        border-radius: 8px ;
        color: var(--gray-700) ;
        border: none ;
        font-size: 0.95rem ;
    }

    .dropdown-link.standalone:hover {
        background: var(--primary-50) ;
        color: var(--primary-700) ;
    }

    .dropdown-separator {
        margin: 12px 0;
    }

    /* New Hero Mobile */
    .hero-new {
        padding: calc(var(--header-height) + 40px) 0 60px;
        min-height: auto;
    }

    .hero-new-content {
        max-width: 100%;
    }

    .hero-badge {
        padding: 8px 14px;
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .hero-new-content h1 {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem);
        margin-bottom: 16px;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        flex: 1;
        min-width: calc(50% - 5px);
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.8125rem;
        font-weight: 600;
        border-radius: 12px;
    }

    .hero-btn-primary svg,
    .hero-btn-secondary svg {
        width: 16px;
        height: 16px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-trust-item {
        font-size: 0.875rem;
    }

    .hero-trust-item svg {
        width: 20px;
        height: 20px;
    }

    .intro-section {
        padding: 48px 0;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-text {
        order: 1 !important;
    }

    .intro-image {
        order: 2 !important;
    }

    .intro-text h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 16px;
        letter-spacing: 0;
    }

    .intro-text p {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .help-section {
        padding: 48px 0;
    }

    .help-header {
        margin-bottom: 32px;
    }

    .help-header h2 {
        font-size: 1.75rem;
    }

    .help-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .help-service-image {
        height: 180px;
    }

    .help-service-image img {
        object-fit: cover;
        object-position: center top;
    }

    .help-service-card:hover .help-service-image img {
        transform: none;
    }

    .help-service-content {
        padding: 18px;
    }

    .help-service-card h3 {
        font-size: 0.9375rem;
    }

    .help-service-arrow {
        width: 18px;
        height: 18px;
    }

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

    .service-card {
        padding: 24px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .section-header-center {
        margin-bottom: 48px;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

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

    .review-card {
        padding: 24px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-card {
        padding: 48px 24px;
    }

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

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* New Hero Extra Small */
    .hero-new {
        padding: calc(var(--header-height) + 32px) 0 48px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-new-content h1 {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
        margin-bottom: 14px;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 28px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 10px 14px;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 10px;
    }

    .hero-btn-primary svg,
    .hero-btn-secondary svg {
        width: 14px;
        height: 14px;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-trust-item {
        font-size: 0.8125rem;
        gap: 8px;
    }

    .hero-trust-item svg {
        width: 18px;
        height: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero animations are defined inline in the hero section styles */

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   PAGE HERO (Service Pages) - MODERN & CLEAN
   =================================== */
.page-hero {
    background: linear-gradient(135deg, #0033A0 0%, #001A56 100%);
    padding: calc(var(--header-height) + 50px) 0 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 700px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition-base);
    font-weight: 500;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.page-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    font-weight: 400;
}

/* ===================================
   PAGE CONTENT
   =================================== */
.page-content {
    padding: 0;
}

.content-section {
    padding: 60px 0;
}

.content-section:first-of-type {
    padding-top: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 16px;
}

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

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    position: relative;
}

.content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-image:hover img {
    transform: scale(1.03);
}

/* ===================================
   FEATURES SECTION - MODERN & CLEAN
   =================================== */
.features-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.feature-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-200);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-600);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-card .feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-600);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
}

.feature-card .feature-icon svg path {
    stroke: currentColor;
    fill: none;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 36px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-200);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.2);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Process Steps Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-step {
        padding: 32px 24px;
    }
}

/* ===================================
   DAMAGE SECTION (Wietplantage)
   =================================== */
.damage-section {
    padding: 60px 0;
    background: var(--white);
}

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

.damage-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.damage-content > p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.damage-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: grid;
    gap: 16px;
    text-align: left;
}

.damage-list li {
    padding: 16px 20px 16px 52px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
    border-left: 4px solid #EF4444;
    border-radius: 12px;
    font-size: 1.0625rem;
    color: var(--gray-800);
    position: relative;
    transition: all 0.3s ease;
}

.damage-list li::before {
    content: '⚠';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #EF4444;
}

.damage-list li:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

@media (max-width: 768px) {
    .damage-section {
        padding: 50px 0;
    }
    
    .damage-list li {
        padding: 14px 18px 14px 48px;
        font-size: 1rem;
    }
    
    .damage-list li::before {
        left: 16px;
        font-size: 1.25rem;
    }
}

/* ===================================
   RESPONSIVE - PAGE CONTENT
   =================================== */
@media (max-width: 1024px) {
    .content-grid {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--header-height) + 50px) 0 60px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-hero-description {
        font-size: 1.0625rem;
    }

    .breadcrumb {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }

    .page-content {
        padding: 40px 0;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section:first-of-type {
        padding-top: 60px;
    }

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

    .content-image {
        order: -1;
    }

    .features-section,
    .process-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-card {
        padding: 40px 28px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 48px 24px;
        border-radius: var(--radius-lg);
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-card p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-section .btn {
        width: 100%;
        min-width: 0;
        font-size: 1rem;
        padding: 16px 24px;
        justify-content: center;
    }

    .decoration-circle:first-child {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
    }

    .decoration-circle:last-child {
        width: 250px;
        height: 250px;
        bottom: -125px;
        left: -75px;
    }

    .benefits-section {
        padding: 60px 0;
    }
}

/* ===================================
   ALTERNATIVE LAYOUTS (Bedrijfsontruiming)
   =================================== */
.content-section-alt {
    padding: 60px 0;
    background: var(--white);
}

.content-grid-reverse {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.content-grid-reverse .content-image {
    order: -1;
}

.benefits-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 60px 0;
}

.section-header-alt {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header-alt h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header-alt p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.benefit-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-200);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .benefit-number {
        font-size: 2.25rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
}

.benefit-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-600);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-marker {
    width: 64px;
    height: 64px;
    background: var(--primary-600);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    flex: 0 0 24px;
    height: 3px;
    background: var(--primary-200);
    margin-top: 30px;
    position: relative;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-200);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.timeline-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Responsive - Alternative Layouts */
@media (max-width: 1024px) {
    .content-grid-reverse {
        gap: 40px;
    }
    
    .timeline-horizontal {
        flex-wrap: wrap;
    }
    
    .timeline-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section:first-of-type {
        padding-top: 40px;
    }

    .content-section-alt {
        padding: 40px 0;
    }

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

    .content-grid-reverse .content-image {
        order: 0;
    }

    .benefits-section {
        padding: 40px 0;
    }

    .section-header-alt {
        text-align: center;
        margin-bottom: 40px;
    }

    .benefits-list {
        gap: 24px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .benefit-number {
        min-width: auto;
    }

    .timeline-section {
        padding: 40px 0;
    }

    .timeline-horizontal {
        flex-direction: column;
        gap: 32px;
    }

    .timeline-connector {
        display: none;
    }
}

/* ===================================
   EMOTIONAL PAGE LAYOUT (Huis Leeghalen Na Overlijden)
   =================================== */

/* Emotional Intro Section */
.emotional-intro {
    padding: 60px 0;
    background: var(--white);
}

.emotional-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile: Stacked layout (text on top, image below) */
.emotional-text-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.emotional-text-block h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.emotional-text-block p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.emotional-text-block p:last-child {
    margin-bottom: 0;
}

.emotional-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.emotional-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.emotional-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Desktop/PC: Image left, text right */
@media (min-width: 769px) {
    .emotional-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .emotional-text-block {
        text-align: left;
        max-width: none;
        margin: 0;
        order: 2;
    }

    .emotional-image-wrapper {
        max-width: none;
        margin: 0;
        order: 1;
    }
}

/* Support Section */
.support-section {
    padding: 100px 0;
    background: var(--white);
}

.support-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.support-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.support-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.support-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.support-icon-wrapper {
    width: 72px;
    height: 72px;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-600);
}

.support-icon-wrapper svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.support-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.approach-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 40px;
    line-height: 1.3;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.approach-number {
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.approach-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.approach-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

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

.service-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive - Emotional Page */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-sidebar {
        position: static;
    }

    .support-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .emotional-intro {
        padding: 60px 0;
    }

    .emotional-text-block {
        margin-bottom: 40px;
    }

    .support-section,
    .approach-section {
        padding: 60px 0;
    }

    .support-cards-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 32px 24px;
    }

    .approach-list {
        gap: 24px;
    }

    .approach-item {
        gap: 16px;
    }

    .approach-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

/* ===================================
   ZORGKAMER ONTRUIMEN PAGE LAYOUT
   =================================== */
/* Urgency Section */
.urgency-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 51, 160, 0.05) 0%, rgba(0, 26, 86, 0.05) 100%);
}

.urgency-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 20px 60px rgba(0, 51, 160, 0.12);
    border: 2px solid var(--primary-200);
    position: relative;
    overflow: hidden;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
}

.urgency-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.25);
}

.urgency-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.urgency-content h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.urgency-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
}

/* Care Process Section */
.care-process-section {
    padding: 100px 0;
    background: var(--white);
}

.care-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.care-step {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.care-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
    background: var(--white);
}

.care-step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-600);
}

.care-step-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.care-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.care-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Responsive - Zorgkamer Page */
@media (max-width: 1024px) {
    .urgency-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .care-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .urgency-section {
        padding: 60px 0;
    }

    .urgency-card {
        padding: 32px 24px;
        gap: 24px;
    }

    .urgency-icon {
        width: 64px;
        height: 64px;
    }

    .urgency-icon svg {
        width: 32px;
        height: 32px;
    }

    .care-process-section {
        padding: 60px 0;
    }

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

    .care-step {
        padding: 24px;
    }
}

/* ===================================
   DELIVERY/OPLEVERINGEN PAGE
   =================================== */

/* Delivery Services Section */
.delivery-services-section {
    padding: 80px 0;
    background: var(--white);
}

.delivery-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.delivery-service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
}

.delivery-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.delivery-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    transition: all var(--transition-base);
}

.delivery-service-card:hover .delivery-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.delivery-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.delivery-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.delivery-service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

.experience-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
    text-align: center;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-500);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.experience-list li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-600);
}

.experience-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Responsive - Delivery Page */
@media (max-width: 1024px) {
    .delivery-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .delivery-services-section {
        padding: 40px 0;
    }

    .delivery-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .delivery-service-card {
        padding: 32px 24px;
    }

    .delivery-icon {
        width: 64px;
        height: 64px;
    }

    .delivery-icon svg {
        width: 32px;
        height: 32px;
    }

    .delivery-service-card h3 {
        font-size: 1.125rem;
    }

    .experience-section {
        padding: 40px 0;
    }

    .experience-text h2 {
        font-size: 1.75rem;
    }

    .experience-text > p {
        font-size: 1rem;
    }

    .experience-list li {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }
}

/* ===================================
   SERVICES OVERVIEW PAGE (Diensten)
   =================================== */

.services-overview-section {
    padding: 80px 0;
    background: var(--white);
}

.services-category {
    margin-bottom: 64px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-500);
    display: inline-block;
}

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

.service-link-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-500);
}

.service-link-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    transition: all var(--transition-base);
}

.service-link-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.service-link-card .service-icon svg {
    width: 40px !important;
    height: 40px !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    fill: none !important;
}

.service-link-card .service-icon svg path {
    stroke: #ffffff !important;
}

.service-link-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    transition: color var(--transition-base);
}

.service-link-card:hover h4 {
    color: var(--primary-600);
}

.service-link-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive - Services Overview */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-overview-section {
        padding: 40px 0;
    }

    .services-category {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 1.375rem;
        margin-bottom: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-link-card {
        padding: 32px 24px;
    }

    .service-link-card .service-icon {
        width: 72px;
        height: 72px;
    }

    .service-link-card .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-link-card h4 {
        font-size: 1.125rem;
    }
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-form-header p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-600);
}

.form-checkbox label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-600);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--primary-700);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-info-card > p {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-info-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 8px;
}

.contact-info-content a,
.contact-info-content p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.contact-info-content a:hover {
    opacity: 0.9;
}

.contact-info-note {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.8;
    display: block;
}

/* Contact USPs */
.contact-usps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.contact-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-usp svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-600);
    flex-shrink: 0;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-wrapper {
        position: static;
    }

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-form-header h2 {
        font-size: 1.75rem;
    }

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

    .contact-info-card {
        padding: 32px 24px;
    }

    .contact-faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 24px;
    }
}

/* ===================================
   ABOUT/OVER ONS PAGE
   =================================== */

/* About Intro Section */
.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-intro-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-intro-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

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

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-300);
}

.mission-icon,
.vision-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon svg,
.vision-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.mission-icon svg path,
.mission-icon svg circle,
.vision-icon svg path,
.vision-icon svg circle {
    stroke: #ffffff !important;
    fill: none !important;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-600);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon svg {
    stroke: var(--white);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

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

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.why-choose-item {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.why-choose-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.why-choose-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    padding-top: 16px;
}

.why-choose-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-intro-image {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    .about-intro-section {
        padding: 60px 0;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .about-intro-content .lead {
        font-size: 1.125rem;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

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

    .mission-card,
    .vision-card {
        padding: 32px 24px;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-section {
        padding: 60px 0;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-choose-item {
        padding: 32px 24px;
    }
}

/* ============================================
   WERKWIJZE PAGE STYLES
   ============================================ */

/* Process Intro Section */
.process-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.process-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.process-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.process-intro-content .lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.process-intro-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Process Steps Section */
.process-steps-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.process-steps-section .process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    position: relative;
}

.process-steps-section .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-400), var(--primary-200));
}

.process-steps-section .process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.process-steps-section .process-step-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.process-steps-section .process-step-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-300);
}

.process-steps-section .process-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.process-steps-section .process-step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-600);
}

.process-steps-section .process-step-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.process-steps-section .process-step-content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.process-steps-section .process-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-steps-section .process-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-steps-section .process-step-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Process Section */
.why-process-section {
    padding: 80px 0;
    background: var(--white);
}

.why-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-process-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-base);
}

.why-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.why-process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-process-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.why-process-icon svg path,
.why-process-icon svg circle {
    stroke: #ffffff !important;
    fill: none !important;
}

.why-process-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-process-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
}

.timeline-section .section-header h2,
.timeline-section .section-header p {
    color: var(--white);
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 64px 0 32px;
    padding: 0 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--primary-300);
    border-radius: var(--radius-full);
    position: relative;
    z-index: 2;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: var(--primary-300);
    min-width: 60px;
}

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

.timeline-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-100);
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.timeline-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--primary-100);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .process-steps-section .process-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .process-steps-section .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-steps-section .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
    }

    .why-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-visual {
        padding: 0 20px;
    }

    .timeline-line {
        min-width: 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .process-intro-section {
        padding: 60px 0;
    }

    .process-intro-content h2 {
        font-size: 2rem;
    }

    .process-steps-section {
        padding: 60px 0;
    }

    .process-steps {
        gap: 40px;
    }

    .process-steps-section .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps-section .process-step:not(:last-child)::after {
        display: none;
    }

    .process-steps-section .process-step-number {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
        margin: 0 auto;
    }

    .process-steps-section .process-step-content {
        padding: 32px 24px;
    }

    .process-steps-section .process-step-content h3 {
        font-size: 1.5rem;
    }

    .why-process-section {
        padding: 60px 0;
    }

    .why-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-section {
        padding: 60px 0;
    }

    .timeline-visual {
        flex-direction: column;
        padding: 0;
        gap: 24px;
    }

    .timeline-line {
        width: 2px;
        height: 40px;
        min-width: 0;
    }

    .timeline-time {
        font-size: 0.8125rem;
    }

    .timeline-title {
        font-size: 0.9375rem;
    }
}

/* ===================================
   SERVICES LIST SECTION
   =================================== */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.services-list-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-list-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.services-list-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-list-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-list-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-list-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.benefits-wrapper .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefits-wrapper .benefit-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefits-wrapper .benefit-item:hover {
    border-color: var(--primary-600);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefits-wrapper .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-wrapper .benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: white;
}

.benefits-wrapper .benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.benefits-wrapper .benefit-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-list-header h2 {
        font-size: 1.75rem;
    }

    .services-list-header p {
        font-size: 1rem;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-list-item {
        padding: 20px;
    }

    .benefits-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .benefits-wrapper .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-wrapper .benefit-item {
        padding: 24px;
    }

    .benefits-wrapper .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefits-wrapper .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefits-wrapper .benefit-content h3 {
        font-size: 1.125rem;
    }

    .benefits-wrapper .benefit-content p {
        font-size: 0.875rem;
    }
}

/* ===================================
   WHATSAPP BUTTON
   =================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   LEGAL PAGES (Privacy & Voorwaarden)
   =================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    padding-left: 24px;
    position: relative;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: 700;
    font-size: 1.25rem;
}

.legal-list li strong {
    color: var(--gray-900);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        max-width: 100%;
    }

    .legal-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .legal-section p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .legal-list {
        margin: 16px 0;
        gap: 10px;
    }

    .legal-list li {
        font-size: 0.9375rem;
        padding-left: 20px;
    }
}
