/**
 * Barber B Fresh - Stylesheet
 * Kleurenschema: Grijs, Zwart, Wit
 */

:root {
    --color-black: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-gray: #4a4a4a;
    --color-light-gray: #e0e0e0;
    --color-white: #ffffff;
    --color-accent-gray: #6b6b6b;
}

* {
    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-black);
    background-color: var(--color-white);
    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-dark-gray);
    padding: 0.875rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    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-white);
    gap: 0.15rem;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Barber Pole Logo */
.barber-pole {
    position: relative;
    width: 40px;
    height: 60px;
}

.pole-body {
    position: absolute;
    width: 20px;
    height: 50px;
    left: 10px;
    top: 5px;
    background: repeating-linear-gradient(
        45deg,
        var(--color-light-gray) 0px,
        var(--color-light-gray) 8px,
        var(--color-gray) 8px,
        var(--color-gray) 16px
    );
    border-radius: 2px;
}

.pole-cap {
    position: absolute;
    width: 24px;
    height: 6px;
    background-color: var(--color-light-gray);
    border-radius: 3px;
    left: 8px;
}

.pole-cap.top {
    top: 0;
}

.pole-cap.bottom {
    bottom: 0;
}

.pole-band {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--color-light-gray);
    left: 10px;
}

.pole-band.top-band {
    top: 12px;
}

.pole-band.bottom-band {
    bottom: 12px;
}

/* Header Logo */
.main-header .logo-b-3d {
    position: relative;
    width: 65px;
    height: 65px;
    opacity: 1;
    animation: logoBounceRotate 10s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.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;
}

/* Header Logo Text */
.main-header .logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-light-gray);
    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%);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    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: rgba(255, 255, 255, 0.85);
    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-white);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after {
    width: 100%;
}

/* 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('/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('/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-banner-professional {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: white;
    background: #0a0a0a;
}

.hero-bg-professional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image-professional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5) contrast(1.1);
}

.hero-overlay-professional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-container-professional {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-content-professional {
    width: 100%;
    max-width: 800px;
}

.hero-main-content {
    padding: 4rem 0;
}

.hero-title-professional {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -4px;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.hero-title-white {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title-grey {
    color: #b0b0b0;
    text-shadow: 0 4px 20px rgba(176, 176, 176, 0.3);
}

.hero-slogan-professional {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    letter-spacing: 0.5px;
}

.hero-book-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #a0a0a0;
    color: #000000;
    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(160, 160, 160, 0.3);
    margin-bottom: 4rem;
}

.hero-book-btn:hover {
    background: #b0b0b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 160, 160, 0.4);
}

.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.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: rgba(255, 255, 255, 0.9);
    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: #b0b0b0;
}

.hero-email::before {
    content: '✉';
    font-size: 1.2rem;
    color: #b0b0b0;
}

.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: #f5f5f5;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    color: var(--color-light-gray);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    max-width: 150px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--color-white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 600px) {
    .pricing-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .pricing-content {
        gap: 4rem;
    }
}

.pricing-category {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.pricing-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    transform: translateZ(0); /* GPU acceleration */
}

.pricing-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.pricing-service {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-light-gray);
    text-transform: uppercase;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

.pricing-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    cursor: pointer;
}

.pricing-logo .logo-text {
    margin-top: -0.3rem;
}


.logo-animated {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-logo .barber-pole {
    position: relative;
    width: 40px;
    height: 60px;
}

.pricing-logo .pole-body {
    position: absolute;
    width: 20px;
    height: 50px;
    left: 10px;
    top: 5px;
    background: repeating-linear-gradient(
        45deg,
        var(--color-light-gray) 0px,
        var(--color-light-gray) 8px,
        var(--color-gray) 8px,
        var(--color-gray) 16px
    );
    border-radius: 2px;
}

.pricing-logo .pole-cap {
    position: absolute;
    width: 24px;
    height: 6px;
    background-color: var(--color-light-gray);
    border-radius: 3px;
    left: 8px;
}

.pricing-logo .pole-cap.top {
    top: 0;
}

.pricing-logo .pole-cap.bottom {
    bottom: 0;
}

.pricing-logo .pole-band {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: var(--color-light-gray);
    left: 10px;
}

.pricing-logo .pole-band.top-band {
    top: 12px;
}

.pricing-logo .pole-band.bottom-band {
    bottom: 12px;
}

.pricing-logo .logo-b-3d {
    position: relative;
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.pricing-logo .logo-b-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pricing-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-light-gray);
    text-transform: uppercase;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Barbers Section */
.barbers-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: var(--color-white);
    padding: 6rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.barbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.barbers-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-white);
    letter-spacing: 2px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.barbers-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-white);
    letter-spacing: 2px;
    opacity: 1;
    transform: translateY(0);
}

.barbers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 968px) {
    .barbers-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.barber-profile {
    text-align: center;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.barber-profile {
    text-align: center;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.barber-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.barber-profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.google-maps-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.google-maps-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}

.google-maps-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.barber-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
}

.barbers-section .working-hours {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.barbers-section .working-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.barbers-section .working-hours.animate-on-scroll.js-ready {
    opacity: 1;
    transform: translateX(0);
}

.barbers-section .working-hours.animate-on-scroll.visible {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

.hours-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hours-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.hours-header-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.hours-header-icon svg {
    width: 24px;
    height: 24px;
}

.hours-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: none;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.open {
    background: #10b981;
}

.status-text {
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* GPU acceleration */
}

.hours-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.hours-item:hover::before {
    transform: scaleY(1);
}

.hours-item.today {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hours-item.today::before {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleY(1);
}

.hours-day-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-day {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.hours-day-short {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hours-time {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
}

.hours-time.hours-closed {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-style: italic;
}

.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;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.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;
}

/* Examples Section - Kapsel Voorbeelden */
.examples-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.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-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.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-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.examples-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.examples-paragraph {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.examples-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    width: fit-content;
}

.examples-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Team Section */
.team-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.team-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-header-desktop {
    text-align: center;
    margin-bottom: 2.5rem;
    display: block;
}

.team-profile .team-header {
    margin-bottom: 1.5rem;
    display: none;
}

@media (min-width: 968px) {
    .team-header-desktop {
        display: block;
    }
    
    .team-profile .team-header {
        display: none;
    }
}

.team-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .team-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        align-items: start;
    }
}

.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;
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.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: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: var(--color-light-gray);
    padding: 5rem 0 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section {
    padding: 1.5rem 0;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section p:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    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;
    }
    
    .logo-link {
        gap: 3px;
    }
    
    .logo-b-3d {
        width: 70px;
        height: 70px;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-dark-gray);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        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-white);
    }

    .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;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    .pricing-title-line {
        max-width: 80px;
    }

    .pricing-category {
        padding: 2rem 1.5rem;
    }

    .pricing-item {
        padding: 1rem 0.75rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .pricing-service {
        font-size: 0.85rem;
    }

    .pricing-price {
        font-size: 1.1rem;
    }

    /* Barbers Section Mobile */
    .barbers-section {
        padding: 4rem 0;
    }

    .barbers-content {
        gap: 3rem;
        padding: 0 1rem;
    }

    .barbers-section .working-hours {
        padding: 2rem 1.5rem;
    }

    .hours-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .hours-header-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .hours-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hours-status {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
    }

    .hours-item {
        padding: 1.25rem 1.25rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hours-day {
        font-size: 0.95rem;
    }

    .hours-day-short {
        font-size: 0.7rem;
    }

    .hours-time {
        font-size: 0.9rem;
    }

    .google-maps-wrapper {
        height: 350px;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        padding: 1rem 0;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* 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;
    }
    
    /* Professional Banner Mobile */
    .hero-banner-professional {
        min-height: 80vh;
        justify-content: center;
    }
    
    .hero-container-professional {
        padding: 0 20px;
    }
    
    .hero-main-content {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-title-professional {
        font-size: 3.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .hero-slogan-professional {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .hero-book-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        margin-bottom: 3rem;
        display: block;
        width: fit-content;
    }
    
    .hero-contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .hero-socials {
        gap: 1rem;
    }
    
    .hero-social-link {
        width: 44px;
        height: 44px;
    }
    
    .hero-email {
        font-size: 1rem;
    }
    
    .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;
    }
    
    /* Barbers Section Mobile */
    .barbers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .barber-image-wrapper {
        max-width: 100%;
    }
    
    /* Barbers Section Mobile */
    .barbers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .barber-image-wrapper {
        max-width: 100%;
    }
    
    /* Examples Section Mobile */
    .examples-section {
        padding: 60px 0;
    }
    
    .examples-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .examples-images {
        order: 1;
    }
    
    .examples-grid {
        max-width: 100%;
        gap: 12px;
    }
    
    .example-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .examples-text-content {
        text-align: center;
        padding-left: 0;
        order: 2;
    }
    
    .examples-heading {
        font-size: 32px;
    }
    
    .examples-btn {
        margin: 0 auto;
    }
    
    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-section {
        padding: 4rem 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;
    }
}

/* 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;
    color: var(--color-light-gray);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.team-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Calendar (Right Side) */
.team-calendar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.calendar-subtitle {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    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-white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.week-nav-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-black);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.week-nav-btn:hover {
    background-color: var(--color-light-gray);
    color: var(--color-black);
}

.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(--color-black);
    letter-spacing: 0.5px;
}

.calendar-icon-btn {
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.calendar-icon-btn:hover {
    background-color: var(--color-light-gray);
    opacity: 1;
}

.month-year-picker {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.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(--color-black);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.picker-nav-btn:hover {
    background-color: var(--color-light-gray);
}

.picker-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.month-select,
.year-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    background-color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.month-select:hover,
.year-select:hover {
    border-color: var(--color-black);
}

.month-select:focus,
.year-select:focus {
    outline: none;
    border-color: var(--color-black);
}

.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);
    border-radius: 10px;
    padding: 0.5rem 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.calendar-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.calendar-day.today {
    border-color: var(--color-black);
    border-width: 2px;
}

.calendar-day.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.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;
    opacity: 0.7;
}

.calendar-day.selected .day-name {
    opacity: 0.9;
}

.day-number {
    font-size: 1rem;
    font-weight: 600;
}

.calendar-time-slots {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.time-slots-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.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: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: var(--color-light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.time-slot.unavailable:hover {
    transform: none;
}

.reserve-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    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(0, 0, 0, 0.2);
}

.reserve-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.reserve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--color-light-gray);
}

@media (max-width: 967px) {
    .team-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .team-header {
        display: none;
    }
    
    .team-profile .team-header {
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .team-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .team-image-wrapper {
        padding-bottom: 100%;
        margin-bottom: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .team-profile {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .team-name {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }
    
    .team-experience {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .team-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .team-calendar {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .calendar-header {
        margin-bottom: 1rem;
    }
    
    .calendar-title {
        font-size: 1.2rem;
    }
    
    .calendar-subtitle {
        font-size: 0.8rem;
    }
    
    .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, 1fr);
        gap: 0.25rem;
        margin-bottom: 0.65rem;
    }
    
    .calendar-day {
        padding: 0.35rem 0.15rem;
        border-radius: 6px;
    }
    
    .day-name {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }
    
    .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-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;
}

.services-underline {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    margin-bottom: 1.25rem;
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.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;
}

/* 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: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    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: #28a745 !important;
    font-weight: 600;
    margin-top: 1rem;
}

.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;
    }
}
