/* Header Component Styles */
#header-container {
    position: sticky;
    top: 0;
    background: var(--surface-light);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.burger {
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}
.mobile-menu .header-nav-links {
    margin-top: 50px;
    flex-flow: column;
}

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

.nav {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary, #0f172a);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.025em;
}

.brand .logo {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

@media (max-width: 560px) {
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    .brand .logo {
        max-width: 100px;
    }
}

.header-nav {
    display: block;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

@media (min-width: 1178px) {
    .header-nav-links {
        gap: 39px;
    }
}

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

.nav a {
    color: var(--text-secondary, #334155);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
    font-size: 18px;
}

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

header .get-in-touch {
    background: var(--text-primary, #1A232B);
    color: var(--surface-white);
    font-size: clamp(14px, 5vw, 20px);
    font-weight: 700;
    border-radius: 32px;
    padding: 12px clamp(12px, 5vw, 28px);
}

header .get-in-touch:hover {
    color: var(--surface-white);
    transform: translateY(-1px);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 24px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--surface-light);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary, #334155);
}

.language-toggle:hover {
    border-color: var(--primary, #61ce70);
    color: var(--primary, #61ce70);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    font-weight: 500;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--bg-section, #f8fafc);
}

.language-option.active {
    background: #e6f0ff;
    color: var(--primary, #002299);
}

.flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
}

.flag.en {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.flag.en:before {
    content: "🇬🇧";
    font-size: 14px;
}

.flag.nl {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.flag.nl:before {
    content: "🇳🇱";
    font-size: 14px;
}

.flag.es {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.flag.es:before {
    content: "🇪🇸";
    font-size: 14px;
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.language-toggle.open .chevron {
    transform: rotate(-135deg);
}

/* Footer Component Styles */
footer {
    margin-top: 80px;
    border-top: 1px solid var(--border, #e2e8f0);
    background: var(--surface, #ffffff);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.foot {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    color: var(--text-secondary, #334155);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
}

.foot a {
    color: var(--text-secondary, #334155);
    text-decoration: none;
    margin-left: 32px;
    font-weight: 600;
    transition: color .2s;
}

.foot a:hover {
    color: var(--primary, #002299);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .header-nav-links {
        align-items: flex-start;
    }

    .brand .logo {
        margin-right: 10px;
        display: flex;
    }

    header .get-in-touch {
        padding: 10px 20px;
    }

    #current-language {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 20px;
    }

    .language-selector {
        margin-left: 16px;
    }

    .language-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }

    .language-dropdown {
        min-width: 130px;
    }

    .foot {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .foot a {
        margin: 0 16px;
    }
}