/* ============================================
   Studio H20 - Stylesheet
   Brand Colors:
   - Primary Red: #D00848
   - Eventlocatie: #F06A01 (orange)
   - Educatie: #F8CD00 (yellow)
   - Entertainment: #7AC300 (green)
   - Esports: #3EBACB (cyan)
   - Estate: #1960AE (blue)
   ============================================ */

:root {
    --primary: #D00848;
    --primary-dark: #a50639;
    --event: #F06A01;
    --edu: #F8CD00;
    --ent: #7AC300;
    --esports: #3EBACB;
    --estate: #1960AE;

    --bg-dark: #0D0D0D;
    --bg-darker: #000000;
    --bg-light: #1a1a1a;
    --bg-card: #151515;

    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light: #e0e0e0;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-h20 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-divider {
    color: var(--text-gray);
}

.logo-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.5) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 20px; }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ============================================
   Greenscreen Showcase - Scroll Morphing
   ============================================ */
.showcase-scroll {
    padding: 0;
    background: var(--bg-darker);
}

.showcase-scroll-container {
    height: 400vh; /* 5 images = need scroll space */
    position: relative;
}

.showcase-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-header {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.showcase-header h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.showcase-header p {
    color: var(--text-gray);
    font-size: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.showcase-viewport {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 60vh;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.showcase-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
}

.showcase-layer.active {
    opacity: 1;
    pointer-events: auto;
}

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

/* Location label */
.showcase-location {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.location-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(208, 8, 72, 0.4);
}

.location-label.active {
    opacity: 1;
}

/* Progress indicators */
.showcase-progress {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.progress-dot.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(208, 8, 72, 0.6);
    transform: scale(1.3);
}

/* Scroll hint */
.showcase-scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.showcase-scroll-hint svg {
    opacity: 0.6;
}

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

/* Hide scroll hint after scrolling starts */
.showcase-scroll-hint.hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Responsive - Showcase */
@media (max-width: 768px) {
    .showcase-scroll-container {
        height: 350vh;
    }

    .showcase-sticky {
        flex-direction: column;
        padding-top: 100px;
        justify-content: flex-start;
    }

    .showcase-header {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .showcase-header h2 {
        font-size: 28px;
    }

    .showcase-viewport {
        height: 45vh;
        width: 100%;
        max-height: none;
        border-radius: 0;
    }

    .showcase-progress {
        position: absolute;
        bottom: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        top: auto;
        gap: 16px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }

    .location-label {
        font-size: 14px;
        padding: 10px 20px;
    }

    .showcase-scroll-hint {
        bottom: 60px;
    }
}

/* ============================================
   Aanbod Section - Journey Flow
   ============================================ */
.aanbod {
    background: var(--bg-dark);
    padding: 100px 0;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.journey-header p {
    color: var(--text-gray);
    font-size: 18px;
}

/* Timeline */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-bottom: 60px;
    align-items: stretch;
}

.journey-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--ent) 0%,
        var(--esports) 33%,
        var(--estate) 66%,
        var(--primary) 100%
    );
    z-index: 0;
}

.journey-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.journey-step:hover .step-number {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.step-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-content {
    flex: 1;
}

.step-card:hover {
    border-color: rgba(208, 8, 72, 0.4);
    transform: translateY(-5px);
}

.step-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--ent);
    color: var(--bg-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-highlight .step-label {
    background: var(--primary);
    color: var(--text-white);
}

.step-free .step-label {
    background: var(--ent);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 8px;
}

.step-subtitle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-content ul {
    list-style: none;
}

.step-content ul li {
    color: var(--text-light);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.step-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Alternative - Studiodag */
.journey-alternative {
    margin-bottom: 60px;
}

.alternative-connector {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.alternative-connector span {
    background: var(--bg-dark);
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.alternative-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.alternative-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(208, 8, 72, 0.1) 100%);
    border: 1px solid rgba(208, 8, 72, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.alternative-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.alternative-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.alternative-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.alternative-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Samenwerking Section */
.samenwerking {
    background: var(--bg-dark);
}

.samenwerking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.samenwerking-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.samenwerking-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.samenwerking-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.samenwerking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samenwerking-content {
    padding: 24px;
}

.samenwerking-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.samenwerking-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.samenwerking-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.samenwerking-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.samenwerking-link:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .samenwerking-grid {
        grid-template-columns: 1fr;
    }
}

/* Add-ons */
.journey-addons {
    text-align: center;
    margin-bottom: 60px;
}

.addons-header {
    margin-bottom: 20px;
}

.addons-header span {
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.addon-tag {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.addon-tag:hover {
    border-color: var(--primary);
    color: var(--text-white);
}

.addon-tag.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* Selectable Options */
.selectable-options {
    list-style: none;
}

.option-item {
    color: var(--text-light);
    font-size: 14px;
    padding: 10px 16px;
    padding-left: 36px;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.option-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.option-item.selected {
    background: rgba(208, 8, 72, 0.15);
    border-color: var(--primary);
    color: var(--text-white);
}

.option-item.selected::before {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 3px var(--bg-card);
}

/* Studiodag options */
.studiodag-options {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.option-pill {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
}

.option-pill:hover {
    border-color: var(--primary);
    color: var(--text-white);
}

.option-pill.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* Journey CTA */
.journey-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Selection Preview */
.selection-preview {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.preview-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.preview-empty {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

.preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.preview-tag {
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.selection-preview.has-selection .preview-empty {
    display: none;
}

/* Journey Responsive */
@media (max-width: 1024px) {
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 640px) {
    /* Journey scroll hijack container */
    .aanbod {
        padding: 0;
    }

    .aanbod > .container {
        max-width: none;
        padding: 0;
    }

    .journey-scroll-container {
        height: 300vh; /* Scroll space for 4 cards */
        position: relative;
        background: var(--bg-dark);
    }

    .journey-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        background: var(--bg-dark);
    }

    .journey-header {
        margin-bottom: 24px;
        padding: 0 24px;
        flex-shrink: 0;
    }

    .journey-header h2 {
        font-size: 28px;
    }

    .journey-header p {
        font-size: 14px;
    }

    .journey-timeline {
        display: flex;
        gap: 16px;
        padding: 0 24px;
        flex: 1;
        align-items: flex-start;
        will-change: transform;
    }

    .journey-step {
        flex: 0 0 80vw;
        min-width: 80vw;
    }

    .step-card {
        min-height: auto;
        height: auto;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Progress indicator for mobile scroll */
    .journey-progress-mobile {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
        flex-shrink: 0;
    }

    .journey-progress-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .journey-progress-dot.active {
        background: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(208, 8, 72, 0.5);
    }

    .alternative-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .alternative-icon {
        margin-bottom: 8px;
    }

    .studiodag-options {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Sections after scroll container */
    .journey-alternative,
    .journey-addons,
    .journey-cta {
        padding: 40px 24px;
    }
}

/* Show progress dots only on mobile */
.journey-progress-mobile {
    display: none;
}

@media (min-width: 641px) {
    .journey-scroll-container {
        height: auto;
    }

    .journey-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }
}

/* ============================================
   Ruimtes Section
   ============================================ */
.ruimtes {
    background: var(--bg-darker);
}

.ruimtes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ruimte {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.ruimte:hover {
    transform: translateY(-5px);
}

.ruimte-main {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.ruimte-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ruimte-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ruimte-placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.ruimte-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ruimte-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.ruimte-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.ruimte-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Form */
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Selection Summary */
.form-selection-summary {
    background: rgba(208, 8, 72, 0.1);
    border: 1px solid rgba(208, 8, 72, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.summary-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    flex-shrink: 0;
}

.summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.summary-tag {
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.summary-empty {
    color: var(--text-gray);
    font-size: 13px;
    font-style: italic;
}

.summary-edit {
    color: var(--primary);
    font-size: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.summary-edit:hover {
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-light);
    color: var(--text-white);
    font-size: 16px;
    font-family: var(--font);
    transition: border-color 0.3s ease;
}

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

.form-group select {
    cursor: pointer;
}

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

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--bg-darker);
    padding: 100px 0;
}

.faq .section-title {
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(208, 8, 72, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    transition: color 0.3s ease;
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-gray);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 13px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.tagline {
    color: var(--text-gray);
    font-size: 14px;
}

.footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: var(--text-white);
}

/* Pillar colors */
.pillar-event:hover { color: var(--event) !important; }
.pillar-edu:hover { color: var(--edu) !important; }
.pillar-ent:hover { color: var(--ent) !important; }
.pillar-esports:hover { color: var(--esports) !important; }
.pillar-estate:hover { color: var(--estate) !important; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
    .ruimte-main {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

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

    .ruimte-main {
        grid-column: span 1;
    }

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

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .selection-preview {
        padding: 16px;
    }

    .preview-tags {
        gap: 6px;
    }

    .preview-tag {
        font-size: 12px;
        padding: 5px 10px;
    }

    .form-selection-summary {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .summary-tags {
        width: 100%;
    }

    .studiodag-options {
        flex-direction: column;
        gap: 8px;
    }

    .option-pill {
        width: 100%;
        text-align: center;
    }

    .addons-list {
        gap: 8px;
    }

    .addon-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}
