
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --dark: #3d3d3d;
            --dark-2: #4a4a4a;
            --grey: #6B6B6B;
            --grey-light: #ACACAC;
            --border: #636363;
            --bg-light: #F2F2F2;
            --white: #FFFFFF;
        }
        body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; }
        html { scroll-behavior: smooth; }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; width: 100%;
            background: rgba(55,55,55,0.97); backdrop-filter: blur(12px);
            z-index: 1000; padding: 0 5%; height: 70px;
            display: flex; align-items: center; justify-content: space-between;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .logo { color: white; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.08em; text-decoration: none; }
        .logo span { color: #555; font-weight: 300; }
        .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
        .nav-links a { color: #ACACAC; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: white; }
        .nav-cta { background: white !important; color: var(--dark) !important; padding: 0.45rem 1.2rem; border-radius: 6px; font-weight: 600 !important; }
        .lang-toggle { display: flex; gap: 0.4rem; margin-left: 1.5rem; }
        .lang-btn { background: none; border: 1px solid #333; color: #888; padding: 0.25rem 0.9rem; min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; cursor: pointer; font-size: 0.75rem; font-weight: 700; transition: all 0.2s; font-family: 'Inter', sans-serif; box-sizing: border-box; }
        .lang-btn.active { background: white; color: var(--dark); border-color: white; }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            background: linear-gradient(140deg, #2d2d2d 0%, #3a3a3a 50%, #444 100%);
            display: flex; align-items: center;
            padding: 70px 5% 0;
            position: relative; overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }
        .hero-content { max-width: 820px; position: relative; z-index: 1; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            color: #888; padding: 0.4rem 1rem; border-radius: 50px;
            font-size: 0.78rem; font-weight: 500; margin-bottom: 2rem; letter-spacing: 0.04em;
        }
        .hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 800; color: white; line-height: 1.07; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
        .hero h1 .dim { color: #999; }
        .hero p { font-size: 1.1rem; color: #bbb; margin-bottom: 2.5rem; max-width: 540px; line-height: 1.75; }
        .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn-primary { background: white; color: var(--dark); padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: all 0.2s; border: none; cursor: pointer; display: inline-block; }
        .btn-primary:hover { background: #E8E8E8; transform: translateY(-1px); }
        .btn-outline { background: transparent; color: white; padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.92rem; border: 1px solid rgba(255,255,255,0.18); transition: all 0.2s; cursor: pointer; display: inline-block; }
        .btn-outline:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
        .hero-stats { display: flex; gap: 3.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; }
        .stat-item { }
        .stat-number { font-size: 2.2rem; font-weight: 800; color: white; display: block; letter-spacing: -0.03em; }
        .stat-label { font-size: 0.72rem; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

        /* ── SECTIONS ── */
        section { padding: 6rem 5%; }
        .section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #999; margin-bottom: 0.75rem; }
        .section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; letter-spacing: -0.025em; line-height: 1.15; }
        .section-sub { font-size: 1.05rem; color: #6B6B6B; max-width: 560px; line-height: 1.75; }

        /* ── SERVICES ── */
        #services { background: var(--bg-light); }
        .services-header { max-width: 580px; margin-bottom: 3.5rem; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 1.25rem; }
        .service-card { background: white; border-radius: 14px; padding: 2rem; border: 1px solid #EBEBEB; transition: all 0.22s; }
        .service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.07); }
        .service-icon { width: 46px; height: 46px; background: var(--dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; font-size: 1.2rem; }
        .service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.65rem; }
        .service-card p { font-size: 0.88rem; color: #6B6B6B; line-height: 1.65; }

        /* ── ABOUT ── */
        #about { background: white; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
        .about-visual { background: linear-gradient(140deg, #3d3d3d 0%, #4a4a4a 100%); border-radius: 18px; padding: 2.5rem; color: white; }
        .about-visual h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
        .about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
        .about-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.9rem; color: #888; line-height: 1.5; }
        .about-list li::before { content: '→'; color: white; font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

        /* ── FLEET ── */
        #fleet { background: var(--bg-light); }
        .fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
        .fleet-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #EBEBEB; }
        .fleet-card-header { background: var(--dark); padding: 1.8rem 2rem; color: white; }
        .unit-number { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #555; margin-bottom: 0.4rem; font-weight: 600; }
        .fleet-card-header h3 { font-size: 1.2rem; font-weight: 700; }
        .fleet-card-body { padding: 1.5rem 2rem; }
        .fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
        .spec-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: #AAA; font-weight: 600; margin-bottom: 0.2rem; }
        .spec-value { font-size: 0.95rem; font-weight: 700; color: var(--dark); }

        /* ── ROUTES ── */
        #routes { background: white; }
        .routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
        .route-card { background: var(--bg-light); border-radius: 12px; padding: 1.5rem; text-align: center; border: 1px solid #EBEBEB; transition: all 0.22s; cursor: default; }
        .route-card:hover { background: var(--dark); border-color: var(--dark); }
        .route-card:hover .rf, .route-card:hover .rt, .route-card:hover .ra { color: white; }
        .route-card:hover .rk { color: #555; }
        .rf, .rt { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
        .ra { color: #CCC; margin: 0.3rem 0; font-size: 1.1rem; }
        .rk { font-size: 0.75rem; color: #AAA; margin-top: 0.4rem; }

        /* ── QUOTE ── */
        #quote { background: var(--dark); color: white; }
        #quote .section-title { color: white; }
        #quote .section-label { color: #888; }
        #quote .section-sub { color: #aaa; }
        .quote-form { max-width: 680px; margin-top: 2.5rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
        .form-group.full { grid-column: 1 / -1; }
        label { font-size: 0.72rem; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: 0.07em; }
        input, select, textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 0.85rem 1rem; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; width: 100%; }
        input:focus, select:focus, textarea:focus { border-color: rgba(255,255,255,0.3); }
        input::placeholder, textarea::placeholder { color: #888; }
        select option { background: #3d3d3d; }
        textarea { resize: vertical; min-height: 110px; }

        /* ── CONTACT ── */
        #contact { background: var(--bg-light); }
        .contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
        .contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
        .c-icon { width: 40px; height: 40px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.95rem; flex-shrink: 0; }
        .contact-item strong { display: block; font-size: 0.92rem; margin-bottom: 0.15rem; }
        .contact-item p { font-size: 0.85rem; color: #777; }
        .contact-form-box { background: white; border-radius: 16px; padding: 2.5rem; border: 1px solid #EBEBEB; }
        .contact-form-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
        .contact-form-box > p { font-size: 0.88rem; color: #777; margin-bottom: 1.8rem; }
        .contact-form-box input, .contact-form-box textarea { background: #F5F5F5; border-color: #E8E8E8; color: var(--dark); margin-bottom: 1rem; }
        .contact-form-box input::placeholder, .contact-form-box textarea::placeholder { color: #AAA; }
        .contact-form-box label { color: #999; }

        /* ── FOOTER ── */
        footer { background: var(--dark); color: #aaa; padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--dark-2); }
        footer .logo { color: white; font-size: 0.95rem; }
        footer .logo span { color: #bbb; }

        /* ── BILINGUAL ── */
        .nl-text { display: none; }
        .en-text { display: inline; }
        .nl-block { display: none; }
        .en-block { display: block; }
        body.nl .nl-text { display: inline; }
        body.nl .en-text { display: none; }
        body.nl .nl-block { display: block; }
        body.nl .en-block { display: none; }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
        }
        @media (max-width: 640px) {
            .form-row { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .hero-stats { gap: 2rem; }
        }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #bbb; border-radius: 3px; }

        /* ── FAQ ── */
        #faq { background: white; }
        .faq-header { max-width: 580px; margin-bottom: 3rem; }
        .faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 0; }
        .faq-item { border-bottom: 1px solid #EBEBEB; }
        .faq-item:first-child { border-top: 1px solid #EBEBEB; }
        .faq-question {
            width: 100%; text-align: left; background: none; border: none; cursor: pointer;
            padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
            gap: 1.5rem; font-family: 'Inter', sans-serif;
        }
        .faq-question span { font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.4; text-align: left; }
        .faq-icon {
            width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #CCC;
            display: flex; align-items: center; justify-content: center;
            color: #888; font-size: 1.1rem; flex-shrink: 0; transition: all 0.2s;
        }
        .faq-item.open .faq-icon { background: var(--dark); border-color: var(--dark); color: white; transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
        .faq-item.open .faq-answer { max-height: 300px; }
        .faq-answer p { padding: 0 0 1.4rem 0; font-size: 0.92rem; color: #6B6B6B; line-height: 1.75; max-width: 680px; }
    