/* ===========================
   Studio BoenkOp - Stylesheet
   Version: 2.0 - 2026-02-22
   =========================== */

/* --- Variables --- */
:root {
    --black: #0a0a0a;
    --dark: #141414;
    --darker: #1a1a1a;
    --yellow: #ffd000;
    --yellow-dim: #b39200;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.mono {
    font-family: 'Space Mono', monospace;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 208, 0, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
}

.nav-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--yellow);
    transition: 0.3s;
}

/* --- Buttons --- */
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* --- Shared Section Styles --- */
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-intro {
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* --- Page Hero (subpages) --- */
.page-hero {
    padding: 10rem 2rem 6rem;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 208, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.page-hero h1 span {
    color: var(--yellow);
}

.page-intro {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

.page-highlight {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section.has-bg {
    padding: 8rem 2rem;
}

.cta-section.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(255, 208, 0, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 208, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-title span {
    color: var(--yellow);
}

.cta-subtitle,
.cta-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* --- Footer --- */
footer {
    padding: 4rem 2rem 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 208, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--yellow);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--yellow);
}

.footer-trust {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-trust span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* ================================
   STICKY MOBILE CTA
   ================================ */

.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 0.75rem 1rem;
        background: var(--black);
        border-top: 2px solid var(--yellow);
        transition: transform 0.3s ease;
    }

    .sticky-cta.hidden {
        transform: translateY(100%);
    }

    .sticky-cta-btn {
        display: block;
        text-align: center;
        background: var(--yellow);
        color: var(--black);
        font-family: 'Space Mono', monospace;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        padding: 0.85rem;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Add padding to body so sticky CTA doesn't overlap content */
    body {
        padding-bottom: 60px;
    }
}

/* ================================
   HOME PAGE
   ================================ */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 208, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 208, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--yellow);
    display: block;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-tagline strong {
    color: var(--white);
}

.hero-brutal {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--yellow);
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--yellow);
}

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

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--darker);
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-container:empty::before {
    content: 'STUDIO IN OPBOUW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--yellow);
    opacity: 0.3;
    white-space: nowrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--darker);
    border: 1px solid rgba(255, 208, 0, 0.2);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* USP Section */
.usp-section {
    padding: 6rem 2rem;
    background: var(--dark);
    position: relative;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

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

.usp-card {
    padding: 2rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--yellow);
    transition: height 0.3s;
}

.usp-card:hover::before {
    height: 100%;
}

.usp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 208, 0, 0.3);
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--yellow);
}

.usp-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.about-content p:first-of-type {
    font-size: 1.25rem;
    color: var(--white);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--darker);
    border-left: 3px solid var(--yellow);
}

.feature-item span {
    font-size: 0.9rem;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-image {
    aspect-ratio: 1;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

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

.about-image:first-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.about-image::after {
    content: attr(data-label);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Target Audience Section */
.audience-section {
    padding: 8rem 2rem;
    background: var(--dark);
}

.audience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.audience-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.audience-card {
    padding: 2rem 1.5rem;
    background: var(--black);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audience-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Pricing Section (shared between home & prijzen page) */
.pricing-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    padding: 2.5rem;
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--yellow);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAIR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    padding: 0.25rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pricing-card:hover {
    border-color: rgba(255, 208, 0, 0.5);
}

.pricing-duration {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.5rem;
    color: var(--gray);
}

.pricing-note {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--yellow);
    font-weight: bold;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

/* Location Section */
.location-section {
    padding: 8rem 2rem;
    background: var(--dark);
}

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

.location-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.location-address {
    font-size: 1.25rem;
    color: var(--yellow);
    margin-bottom: 2rem;
    font-family: 'Space Mono', monospace;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--black);
}

.location-item-icon {
    font-size: 1.5rem;
}

.location-item h4 {
    font-size: 0.9rem;
    color: var(--yellow);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.location-map {
    aspect-ratio: 4/3;
    background: var(--darker);
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ================================
   FOTOSTUDIO-VIDEOSTUDIO PAGE
   ================================ */

.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.spec-card {
    padding: 1.5rem;
    background: var(--darker);
    border-left: 3px solid var(--yellow);
}

.spec-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.spec-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Visual Placeholder */
.visual-placeholder {
    aspect-ratio: 4/3;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-placeholder:has(img)::before {
    display: none;
}

.visual-placeholder::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--yellow);
    opacity: 0.5;
    text-transform: uppercase;
}

/* Feature Cards */
.feature-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--yellow);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Bring Section */
.bring-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.bring-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.bring-list {
    list-style: none;
}

.bring-list li {
    padding: 1rem;
    background: var(--darker);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.bring-list li::before {
    content: '\2713';
    color: var(--yellow);
    font-weight: bold;
}

.bring-list.not-included li::before {
    content: '\2192';
}

/* ================================
   APPARATUUR PAGE
   ================================ */

.equipment-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-section.alt-bg {
    background: var(--dark);
    max-width: none;
}

.equipment-section.alt-bg .equipment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.equipment-card {
    background: var(--darker);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s;
}

.equipment-card:hover::before {
    width: 100%;
}

.equipment-card:hover {
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-3px);
}

.equipment-image {
    aspect-ratio: 4/3;
    background: var(--black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    border-radius: 4px;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.equipment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.equipment-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.equipment-specs {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--light-gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-specs span {
    display: block;
    margin-bottom: 0.25rem;
}

.quantity {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}

/* ================================
   PRIJZEN PAGE
   ================================ */

/* Included Section */
.included-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.included-container {
    max-width: 1200px;
    margin: 0 auto;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.included-card {
    padding: 1.5rem;
    background: var(--black);
    text-align: center;
    border-bottom: 3px solid var(--yellow);
}

.included-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.included-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.included-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Extras Section */
.extras-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.extras-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.extras-list {
    list-style: none;
}

.extras-list li {
    padding: 1rem;
    background: var(--darker);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extras-list li span:last-child {
    color: var(--yellow);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* Cancellation Section */
.cancellation-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.cancellation-container {
    max-width: 800px;
    margin: 0 auto;
}

.cancellation-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.cancellation-rules {
    margin-top: 2rem;
}

.rule-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--black);
    margin-bottom: 1rem;
    align-items: center;
}

.rule-time {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--yellow);
    min-width: 150px;
}

.rule-action {
    color: var(--light-gray);
}

/* ================================
   GALERIJ PAGE
   ================================ */

.filter-section {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--gray);
    padding: 0.75rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.gallery-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    position: relative;
    background: var(--darker);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-category {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.gallery-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.gallery-credit {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* Coming Soon State */
.coming-soon {
    text-align: center;
    padding: 6rem 2rem;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.coming-soon p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ================================
   FAQ PAGE
   ================================ */

.faq-section {
    padding: 4rem 2rem 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-question::after {
    content: '+';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--yellow);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 2rem;
    background: var(--dark);
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--darker);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--yellow);
}

.contact-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker);
    color: var(--gray);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Map Section */
.map-section {
    padding: 0 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-embed {
    aspect-ratio: 16/9;
    background: var(--darker);
    min-height: 300px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-card {
    background: var(--darker);
    padding: 1.5rem;
}

.direction-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.direction-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Form feedback */
.form-success {
    background: rgba(255, 208, 0, 0.1);
    border: 1px solid var(--yellow);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.form-error {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid #ff3232;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #ff6666;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ================================
   HOW IT WORKS
   ================================ */

.how-it-works-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-card a {
    color: var(--yellow);
    text-decoration: none;
}

.step-card a:hover {
    text-decoration: underline;
}

/* ================================
   USE CASES
   ================================ */

.usecases-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.usecase-card {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.usecase-card:hover {
    border-color: var(--yellow);
}

.usecase-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.usecase-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.usecase-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================
   WHY SECTION
   ================================ */

.why-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--yellow);
    border-radius: 0 12px 12px 0;
    padding: 2rem 2rem 2rem 2.5rem;
}

.why-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.05rem;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ================================
   FAQ PREVIEW (Homepage)
   ================================ */

.faq-preview-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-preview-item {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.faq-preview-item h3 {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.faq-preview-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

.faq-preview-item a {
    color: var(--yellow);
    text-decoration: none;
}

/* ================================
   CTA TRUST LINE
   ================================ */

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.85rem;
}

.cta-trust span {
    white-space: nowrap;
}

/* ================================
   FLOATING WHATSAPP BUTTON
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--yellow);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 208, 0, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.legal-content ul li {
    color: var(--light-gray);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

.legal-content a {
    color: var(--yellow);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--white);
}

.legal-content em {
    color: var(--gray);
}

/* Huisregels specific */
.huisregels-content .huisregel-item {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.huisregels-content .huisregel-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--yellow);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.huisregels-content .huisregel-item p {
    color: var(--light-gray);
    margin-bottom: 0;
}

.huisregels-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-brutal {
        border-left: none;
        border-bottom: 3px solid var(--yellow);
        padding-left: 0;
        padding-bottom: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .bring-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 208, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 1;
    }

    .faq-question {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
