/**
 * Kestirgitsin - Stylesheet
 * Hoofdkleur: wit · Detail: zwart & beige
 */

:root {
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #5c5348;
    --color-beige: #D4C5B0;
    --color-beige-light: #F5F0E8;
    --color-beige-dark: #B8A898;
    --color-logo-beige: #C5A382;
    --color-logo-beige-hover: #B08F6A;
    --color-light-gray: #E8DDD0;
    --color-white: #ffffff;
    --color-accent-gray: #B8A898;

    --color-bg: #ffffff;
    --color-bg-subtle: #F5F0E8;
    --color-text: #0a0a0a;
    --color-text-muted: #5c5348;
    --color-border: rgba(10, 10, 10, 0.1);
    --color-border-beige: rgba(212, 197, 176, 0.55);

    /* Agenda widget (licht) */
    --cal-card-bg: linear-gradient(135deg, #ffffff 0%, var(--color-beige-light) 100%);
    --cal-card-border: var(--color-border-beige);
    --cal-card-shadow: 0 10px 40px rgba(10, 10, 10, 0.08);
    --cal-surface: #ffffff;
    --cal-surface-alt: var(--color-beige-light);
    --cal-surface-hover: var(--color-light-gray);
    --cal-text: var(--color-text);
    --cal-text-muted: var(--color-text-muted);
    --cal-text-dim: #8a8075;
    --cal-day-bg: #ffffff;
    --cal-day-unavailable-bg: var(--color-beige-light);
    --cal-day-unavailable-text: #9a9085;
    --cal-slot-bg: var(--color-beige-light);
    --cal-slot-unavailable-bg: var(--color-light-gray);
    --cal-btn-disabled-bg: var(--color-beige);
    --cal-btn-disabled-text: var(--color-text-muted);
    --cal-secondary-border: rgba(10, 10, 10, 0.35);
    --cal-waitlist-text: rgba(10, 10, 10, 0.72);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Header Styles */
.main-header {
    background-color: var(--color-bg);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 var(--color-border-beige);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border-beige);
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.main-header * {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.main-header *::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.main-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 2;
}

.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    gap: 0;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Header Logo */
.main-header .navbar-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-b-3d {
    position: relative;
    width: 120px;
    height: 120px;
    opacity: 1;
    animation: logoBounceRotate 10s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes logoBounceRotate {
    0%, 50% {
        transform: translateY(0) rotateY(0deg) rotateZ(0deg) scale(1);
    }
    5% {
        transform: translateY(-10px) rotateY(90deg) rotateZ(5deg) scale(1.08);
    }
    10% {
        transform: translateY(0) rotateY(180deg) rotateZ(0deg) scale(1);
    }
    15% {
        transform: translateY(-8px) rotateY(270deg) rotateZ(-5deg) scale(1.06);
    }
    20% {
        transform: translateY(0) rotateY(360deg) rotateZ(0deg) scale(1);
    }
    25% {
        transform: translateY(-6px) rotateY(450deg) rotateZ(3deg) scale(1.04);
    }
    30% {
        transform: translateY(0) rotateY(540deg) rotateZ(0deg) scale(1);
    }
    35% {
        transform: translateY(-4px) rotateY(630deg) rotateZ(-3deg) scale(1.02);
    }
    40% {
        transform: translateY(0) rotateY(720deg) rotateZ(0deg) scale(1);
    }
    45% {
        transform: translateY(0) rotateY(720deg) rotateZ(0deg) scale(1);
    }
    50%, 100% {
        transform: translateY(0) rotateY(0deg) rotateZ(0deg) scale(1);
    }
}

.logo-b-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform-style: preserve-3d;
}


.logo-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gray);
    line-height: 1;
}


.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-black);
    opacity: 1;
    transform: translateX(0);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Desktop: logo spacing aligned with mobile */
@media (min-width: 769px) {
    .main-header .navbar-logo {
        height: 52px;
        max-width: 220px;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-black);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.main-nav {
    position: relative;
    grid-column: 3;
    justify-self: end;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow: hidden;
}

.main-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover {
    color: var(--color-black);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-beige-dark);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Openingstijden pagina */
.page-openingstijden .openingstijden-section {
    padding: 4rem 0 5rem;
}

.page-openingstijden .openingstijden-container {
    max-width: 900px;
}

.page-openingstijden .openingstijden-admin {
    margin-top: 2.25rem;
}

.page-openingstijden .openingstijden-admin-title {
    margin: 0 0 0.35rem 0;
    font-size: 1.25rem;
    color: #111827;
}

.page-openingstijden .openingstijden-admin-sub {
    margin: 0 0 1rem 0;
    color: rgba(17, 24, 39, 0.70);
}

.page-openingstijden .openingstijden-admin-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1rem;
}

.page-openingstijden .openingstijden-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-openingstijden .openingstijden-row {
    display: grid;
    grid-template-columns: 140px 120px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #f9fafb;
}

.page-openingstijden .openingstijden-day-name {
    font-weight: 700;
    color: #111827;
}

.page-openingstijden .openingstijden-day-short {
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.55);
}

.page-openingstijden .openingstijden-closed {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(17, 24, 39, 0.85);
    font-weight: 600;
    user-select: none;
}

.page-openingstijden .openingstijden-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 0.75rem;
}

.page-openingstijden .openingstijden-fields label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(17, 24, 39, 0.75);
    font-weight: 600;
}

.page-openingstijden .openingstijden-fields input[type="time"] {
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #ffffff;
    color: #111827;
}

.page-openingstijden .openingstijden-fields input[type="time"][disabled] {
    opacity: 0.6;
    background: #f3f4f6;
}

.page-openingstijden .openingstijden-fields .oh-time {
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    font-variant-numeric: tabular-nums;
}

.page-openingstijden .openingstijden-fields .oh-time[disabled] {
    opacity: 0.6;
    background: #f3f4f6;
    cursor: not-allowed;
}

/* Time picker overlay (uren links, minuten rechts: 00/30) */
.timepicker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.25rem;
}

.timepicker-overlay.open {
    display: flex;
}

.timepicker-modal {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.timepicker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.timepicker-title {
    font-weight: 800;
    color: #111827;
}

.timepicker-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.timepicker-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.timepicker-col {
    padding: 0.85rem 1rem 1rem 1rem;
}

.timepicker-col + .timepicker-col {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.timepicker-col-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(17, 24, 39, 0.75);
    margin-bottom: 0.6rem;
}

.timepicker-list {
    max-height: 260px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 4px;
}

.timepicker-item {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f9fafb;
    color: #111827;
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.timepicker-item.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.timepicker-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.timepicker-preview {
    font-weight: 900;
    color: #111827;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.timepicker-actions-right {
    display: inline-flex;
    gap: 0.6rem;
}

.timepicker-btn {
    appearance: none;
    border: 0;
    background: #111827;
    color: #ffffff;
    font-weight: 800;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    cursor: pointer;
}

.timepicker-btn.ghost {
    background: #f3f4f6;
    color: #111827;
}

.page-openingstijden .openingstijden-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.page-openingstijden .openingstijden-save {
    appearance: none;
    border: 0;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.page-openingstijden .openingstijden-save:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.page-openingstijden .openingstijden-msg {
    font-size: 0.95rem;
}
.page-openingstijden .openingstijden-msg.ok { color: #166534; }
.page-openingstijden .openingstijden-msg.err { color: #b91c1c; }

@media (max-width: 900px) {
    .page-openingstijden .openingstijden-row {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .page-openingstijden .openingstijden-fields {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}


/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Banner - Nieuw Modern Design */
.hero-banner-new {
    position: relative !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    color: var(--color-white) !important;
    background: transparent !important;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/images.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
    animation: fadeIn 1s ease-out;
}

/* Atlanta Style Hero Banner */
.hero-banner-atlanta {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/images.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-container-atlanta {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-layout-atlanta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
    padding: 80px 0;
}

.hero-text-atlanta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-company-name {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hero-title-atlanta {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.hero-title-italic {
    font-style: italic;
    font-size: 80px;
}

.hero-book-link {
    font-size: 18px;
    font-weight: 400;
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    width: fit-content;
}

.hero-book-link:hover {
    opacity: 0.8;
}

.hero-images-atlanta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-portrait-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.hero-img-top {
    position: relative;
    z-index: 2;
    margin-bottom: -80px;
    margin-left: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-img-bottom {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Professional Hero Banner */
.hero-cinematic {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-cinematic__bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero/kestirgitsin-banner.jpeg') center 40% / cover no-repeat;
}

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 55%, rgba(10, 10, 10, 0.88) 100%);
}

.hero-cinematic__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(720px, 100%);
    padding: 5rem 1.5rem 3rem;
}

.hero-cinematic__brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-logo-beige);
    margin-bottom: 1.5rem;
}

.hero-cinematic__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
    color: var(--color-white);
}

.hero-cinematic__rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    margin: 0 0 1.1rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.28);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.hero-cinematic__stars {
    color: var(--color-logo-beige);
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    line-height: 1;
}

.hero-cinematic__score {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--color-white);
}

.hero-cinematic__reviews {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.hero-cinematic__text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    max-width: 34rem;
}

.hero-cinematic__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    background: var(--color-logo-beige);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cinematic__cta:hover {
    transform: translateY(-2px);
    background: var(--color-logo-beige-hover);
}

.hero-cinematic__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.hero-cinematic__pill {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slogan-professional {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

@media (min-width: 769px) {
    .hero-buttons {
        justify-content: flex-start;
        max-width: 600px;
        margin-left: 0;
        padding-left: 0;
    }
}

.hero-book-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 197, 176, 0.35);
}

.hero-book-btn:hover {
    background: var(--color-dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.15);
}

.hero-my-bookings-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 2rem;
    background: var(--color-logo-beige);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-logo-beige);
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-my-bookings-btn:hover {
    background: var(--color-logo-beige-hover);
    border-color: var(--color-logo-beige-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero-my-bookings-btn .search-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
}

.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .hero-contact-info {
        max-width: 600px;
    }
}

.hero-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    border: 2px solid rgba(176, 176, 176, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(176, 176, 176, 0.1);
    text-decoration: none;
    position: relative;
}

.hero-social-link.hero-social-soon {
    cursor: default;
    opacity: 0.6;
    width: auto;
    min-width: 48px;
    padding: 0 12px;
    border-radius: 24px;
    flex-direction: row;
    gap: 6px;
}

.hero-social-link.hero-social-soon .soon-text {
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    color: #b0b0b0;
}

.hero-social-link.hero-social-soon:hover {
    transform: none;
    opacity: 0.7;
}

.hero-social-link:hover {
    color: #d0d0d0;
    border-color: #b0b0b0;
    background: rgba(176, 176, 176, 0.2);
    transform: translateY(-3px);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
}

.hero-email {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-email:hover {
    color: var(--color-black);
}

.hero-email::before {
    content: '✉';
    font-size: 1.2rem;
    color: var(--color-beige-dark);
}

.hero-text-wrapper {
    max-width: 700px;
    margin-left: 250px;
}

.hero-main-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.8s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-description-new {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.btn-primary-new {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary-new:hover {
    background-color: var(--color-light-gray);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-secondary-new {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: transparent;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary-new:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-light-gray);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background-color: var(--color-light-gray);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-light-gray);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--color-light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-black);
}

.section-gray {
    background-color: var(--color-bg-subtle);
}

/* Openingstijden (eigen sectie) */
.hours-section {
    background: var(--color-bg-subtle);
    padding: 3.5rem 0 4rem;
    border-top: 1px solid var(--color-border-beige);
}

.hours-section .hours-block__note {
    text-align: center;
}

/* Prijzenlijst — editorial menu */
.pricing-section {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 3.5rem 0 4rem;
    border-top: 1px solid var(--color-border-beige);
}

.price-menu {
    max-width: 960px;
    margin: 0 auto;
}

.price-menu__head {
    text-align: center;
    margin-bottom: 3rem;
}

.price-menu__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-beige-dark);
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--color-border-beige);
}

.price-menu__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    line-height: 1.15;
}

.price-menu__lead {
    margin: 1rem auto 0;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 400;
}

.price-menu__sheet {
    position: relative;
    padding: 0.25rem 0 0;
    border-top: 2px solid var(--color-black);
}

.price-menu__sheet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
    border-radius: 2px;
    opacity: 0.85;
}

.price-menu__list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.25rem;
}

.price-menu__tiers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
}

.price-menu__tiers .price-menu__group + .price-menu__group {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.price-menu__tiers + .price-menu__group {
    margin-top: 1.75rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--color-border-beige);
}

.price-menu__group-title {
    margin: 0 0 0.25rem;
    padding: 0.5rem 0 0 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-beige-dark);
}

.price-menu__includes {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.price-menu__row--featured .price-menu__name {
    font-weight: 600;
}

.price-menu__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(2rem, 1fr) auto;
    align-items: end;
    gap: 0.65rem 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--color-border-beige);
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.price-menu__row:last-child {
    border-bottom: none;
}

.price-menu__row:hover {
    background: linear-gradient(90deg, var(--color-beige-light) 0%, transparent 100%);
    margin-left: -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 4px;
}

.price-menu__name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.price-menu__hint {
    font-size: 0.88em;
    font-weight: 400;
    color: var(--color-text-muted);
}

.price-menu__dots {
    border-bottom: 1px dotted var(--color-beige-dark);
    opacity: 0.55;
    margin-bottom: 0.35rem;
    min-width: 1.5rem;
}

.price-menu__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-black);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.price-menu__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1.75rem 0 0 1.25rem;
    border-top: 1px solid var(--color-border-beige);
}

.price-menu__note {
    flex: 1 1 220px;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.price-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.price-menu__cta:hover {
    background: var(--color-dark-gray);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.12);
}

/* Info-sectie: openingstijden + contact */
.info-section {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 5.5rem 0 6rem;
    border-top: 1px solid var(--color-border-beige);
}

.info-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .info-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.info-section__aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Openingstijden — strak weekrooster */
.hours-block__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hours-block__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.hours-block__intro {
    min-width: 0;
}

.hours-block__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    line-height: 1.2;
    margin: 0;
}

.hours-block__sub {
    margin: 0.4rem 0 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.hours-block__lead {
    margin: 0.75rem auto 0;
    max-width: 32rem;
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    font-weight: 400;
}

.hours-block__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.hours-block__status .status-dot {
    width: 6px;
    height: 6px;
    animation: none;
}

.hours-block__header--center .hours-block__status {
    margin-top: 0.75rem;
}

.hours-block__schedule {
    border-top: 1px solid var(--color-border-beige);
}

.hours-schedule {
    display: block;
}

.hours-schedule__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border-beige);
}

.hours-schedule__row:last-child {
    border-bottom: none;
}

.hours-schedule__row.today {
    padding-left: 0.75rem;
    margin-left: -0.75rem;
    border-left: 2px solid var(--color-black);
}

.hours-schedule__row.today .hours-schedule__day {
    font-weight: 600;
    color: var(--color-black);
}

.hours-schedule__row--closed .hours-schedule__day,
.hours-schedule__row--closed .hours-schedule__time {
    color: var(--color-text-muted);
}

.hours-schedule__day {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.4;
}

.hours-schedule__time {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-black);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

.hours-schedule__time.hours-closed {
    font-weight: 400;
}

.hours-block__note {
    margin: 1.25rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.hours-block__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border-beige);
}

.hours-block__foot .hours-block__note {
    margin: 0;
    flex: 1 1 220px;
}

.hours-block__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.hours-block__cta:hover {
    background: var(--color-dark-gray);
}

.hours-block--page {
    max-width: 480px;
    margin: 0 auto;
}

/* Contactkaart (naast openingstijden) */
.contact-card {
    padding: 2rem 2rem 1.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-beige);
    border-top: 2px solid var(--color-black);
    text-align: left;
}

.contact-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 0.75rem;
}

.contact-card__text {
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.contact-card__email {
    margin: 0 0 0.75rem;
}

.contact-card__email a {
    color: var(--color-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-beige-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-card__link:hover {
    color: var(--color-black);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.status-dot.open {
    background: #10b981;
}

.status-text {
    letter-spacing: 0.03em;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hours-list {
    display: block;
}

.hours-time.hours-closed {
    color: var(--color-text-muted);
    font-weight: 500;
    font-style: italic;
}

/* Waitlist - Themed Card and Carousel */
.waitlist-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-beige);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}
.waitlist-title {
    margin: 0 0 6px 0;
    color: var(--color-black);
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    font-weight: 800;
    text-transform: uppercase;
}
.waitlist-sub {
    margin: 0 0 14px 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.waitlist-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.waitlist-input {
    flex: 1 1 240px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--color-border-beige);
    background: var(--color-bg-subtle);
    color: var(--color-text);
}
.waitlist-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.15);
    background: var(--color-dark-gray);
}
.waitlist-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin: 10px 0 6px 0;
    scrollbar-width: thin;
}
.waitlist-pill {
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border-beige);
    color: var(--color-text);
    background: var(--color-bg-subtle);
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.waitlist-pill:hover {
    background: var(--color-beige-light);
    transform: translateY(-1px);
}
.waitlist-pill.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
    font-weight: 700;
}
.waitlist-msg {
    margin-top: 8px;
    font-size: 0.9rem;
}

/* Wachtlijst in footer */
#waitlistAnchor {
    display: block;
    position: relative;
    top: -5rem;
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    opacity: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-page-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.services-page-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin: 0 0 0.5rem;
    color: var(--color-black);
}

.services-page-subtitle {
    margin: 0;
    color: rgba(26, 26, 26, 0.65);
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 26, 26, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.10);
    border-color: rgba(26, 26, 26, 0.18);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(45,45,45,1) 50%, rgba(224,224,224,1) 100%);
    opacity: 0.9;
}

.service-price {
    margin-top: 1rem;
    font-weight: 800;
    color: var(--color-black) !important;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .services-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.4rem;
    }

    .services-page-title {
        font-size: 2rem;
    }
}

/* Examples Section - Kapsel Voorbeelden */
.examples-section {
    background: var(--color-bg);
    padding: 80px 0;
    width: 100%;
    color: var(--color-text);
    border-top: 1px solid var(--color-border-beige);
}

.examples-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.examples-images {
    width: 100%;
}

.examples-carousel {
    width: 100%;
    overflow: hidden;
}

.examples-carousel__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.examples-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.examples-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.examples-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-border-beige);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.examples-carousel__dot.is-active {
    background: var(--color-logo-beige);
    transform: scale(1.15);
}

.example-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.examples-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.examples-header {
    text-align: left;
}

@media (min-width: 769px) {
    .examples-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .examples-header {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .examples-header .examples-heading {
        margin-bottom: 0;
    }

    .examples-carousel__track {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        transform: none !important;
    }

    .examples-carousel__slide {
        flex: unset;
    }

    .examples-carousel__dots {
        display: none;
    }

    .example-img {
        aspect-ratio: 3 / 4;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .example-img:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(10, 10, 10, 0.14);
    }

    .examples-text-content {
        padding-left: 0;
        text-align: center;
        align-items: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .examples-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

.examples-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-beige-dark);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.examples-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.examples-paragraph {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.examples-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(10, 10, 10, 0.1);
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    width: fit-content;
}

.examples-btn:hover {
    background-color: var(--color-dark-gray);
    border-color: var(--color-dark-gray);
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.15);
    transform: translateY(-2px);
}

.examples-stempelkaart-banner {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 20px;
}

.examples-stempelkaart-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border-beige);
    box-shadow: 0 10px 32px rgba(10, 10, 10, 0.1);
}

.examples-stempelkaart-banner img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.examples-stempelkaart-banner picture {
    display: block;
    width: 100%;
}

/* Team & Boeking */
#team-agenda {
    scroll-margin-top: 80px;
}

.team-booking-section {
    background: var(--color-bg-subtle);
}

.team-booking-section.section {
    padding: 2.5rem 0;
}

.team-booking {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.team-booking__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-booking__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-beige-dark);
    margin-bottom: 0.5rem;
}

.team-booking__title {
    font-size: clamp(1.45rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    line-height: 1.15;
}

.team-booking__lead {
    margin: 0.4rem auto 0;
    max-width: 28rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.team-booking__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

.team-booking__profile {
    min-width: 0;
}

.team-booking__photo.team-image-wrapper {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0 !important;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 5 / 6;
    border-radius: 10px;
    box-shadow: none;
    background: var(--color-beige-light);
    overflow: hidden;
}

.team-booking__photo .team-profile-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 10px;
}

@media (min-width: 968px) {
    .team-booking__layout {
        grid-template-columns: 400px 480px;
        grid-template-rows: 1fr;
        justify-content: center;
        column-gap: 2.5rem;
        align-items: stretch;
    }

    .team-booking__layout .team-booking__profile.team-profile {
        display: contents;
    }

    .team-booking__photo.team-image-wrapper {
        grid-column: 1;
        grid-row: 1;
        width: 400px;
        max-width: none;
        aspect-ratio: unset;
        align-self: stretch;
        min-height: 0;
    }

    .team-booking__agenda.team-calendar {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
    }
}

.team-booking__agenda.team-calendar {
    background: var(--cal-card-bg);
    border: 1px solid var(--cal-card-border);
    border-radius: 14px;
    box-shadow: var(--cal-card-shadow);
    padding: 1.25rem 1.2rem;
    max-width: 480px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-self: center;
}

@media (min-width: 968px) {
    .team-booking__agenda.team-calendar {
        justify-self: stretch;
        width: 480px;
        max-width: 480px;
        min-height: 530px;
        display: flex;
        flex-direction: column;
    }
}

.team-booking__agenda .calendar-header {
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0;
    border: none;
}

.team-booking__agenda .calendar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.1rem;
}

.team-booking__agenda .calendar-subtitle {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.team-booking__agenda .calendar-container {
    gap: 0.65rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.team-booking__agenda .calendar-week-selector {
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
    border: 1px solid var(--color-border-beige);
    background-color: var(--color-beige-light);
}

.team-booking__agenda .week-nav-btn {
    padding: 0.35rem 0.5rem;
    font-size: 1.25rem;
}

.team-booking__agenda .week-range {
    font-size: 0.82rem;
}

.team-booking__agenda .calendar-days {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    min-width: 0;
}

.team-booking__agenda .calendar-day {
    padding: 0.3rem 0.05rem;
    border-radius: 8px;
    min-width: 0;
}

.team-booking__agenda .calendar-day .day-name {
    font-size: 0.58rem;
    margin-bottom: 0.05rem;
}

.team-booking__agenda .calendar-day .day-number {
    font-size: 0.78rem;
}

.team-booking__agenda .calendar-time-slots {
    border: 1px solid var(--color-border-beige);
    border-radius: 10px;
    background-color: var(--color-beige-light);
    padding: 0.65rem 0.7rem;
    flex: 1 1 auto;
}

.team-booking__agenda .time-slots-header {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
}

.team-booking__agenda .time-slots-grid {
    gap: 0.4rem;
    margin-bottom: 0.65rem;
    min-height: 210px;
    align-content: start;
}

.team-booking__agenda .calendar-empty-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 0.65rem 0.5rem;
    font-size: 0.8rem;
}

.team-booking__agenda .time-slot {
    padding: 0.4rem 0.35rem;
    font-size: 0.76rem;
    border-radius: 6px;
}

.team-booking__agenda .reserve-btn {
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    margin-top: 0;
}

.team-booking__agenda .reserve-btn--secondary {
    border-radius: 10px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.team-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-header-desktop {
    display: none;
}

.team-profile .team-header {
    display: none;
}

.team-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Team Card Animation - Geoptimaliseerd */
.team-card-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-image {
    position: relative;
    width: 100%;
    padding-bottom: 80%;
    overflow: hidden;
    background-color: var(--color-dark-gray);
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(74, 74, 74, 0.7) 50%, rgba(44, 44, 44, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    animation: luxuryGlow 3s ease-in-out infinite;
    opacity: 0.85;
}

.team-description {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-reservation-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.team-reservation-btn:hover {
    background-color: var(--color-dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.main-footer {
    background: var(--color-logo-beige);
    color: var(--color-black);
    padding: 3.5rem 0 2rem;
    margin-top: 0;
    border-top: none;
    position: relative;
}

.main-footer::before {
    display: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-logo {
    flex: 0 0 180px;
    display: flex;
    align-items: flex-start;
    padding-top: 0.15rem;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-logo-link:hover {
    opacity: 0.85;
}

.footer-logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    flex: 1 1 280px;
    min-width: 0;
}

.footer-section {
    padding: 0;
    min-width: 140px;
}

.footer-section--hours {
    flex: 0 0 240px;
    width: 240px;
    margin-left: auto;
}

.footer-section--brand {
    min-width: 180px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-black);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(10, 10, 10, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-section p:hover {
    color: var(--color-black);
}

.footer-section--hours h4 {
    width: 100%;
}

.footer-hours {
    width: 100%;
}

.footer-section--hours .footer-hours-status {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 3px;
}

.footer-hours-status.is-open {
    background: rgba(255, 255, 255, 0.65);
    color: var(--color-black);
}

.footer-hours-status.is-closed {
    background: transparent;
    color: rgba(10, 10, 10, 0.55);
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
}

.footer-hours .hours-schedule__row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 0 1rem;
    width: 100%;
    padding: 0.45rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    font-size: 0.84rem;
    box-sizing: border-box;
}

.footer-hours .hours-schedule__row:last-child {
    border-bottom: none;
}

.footer-hours .hours-schedule__row.today {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    font-weight: 600;
}

.footer-hours .hours-schedule__day {
    text-align: left;
    color: var(--color-black);
    font-size: 0.84rem;
    line-height: 1.4;
}

.footer-hours .hours-schedule__time {
    text-align: right;
    color: var(--color-black);
    font-size: 0.84rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.footer-hours .hours-schedule__row--closed .hours-schedule__day,
.footer-hours .hours-schedule__row--closed .hours-schedule__time {
    color: rgba(10, 10, 10, 0.5);
}

.footer-section--waitlist h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.65rem;
}

.footer-section--waitlist p {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.footer-waitlist-form {
    margin-top: 0.25rem;
}

.footer-section--waitlist .waitlist-input {
    background: var(--color-white);
    border-color: rgba(10, 10, 10, 0.15);
}

.footer-section--waitlist .waitlist-pill {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(10, 10, 10, 0.12);
}

.footer-section--waitlist .waitlist-pill.active {
    background: var(--color-white);
    border-color: var(--color-black);
}

.footer-section--waitlist .waitlist-msg {
    color: var(--color-text-muted);
}

.footer-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 10, 10, 0.12);
    color: rgba(10, 10, 10, 0.65);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .main-header .container {
        position: relative;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    
    .logo-link {
        gap: 0;
    }
    
    .logo-container {
        grid-column: 2;
    }
    
    .main-header .navbar-logo {
        height: 40px;
        max-width: 160px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        grid-column: 3;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(10, 10, 10, 0.1);
        border-left: 1px solid var(--color-border-beige);
        transform: none;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .main-nav a {
        font-size: 1.1rem;
        color: var(--color-black);
    }

    .hero-banner {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Prijzenlijst mobile */
    .pricing-section {
        padding: 4rem 0;
    }

    .price-menu__head {
        margin-bottom: 2.25rem;
    }

    .price-menu__tiers {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .price-menu__tiers .price-menu__group + .price-menu__group {
        margin-top: 0;
        padding-top: 1.25rem;
        border-top: 1px solid var(--color-border-beige);
    }

    .price-menu__list {
        padding-left: 0.85rem;
    }

    .price-menu__row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.35rem 0.75rem;
        align-items: center;
    }

    .price-menu__dots {
        display: none;
    }

    .price-menu__name {
        grid-column: 1;
        grid-row: 1;
        font-size: 1rem;
    }

    .price-menu__price {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.05rem;
    }

    .price-menu__foot {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        padding-left: 0.85rem;
    }

    .price-menu__note {
        flex: none;
    }

    .price-menu__cta {
        width: 100%;
        text-align: center;
    }

    /* Openingstijden mobile */
    .hours-section {
        padding: 2.5rem 0 3rem;
    }

    /* Prijzenlijst mobile */
    .info-section {
        padding: 4rem 0;
    }

    .info-section__grid {
        gap: 2.5rem;
    }

    .hours-block__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hours-schedule__row {
        padding: 0.75rem 0;
    }

    .hours-schedule__row.today {
        padding-left: 0.65rem;
        margin-left: -0.65rem;
    }

    .hours-schedule__day,
    .hours-schedule__time {
        font-size: 0.875rem;
    }

    .hours-block__foot {
        flex-direction: column;
        align-items: stretch;
    }

    .hours-block__cta {
        width: 100%;
        text-align: center;
    }

    .contact-card {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-logo {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1.25rem;
    }

    .footer-section--brand,
    .footer-section--waitlist {
        grid-column: 1 / -1;
    }

    .footer-columns .footer-section {
        min-width: 0;
    }

    .footer-section--hours {
        margin-left: 0;
        width: 100%;
        flex: 1 1 100%;
    }

    /* Atlanta Hero Banner Mobile */
    .hero-banner-atlanta {
        min-height: 80vh;
    }
    
    .hero-container-atlanta {
        padding: 0 20px;
    }
    
    .hero-layout-atlanta {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-text-atlanta {
        align-items: center;
    }
    
    .hero-title-atlanta {
        font-size: 42px;
    }
    
    .hero-title-italic {
        font-size: 48px;
    }
    
    .hero-images-atlanta {
        justify-content: center;
        order: -1;
    }
    
    .hero-image-stack {
        max-width: 300px;
    }
    
    .hero-img-top {
        margin-left: 20px;
        margin-bottom: -60px;
    }
    
    /* Cinematic hero mobile */
    .hero-cinematic {
        min-height: 88vh;
    }

    .hero-cinematic__bg {
        background-image: url('/assets/images/hero/kestirgitsin-banner-mobiel.jpeg');
        background-position: center center;
    }

    .hero-cinematic__inner {
        padding: 6.5rem 1.25rem 2.5rem;
    }

    .hero-cinematic__brand {
        margin-bottom: 1.1rem;
    }

    .hero-cinematic__title {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .hero-cinematic__text {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-cinematic__cta {
        width: 100%;
        max-width: 320px;
        margin-bottom: 2rem;
    }

    .hero-cinematic__pills {
        gap: 0.5rem;
    }

    .hero-cinematic__pill {
        font-size: 0.72rem;
        padding: 0.45rem 0.8rem;
    }
    
    .hero-banner-real {
        min-height: 80vh;
    }
    
    .hero-title-real {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-real {
        font-size: 1.5rem;
    }
    
    .hero-banner-new {
        min-height: 90vh;
    }
    
    .hero-main-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-description-new {
        font-size: 1rem;
    }
    
    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-scroll-indicator {
        bottom: 2rem;
    }
    
    /* Examples Section Mobile */
    .examples-section {
        padding: 48px 0 12px;
    }

    .examples-section + .team-booking-section {
        padding-top: 12px;
        border-top: none;
    }
    
    .examples-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .examples-images {
        order: 2;
    }

    .examples-header {
        order: 1;
        text-align: center;
    }

    .examples-carousel__track {
        max-width: 100%;
    }

    .example-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .examples-text-content {
        text-align: center;
        padding-left: 0;
        order: 3;
    }
    
    .examples-stempelkaart-banner {
        margin-top: 2.5rem;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }

    .examples-stempelkaart-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
    
    .examples-heading {
        font-size: 32px;
    }
    
    .examples-btn {
        margin: 0 auto;
    }
    
    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-booking-section {
        padding: 2rem 0;
    }
    
    .team-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-letter {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Scroll Animations - Werkt zoals hero banner, simpel en betrouwbaar */
.scroll-animate {
    /* Container voor scroll animaties */
}

/* Fade In Animation - Werkt zoals hero banner */
.scroll-fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* Fade Up Animation - Werkt zoals hero banner */
.scroll-fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scroll-fade-up.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Slide Left Animation - Werkt zoals hero banner */
.scroll-slide-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-slide-left.animate {
    animation: slideInLeft 0.8s ease-out forwards;
}

/* Slide Right Animation - Werkt zoals hero banner */
.scroll-slide-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-slide-right.animate {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Keyframe Animations - Zelfde als hero banner */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

@keyframes luxuryGlow {
    0%, 100% {
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(74, 74, 74, 0.7) 50%, rgba(44, 44, 44, 0.7) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        opacity: 0.85;
    }
    50% {
        background: linear-gradient(135deg, rgba(58, 58, 58, 0.75) 0%, rgba(90, 90, 90, 0.75) 50%, rgba(58, 58, 58, 0.75) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.08)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.05));
        opacity: 0.9;
    }
}

/* Team Profile (Left Side) */
.team-profile {
    display: flex;
    flex-direction: column;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 120%;
    overflow: hidden;
    background-color: transparent;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

@media (min-width: 968px) {
    .team-image-wrapper {
        padding-bottom: 80%;
    }
}

.team-profile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 16px;
    display: block;
}



.team-info {
    padding: 0;
}

.team-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
    margin-top: 0;
    letter-spacing: 0.5px;
}

.team-experience {
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(74, 74, 74, 0.7) 50%, rgba(44, 44, 44, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
    animation: luxuryGlow 3s ease-in-out infinite;
    opacity: 0.85;
}

.team-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cal-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.calendar-subtitle {
    font-size: 0.95rem;
    color: var(--cal-text-muted);
    font-weight: 400;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.calendar-week-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-beige-light);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--color-border-beige);
    box-shadow: none;
}

.week-nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--cal-text);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.week-nav-btn:hover {
    background-color: var(--cal-surface-hover);
    color: var(--cal-text);
}

.week-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.current-week-display {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.week-range {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cal-text);
    letter-spacing: 0.5px;
}

.calendar-icon-btn {
    background: none;
    border: none;
    color: var(--cal-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.calendar-icon-btn:hover {
    background-color: var(--cal-surface-hover);
    opacity: 1;
}

.month-year-picker {
    background-color: var(--cal-surface);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    margin-top: 1rem;
    border: 1px solid var(--cal-card-border);
}

.picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.picker-nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--cal-text);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.picker-nav-btn:hover {
    background-color: var(--cal-surface-hover);
}

.picker-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.month-select,
.year-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--cal-card-border);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cal-text);
    background-color: var(--cal-surface-alt);
    cursor: pointer;
    transition: all 0.3s ease;
}

.month-select:hover,
.year-select:hover {
    border-color: var(--cal-text-muted);
}

.month-select:focus,
.year-select:focus {
    outline: none;
    border-color: var(--cal-text-muted);
}

.picker-close-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.picker-close-btn:hover {
    background-color: var(--color-dark-gray);
    transform: translateY(-2px);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--cal-text);
    border-radius: 12px;
    padding: 0.5rem 0.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid var(--color-border-beige);
    box-shadow: none;
}

.calendar-day:hover:not(.unavailable):not(.selected) {
    transform: translateY(-2px);
    background-color: var(--cal-surface-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.calendar-day.selected {
    background: var(--color-logo-beige);
    color: var(--color-black);
    border-color: var(--color-logo-beige);
    box-shadow: 0 4px 14px rgba(197, 163, 130, 0.35);
}

.calendar-day.selected .day-name,
.calendar-day.selected .day-number {
    color: var(--color-black);
}

.calendar-day.today:not(.selected) {
    border-color: var(--color-beige-dark);
    border-width: 2px;
}

.calendar-day.unavailable {
    opacity: 1;
    cursor: not-allowed;
    background-color: var(--cal-day-unavailable-bg);
    color: var(--cal-day-unavailable-text);
    box-shadow: none;
}

.calendar-day.unavailable:hover {
    transform: none;
}

.day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    color: var(--cal-text-muted);
}

.calendar-day.selected .day-name {
    color: var(--color-black);
    opacity: 1;
}

.day-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cal-text);
}

.calendar-day.unavailable .day-name,
.calendar-day.unavailable .day-number {
    color: var(--cal-day-unavailable-text);
}

.calendar-time-slots {
    background-color: var(--color-beige-light);
    border-radius: 14px;
    padding: 1.15rem;
    border: 1px solid var(--color-border-beige);
    box-shadow: none;
}

.time-slots-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cal-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.calendar-empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--cal-text-muted);
    font-size: 0.95rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.time-slot {
    padding: 0.6rem 0.75rem;
    background-color: var(--cal-slot-bg);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cal-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover:not(.unavailable):not(.selected) {
    background-color: var(--cal-surface-hover);
    border-color: var(--color-beige-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(10, 10, 10, 0.08);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige-light) 100%);
    color: var(--color-black);
    border-color: var(--color-black);
    box-shadow: 0 4px 15px rgba(10, 10, 10, 0.08);
}

.time-slot.unavailable {
    opacity: 1;
    cursor: not-allowed;
    color: var(--cal-day-unavailable-text);
    background: repeating-linear-gradient(
        135deg,
        var(--cal-slot-unavailable-bg) 0px,
        var(--cal-slot-unavailable-bg) 10px,
        var(--cal-day-unavailable-bg) 10px,
        var(--cal-day-unavailable-bg) 20px
    );
    border-color: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.time-slot.unavailable::after {
    content: '';
    position: absolute;
    left: -15%;
    right: -15%;
    top: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-12deg);
    pointer-events: none;
}

.time-slot.unavailable:hover {
    transform: none;
}

.reserve-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 10, 10, 0.15);
}

.reserve-btn:hover:not(:disabled) {
    background: var(--color-dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.2);
}

.reserve-btn:disabled {
    opacity: 1;
    cursor: not-allowed;
    background: var(--cal-btn-disabled-bg);
    color: var(--cal-btn-disabled-text);
    box-shadow: none;
}

@media (max-width: 967px) {
    .team-booking-section {
        padding: 2rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .team-booking {
        max-width: none;
    }

    .team-booking__head {
        margin-bottom: 1.25rem;
    }

    .team-booking__title {
        font-size: 1.4rem;
    }

    .team-booking__lead {
        font-size: 0.84rem;
    }

    .team-booking__layout {
        gap: 1.25rem;
    }

    .team-booking__layout .team-booking__profile.team-profile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .team-booking__photo.team-image-wrapper {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        aspect-ratio: 5 / 6;
    }

    .team-booking__agenda.team-calendar {
        max-width: none;
        width: 100%;
    }

    .team-booking__agenda .calendar-subtitle {
        font-size: 0.76rem;
    }

    .team-booking__agenda .calendar-title {
        font-size: 0.95rem;
    }
    
    .calendar-subtitle {
        font-size: 0.85rem;
    }
    
    .calendar-container {
        gap: 0.9rem;
    }
    
    .calendar-week-selector {
        padding: 0.65rem;
    }
    
    .week-range {
        font-size: 0.85rem;
    }
    
    .calendar-icon-btn {
        padding: 0.4rem;
    }
    
    .calendar-icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .calendar-days {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.25rem;
        margin-bottom: 0.65rem;
    }
    
    .calendar-day {
        min-width: 0;
        padding: 0.35rem 0.15rem;
        border-radius: 6px;
    }
    
    .day-name {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .day-number {
        font-size: 0.85rem;
    }
    
    .calendar-time-slots {
        padding: 0.9rem;
    }
    
    .time-slots-header {
        font-size: 0.75rem;
        margin-bottom: 0.65rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }
    
    .time-slot {
        padding: 0.45rem 0.5rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .reserve-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .month-year-picker {
        padding: 1rem;
        margin-top: 0.65rem;
    }
    
    .picker-header {
        margin-bottom: 0.85rem;
    }
    
    .picker-nav-btn {
        padding: 0.4rem 0.75rem;
        font-size: 1rem;
    }
    
    .picker-display {
        gap: 0.75rem;
    }
    
    .month-select,
    .year-select {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
    }
    
    .picker-close-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.booking-modal-header h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.booking-modal-header--brand {
    background: var(--color-bg-subtle);
    border-bottom: 1px solid var(--color-border-beige);
}

.booking-modal-header--brand h2 {
    color: var(--color-black);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.booking-modal-header--brand .booking-modal-close {
    color: var(--color-text-muted);
}

.booking-modal-header--brand .booking-modal-close:hover {
    background: var(--color-beige-light);
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.booking-modal-close:hover {
    background: #f5f5f5;
}

.booking-form {
    padding: 1.5rem;
}

.booking-info {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.booking-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #1a1a1a;
}

.booking-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 18px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.booking-form select:hover {
    border-color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.booking-form input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.booking-form select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-form select option {
    padding: 0.875rem 1rem;
    background: white;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.booking-form select option:hover {
    background: #f5f5f5;
}

.booking-form select option:checked {
    background: #1a1a1a;
    color: white;
}

/* Services Section */
.services-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.services-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(224,224,224,1) 70%, rgba(224,224,224,0) 100%);
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Confirmation Modal */
.booking-confirmation-modal {
    max-width: 560px;
}

.booking-confirmation-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: grid;
    gap: 1rem;
}

.booking-confirmation-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1rem 1.05rem;
}

.booking-confirmation-card-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.75);
    margin-bottom: 0.75rem;
}

.booking-confirmation-summary {
    display: grid;
    gap: 0.75rem;
}

.booking-confirmation-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.75rem;
    align-items: baseline;
}

.booking-confirmation-label {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.62);
}

.booking-confirmation-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.35;
}

.booking-confirmation-checklist {
    display: grid;
    gap: 0.75rem;
}

.booking-confirmation-check {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.booking-confirmation-check:hover {
    border-color: rgba(26, 26, 26, 0.22);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.booking-confirmation-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    flex: 0 0 auto;
    accent-color: var(--color-black);
}

.booking-confirmation-check a {
    color: var(--color-black);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.booking-confirmation-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    position: sticky;
    bottom: 0;
}

@media (max-width: 520px) {
    .booking-modal {
        padding: 1rem;
    }

    .booking-modal-content {
        border-radius: 14px;
        max-height: 92vh;
    }

    .booking-modal-header {
        padding: 1.1rem 1.1rem;
    }

    .booking-form {
        padding: 1.1rem;
    }

    .booking-confirmation-body {
        padding: 1rem 1.1rem 1.1rem;
        gap: 0.85rem;
    }

    .booking-confirmation-row {
        grid-template-columns: 80px 1fr;
        gap: 0.6rem;
    }

    .booking-confirmation-actions {
        padding: 0.9rem 1.1rem 1.1rem;
        justify-content: stretch;
    }

    .booking-confirmation-actions .btn-cancel,
    .booking-confirmation-actions .btn-submit {
        flex: 1 1 0;
    }
}

.service-option-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.25rem;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    text-align: center;
}

.service-option-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-option-card.selected {
    border-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fafafa;
}

.service-option-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-option-name-sub {
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-option-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-option-duration {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Service Info Boxes */
.service-info-box {
    margin-top: 1.25rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-info-title {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-info-list {
    margin-bottom: 1rem;
}

.service-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.875rem;
}

.service-info-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.service-info-note {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    padding-top: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

.booking-errors {
    margin-bottom: 1.5rem;
}

.error-list {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border: 2px solid #e0e0e0;
    border-left: 4px solid #1a1a1a;
    border-radius: 10px;
    padding: 1.125rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.error-list p {
    color: #333;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.error-list p:first-child {
    margin-top: 0;
}

.error-list p:last-child {
    margin-bottom: 0;
}

.error-list p::before {
    content: "ℹ️";
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.booking-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel {
    flex: 1;
    padding: 1rem;
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #eee;
}

.btn-submit {
    flex: 1;
    padding: 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background: #2d2d2d;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Agenda buttons */
.reserve-btn--secondary {
    margin-top: 0.6rem;
    background: transparent;
    color: var(--cal-text);
    border: 2px solid var(--cal-secondary-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

/* Place bell icon on the right for "Herinner mij" */
#remindWaitlistBtn {
    flex-direction: row-reverse;
}

.reserve-btn--secondary:hover:not(:disabled) {
    background: var(--color-beige-light);
    transform: translateY(-2px);
    border-color: var(--color-black);
}

.reserve-btn--secondary .remind-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

/* Calendar waitlist CTA (under agenda) */
.calendar-waitlist-cta {
    margin: 0.75rem 0 0;
    color: var(--cal-waitlist-text);
    font-size: 0.95rem;
    line-height: 1.45;
}

.calendar-waitlist-link {
    color: var(--color-black);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.calendar-waitlist-link:hover {
    color: #bfdbfe;
}

/* Verzet-modal: lichte agenda met goed contrast */
.reschedule-calendar-container {
    --cal-text-muted: #5c5c5c;
    --cal-btn-disabled-bg: #b0b0b0;
    --cal-btn-disabled-text: #ffffff;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.success-popup-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.success-popup-content--brand {
    padding: 2.25rem 2rem 2rem;
    border-radius: 16px;
}

.success-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.success-popup-close {
    position: absolute;
    top: -0.4rem;
    right: -0.35rem;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.success-popup-close:hover {
    background: rgba(0, 0, 0, 0.07);
    transform: translateY(-1px);
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.success-popup-content h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-popup-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sms-info {
    color: #16a34a !important;
    font-weight: 600;
    margin-top: 1rem;
}

.success-popup-card {
    margin: 1.5rem 0 1.25rem;
    padding: 1.15rem 1.15rem;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.success-popup-card-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.success-popup-card .email-icon {
    color: #1a1a1a;
    flex-shrink: 0;
}

.success-popup-card-text {
    margin: 0 0 0.75rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
}

.success-popup-card-tip {
    margin: 0;
    padding: 0.7rem 0.8rem;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 10px;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.45;
}

.success-message {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.success-popup-content button {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.success-popup-content button:hover {
    background: #2d2d2d;
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 1rem;
    }
    
    .booking-modal-content {
        max-height: 95vh;
    }
    
    .success-popup-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 520px) {
    .success-popup {
        padding: 1rem;
    }

    .success-popup-content--brand {
        padding: 1.8rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .success-icon {
        width: 72px;
        height: 72px;
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
    }
}

/* Mijn Reserveringen Page */
.my-bookings-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.my-bookings-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.my-bookings-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 0.5rem;
}

.my-bookings-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.search-bookings-form-container {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.search-bookings-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-bookings-form .form-group {
    margin-bottom: 1.5rem;
}

.search-bookings-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
    font-size: 0.95rem;
}

.search-bookings-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.search-bookings-form .form-group input:focus {
    outline: none;
    border-color: var(--color-black);
}

.search-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.search-btn:active {
    transform: translateY(0);
}

.bookings-results {
    margin-top: 2rem;
}

.results-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

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

/* Month Section */
.month-section {
    border: 1px solid var(--color-light-gray);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid var(--color-light-gray);
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.month-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.month-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.month-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.month-booking-count {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(26, 26, 26, 0.08);
    border-radius: 12px;
}

.month-toggle-icon {
    color: var(--color-black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.month-toggle-icon.expanded {
    transform: rotate(180deg);
}

.month-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--color-white);
}

.month-content.expanded {
    max-height: 10000px;
    transition: max-height 0.5s ease-in;
}

.month-content-inner {
    padding: 1.5rem;
}

.month-content-inner .bookings-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

@media (min-width: 1200px) {
    .month-content-inner .bookings-list {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

.booking-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-light-gray);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.booking-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-light-gray);
    gap: 1rem;
}

.booking-date-time {
    flex: 1;
    min-width: 0;
}

.booking-day {
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 500;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.booking-time {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 600;
}

.booking-status {
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.booking-card-body {
    margin-bottom: 0.75rem;
    flex: 1;
}

.booking-info {
    display: grid;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.info-label {
    font-weight: 600;
    color: var(--color-gray);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.info-value {
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-light-gray);
}

.booking-past {
    opacity: 0.7;
    background: #f9f9f9;
}

.booking-past-notice {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    color: var(--color-gray);
    font-style: italic;
    font-size: 0.9rem;
}

.btn-reschedule,
.btn-cancel-booking {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    white-space: nowrap;
}

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

.btn-is-locked {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(20%);
}

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

.btn-cancel-booking {
    background: #dc3545;
    color: var(--color-white);
}

.btn-cancel-booking:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.no-bookings,
.loading-indicator {
    text-align: center;
    padding: 3rem;
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* Custom melding modal (mijn reserveringen) */
.booking-message-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-message-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.booking-message-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.25rem 1rem;
    border: 1px solid #e7e7e7;
}

.booking-message-title {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.booking-message-text {
    margin: 0;
    color: #444;
    line-height: 1.55;
    font-size: 0.95rem;
}

.booking-message-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.booking-message-btn {
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1rem;
    cursor: pointer;
}

.booking-message-btn-secondary {
    background: #efefef;
    color: #1f1f1f;
    margin-right: 0.5rem;
}

.booking-message-btn-danger {
    background: #dc2626;
    color: #fff;
}

.booking-message-success {
    border-top: 4px solid #16a34a;
}

.booking-message-warning {
    border-top: 4px solid #d97706;
}

.booking-message-error {
    border-top: 4px solid #dc2626;
}

/* Reschedule Modal */
#rescheduleModal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

#rescheduleModal .modal-content {
    background-color: var(--color-white);
    margin: 2% auto;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.reschedule-modal-content {
    max-width: 900px !important;
}

.reschedule-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.reschedule-calendar-container {
    margin-bottom: 2rem;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--color-black);
}

#rescheduleModal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

#rescheduleModal .form-group {
    margin-bottom: 1.5rem;
}

#rescheduleModal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
    font-size: 0.95rem;
}

#rescheduleModal .form-group input,
#rescheduleModal .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

#rescheduleModal .form-group input:focus,
#rescheduleModal .form-group select:focus {
    outline: none;
    border-color: var(--color-black);
}

#rescheduleModal .form-group select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn-cancel {
    flex: 1;
    padding: 1rem;
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-actions .btn-cancel:hover {
    background: #eee;
}

.modal-actions .btn-submit {
    flex: 1;
    padding: 1rem;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-actions .btn-submit:hover:not(:disabled) {
    background: var(--color-dark-gray);
    transform: translateY(-2px);
}

.modal-actions .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Beleidspagina */
.policy-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.policy-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.policy-toc {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 0 0 2.25rem;
}

.policy-toc-link {
    color: rgba(26, 26, 26, 0.75);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(26, 26, 26, 0.18);
    padding-bottom: 0.15rem;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.policy-toc-link:hover {
    color: var(--color-black);
    border-color: rgba(26, 26, 26, 0.55);
}

.policy-block {
    padding: 0 0 1.75rem;
    margin: 0 0 1.75rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-heading {
    margin: 0 0 0.9rem;
    font-size: 1.45rem;
    color: #1a1a1a;
    letter-spacing: 0.2px;
}

.policy-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #3d3d3d;
    line-height: 1.7;
}

.policy-list li {
    margin-bottom: 0.75rem;
}

.policy-list li::marker {
    color: rgba(26, 26, 26, 0.55);
}

@media (max-width: 768px) {
    .my-bookings-section {
        padding: 2rem 0;
    }
    
    .my-bookings-title {
        font-size: 2rem;
    }
    
    .search-bookings-form-container {
        padding: 1.5rem;
    }
    
    .search-bookings-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .month-header {
        padding: 1rem 1.25rem;
    }
    
    .month-name {
        font-size: 1.1rem;
    }
    
    .month-booking-count {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .month-content-inner {
        padding: 1rem;
    }
    
    .month-content-inner .bookings-list {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .booking-card {
        padding: 0.875rem;
    }
    
    .booking-card-header {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .booking-card-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn-reschedule,
    .btn-cancel-booking {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    #rescheduleModal .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: 95%;
    }
    
    .reschedule-modal-content {
        max-width: 95% !important;
    }
    
    .reschedule-calendar-container {
        margin-bottom: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
