:root {
    --primary: #f8f7f0;
    --secondary: #b59967;
    --accent: #ede6da;
    --cream: #eae6e0;
    --white: #ffffff;
    --off-white: #faf9f5;
    --dark: #2d1f15;
    --heading: #8b7d6f;
    --text: #5c4e42;
    --text-light: #786a5e;
    --text-muted: #9a8c7e;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--secondary); color: var(--white); }

.preloader { display: none; }
.cursor, .cursor-dot { display: none; }

/* ═══════════════════════════════════════
   NAVIGATION - FLOATING BAR, BECOMES STICKY ON SCROLL
═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: padding 0.4s var(--ease);
}

.nav-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    transition: all 0.4s var(--ease);
}

.nav-blur {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(181, 153, 103, 0.15);
    box-shadow: 
        0 4px 30px rgba(45, 31, 21, 0.08),
        0 1px 3px rgba(45, 31, 21, 0.05);
    transition: all 0.4s var(--ease);
}

/* Scrolled state: full width sticky header */
.nav.scrolled {
    padding: 0;
}

.nav.scrolled .nav-inner {
    max-width: 100%;
    padding: 0.75rem 5%;
}

.nav.scrolled .nav-blur {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-bottom: 1px solid rgba(181, 153, 103, 0.1);
    box-shadow: 0 2px 20px rgba(45, 31, 21, 0.08);
}

.nav-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    padding: 8px 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after { opacity: 1; }

.logo-image {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(1458%) hue-rotate(358deg) brightness(98%) contrast(95%) drop-shadow(0 1px 2px rgba(45, 31, 21, 0.15));
    transition: filter 0.3s ease;
}

.logo:hover .logo-image {
    filter: brightness(0) saturate(100%) invert(50%) sepia(45%) saturate(751%) hue-rotate(359deg) brightness(96%) contrast(90%) drop-shadow(0 2px 4px rgba(181, 153, 103, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.4s var(--ease);
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-lang {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--secondary);
    text-decoration: none;
    border: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 2px 10px rgba(181, 153, 103, 0.2);
}

.nav-btn:hover {
    background: #a38955;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(181, 153, 103, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1003;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--heading);
    transition: all 0.3s var(--ease);
    transform-origin: center;
    pointer-events: none;
}

.nav-toggle.active span { background: var(--dark); }
.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 {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease);
}

.mobile-menu.active .mobile-menu-link { opacity: 1; transform: translateY(0); }
.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-link:hover { color: var(--secondary); }

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease) 0.35s;
}

.mobile-menu.active .mobile-menu-cta { opacity: 1; transform: translateY(0); }

.mobile-menu-btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: var(--secondary);
    text-decoration: none;
    border-radius: 100px;
}

.mobile-lang { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

/* ═══════════════════════════════════════
   HERO - FULL HEIGHT, EXTENDS BEHIND NAV
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg { position: absolute; inset: 0; }

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.08;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.gradient-orb-1 {
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: -40%; left: -25%;
}

.gradient-orb-2 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, #c9a871 0%, transparent 70%);
    bottom: -30%; right: -20%;
    opacity: 0.1;
    animation-delay: -8s;
}

.gradient-orb-3 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
    top: 30%; right: 10%;
    opacity: 0.06;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-grain {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 5% 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 153, 103, 0.3);
    border-radius: 100px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(45, 31, 21, 0.08), 0 1px 3px rgba(45, 31, 21, 0.05);
}

.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.eyebrow-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; text-shadow: 0 2px 4px rgba(45, 31, 21, 0.15), 0 4px 20px rgba(45, 31, 21, 0.1); }

.hero-title .highlight {
    background: linear-gradient(135deg, #d4a76c, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(45, 31, 21, 0.2);
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(181, 153, 103, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(181, 153, 103, 0.35);
    background: #a38955;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark);
    border: 1.5px solid rgba(181, 153, 103, 0.3);
    box-shadow: 0 4px 20px rgba(45, 31, 21, 0.08);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(181, 153, 103, 0.2);
}

.btn-arrow { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee {
    background: var(--primary);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(181,153,103,0.1);
    border-bottom: 1px solid rgba(181,153,103,0.1);
}

.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-content { display: flex; align-items: center; }

.marquee-item {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--heading);
    padding: 0 2rem;
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.marquee-item:hover { opacity: 1; color: var(--secondary); }
.marquee-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════
   DIENSTEN
═══════════════════════════════════════ */
.diensten { background: var(--white); padding: 8rem 5%; }
.diensten-container { max-width: 1200px; margin: 0 auto; }
.diensten-header { text-align: center; margin-bottom: 4rem; }

.diensten-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.diensten-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.diensten-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.dienst-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--accent);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.dienst-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(181, 153, 103, 0.12);
    border-color: var(--secondary);
    background: var(--white);
}

.dienst-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--secondary), #c9a871);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.dienst-card h3 { font-family: 'Nunito Sans', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--heading); margin-bottom: 0.5rem; }
.dienst-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.dienst-link { margin-top: 1.5rem; font-size: 0.85rem; font-weight: 600; color: var(--secondary); transition: color 0.2s; }
.dienst-card:hover .dienst-link { color: var(--dark); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { padding: 12rem 5%; background: var(--cream); position: relative; }

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-visual { position: relative; }

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(181, 153, 103, 0.15), 0 0 0 1px rgba(181, 153, 103, 0.1);
}

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

.about-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(181,153,103,0.15);
    border: 1px solid var(--accent);
}

.about-card-1 { bottom: -2rem; right: -2rem; }
.about-card-2 { top: 2rem; left: -2rem; }

.card-number { font-family: 'Nunito Sans', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--heading); line-height: 1; }
.card-number span { color: var(--secondary); }
.card-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

.about-content { max-width: 500px; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--secondary); }

.about-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-text { font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 2.5rem; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature { display: flex; gap: 1rem; }

.feature-icon {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(32,33,67,0.06);
}

.feature h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--heading); margin-bottom: 0.25rem; }
.feature p { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   TRAININGEN
═══════════════════════════════════════ */
.trainingen { background: var(--off-white); padding: 8rem 0; position: relative; overflow: hidden; }

.trainingen-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(181, 153, 103, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 100%, rgba(237, 230, 218, 0.06) 0%, transparent 50%);
}

.trainingen-header { position: relative; z-index: 2; text-align: center; padding: 0 5%; margin-bottom: 4rem; }

.trainingen-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--heading);
    letter-spacing: -0.02em;
}

.trainingen-track-wrapper {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.trainingen-track-wrapper::-webkit-scrollbar { display: none; }

.trainingen-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 5%;
}

.training-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.training-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(181,153,103,0.2); }

.training-visual {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.training-visual-img {
    height: 200px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.training-course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.training-card:hover .training-course-img {
    transform: scale(1.05);
}

.training-badge {
    position: absolute; top: 1rem; right: 1rem;
    padding: 0.4rem 0.875rem;
    background: var(--white); color: var(--dark);
    font-size: 0.65rem; font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-body { padding: 1.75rem; }

.training-category {
    font-size: 0.65rem; font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.training-card h3 { font-family: 'Nunito Sans', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--heading); margin-bottom: 0.625rem; letter-spacing: -0.3px; }
.training-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }

.training-meta {
    display: flex; gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.training-meta span { display: flex; align-items: center; gap: 0.35rem; }
.training-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; }

.training-price { font-family: 'Nunito Sans', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--heading); }
.training-price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }

.btn-card {
    padding: 0.75rem 1.25rem;
    background: var(--secondary); color: var(--white);
    font-size: 0.75rem; font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 2px 10px rgba(181, 153, 103, 0.2);
}

.btn-card:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(62, 37, 27, 0.3); }

/* ═══════════════════════════════════════
   UPCOMING
═══════════════════════════════════════ */
.upcoming { background: var(--white); padding: 6rem 5%; }
.upcoming-container { max-width: 1200px; margin: 0 auto; }

.upcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.upcoming-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
}

.btn-outline-light {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.btn-outline-light:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.upcoming-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.upcoming-card {
    background: var(--cream);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s var(--ease);
}

.upcoming-card:hover {
    background: var(--white);
    border-color: var(--secondary);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(181,153,103,0.1);
}

.upcoming-date {
    width: 70px; height: 70px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.date-day { font-family: 'Nunito Sans', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--white); line-height: 1; }
.date-month { font-size: 0.7rem; font-weight: 700; color: var(--white); text-transform: uppercase; opacity: 0.9; }

.upcoming-info { flex: 1; min-width: 0; }
.upcoming-category { font-size: 0.65rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
.upcoming-info h3 { font-family: 'Nunito Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--heading); margin: 0.25rem 0; }
.upcoming-info p { font-size: 0.8rem; color: var(--text-muted); }

.upcoming-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--secondary);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(181, 153, 103, 0.2);
}

.upcoming-btn:hover { background: #a38955; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(181, 153, 103, 0.3); }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--cream); padding: 10rem 5%; }
.testimonials-header { text-align: center; margin-bottom: 5rem; }

.testimonials-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
}

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

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(181,153,103,0.08);
    transition: box-shadow 0.4s, transform 0.4s;
    border: 1px solid var(--cream);
}

.testimonial:hover { box-shadow: 0 25px 50px rgba(181,153,103,0.15); transform: translateY(-8px); border-color: var(--secondary); }
.testimonial-quote { font-size: 4rem; font-family: Georgia, serif; color: var(--secondary); opacity: 0.3; line-height: 0.5; margin-bottom: 1rem; }
.testimonial-text { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-avatar {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

.author-info h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--heading); margin-bottom: 0.15rem; }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }
.author-rating { display: flex; gap: 2px; margin-top: 0.35rem; color: var(--secondary); font-size: 0.75rem; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta {
    padding: 10rem 5%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(12rem, 25vw, 30rem);
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.cta-container { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }

.cta-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.cta-title .line { display: block; }
.cta-text { font-size: 1.15rem; color: rgba(255,255,255,0.95); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-accent { background: var(--white); color: var(--dark); box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3); }
.btn-accent:hover { background: var(--dark); color: var(--white); box-shadow: 0 8px 30px rgba(62, 37, 27, 0.4); transform: translateY(-3px); }
.btn-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white:hover { background: var(--white); color: var(--dark); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3); transform: translateY(-3px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--cream); color: var(--text); padding: 5rem 5% 2rem; border-top: 2px solid var(--secondary); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 4rem; max-width: 1400px; margin: 0 auto 4rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }

.social-link {
    width: 40px; height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--accent);
}

.social-link:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); border-color: var(--secondary); box-shadow: 0 4px 15px rgba(181, 153, 103, 0.3); }

.footer-column h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; color: var(--secondary); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.625rem; }
.footer-column a { font-size: 0.85rem; color: var(--text); text-decoration: none; transition: all 0.3s; }
.footer-column a:hover { color: var(--secondary); padding-left: 4px; }

.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--accent); display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--secondary); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .about-card-1 { right: 1rem; bottom: -1rem; }
    .about-card-2 { left: 1rem; top: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 900px) {
    .nav-menu, .nav-cta .nav-lang, .nav-cta .nav-btn { display: none; }
    .nav-toggle { display: flex; }
    .nav { padding: 0.75rem 5%; }
    .nav-inner { padding: 0.5rem 1rem; }
    .nav.scrolled { padding: 0; }
    .nav.scrolled .nav-inner { padding: 0.5rem 5%; }
    .nav.scrolled .nav-blur { border-radius: 0; }
    .logo { padding: 6px 0; }
    .logo-image { height: 50px; }
    .training-card { width: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .diensten { padding: 5rem 5%; }
    .diensten-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .about { padding: 8rem 5%; }
    .trainingen { padding: 6rem 0; }
    .testimonials { padding: 6rem 5%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta { padding: 6rem 5%; }
}

@media (max-width: 600px) {
    .nav { padding: 0.5rem 4%; }
    .nav-inner { padding: 0.5rem 0.75rem; }
    .nav-blur { border-radius: 20px; }
    .nav.scrolled .nav-blur { border-radius: 0; }
    .logo-image { height: 45px; }
    .hero { padding: 0 5%; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-eyebrow { padding: 0.5rem 1rem; }
    .eyebrow-text { font-size: 0.6rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { justify-content: center; }
    .marquee-item { font-size: 1rem; padding: 0 1rem; }
    .diensten-grid { grid-template-columns: 1fr; }
    .dienst-card { padding: 1.5rem; }
    .dienst-icon { width: 52px; height: 52px; font-size: 1.5rem; margin-bottom: 1rem; }
    .upcoming { padding: 4rem 5%; }
    .upcoming-grid { grid-template-columns: 1fr; }
    .upcoming-card { flex-wrap: wrap; gap: 1rem; }
    .upcoming-btn { width: 100%; text-align: center; }
    .about-container { gap: 3rem; }
    .about-visual { order: -1; }
    .about-image { aspect-ratio: 1/1; }
    .about-card { padding: 1rem 1.25rem; }
    .about-card-1 { right: 0.5rem; bottom: -0.5rem; }
    .about-card-2 { left: 0.5rem; top: 0.5rem; }
    .card-number { font-size: 2rem; }
    .card-label { font-size: 0.75rem; }
    .about-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .about-text { font-size: 0.95rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .trainingen-title { font-size: clamp(2rem, 8vw, 3rem); }
    .training-card { width: 85vw; max-width: 340px; }
    .testimonials-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .testimonial { padding: 2rem; }
    .testimonial-text { font-size: 0.95rem; }
    .cta-title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .cta-text { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
    .cta-bg-text { font-size: 8rem; display: none; }
    .footer { padding: 4rem 5% 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 380px) {
    .logo-text { display: none; }
    .hero-title { font-size: 2.25rem; }
    .training-card { width: 90vw; }
}

/* ═══════════════════════════════════════
   NO TRAININGEN MESSAGE
═══════════════════════════════════════ */
.no-trainingen {
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
    width: 100%;
}

/* ═══════════════════════════════════════
   HERO IMAGE MOBILE FIX
═══════════════════════════════════════ */
.hero-image-bg {
    background-position: left center;
}

@media (max-width: 768px) {
    .hero-image-bg {
        background-position: 25% center;
    }
}

/* ═══════════════════════════════════════
   SCROLL INDICATOR FOR TRAININGEN
═══════════════════════════════════════ */
.trainingen-track-wrapper {
    position: relative;
}

.trainingen-track-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--off-white));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}

.trainingen-track-wrapper.scrolled::after {
    opacity: 0;
}

.scroll-hint {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
    animation: hint-bounce 2s ease-in-out infinite;
}

.scroll-hint::after {
    content: '→';
    font-size: 1rem;
}

@keyframes hint-bounce {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

@media (max-width: 600px) {
    .scroll-hint {
        display: none;
    }
}
