
:root {
    
    --color-drogeham: #00C853; 
    --color-kootstertille: #183fa9; 
    --color-dark: #0a0e17;
    --color-light: #f4f7fc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur-strength: 16px;
    
    
    --main-gradient: linear-gradient(45deg, var(--color-drogeham), var(--color-kootstertille));
    --text-gradient: linear-gradient(45deg, #00E676, #448AFF);
    
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}


#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--main-gradient);
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 15px var(--color-kootstertille);
}




.map-zone {
    position: relative;
    flex: 1; 
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;     
    justify-content: center; 
    overflow: hidden;
    z-index: 1;
    
    padding: 40px 0; 
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.zone-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.8s ease;
}


.zone-kootstertille .zone-bg {
    background: linear-gradient(180deg, #0044CC 0%, #2979FF 100%);
    background-image: 
        linear-gradient(180deg, #0044CC 0%, #2979FF 100%),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: cover, 50px 50px, 50px 50px;
    background-blend-mode: normal, overlay, overlay;
    box-shadow: inset 0 -20px 50px rgba(0,0,0,0.5); 
}


.zone-drogeham .zone-bg {
    background: linear-gradient(0deg, #007E33 0%, #00C851 100%);
    background-image: 
        linear-gradient(0deg, #007E33 0%, #00C851 100%),
        radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: cover, 30px 30px;
    background-blend-mode: normal, overlay;
    box-shadow: inset 0 20px 50px rgba(0,0,0,0.5); 
}

.map-zone:hover .zone-bg { transform: scale(1.05); }



.canal-divider {
    position: absolute;
    left: 0;
    width: 100%; 
    height: 80px; 
    background: #000;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid rgba(255,255,255,0.3);
    border-bottom: 3px solid rgba(255,255,255,0.3);
    pointer-events: none;
    
    
    
    top: 50%; 
    transform: translateY(-50%);
    
    
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.water {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 1px,
        transparent 1px,
        transparent 20px
    );
}

.canal-text {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    white-space: nowrap;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.map-label {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -2px;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}



.zone-content {
    position: relative;
    background: #ffffff;
    width: 350px; 
    max-width: 90%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 5px;
}

.map-zone:hover .zone-content {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.4);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color-dark);
}
.logo:hover { text-decoration: none; }

.card-header-logo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-size: 2.5rem;
    border: 4px solid #fff;
    transition: transform 0.4s ease;
}
.map-zone:hover .card-header-logo {
    transform: translateX(-50%) scale(1.1) rotate(10deg);
}

.card-body {
    padding: 0 2rem 1rem;
    width: 100%;
}

.location-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #999;
    margin-bottom: 0.5rem;
}

.zone-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
    color: #111;
    line-height: 1.1;
}

.description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.divider-line {
    height: 1px;
    background: #eee;
    width: 60%;
    margin: 0 auto 0.8rem;
}

.details p {
    margin: 0.3rem 0;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.details i { color: #ccc; }


.card-footer {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    justify-content: center;
}

.btn-action {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}


.zone-kootstertille .card-header-logo { color: #0044CC; border-color: #e3f2fd; }
.zone-kootstertille .btn-action { background: linear-gradient(135deg, #0044CC 0%, #2979FF 100%); }

.zone-drogeham .card-header-logo { color: #007E33; border-color: #e8f5e9; }
.zone-drogeham .btn-action { background: linear-gradient(135deg, #007E33 0%, #00C851 100%); }




@media (max-width: 768px) {
    

    
    .map-zone {
        flex: none;       
        height: auto;     
        width: 100%;
        padding: 80px 20px; 
        display: block;   
        position: relative;
    }

    
    .zone-content {
        margin: 0 auto;   
        width: 100%;
        max-width: 350px; 
        padding-top: 60px; 
    }

    
    .canal-divider {
        position: relative; 
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        
        width: 100%;
        height: 60px;
        z-index: 20;
        margin: 0; 
        background: #000;
        border-top: 2px solid rgba(255,255,255,0.3);
        border-bottom: 2px solid rgba(255,255,255,0.3);
    }
    
    


}

.zone-content.old-style-card {
    background-color: rgb(255, 255, 255);
    border-radius: 10% !important;
    padding: 20px;
    width: 350px; 
    max-width: 90%;
    
    transform: none; 
}

.zone-content.kootstertille-style {
    border: 0.5vw solid var(--old-blue);
    box-shadow: 10px 10px 20px var(--old-shadow-blue);
}

.zone-content.drogeham-style {
    border: 0.5vw solid var(--old-green);
    box-shadow: 10px 10px 20px var(--old-shadow-blue);
}

.zone-content.old-style-card h2,
.zone-content.old-style-card p {
    color: var(--old-blue); 
    text-align: center;
}

.card-header-logo {
    top: -40px; 
    border: 4px solid white;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.map-zone:hover .zone-content.old-style-card {
    transform: translateY(-10px) scale(1.02); 
}
    
    .map-label { 
        font-size: 15vw; 
        opacity: 0.1 !important; 
        top: 50%; 
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .card-header-logo {
        width: 80px;
        height: 80px;
        top: -40px; 
        font-size: 2rem;
    }
    
    
    .zone-kootstertille { order: 1; }
    .canal-divider      { order: 2; }
    .zone-drogeham      { order: 3; }

.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-dark);
    letter-spacing: -1px;
}

.logo-text .highlight {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-kootstertille);
}



.gradient-text {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.location-cards-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
    padding: 20px;
}


.location-card {
    position: relative;
    width: 350px;
    height: 400px;
    background: #fff;
    border-radius: 40px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.8);
}

.location-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}


.map-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}


.drogeham .map-visual {
    background-color: rgba(67, 160, 71, 0.1);
    
    background-image: radial-gradient(#43a047 1px, transparent 1px);
    background-size: 20px 20px;
}
.drogeham h2 { color: var(--color-drogeham); }
.drogeham .map-pin { color: var(--color-drogeham); }
.drogeham:hover { border-color: var(--color-drogeham); }


.kootstertille .map-visual {
    background-color: rgba(13, 71, 161, 0.1);
    background-image: radial-gradient(#0d47a1 1px, transparent 1px);
    background-size: 20px 20px;
}
.kootstertille h2 { color: var(--color-kootstertille); }
.kootstertille .map-pin { color: var(--color-kootstertille); }
.kootstertille:hover { border-color: var(--color-kootstertille); }

.map-pin {
    width: 60px;
    height: 60px;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.tilt-card {
    transition: transform 0.1s ease-out; 
    will-change: transform; 
    transform-style: preserve-3d; 
}

.tilt-card:not(:hover) {
    transition: transform 0.5s ease-out;
}

.TekstCenter {
    text-align: center;
}

.Header {
    display: flex;
    background: rgb(255, 255, 255);
    padding: 10px;
    text-align: center;
    font-size: clamp(10px, 1vw, 20px);
    align-items: center;
    gap: 5%;
    color: rgb(0, 0, 127);
}


.About {
    background: rgb(227, 227, 227);
    padding: 10px;
    text-align: center;
}

.Foto-Kaart {
    position: relative;          
    display: flex;
    margin-right: 2%;  
    margin-bottom: 5%;     
    text-align: center;
    margin-left: auto;

}

.Foto-Kaart img.base {
    display: flex;
    width: 100%;                 
    height: auto;
    border-radius: 7%;
    box-shadow: 20px 20px 5px rgba(40, 22, 140, 0.25);
}

.Foto-Kaart img.overlayKootstertille {
    position: absolute;
    width: 20%;                  
    height: auto;
    bottom: 35%;                  
    right: 60%;                   
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    transform-origin: center;
    cursor: pointer;
    display: flex;
}

.Foto-Kaart img.overlayKootstertille:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.30);
    filter: brightness(1.05);
}

.Foto-Kaart img.overlayDrogeham {
    position: absolute;
    width: 20%;                
    height: auto;
    bottom: 35%;                  
    right: 5%;                   
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    transform-origin: center;
    cursor: pointer;
    display: flex;
}

.Foto-Kaart img.overlayDrogeham:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.30);
    filter: brightness(1.05);
}

.TekstDrogeham {
    text-align: center;
    font-size: clamp(1px, 3vw, 40px);
    margin: 20px;
}

.logo {
    width: clamp(110px, 120px, 130px);
    height: auto;
    margin-left: 2%;
}

.Menu {
    width: 50px;
    height: auto;
    margin-right: 2%;
}



.KaartSectie {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}




.modern-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 20px;
    perspective: 1000px; 
}

.modern-card {
    display: block; 
    text-decoration: none; 
    color: inherit; 
    
    background: #ffffff;
    border-radius: 30px;
    width: 320px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.1s ease-out;
    cursor: pointer; 
}


.kootstertille-theme {
    border-bottom: 5px solid var(--color-kootstertille);
    background: var(--color-kootstertille);
}

.drogeham-theme {
    border-bottom: 5px solid var(--color-drogeham);
    background: var(--color-drogeham);
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: -60px auto 20px auto; 
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.sub-label {
    display: block;
    font-size: 0.9rem;
    color: #c5c5c5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
}

.kootstertille-theme .info-row:hover {
    color: var(--color-kootstertille);
    background: #eff6ff;
}

.drogeham-theme .info-row:hover {
    color: var(--color-drogeham);
    background: #f0fdf4;
}

.info-row i {
    font-size: 1.1rem;
}

.TekstInBlok {
    position: relative;
    bottom: 20%;
    font-size: clamp(10px, 1.7vw, 20px);
    color: rgb(0, 0, 127);
}


.overlayDrogehamBlok {
    width: auto;
    height: 40%;
    margin-left: 30%;
}

.location-card:hover .map-pin {
    transform: scale(1.2) translateY(-10px);
}



.card-info {
    position: relative;
    z-index: 5;
}

.card-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: #888;
    margin-bottom: 1.5rem;
}

.btn-arrow {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.location-card:hover .btn-arrow {
    gap: 20px;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.05);
}

.seo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.tag {
    background: var(--main-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.seo-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-drogeham { color: var(--color-drogeham); }
.text-kootstertille { color: var(--color-kootstertille); }

.seo-intro p {
    color: #666;
    font-size: 1.1rem;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: #f8faff;
    border-radius: 30px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}


.services-section {
    padding: 6rem 0;
    background-color: #f4f7fc;
    position: relative;
    overflow: hidden;
}


.blob-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--main-gradient);
    opacity: 0.05;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-tile {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,1);
    transition: all 0.4s ease;
}

.service-tile:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(41, 98, 255, 0.1);
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
}

.service-tile:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
}


footer {
    background: #0a0e17;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2rem;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a, .footer-contact a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #555;
    font-size: 0.9rem;
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-dark);
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 2rem;
    margin: 1rem;
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
}

a {
color: #FFFFFF;
text-decoration: none
}

.button-18 {
  align-items: center;
  background-color: #0A66C2;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-18:hover,
.button-18:focus { 
  background-color: #16437E;
  color: #ffffff;
}

.button-18:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.button-18:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--color-kootstertille);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}


@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    
    
    .location-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .location-card {
        width: 100%;
        max-width: 320px;
        height: 300px;
    }
    
    .stats-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}
