/* ==========================================
   CHRONOS CONSTRUCTION - Cinematic Design
   Modern, Bold, High-Impact
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --black: #000000;
    --black-soft: #080808;
    --black-light: #0d0d0d;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #666666;
    --gray-400: #888888;
    --gray-300: #aaaaaa;
    --gray-200: #cccccc;
    --gray-100: #e5e5e5;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Durations */
    --duration-fast: 0.3s;
    --duration-medium: 0.6s;
    --duration-slow: 1s;
    --duration-slower: 1.5s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--black);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--white);
    color: var(--black);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
}

h1 {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    font-weight: 400;
    color: var(--gray-400);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    z-index: 1000;
    transition: all var(--duration-medium) var(--ease-out-expo);
    mix-blend-mode: difference;
}

.navbar.scrolled {
    padding: 1.5rem 3rem;
    mix-blend-mode: normal;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
}

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

.nav-logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.nav-logo span {
    font-weight: 400;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.6;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all var(--duration-fast) var(--ease-out-expo);
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-medium) var(--ease-out-expo);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
        opacity: 0;
        transform: translateY(30px);
    }

    .nav-links.active a {
        opacity: 0.6;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ==========================================
   HERO - Full Screen Cinematic
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
    opacity: 0.5;
}

.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8) 100%),
        linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero h1 {
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(100px);
    animation: heroReveal 1.2s var(--ease-out-expo) 0.3s forwards;
}

.hero h1 span {
    display: block;
}

.hero-tagline {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==========================================
   BUTTONS - Bold & Modern
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color var(--duration-fast) var(--ease-out-expo);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateY(100%);
    transition: transform var(--duration-fast) var(--ease-out-expo);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

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

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

.btn-primary::before {
    background: var(--black);
}

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

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}

/* ==========================================
   SECTIONS - Immersive Full-Width
   ========================================== */
.section {
    position: relative;
    padding: 10rem 4rem;
    background: var(--black);
    overflow: hidden;
}

.section-dark {
    background: var(--gray-900);
}

.section-alt {
    background: var(--black-soft);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Section Video Backgrounds */
.section-video,
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.section-video video,
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.4;
}

.section-video::after,
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Section Headers */
.section-header {
    margin-bottom: 5rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-800);
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-header.center p {
    margin: 0 auto;
}

/* ==========================================
   SERVICES - Grid Layout
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-800);
}

@media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service-card {
    padding: 3rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-900);
    transform: translateY(100%);
    transition: transform var(--duration-medium) var(--ease-out-expo);
    z-index: 0;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color var(--duration-medium) var(--ease-out-expo);
}

.service-card:hover .service-number {
    color: var(--gray-700);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: transform var(--duration-medium) var(--ease-out-expo);
}

.service-card:hover h3 {
    transform: translateX(10px);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ==========================================
   WHY CHOOSE US - Bold Stats
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

@media (max-width: 1000px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

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

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--gray-800);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.stat-item:hover {
    border-color: var(--gray-600);
    background: var(--gray-900);
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* Features List */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.feature-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--gray-800);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.feature-item:hover {
    border-color: var(--gray-600);
    background: var(--gray-900);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-700);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* ==========================================
   PRODUCTS
   ========================================== */
.products-section {
    padding: 2rem 0 6rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-800);
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    background: var(--black);
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--duration-medium) var(--ease-out-expo);
    pointer-events: none;
}

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

.product-image {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.product-image video,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image video,
.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: grayscale(40%) brightness(0.85);
}

.product-details {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: var(--black);
}

.product-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    transition: color var(--duration-medium) var(--ease-out-expo);
}

.product-card:hover .product-details h3 {
    color: var(--white);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

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

.quantity-input {
    width: 70px;
    height: 44px;
    text-align: center;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--white);
}

/* ==========================================
   BOOKING PAGE
   ========================================== */
.booking-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-800);
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .booking-options { grid-template-columns: 1fr; }
}

.booking-card {
    background: var(--black);
    padding: 4rem 3rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateY(100%);
    transition: transform var(--duration-medium) var(--ease-out-expo);
    z-index: 0;
}

.booking-card:hover::before,
.booking-card.selected::before {
    transform: translateY(0);
}

.booking-card > * {
    position: relative;
    z-index: 1;
    transition: color var(--duration-medium) var(--ease-out-expo);
}

.booking-card:hover,
.booking-card:hover *,
.booking-card.selected,
.booking-card.selected * {
    color: var(--black) !important;
}

.booking-card .duration {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
}

.booking-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--gray-400);
}

.booking-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Calendar */
.calendar-container {
    max-width: 900px;
    margin: 0 auto;
}

.calendar {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 3rem;
}

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

.calendar-header h3 {
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.calendar-nav button:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

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

.calendar-day-name {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.25rem 0;
    color: var(--gray-500);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--white);
    color: var(--black);
}

.calendar-day.selected {
    background: var(--white);
    color: var(--black);
}

.calendar-day.disabled {
    color: var(--gray-700);
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

/* Time Slots */
.time-slots {
    display: none;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-800);
}

.time-slots.visible {
    display: block;
    animation: fadeUp var(--duration-medium) var(--ease-out-expo);
}

.time-slots h4 {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 2px;
}

.time-slot {
    padding: 1.25rem;
    background: var(--black);
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.time-slot:hover:not(.unavailable) {
    background: var(--white);
    color: var(--black);
}

.time-slot.selected {
    background: var(--white);
    color: var(--black);
}

.time-slot.unavailable {
    color: var(--gray-700);
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Booking Form */
.booking-form {
    display: none;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-800);
}

.booking-form.visible {
    display: block;
    animation: fadeUp var(--duration-medium) var(--ease-out-expo);
}

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

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--gray-400);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--gray-700);
    background: var(--black);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--duration-fast) var(--ease-smooth);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.booking-summary {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.booking-summary p {
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.booking-summary .total {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-700);
}

/* ==========================================
   CONTACT / FIND US
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gray-800);
}

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

.contact-info,
.contact-form {
    background: var(--black);
    padding: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    width: 80px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-details p,
.contact-details a {
    color: var(--gray-300);
    line-height: 1.8;
}

.contact-details a:hover {
    color: var(--white);
}

.map-container {
    height: 500px;
    background: var(--gray-900);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(1) contrast(0.9);
    opacity: 0.7;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.legal-content p {
    margin-bottom: 1.25rem;
    color: var(--gray-300);
    line-height: 1.9;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--gray-300);
    line-height: 1.8;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black-soft);
    padding: 6rem 4rem 3rem;
    border-top: 1px solid var(--gray-800);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

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

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--gray-500);
}

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

/* ==========================================
   SUCCESS/CANCEL PAGES
   ========================================== */
.result-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--black);
}

.result-content {
    max-width: 500px;
}

.result-icon {
    width: 100px;
    height: 100px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
}

.result-icon svg {
    width: 32px;
    height: 32px;
}

.result-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.result-content p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.result-content .info-box {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.result-content .info-box p {
    margin-bottom: 1rem;
}

.result-content .info-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.result-content .info-box li {
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-reveal > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-medium) var(--ease-out-expo),
                transform var(--duration-medium) var(--ease-out-expo);
}

.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* No-JS fallback */
@media (scripting: none) {
    .reveal, .stagger-reveal > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 4rem; }

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    border-top-color: var(--black);
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1.5rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateX(calc(100% + 3rem));
    transition: transform var(--duration-medium) var(--ease-out-expo);
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }

    .footer {
        padding: 4rem 2rem 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 3rem 2rem;
    }

    .calendar {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   SHOPPING CART
   ========================================== */

/* Cart Toggle Button */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1.5rem;
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-toggle.cart-bounce {
    animation: cartBounce 0.3s var(--ease-out-expo);
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--white);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--black-soft);
    border-left: 1px solid var(--gray-800);
    transform: translateX(100%);
    transition: transform var(--duration-medium) var(--ease-out-expo);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cart-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--duration-fast);
}

.cart-close:hover {
    color: var(--white);
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-500);
    text-align: center;
}

.cart-empty svg {
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 0.9rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-800);
    position: relative;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gray-900);
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--white);
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    background: var(--gray-800);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-fast);
}

.cart-qty-btn:hover {
    background: var(--gray-700);
}

.cart-qty-value {
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 1.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--duration-fast);
}

.cart-item-remove:hover {
    color: var(--white);
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--gray-800);
    background: var(--black);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cart-subtotal span:first-child {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.cart-subtotal span:last-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.cart-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 0.75rem;
}

.cart-clear-btn {
    width: 100%;
    background: transparent;
    border-color: var(--gray-700);
    color: var(--gray-400);
    font-size: 0.85rem;
}

.cart-clear-btn:hover {
    border-color: var(--gray-500);
    color: var(--white);
    background: transparent;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    padding: 1rem 1.5rem;
    min-width: 280px;
    max-width: 400px;
    transform: translateX(calc(100% + 3rem));
    opacity: 0;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(calc(100% + 3rem));
    opacity: 0;
}

.toast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--white);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.toast-close:hover {
    color: var(--white);
}

.toast-success {
    border-left: 3px solid #22c55e;
}

.toast-error {
    border-left: 3px solid #ef4444;
}

.toast-info {
    border-left: 3px solid var(--white);
}

.toast-warning {
    border-left: 3px solid #f59e0b;
}

/* ==========================================
   BOOKING MODAL
   ========================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast) var(--ease-smooth);
    backdrop-filter: blur(10px);
}

.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: var(--black-soft);
    border: 1px solid var(--gray-800);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--duration-medium) var(--ease-out-expo);
}

.booking-modal-overlay.open .booking-modal {
    transform: scale(1) translateY(0);
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--gray-800);
    position: sticky;
    top: 0;
    background: var(--black-soft);
    z-index: 1;
}

.booking-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.booking-modal-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--duration-fast);
}

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

/* Progress Steps */
.booking-progress {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-700);
    transition: all var(--duration-fast);
}

.progress-step.active .progress-dot {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.progress-step.completed .progress-dot {
    background: var(--white);
}

.progress-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.progress-step.active .progress-label,
.progress-step.completed .progress-label {
    color: var(--white);
}

.progress-line {
    width: 30px;
    height: 1px;
    background: var(--gray-700);
}

/* Modal Content */
.booking-modal-content {
    padding: 2rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeUp var(--duration-fast) var(--ease-out-expo);
}

/* Step 1: Calendar */
.modal-calendar {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
}

.modal-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.modal-calendar-header h4 {
    font-size: 1rem;
    font-weight: 500;
}

.modal-calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.modal-calendar-nav button {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--duration-fast);
}

.modal-calendar-nav button:hover {
    background: var(--gray-700);
}

.modal-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--gray-800);
    padding: 1px;
}

.modal-day-name {
    background: var(--gray-900);
    padding: 1rem;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.modal-day {
    background: var(--gray-900);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--duration-fast);
    position: relative;
}

.modal-day:hover:not(.disabled):not(.empty) {
    background: var(--white);
    color: var(--black);
}

.modal-day.selected {
    background: var(--white);
    color: var(--black);
}

.modal-day.disabled {
    color: var(--gray-700);
    cursor: not-allowed;
}

.modal-day.closed::after {
    content: 'CLOSED';
    display: block;
    font-size: 0.5rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.modal-day.empty {
    cursor: default;
    background: transparent;
}

.modal-day .capacity {
    font-size: 0.6rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.modal-day.selected .capacity {
    color: var(--gray-600);
}

/* Step 2: Time Slots */
.modal-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.modal-time-slot {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.modal-time-slot:hover:not(.full) {
    border-color: var(--white);
}

.modal-time-slot.selected {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.modal-time-slot.full {
    opacity: 0.4;
    cursor: not-allowed;
}

.modal-time-slot .time {
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.modal-time-slot .slots-left {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.modal-time-slot.selected .slots-left {
    color: var(--gray-600);
}

.modal-time-slot.full .slots-left {
    color: var(--gray-600);
}

/* Step 3: Details Form */
.modal-form-group {
    margin-bottom: 1.5rem;
}

.modal-form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--duration-fast);
}

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

.modal-form-group input::placeholder,
.modal-form-group textarea::placeholder {
    color: var(--gray-600);
}

.modal-form-group.error input,
.modal-form-group.error textarea {
    border-color: #ef4444;
}

.modal-form-group .error-message {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

/* Quantity Selector in Modal */
.modal-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-qty-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    transition: background var(--duration-fast);
}

.modal-qty-btn:hover {
    background: var(--gray-700);
}

.modal-qty-value {
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Order Summary in Modal */
.modal-order-summary {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 1.5rem;
    margin-top: 2rem;
}

.modal-order-summary h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-800);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.summary-row span:first-child {
    color: var(--gray-400);
}

.summary-row span:last-child {
    color: var(--white);
}

.summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-700);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modal Footer */
.booking-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid var(--gray-800);
    background: var(--black);
    position: sticky;
    bottom: 0;
}

.booking-modal-footer .btn {
    flex: 1;
}

.booking-modal-footer .btn-back {
    background: transparent;
    border-color: var(--gray-700);
    color: var(--gray-300);
}

.booking-modal-footer .btn-back:hover {
    border-color: var(--gray-500);
    color: var(--white);
    background: transparent;
}

/* Product Images in Product Cards */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-medium) var(--ease-out-expo);
}

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

@media (max-width: 500px) {
    .cart-sidebar {
        max-width: 100%;
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }

    .booking-modal-overlay {
        padding: 0;
    }

    .booking-modal {
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }

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

    .booking-progress {
        flex-wrap: wrap;
    }

    .progress-line {
        display: none;
    }
}

/* ==========================================
   UPDATED BOOKING MODAL STYLES
   ========================================== */
.booking-modal {
    position: relative;
    border-radius: 12px;
}

.booking-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
}

.booking-modal-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 2rem 1.5rem;
}

.booking-modal-header h3 {
    text-align: center;
}

.booking-progress {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: none;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--white);
    color: var(--black);
}

.progress-step.completed .step-number {
    background: var(--white);
    color: var(--black);
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--white);
}

.progress-line {
    width: 40px;
    height: 2px;
    background: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Calendar Grid - New */
.modal-calendar {
    border-radius: 8px;
    overflow: hidden;
}

.modal-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
}

.cal-nav-btn {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover {
    background: var(--gray-700);
    border-color: var(--gray-600);
}

.day-header {
    background: var(--gray-900);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.calendar-day {
    background: var(--gray-900);
    padding: 0.875rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calendar-day .day-number {
    font-size: 0.9rem;
    font-weight: 500;
}

.calendar-day.available:hover {
    background: var(--gray-800);
}

.calendar-day.selected {
    background: var(--white);
    color: var(--black);
}

.calendar-day.disabled {
    color: var(--gray-700);
    cursor: not-allowed;
}

.calendar-day.closed::after {
    content: '';
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

/* Time Slots Grid - New */
.step-subtitle {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover:not(.full) {
    border-color: var(--white);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.time-slot.full {
    opacity: 0.4;
    cursor: not-allowed;
}

.time-slot .slot-time {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.time-slot .slot-status {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.time-slot .slot-status.available {
    color: #22c55e;
}

.time-slot.selected .slot-status {
    color: var(--gray-600);
}

.no-slots {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
}

/* Booking Form - New */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

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

.booking-form .form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.625rem;
}

.booking-form .form-group input,
.booking-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

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

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: var(--gray-600);
}

/* Booking Summary - New */
.booking-summary {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 8px;
    padding: 1.25rem;
}

.booking-summary h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-800);
}

/* Modal Footer - New */
.booking-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem 2rem 2rem;
    border-top: none;
    background: transparent;
    position: relative;
}

.modal-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.modal-btn.primary:hover {
    background: var(--gray-200);
    transform: translateY(-1px);
}

.modal-btn.primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.modal-btn.secondary {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-700);
}

.modal-btn.secondary:hover {
    border-color: var(--gray-500);
    color: var(--white);
}

/* ==========================================
   CINEMATIC HOME PAGE STYLES
   ========================================== */

/* Hero Cinematic */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

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

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.6);
    transform: scale(1.1);
    animation: heroVideoZoom 20s ease-in-out infinite alternate;
}

@keyframes heroVideoZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.15); }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%),
        linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-tagline-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-tagline-top .line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.hero-tagline-top .text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.hero-title {
    font-size: clamp(3rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin-bottom: 2rem;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px) skewY(5deg);
    animation: heroTitleReveal 1.2s var(--ease-out-expo) forwards;
}

.hero-title .title-line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .title-line:nth-child(2) { animation-delay: 0.35s; }

@keyframes heroTitleReveal {
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--gray-400);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.8s forwards;
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 1s forwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform var(--duration-fast) var(--ease-out-expo);
    z-index: -1;
}

.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-btn:hover {
    color: var(--black);
}

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

.cta-btn.primary::before {
    background: var(--black);
    transform: translateX(100%);
}

.cta-btn.primary:hover {
    color: var(--white);
    border-color: var(--black);
}

.cta-btn svg {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-prompt span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

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

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Corner Accents */
.hero-corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
    pointer-events: none;
}

.hero-corner-accent.top-left {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
}

.hero-corner-accent.top-right {
    top: 2rem;
    right: 2rem;
    border-left: none;
    border-bottom: none;
}

.hero-corner-accent.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-right: none;
    border-top: none;
}

.hero-corner-accent.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-left: none;
    border-top: none;
}

/* Cinematic Section */
.cinematic-section {
    position: relative;
    padding: 10rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cinematic-section.dark {
    background: var(--gray-900);
}

.section-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.6;
}

.video-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%),
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
}

.section-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    margin-bottom: 5rem;
}

.section-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 500px;
    line-height: 1.8;
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

/* Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
    .services-showcase { grid-template-columns: 1fr; }
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-medium) var(--ease-out-expo);
}

.service-block:hover::before {
    opacity: 1;
}

.service-block:hover {
    background: rgba(0,0,0,0.7);
}

.service-index {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--duration-medium) var(--ease-out-expo);
}

.service-block:hover .service-index {
    color: rgba(255,255,255,0.2);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: transform var(--duration-medium) var(--ease-out-expo);
}

.service-block:hover .service-content h3 {
    transform: translateX(10px);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-arrow {
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.service-arrow svg {
    stroke: var(--white);
}

.service-block:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stats Section - Split Design */
.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

@media (max-width: 1000px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

.stats-left {
    position: relative;
    min-height: 50vh;
}

.stats-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stats-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5);
}

.stats-right {
    background: var(--black);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-content {
    margin-bottom: 4rem;
}

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

.stat-block {
    padding: 2.5rem;
    border: 1px solid var(--gray-800);
    text-align: center;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.stat-block:hover {
    border-color: var(--gray-600);
    background: var(--gray-900);
    transform: translateY(-5px);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* Features Grid - Updated */
.cinematic-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
}

@media (max-width: 1100px) {
    .cinematic-section .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cinematic-section .features-grid { grid-template-columns: 1fr; }
}

.feature-block {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    text-align: center;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.feature-block:hover {
    background: rgba(0,0,0,0.8);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.feature-block:hover .feature-icon-box {
    border-color: var(--white);
    transform: scale(1.1);
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.feature-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-block p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* CTA Cinematic */
.cta-cinematic {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%),
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}

.cta-content h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cta-diagonal-lines::before,
.cta-diagonal-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(25deg);
}

.cta-diagonal-lines::before {
    left: 20%;
    top: -50%;
}

.cta-diagonal-lines::after {
    right: 25%;
    top: -50%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cinematic-section {
        padding: 6rem 2rem;
        min-height: auto;
    }

    .hero-corner-accent {
        width: 40px;
        height: 40px;
    }

    .stats-right {
        padding: 4rem 2rem;
    }

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

    .service-block {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-index {
        font-size: 2rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   CINEMATIC ENHANCEMENTS
   ========================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal for grid items */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-reveal.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-reveal.visible > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-reveal.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle parallax effect on scroll */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced image loading effect */
img {
    transition: opacity 0.4s ease;
}

img[loading] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Cinematic cursor hover effect */
.product-card,
.booking-card,
.service-block,
.feature-block {
    cursor: pointer;
}

/* Glow effects on hover */
.product-card:hover {
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
}

.booking-card:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* Subtle grain overlay for cinematic feel */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Video vignette effect */
.hero-video-wrapper::after,
.section-video-bg::after,
.cta-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Enhanced navbar on scroll */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smooth text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Loading animation for buttons */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: buttonSpin 0.8s linear infinite;
    margin-left: 0.5rem;
}

@keyframes buttonSpin {
    to { transform: rotate(360deg); }
}

/* Section divider animation */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--white);
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cart-sidebar,
    .toast-container {
        display: none !important;
    }

    body::after {
        display: none;
    }
}
