/* ============================================
   WEBBLY TEMPLATE - MULTI-PAGE - SHARED STYLES
   Based on Rijscholen Template
   ============================================ */

/* ============================================
   DESKTOP/MOBILE VISIBILITY CONTROL
   ============================================ */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* ============================================
   ROOT CSS VARIABLES - Change once, everything updates
   ============================================ */
:root {
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-footer: #1a1a1a;
    --bg-section-alt: #f8f9fa;
    
    /* Text colors */
    --text-primary: #1a1a1a;
    --text-secondary: #5f6368;
    --text-inverse: #ffffff;
    
    /* Button Primary (green bg, white text) */
    --btn-primary-bg: #1B5E20;
    --btn-primary-text: #ffffff;
    --btn-primary-hover-bg: #145218;
    --btn-primary-hover-text: #ffffff;
    
    /* Button Secondary (white bg, green text) */
    --btn-secondary-bg: #ffffff;
    --btn-secondary-text: #1B5E20;
    --btn-secondary-hover-bg: #1B5E20;
    --btn-secondary-hover-text: #ffffff;
    
    /* Card colors */
    --card-bg: #ffffff;
    --card-text: #1a1a1a;
    --card-border: #e0e0e0;
    
    /* Accent colors */
    --accent-color: #1B5E20;
    --link-color: #1B5E20;
    --link-hover: #145218;
    
    /* Footer social section colors */
    --footer-social-bg: #1a1a1a;
    --footer-social-icon: #ffffff;
    --footer-copyright: rgba(255,255,255,0.6);
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    width: 100%;
}

/* ============================================
   NAVIGATION - DESKTOP
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 6%;
    border-bottom: 1px solid var(--card-border);
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-cta {
    margin-left: 16px;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

/* ============================================
   NAVIGATION - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-logo img {
        height: 32px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    padding: 80px 20px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
}

.mobile-menu a.active {
    color: var(--accent-color);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--btn-primary-hover-bg);
    color: var(--btn-primary-hover-text);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
}

.btn-secondary:hover {
    background: var(--btn-secondary-hover-bg);
    color: var(--btn-secondary-hover-text);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Nav CTA Button override */
.nav-cta .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: none;
    border-color: var(--accent-color);
    background: transparent;
    color: var(--accent-color);
}

.nav-cta .btn-secondary:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

/* Map button fix */
.map-btn {
    width: auto;
    padding: 14px 32px;
    font-size: 16px;
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
/* ============================================
   HERO SECTION - DESKTOP
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* HIDDEN H1 FOR SEO */
.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1,
.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.tagline {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 600px;
    color: var(--text-secondary);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.features li::before {
    content: '✓';
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* HERO WITH IMAGE */
.hero-with-image .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-with-image .hero-content h1,
.hero-with-image .hero-content h2,
.hero-with-image .tagline,
.hero-with-image .features li {
    color: #ffffff;
}

.hero-with-image .features li::before {
    color: var(--accent-color);
}

/* HERO GRADIENT */
.hero-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0d3a8f 100%);
}

.hero-gradient .hero-content h1,
.hero-gradient .hero-content h2,
.hero-gradient .tagline,
.hero-gradient .features li {
    color: #ffffff;
}

.hero-gradient .features li::before {
    color: #ffffff;
}

/* PAGE HERO (smaller for inner pages) */
.page-hero {
    min-height: 350px;
    padding: 140px 0 60px;
}

.page-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero .tagline {
    margin-bottom: 0;
}

/* HERO H1/H2 STYLING - Desktop with image */
.hero-with-image .hero-content .hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-with-image .hero-content .hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-with-image .tagline {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

/* ============================================
   USP BAR - DESKTOP
   ============================================ */
.usp-bar {
    padding: 40px 6%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--card-border);
}

.usp-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.usp-item i {
    font-size: 32px;
    color: var(--accent-color);
}

.usp-item span {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

/* ============================================
   WHAT WE OFFER SECTION - DESKTOP
   ============================================ */
.what-we-offer {
    background: var(--bg-primary);
    padding: 80px 6%;
}

.offer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-list {
    list-style: none;
    margin-bottom: 32px;
}

.offer-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--card-border);
}

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

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.offer-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
}


/* ============================================
   WEEKLY OFFERS SECTION - DESKTOP
   ============================================ */
.weekly-offers {
    background: var(--bg-primary);
    padding: 80px 6%;
    text-align: center;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.social-follow {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.social-follow-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-follow-link:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-follow-link i {
    font-size: 24px;
}

.social-follow-link .fa-facebook-f {
    color: #1877F2;
}

.social-follow-link .fa-instagram {
    color: #E4405F;
}

/* ============================================
   SECTIONS - DESKTOP
   ============================================ */
section {
    padding: 100px 6%;
    background: var(--bg-primary);
}

section.alt-bg {
    background: var(--bg-section-alt);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 22px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES SECTION - DESKTOP
   ============================================ */
.services {
    background: var(--bg-primary);
    padding: 60px 6%;
}

.services-list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin-bottom: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
    padding-right: 20px;
    text-align: center;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: center;
    min-width: 100px;
}

/* ============================================
   ABOUT SECTION - DESKTOP
   ============================================ */
.about {
    background: var(--bg-primary);
    padding: 80px 6%;
}

.about-split {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 60px;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 550px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
}


/* ============================================
   TRUST SECTION - DESKTOP
   ============================================ */
.trust-section {
    background: var(--bg-primary);
    padding: 80px 6%;
    text-align: center;
}

.trust-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-section-alt);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.trust-cta-text {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.trust-section {
    background: var(--bg-primary);
    padding: 80px 6%;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google-review:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trust-help-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* ============================================
   HOURS & MAP SECTION - DESKTOP
   ============================================ */
.hours-map-section {
    background: var(--bg-section-alt);
    padding: 80px 6%;
}

.hours-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hours-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px;
}

.hours-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-primary);
}

.hours-list {
    font-size: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
}

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

.hours-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* Map card fix */
.map-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-embed {
    width: 100%;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    min-height: 300px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-btn {
    width: auto;
    padding: 14px 32px;
    font-size: 16px;
    align-self: center;
}

/* ============================================
   FOOTER - DESKTOP
   ============================================ */
footer {
    background: var(--bg-footer);
    padding: 60px 6% 30px;
    color: var(--text-inverse);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-inverse);
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--text-inverse);
}

.footer-hours {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.footer-tgtg {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-tgtg i {
    color: #00826C;
    margin-right: 6px;
}

.footer-icons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.footer-icons a {
    color: rgba(255,255,255,0.7);
    font-size: 32px;
    transition: color 0.3s ease;
}

.footer-icons a:hover {
    color: var(--text-inverse);
}

.footer-social {
    text-align: right;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-inverse);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.social-link {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-inverse);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--text-inverse);
}

/* ============================================
   PRODUCTS PAGE - DESKTOP
   ============================================ */
.products-intro {
    padding: 160px 6% 60px;
    text-align: center;
    background: var(--bg-primary);
}

.products-intro h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.products-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 0 6% 80px;
    background: var(--bg-primary);
}

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

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.product-card-image {
    height: 280px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 28px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-cta {
    padding: 80px 6%;
    background: var(--accent-color);
    text-align: center;
}

.page-cta h2 {
    font-size: 36px;
    color: var(--text-inverse);
    margin-bottom: 12px;
}

.page-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.page-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.page-cta .btn-primary {
    background: var(--text-inverse);
    color: var(--accent-color);
    border-color: var(--text-inverse);
}

.page-cta .btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    border-color: var(--text-inverse);
}

/* ============================================
   ZAKELIJK PAGE - DESKTOP
   ============================================ */
.zakelijk-hero {
    padding: 160px 6% 80px;
    text-align: center;
    background: var(--bg-primary);
}

.zakelijk-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.zakelijk-tagline {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 32px;
    font-weight: 600;
}

.zakelijk-intro {
    max-width: 600px;
    margin: 0 auto 40px;
}

.zakelijk-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.zakelijk-services {
    padding: 80px 6%;
    background: var(--bg-section-alt);
}

.zakelijk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.zakelijk-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zakelijk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.zakelijk-card i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.zakelijk-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.zakelijk-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.zakelijk-steps {
    padding: 80px 6%;
    background: var(--bg-primary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    color: var(--accent-color);
    font-size: 24px;
}

/* ============================================
   FAQ PAGE - DESKTOP
   ============================================ */
.faq-hero {
    padding: 160px 6% 60px;
    text-align: center;
    background: var(--bg-primary);
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.faq-hero p {
    font-size: 18px;
    color: var(--text-secondary);
}

.faq-section {
    padding: 0 6% 80px;
    background: var(--bg-primary);
}

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

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

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

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 0 24px 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
}

.faq-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE - DESKTOP
   ============================================ */
.contact-hero {
    padding: 160px 6% 60px;
    text-align: center;
    background: var(--bg-primary);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-secondary);
}

.contact-info-section {
    padding: 0 6% 60px;
    background: var(--bg-primary);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
}

.contact-info-card i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.contact-info-card .contact-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

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

.contact-map-btn {
    text-align: center;
}

.kom-langs-section {
    padding: 80px 6%;
    background: var(--bg-section-alt);
}

.kom-langs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.kom-langs-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.kom-langs-intro {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.kom-langs-list {
    list-style: none;
}

.kom-langs-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--card-border);
}

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

.kom-langs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.kom-langs-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kom-langs-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.kom-langs-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 4px;
}

.kom-langs-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.kom-langs-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vacatures-section {
    padding: 80px 6%;
    background: var(--bg-primary);
    text-align: center;
}

.vacatures-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.vacatures-content {
    max-width: 500px;
    margin: 0 auto;
}

.vacatures-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.vacatures-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.vacatures-content a:hover {
    text-decoration: underline;
}

/* Hiring state */
.vacatures-content.hiring .hiring-intro {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.vacatures-content.hiring h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.vacatures-list {
    list-style: none;
    margin-bottom: 24px;
}

.vacatures-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.vacatures-list li::before {
    content: '• ';
    color: var(--accent-color);
}

/* ============================================
   MOBILE STYLES
   ============================================ */
@media (max-width: 768px) {
    .mobile-section {
        padding: 40px 20px;
    }


    .mobile-section-title {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 12px;
        color: var(--text-primary);
    }

    .mobile-section-subtitle {
        font-size: 16px;
        text-align: center;
        color: var(--text-secondary);
        margin-bottom: 32px;
    }

    /* Mobile Hero */
    .mobile-hero {
        padding: 80px 20px 40px;
        text-align: center;
        min-height: 400px;
        position: relative;
    }

    .mobile-hero-with-image {
        position: relative;
        overflow: hidden;
    }

    .mobile-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .mobile-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-hero-with-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

    .mobile-hero-content {
        position: relative;
        z-index: 3;
    }

    .mobile-hero-with-image h1,
    .mobile-hero-with-image .tagline,
    .mobile-hero-with-image .mobile-features li {
        color: white;
    }

    .mobile-hero-gradient {
        background: linear-gradient(135deg, var(--accent-color) 0%, #0d3a8f 100%);
    }

    .mobile-hero-gradient h1,
    .mobile-hero-gradient .tagline,
    .mobile-hero-gradient .mobile-features li {
        color: white;
    }

    .mobile-hero .tagline {
        font-size: 18px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .mobile-features {
        list-style: none;
        margin-bottom: 24px;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-features li {
        padding: 8px 0;
        padding-left: 24px;
        position: relative;
        font-size: 15px;
    }

    .mobile-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: 700;
    }

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

    .mobile-cta-buttons .btn-primary,
    .mobile-cta-buttons .btn-secondary {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* Mobile Page Hero */
    .mobile-page-hero {
        padding: 80px 20px 40px;
        text-align: center;
        min-height: 250px;
    }

    .mobile-page-hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .mobile-page-hero .tagline {
        margin-bottom: 0;
    }

    /* Mobile Hero H1/H2 styling */
    .mobile-hero-subtitle {
        font-size: 11px !important;
        font-weight: 400 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 12px;
    }

    .mobile-hero-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 16px;
    }

    /* Mobile USP Bar */
    .mobile-usp-bar {
        padding: 24px 20px;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--card-border);
    }

    .mobile-usp-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        text-align: center;
    }

    .mobile-usp-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mobile-usp-item i {
        font-size: 24px;
        color: var(--accent-color);
    }

    .mobile-usp-item span {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-primary);
    }

     /* Mobile Hours List */
     .mobile-section-alt {
        background: var(--bg-section-alt);
    }
    
    .mobile-hours-list {
        padding: 0 4px;
    }

    .mobile-hours-row {
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid var(--card-border);
        font-size: 16px;
    }

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

    .mobile-hours-row span:last-child {
        font-weight: 700;
        color: var(--text-primary);
    }

    /* Mobile Price List */
    .mobile-price-list {
        text-align: left;
    }

    .mobile-price-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
        border-bottom: 1px solid var(--card-border);
    }

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

    .mobile-price-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-price-left strong {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .mobile-price-left span {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .mobile-price-right {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
    }

    /* Mobile Products List */
    .mobile-products-list {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        overflow: hidden;
    }

    .mobile-product-item {
        display: flex;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--card-border);
        align-items: flex-start;
    }

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

    .mobile-product-emoji {
        font-size: 28px;
        line-height: 1;
    }

    .mobile-product-text strong {
        display: block;
        font-size: 16px;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .mobile-product-text p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.4;
    }

    /* Mobile About */
    .mobile-section-alt {
        background: var(--bg-primary);
    }

    .mobile-about-image {
        width: 100%;
        overflow: hidden;
        margin-bottom: 24px;
    }

    .mobile-about-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

    .mobile-about-image-placeholder {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--text-secondary);
    }

    .mobile-about-text p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text-primary);
        margin-bottom: 16px;
    }

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

    /* Mobile Social Follow */
    .mobile-social-follow {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 16px 20px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 10px;
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 600;
        font-size: 15px;
    }
    .mobile-social-link i {
        font-size: 22px;
    }
    .mobile-social-link .fa-facebook-f {
        color: #1877F2;
    }
    .mobile-social-link .fa-instagram {
        color: #E4405F;
    }

    /* Mobile Zakelijk CTA */
    .mobile-zakelijk-card {
        background: var(--accent-color);
        padding: 40px 24px;
        border-radius: 12px;
        text-align: center;
        color: var(--text-inverse);
    }

    .mobile-zakelijk-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .mobile-zakelijk-card p {
        font-size: 15px;
        opacity: 0.9;
        margin-bottom: 24px;
    }

    .mobile-btn-full {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--text-inverse);
        color: var(--accent-color);
        border-color: var(--text-inverse);
    }

    /* Mobile Trust Section */
    .mobile-trust-badge {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        padding: 6px 16px;
        background: var(--bg-section-alt);
        border: 1px solid var(--card-border);
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        margin-bottom: 16px;
    }
    

    .mobile-trust-intro {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 20px;
        text-align: center;
    }

    .mobile-trust-cta {
        font-size: 15px;
        text-align: center;
        margin-bottom: 24px;
        color: var(--text-primary);
    }

    .mobile-trust-section {
        border-top: 1px solid var(--card-border);
    }

    .mobile-btn-google {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 24px;
        background: var(--card-bg);
        border: 2px solid var(--card-border);
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-secondary);
        text-decoration: none;
    }

    .mobile-btn-google .google-icon {
        width: 20px;
        height: 20px;
    }

    .mobile-trust-help {
        font-size: 13px;
        color: var(--text-secondary);
        text-align: center;
        margin-top: 16px;
    }

    /* Mobile TGTG */
    .mobile-tgtg {
        text-align: center;
        padding: 32px 20px;
    }

    .mobile-tgtg-text {
        font-size: 13px;
        color: var(--text-secondary);
        margin-bottom: 12px;
    }

    .mobile-tgtg-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #00826C;
        color: #ffffff;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-tgtg-badge i {
        font-size: 18px;
    }

    /* Mobile FAQ Accordion */
    .mobile-faq-list {
        display: flex;
        flex-direction: column;
    }

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

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

    .mobile-faq-question i {
        font-size: 14px;
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }

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

    .mobile-faq-answer {
        display: none;
        padding: 0 0 18px 0;
    }

    .mobile-faq-item.active .mobile-faq-answer {
        display: block;
    }

    .mobile-faq-answer p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-secondary);
    }

    .mobile-faq-answer a {
        color: var(--accent-color);
        text-decoration: none;
    }

    /* Mobile Map */
    .mobile-section-alt {
        background: var(--bg-section-alt);
    }
    
    .mobile-map-embed {
        border-radius: 12px;
        overflow: hidden;
        height: 220px;
        margin-bottom: 16px;
    }

    .mobile-map-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .mobile-map-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    /* Mobile Footer */
    .mobile-footer-icons {
        background: var(--bg-footer);
        padding: 40px 20px 30px;
        text-align: center;
    }

    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 24px;
    }

    .mobile-social-icons a {
        color: rgba(255,255,255,0.7);
        font-size: 28px;
    }

    .mobile-social-icons a:hover {
        color: var(--text-inverse);
    }

    .mobile-footer-copyright {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
    }

    .mobile-footer-copyright a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;

    }

/* Mobile CTA Section */
    .mobile-cta-section {
        padding: 30px 20px;
        background: var(--bg-primary);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-cta-section .btn-primary,
    .mobile-cta-section .btn-secondary {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* Mobile Media Section */
    .mobile-media-section {
        padding: 30px 20px;
        background: var(--bg-section-alt);
    }

    .mobile-image-placeholder {
        width: 100%;
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .mobile-image-placeholder img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobile-video-placeholder {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .mobile-video-placeholder video {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobile-image-placeholder:empty,
    .mobile-video-placeholder:empty {
        display: none;
    }

    /* Mobile CTA Bottom */
    .mobile-cta-bottom {
        padding: 40px 20px;
        background: var(--bg-primary);
        text-align: center;
    }

    .mobile-cta-bottom h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .mobile-cta-bottom p {
        font-size: 16px;
        color: var(--text-secondary);
        margin-bottom: 24px;
    }
}


/* ============================================
   DESKTOP SCALING
   ============================================ */

/* Small laptops/MacBook 14-15" (1024px - 1700px) */
@media (min-width: 1024px) and (max-width: 1700px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-price {
        font-size: 22px;
    }
    
    section {
        padding: 50px 5%;
    }
}

/* Standard desktop (1701px - 1919px) */
@media (min-width: 1701px) and (max-width: 1919px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 46px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .service-price {
        font-size: 28px;
    }
}

/* Large monitors (1920px+) */
@media (min-width: 1920px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .service-price {
        font-size: 30px;
    }
    
    section {
        padding: 80px 6%;
    }
    
    .service-item {
        padding: 20px 30px;
        margin-bottom: 14px;
    }
    
    .service-content h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .service-content p {
        font-size: 16px;
    }
}

/* ============================================
   MOBILE SCALING
   ============================================ */

/* Tiny phones (max 359px) */
@media (max-width: 359px) {
    .mobile-hero h1 {
        font-size: 24px;
    }
    
    .mobile-section-title {
        font-size: 20px;
    }
    
    .mobile-section {
        padding: 30px 16px;
        text-align: center;
    }
}

/* Small/medium phones (360px - 389px) */
@media (min-width: 360px) and (max-width: 389px) {
    .mobile-hero h1 {
        font-size: 28px;
    }
    
    .mobile-section-title {
        font-size: 24px;
    }
    
    .mobile-section {
        padding: 35px 18px;
    }
}

/* Standard phones (390px - 429px) */
@media (min-width: 390px) and (max-width: 429px) {
    .mobile-hero h1 {
        font-size: 32px;
    }
    
    .mobile-section-title {
        font-size: 28px;
    }
    
    .mobile-section {
        padding: 40px 20px;
    }
}

/* Large phones (430px - 767px) */
@media (min-width: 430px) and (max-width: 767px) {
    .mobile-hero h1 {
        font-size: 36px;
    }
    
    .mobile-section-title {
        font-size: 32px;
    }
    
    .mobile-section {
        padding: 45px 24px;
    }
}