:root {
    --primary-bg: #000000;
    --accent-gold: #d4af37;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --dark-gray: #1a1a1a;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    min-height: 75px;
    padding: .5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #000;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.logo {
    width: auto;
    height: 50px;
}

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

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.language-switcher a {
    min-width: 34px;
    padding: .35rem .45rem;
    border: 1px solid rgba(212, 175, 55, .45);
    border-radius: 4px;
    color: var(--text-white);
    text-align: center;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
    background: var(--accent-gold);
    color: #000;
}

.cta-btn {
    display: inline-block;
    padding: .8rem 1.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    background: var(--accent-gold);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-gold);
}

.hero {
    min-height: 100vh;
    padding: 120px 10% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),
        url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80")
        center / cover;
    border-bottom: 2px solid var(--accent-gold);
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 2px;
}

.hero .hero-tagline {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hero p:not(.hero-tagline) {
    max-width: 800px;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.features {
    padding: 5rem 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, .2);
    background: rgba(255, 255, 255, .02);
    transition: .4s;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.feature-card i {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.feature-card h2 {
    font-size:1.17em;
    margin-bottom: .7rem;
}

.feature-card p {
    color: var(--text-gray);
}

.page-content,
.service-page,
.contact-page {
    padding-top: 75px;
}

.page-title {
    padding: 7rem 10%;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    background:
        linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),
        url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80")
        center / cover;
}

.page-title h1 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.page-title p {
    color: var(--text-gray);
}

.services {
    padding: 5rem 10%;
}

.service-item {
    width: min(100%, 1400px);
    min-height: 100px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: clamp(25px, 5vw, 70px);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text,
.service-img {
    flex: 1 1 0;
    min-width: 0;
}

.service-text h2 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.service-text p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.service-text strong {
    color: var(--text-white);
}

.service-img {
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.service-img img {
    display: block;
    width: 100%;
}

.text-section,
.process {
    padding: 5rem 10%;
}

.text-section h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.text-section p {
    max-width: 850px;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.process h2 {
    color: var(--accent-gold);
}

.step {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding-left: 2rem;
    border-left: 2px solid var(--accent-gold);
}

.step h3 {
    margin-bottom: .3rem;
}

.step p {
    color: var(--text-gray);
}

.contact-section {
    padding: 5rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-section h2 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.contact-section p {
    margin-bottom: .8rem;
    color: var(--text-gray);
}

.contact-language-notice {
    margin: 0 0 1.25rem;
    padding: 1rem;
    border-left: 3px solid var(--accent-gold);
    background: rgba(212, 175, 55, .08);
    color: var(--text-white) !important;
}

.contact-section i {
    width: 25px;
    color: var(--accent-gold);
}

form {
    width: 100%;
}

input,
textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 3px;
    outline: none;
    background: var(--dark-gray);
    color: var(--text-white);
    font: inherit;
}

input:focus,
textarea:focus {
    border-color: var(--accent-gold);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    text-decoration: none;
    margin-right: 1rem;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

footer {
    padding: 3rem 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid #333;
}

footer h3,
footer h4 {
    margin-bottom: .5rem;
    color: var(--accent-gold);
}

footer p,
footer a {
    color: var(--text-gray);
}

@media (max-width: 800px) {
    header {
        position: relative;
        flex-direction: column;
        padding: 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .language-switcher {
        justify-content: center;
    }

    header .cta-btn {
        display: none;
    }

    .page-content,
    .service-page,
    .contact-page {
        padding-top: 0;
    }

    .features,
    .contact-section,
    footer {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }

    .hero {
        min-height: 650px;
    }

    .services,
    .process,
    .text-section,
    .contact-section {
        padding: 4rem 7%;
    }
}

/* =========================================
   PAKKETTEN PAGINA
========================================= */

.page-header {
    min-height: 45vh;
    padding: 120px 20px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80")
        center / cover;

    border-bottom: 2px solid var(--accent-gold);
}

.page-header .tag {
    margin-bottom: 15px;

    color: var(--accent-gold);

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 3px;
}

.page-header h1 {
    margin: 0;

    color: var(--text-white);

    font-size: clamp(40px, 6vw, 70px);
}

.page-header h1 span {
    color: var(--accent-gold);
}

.page-header > p:last-child {
    max-width: 650px;

    margin-top: 20px;

    color: var(--text-gray);

    line-height: 1.7;
}


/* =========================================
   PAKKETTEN
========================================= */

.packages {
    padding: 70px 6% 100px;

    background: var(--primary-bg);
}

.package-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: stretch;
}


/* =========================================
   PAKKET KAART
========================================= */

.package-card {
    position: relative;
    min-width: 0;
    overflow-wrap: anywhere;

    padding: 40px 30px;

    display: flex;
    flex-direction: column;

    background: #101010;

    border: 1px solid #292929;
    border-radius: 15px;

    transition: .3s ease;
}

.package-card:hover {
    transform: translateY(-8px);

    border-color: var(--accent-gold);
}


/* =========================================
   MEEST GEKOZEN
========================================= */

.package-card.featured {
    border: 2px solid var(--accent-gold);

    box-shadow:
        0 0 30px rgba(212, 175, 55, .08);
}


/* =========================================
   BADGE
========================================= */

.badge {
    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 18px;

    background: var(--accent-gold);
    color: #000;

    border-radius: 30px;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* =========================================
   PAKKET TITEL
========================================= */

.package-card h2 {
    margin: 0 0 10px;

    color: var(--accent-gold);

    font-size: 30px;
}


/* =========================================
   PAKKET SUBTITEL
========================================= */

.package-card .for {
    margin: 0;

    color: var(--text-white);

    font-size: 15px;
}


/* =========================================
   LIJN
========================================= */

.package-card .line {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background: #292929;
}


/* =========================================
   BESCHRIJVING
========================================= */

.package-card .description {
    min-height: 75px;

    color: var(--text-gray);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   PAKKET LIJST
========================================= */

.package-card ul {
    margin: 20px 0 30px;
    padding: 0;

    list-style: none;
}

.package-card li {
    margin: 14px 0;

    color: #ddd;

    font-size: 14px;
}


/* =========================================
   PAKKET KNOP
========================================= */

.package-card .button {
    display: inline-block;

    margin-top: auto;
    padding: 14px 22px;

    background: var(--accent-gold);
    color: #000;

    border-radius: 7px;

    text-align: center;
    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: .3s ease;
}

.package-card .button:hover {
    background: var(--accent-gold);

    transform: translateY(-2px);
}


/* =========================================
   OFFERTE CTA
========================================= */

.offer {
    width: calc(100% - 40px);
    max-width: 1100px;

    margin: 0 auto 100px;
    padding: 60px 30px;

    background: #0d0d0d;

    border: 1px solid var(--accent-gold);
    border-radius: 15px;
    text-align: center;
}

.offer h2 {
    margin-bottom: 15px;

    color: var(--text-white);

    font-size: 32px;
}

.offer p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: var(--text-gray);

    line-height: 1.7;
}

.offer .button {
    display: inline-block;

    padding: 14px 22px;

    background: var(--accent-gold);
    color: #000;

    border-radius: 7px;

    text-decoration: none;

    font-weight: bold;

    transition: .3s ease;
}

.offer .button:hover {
    background: var(--accent-gold);

     transform: translateY(-2px);
}


/* =========================================
   PAKKETTEN - TABLET
========================================= */

@media (max-width: 900px) {

    .package-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   PAKKETTEN - MOBIEL
========================================= */

@media (max-width: 650px) {

    .page-header {
        min-height: 40vh;

        padding: 100px 20px 50px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .packages {
        padding: 60px 20px 80px;
    }

    .package-container {
        grid-template-columns: 1fr;

        max-width: 400px;
    }

    .package-card {
        padding: 35px 25px;
    }

    .offer {
        width: calc(100% - 40px);

        margin-bottom: 70px;

        padding: 45px 20px;
    }

    .offer h2 {
        font-size: 25px;
    }

}

/* Centre the second row while keeping all five cards equally wide. */
@media (min-width: 901px) {
    .package-container {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .package-container > .package-card {
        grid-column: span 2;
    }

    .package-container > .package-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .package-container > .package-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Service details and accessible navigation */
.skip-link {position:fixed;top:-100px;left:1rem;z-index:2000;background:#d4af37;color:#000;padding:.7rem 1rem}
.skip-link:focus {top:1rem}
a:focus-visible,button:focus-visible,summary:focus-visible {outline:3px solid #d4af37;outline-offset:4px}
.seo-section {padding:4rem max(7%,calc((100% - 1100px)/2));border-top:1px solid #39301b}
.seo-section h2,.seo-article h2 {color:var(--accent-gold);font-size:clamp(1.4rem,3vw,2rem);margin:0 0 1rem}
.seo-section p,.seo-article p {color:#ddd;line-height:1.8;margin-bottom:1.3rem}
.seo-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2rem;margin-top:1.8rem}
.seo-card {padding:2rem;border:1px solid #39301b;border-radius:10px;background:#101010}
.seo-card h3 {font-size:1.35rem;color:#d4af37;margin-bottom:1rem}
.seo-card a,.seo-article a,.seo-section a:not(.cta-btn) {color:#e5ce74;text-decoration:underline;text-underline-offset:.2em}
.seo-article {max-width:1040px;margin:auto;padding:3rem 7% 5rem}
.seo-article section {margin-bottom:3rem}
.seo-article .seo-lead {font-size:1.15rem}
.seo-article .seo-breadcrumb {display:flex;flex-wrap:wrap;gap:.6rem;font-size:.9rem;margin-bottom:2.5rem;justify-content:flex-start;line-height:1.7}
.seo-faq details {padding:1.1rem 0;border-bottom:1px solid #39301b}
.seo-faq summary {cursor:pointer;font-weight:600;line-height:1.6}
.seo-faq details p {margin:1rem 0 0}
.seo-note {font-size:.95rem;color:#c7c7c7;margin-top:1.5rem}
.seo-actions {display:flex;gap:1.5rem;flex-wrap:wrap;align-items:center;margin:1.5rem 0}
.seo-actions .cta-btn {color:#000;text-decoration:none}
.seo-heading-intro {max-width:800px;margin:auto}
.seo-phone,.seo-email {color:inherit;text-underline-offset:.2em}
.seo-contact-link {font-weight:600}
.seo-quote {padding:2rem;border:1px solid #574b29;border-radius:12px;background:#101010;scroll-margin-top:2rem}
.seo-quote form {display:grid;gap:1.2rem;margin-top:1.5rem}
.seo-form-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.2rem}
.seo-quote label {display:grid;gap:.45rem;color:#fff;font-weight:600}
.seo-quote input,.seo-quote textarea {width:100%;box-sizing:border-box;border:1px solid #575757;border-radius:7px;background:#080808;color:#fff;padding:.85rem;font:inherit}
.seo-quote input:focus,.seo-quote textarea:focus {border-color:#d4af37;outline:2px solid #d4af37;outline-offset:2px}
.seo-quote .seo-consent {display:flex;grid-template-columns:auto 1fr;align-items:flex-start;font-weight:400;line-height:1.5}
.seo-quote .seo-consent input {width:auto;margin:.25rem .35rem 0 0}
.seo-quote button {border:0;cursor:pointer;justify-self:start}
@media(max-width:650px){.seo-grid{grid-template-columns:1fr}.seo-section{padding:3rem 7%}.seo-card{padding:1.5rem}.seo-actions{align-items:stretch;flex-direction:column}.seo-actions .cta-btn{text-align:center}.seo-article{padding-top:2rem}}
@media(max-width:650px){.seo-form-grid{grid-template-columns:1fr}.seo-quote{padding:1.5rem}.seo-quote button{justify-self:stretch;text-align:center}}
