/* ============================================
   LIFTJE WEBSITE - CUSTOM STYLES
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #1a1a20;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    --accent: #00d4d4;
    --accent-light: #40e8e8;
    --accent-dark: #00a3a3;
    --lift-metal: #2a2a30;
    --lift-metal-light: #3d3d45;
    --lift-metal-dark: #1e1e24;
    --shadow-color: rgba(0, 0, 0, 0.5);
    
    /* Logo visibility */
    --logo-light-display: block;
    --logo-dark-display: none;
    
    --font-display: 'Sora', sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* ============================================
   DEPTH GRADIENT LAYERS
   ============================================ */

/* Base styles for all gradient layers */
.gradient-layer,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

/* Layer 1: Foreground - follows cursor 100% */
.cursor-trail {
    width: 700px;
    height: 700px;
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(0, 212, 212, 0.22) 0%,
        rgba(0, 212, 212, 0.12) 25%,
        rgba(0, 212, 212, 0.04) 50%,
        rgba(0, 212, 212, 0) 70%
    );
}

/* Layer 2: Middle - follows cursor 50% + floats */
.layer-mid {
    width: 900px;
    height: 900px;
    z-index: -2;
    background: radial-gradient(
        circle,
        rgba(0, 212, 212, 0.15) 0%,
        rgba(0, 212, 212, 0.08) 30%,
        rgba(0, 212, 212, 0.02) 55%,
        rgba(0, 212, 212, 0) 75%
    );
}

/* Layer 3: Far background - follows cursor 25% + floats */
.layer-far {
    width: 1200px;
    height: 1200px;
    z-index: -3;
    background: radial-gradient(
        circle,
        rgba(0, 212, 212, 0.10) 0%,
        rgba(0, 212, 212, 0.05) 35%,
        rgba(0, 212, 212, 0.015) 60%,
        rgba(0, 212, 212, 0) 80%
    );
}

/* Light mode variants */
body.light-mode .cursor-trail {
    background: radial-gradient(
        circle,
        rgba(0, 163, 163, 0.18) 0%,
        rgba(0, 163, 163, 0.10) 25%,
        rgba(0, 163, 163, 0.03) 50%,
        rgba(0, 163, 163, 0) 70%
    );
}

body.light-mode .layer-mid {
    background: radial-gradient(
        circle,
        rgba(0, 163, 163, 0.12) 0%,
        rgba(0, 163, 163, 0.06) 30%,
        rgba(0, 163, 163, 0.015) 55%,
        rgba(0, 163, 163, 0) 75%
    );
}

body.light-mode .layer-far {
    background: radial-gradient(
        circle,
        rgba(0, 163, 163, 0.08) 0%,
        rgba(0, 163, 163, 0.04) 35%,
        rgba(0, 163, 163, 0.01) 60%,
        rgba(0, 163, 163, 0) 80%
    );
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

.nav-container {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1001;
}

.menu-toggle {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal-light);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-toggle:hover {
    background: var(--lift-metal);
    border-color: var(--accent);
    transform: scale(1.05);
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
}

.nav-overlay.active {
    pointer-events: all;
}

.nav-elevator-doors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.nav-door {
    width: 50%;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--lift-metal-light) 0%,
        var(--lift-metal) 20%,
        var(--lift-metal-dark) 80%,
        var(--lift-metal) 100%
    );
    transition: transform 0.8s var(--transition-smooth);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.nav-door::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
}

.nav-door-left {
    transform: translateX(-100%);
    border-right: 4px solid var(--lift-metal-dark);
}

.nav-door-right {
    transform: translateX(100%);
    border-left: 4px solid var(--lift-metal-dark);
}

.nav-overlay.active .nav-door-left {
    transform: translateX(0);
}

.nav-overlay.active .nav-door-right {
    transform: translateX(0);
}

.nav-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
    padding: 40px;
}

.nav-overlay.active .nav-overlay-content {
    opacity: 1;
}

.nav-logo {
    margin-bottom: 60px;
}

.nav-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 212, 0.4));
}

.nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 60px;
}

.nav-links li {
    margin-bottom: 20px;
    overflow: hidden;
}

.nav-link {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100%);
}

.nav-overlay.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-links li:nth-child(1) .nav-link { transition-delay: 0.4s; }
.nav-links li:nth-child(2) .nav-link { transition-delay: 0.5s; }
.nav-links li:nth-child(3) .nav-link { transition-delay: 0.6s; }
.nav-links li:nth-child(4) .nav-link { transition-delay: 0.7s; }

.nav-link::before {
    content: attr(data-index);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 212, 212, 0.5);
}

.nav-link:hover::before {
    opacity: 1;
    left: -50px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.8s;
}

.nav-overlay.active .nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.nav-footer p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   LIFT DOORS - LOADING ANIMATION
   ============================================ */

.lift-doors {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-primary);
    pointer-events: all;
}

.lift-doors.opened {
    pointer-events: none;
}

.lift-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    transition: transform 1.2s var(--transition-smooth);
    will-change: transform;
}

.lift-door-left {
    left: 0;
    justify-content: flex-end;
}

.lift-door-right {
    right: 0;
    justify-content: flex-start;
}

.lift-doors.opened .lift-door-left {
    transform: translateX(-100%);
}

.lift-doors.opened .lift-door-right {
    transform: translateX(100%);
}

.door-panel {
    flex: 1;
    background: linear-gradient(
        180deg,
        var(--lift-metal-light) 0%,
        var(--lift-metal) 20%,
        var(--lift-metal-dark) 80%,
        var(--lift-metal) 100%
    );
    position: relative;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.door-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
}

.door-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 40%;
    transform: translateY(-50%);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 212, 212, 0.03) 50%,
        transparent 100%
    );
}

.door-seam {
    width: 8px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--lift-metal-dark) 0%,
        #151518 50%,
        var(--lift-metal-dark) 100%
    );
    box-shadow: 
        inset 2px 0 4px rgba(0, 0, 0, 0.5),
        inset -2px 0 4px rgba(0, 0, 0, 0.5);
}

.lift-indicator {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.lift-doors.opened .lift-indicator {
    opacity: 0;
}

.indicator-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 
        0 0 20px var(--accent),
        0 0 40px var(--accent-light);
    animation: pulse 1s ease-in-out infinite;
}

.floor-number {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 10px var(--accent);
    animation: blink 0.5s ease-in-out infinite;
}

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   LIFT FLOOR BUTTONS
   ============================================ */

.lift-buttons-panel {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.lift-buttons-panel::-webkit-scrollbar {
    display: none;
}

.lift-buttons-panel.visible {
    opacity: 1;
}

.floor-button {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    flex-shrink: 0;
    aspect-ratio: 1;
    background: rgba(30, 30, 36, 0.8);
    border: 2px solid var(--lift-metal);
    border-radius: 50%;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.floor-button:hover {
    background: rgba(60, 60, 70, 0.9);
    color: var(--text-primary);
    border-color: var(--accent);
    transform: scale(1.15);
}

/* Active floor button */
.floor-button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

/* Click effect */
.floor-button:active {
    transform: scale(0.9);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    opacity: 0;
    transition: opacity 0.8s ease 0.5s;
    position: relative;
    z-index: 1;
}

.main-content.visible {
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    background: transparent;
    position: relative;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 212, 0.3));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

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

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

/* ============================================
   POSTER GALLERY SECTION
   ============================================ */

.poster-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* New Gallery Slider */
.poster-gallery {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex: 0 0 auto;
    width: min(60vw, 450px);
    aspect-ratio: 3/4;
    max-height: 65vh;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    /* Inactive state */
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(1px);
    transition: 
        opacity 0.4s ease,
        transform 0.4s ease,
        filter 0.4s ease,
        box-shadow 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 10;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.12);
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--lift-metal-light);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.gallery-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lift-metal);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--lift-metal-light);
}

.gallery-dot:hover {
    background: var(--lift-metal-light);
}

.gallery-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.9;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-decoration {
    display: flex;
    justify-content: center;
}

.lift-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--lift-metal);
}

.lift-box {
    width: 80px;
    height: 100px;
    background: var(--lift-metal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.lift-doors-mini {
    width: 50px;
    height: 70px;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    animation: miniDoorOpen 3s ease-in-out infinite;
}

.mini-door-left,
.mini-door-right {
    width: 50%;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--lift-metal-light) 0%,
        var(--lift-metal-dark) 100%
    );
    transition: transform 0.5s ease;
}

@keyframes miniDoorOpen {
    0%, 100% {
        gap: 0;
    }
    30%, 70% {
        gap: 4px;
    }
}

.floor-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floor-btn {
    font-size: 1rem;
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent);
}

.floor-btn.active {
    animation: buttonGlow 1.5s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        text-shadow: 0 0 5px var(--accent);
    }
    50% {
        text-shadow: 0 0 15px var(--accent), 0 0 25px var(--accent-light);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 60px 20px;
    background: transparent;
    border-top: 1px solid var(--lift-metal);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   LIGHT MODE
   ============================================ */

body.light-mode {
    --bg-primary: #f8f9fa;
    --bg-secondary: #eef0f2;
    --bg-tertiary: #e4e6e8;
    --text-primary: #1a1a1c;
    --text-secondary: #4a4a4f;
    --text-muted: #7a7a80;
    --accent: #00a3a3;
    --accent-light: #00c4c4;
    --accent-dark: #007a7a;
    --lift-metal: #c8ccd0;
    --lift-metal-light: #dce0e4;
    --lift-metal-dark: #a8acb0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Logo visibility */
    --logo-light-display: none;
    --logo-dark-display: block;
}

/* Logo switching */
.logo-light {
    display: var(--logo-light-display);
}

.logo-dark {
    display: var(--logo-dark-display);
}

/* Theme Toggle Button */
.theme-toggle-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal-light);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--lift-metal);
    border-color: var(--accent);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

.theme-icon-sun,
.theme-icon-moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(-90deg);
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

body.light-mode .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

body.light-mode .theme-icon-moon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Light mode specific adjustments */
body.light-mode .lift-doors .door-panel {
    background: linear-gradient(
        180deg,
        var(--lift-metal-light) 0%,
        var(--lift-metal) 20%,
        var(--lift-metal-dark) 80%,
        var(--lift-metal) 100%
    );
}

body.light-mode .nav-door {
    background: linear-gradient(
        180deg,
        var(--lift-metal-light) 0%,
        var(--lift-metal) 20%,
        var(--lift-metal-dark) 80%,
        var(--lift-metal) 100%
    );
}

body.light-mode .hero-section {
    background: transparent;
}

body.light-mode .about-section {
    background: transparent;
}

body.light-mode .gallery-slide.active {
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(0, 163, 163, 0.12);
}

body.light-mode .logo {
    filter: drop-shadow(0 0 20px rgba(0, 163, 163, 0.2));
}

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

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .gallery-slide {
        width: min(55vw, 550px);
        height: min(80vh, 750px);
    }
}

@media (min-width: 1024px) {
    .gallery-slide {
        width: min(45vw, 600px);
        height: min(85vh, 800px);
    }
    
    .lift-buttons-panel {
        right: 30px;
        gap: 8px;
    }
    
    .floor-button {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
}

@media (max-width: 767px) {
    .theme-toggle-container {
        top: 20px;
        right: 20px;
    }
    
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
    
    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .lift-buttons-panel {
        right: 10px;
        gap: 4px;
    }
    
    .floor-button {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
        border-width: 1.5px;
    }
    
    .gallery-controls {
        gap: 15px;
    }
    
    .gallery-btn {
        width: 44px;
        height: 44px;
    }
    
    .gallery-dots {
        gap: 8px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .poster-section {
        padding: 60px 0;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .lift-icon {
        padding: 20px;
    }
    
    .lift-box {
        width: 60px;
        height: 80px;
    }
    
    .lift-doors-mini {
        width: 40px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        width: 85vw;
        height: 60vh;
    }
    
    .gallery-track {
        gap: 15px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) {
    .gallery-btn:hover {
        background: var(--bg-tertiary);
        border-color: var(--lift-metal-light);
        color: var(--text-primary);
        transform: none;
    }
    
    .gallery-btn:active {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--bg-primary);
    }
    
    .cursor-trail {
        display: none;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .lift-doors.opened .lift-door-left,
    .lift-doors.opened .lift-door-right {
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PAGE HEADER (Subpages)
   ============================================ */

.page-header {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    text-align: center;
    background: transparent;
    position: relative;
}

.back-home {
    position: absolute;
    top: 100px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--lift-metal);
}

.back-home:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(-5px);
}

.back-home svg {
    width: 20px;
    height: 20px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease forwards;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* ============================================
   GALLERY GRID (Creaties Page)
   ============================================ */

.gallery-grid-section {
    padding: 40px 20px 100px;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 30px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }
.gallery-item:nth-child(9) { animation-delay: 0.5s; }
.gallery-item:nth-child(10) { animation-delay: 0.55s; }

.gallery-item-inner {
    position: relative;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 212, 0.15);
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.gallery-item-overlay .poster-number {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    margin-top: 20px;
}

.lightbox-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.lightbox-info span {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   TEAM SECTION (Wie Zijn Wij Page)
   ============================================ */

.team-section {
    padding: 40px 20px 80px;
    background: transparent;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 900px) {
    .team-container {
        grid-template-columns: 1fr 1fr;
    }
}

.team-photo-wrapper {
    display: flex;
    justify-content: center;
}

.team-photo-frame {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid var(--lift-metal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
}

.team-photo-placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.photo-placeholder-content svg {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.floor-indicator {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.2;
}

.floor-indicator strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--lift-metal);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.info-card.lift-pun {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 212, 212, 0.05) 100%);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text-secondary);
}

.card-icon.accent {
    background: var(--accent);
}

.card-icon.accent svg {
    color: var(--bg-primary);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-card em {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

/* Lift Facts */
.lift-facts {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--lift-metal);
}

.facts-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.fact-item {
    text-align: center;
    padding: 20px;
}

.fact-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.fact-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
}

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

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
}

.contact-intro {
    padding-right: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-puns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pun-item {
    padding: 15px 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent);
    font-style: italic;
    transition: all 0.3s ease;
}

.pun-item:hover {
    transform: translateX(10px);
    color: var(--text-primary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--lift-metal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header {
    background: var(--lift-metal);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-floor-display {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
}

.floor-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.floor-number-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: all 0.3s ease;
}

.floor-number-display.changing {
    transform: scale(1.3);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.contact-form .form-group {
    padding: 0 30px;
    margin-top: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-form label svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--lift-metal);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 212, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d4d4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 50px;
}

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

.submit-btn {
    width: calc(100% - 60px);
    margin: 30px 30px;
    padding: 18px 30px;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 212, 0.3);
}

.submit-btn .btn-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon svg {
    transform: translateY(-5px);
}

.submit-btn .btn-loading {
    display: none;
    gap: 5px;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 50%;
    animation: loadingBounce 0.6s infinite alternate;
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingBounce {
    to { transform: translateY(-10px); }
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

.form-success.show {
    display: flex;
}

.contact-form.submitted .form-group,
.contact-form.submitted .submit-btn {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--bg-primary);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}

.footer-pun {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 10px;
}

/* ============================================
   FLOATING CONTACT BUTTON - MAILBOX IN LIFT SHAFT
   ============================================ */

.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating-contact-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hide floating button when at contact section */
.floating-contact-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

/* The lift shaft */
.mailbox-shaft {
    position: relative;
    width: 70px;
    height: 110px;
    background: linear-gradient(
        90deg,
        var(--lift-metal-dark) 0%,
        var(--lift-metal) 15%,
        var(--lift-metal) 85%,
        var(--lift-metal-dark) 100%
    );
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--lift-metal-light);
    transition: all 0.3s ease;
}

.floating-contact-btn:hover .mailbox-shaft {
    border-color: var(--accent);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(0, 212, 212, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Shaft track lines */
.shaft-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.04) 10px,
        rgba(255, 255, 255, 0.04) 11px
    );
    pointer-events: none;
}

/* Side rails */
.shaft-track::before,
.shaft-track::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--lift-metal-dark) 0%,
        var(--lift-metal-light) 50%,
        var(--lift-metal-dark) 100%
    );
    border-radius: 2px;
}

.shaft-track::before { left: 6px; }
.shaft-track::after { right: 6px; }

/* The mailbox cabin that moves */
.mailbox-cabin {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Continuous up/down animation */
    animation: mailboxRide 2.5s ease-in-out infinite;
}

@keyframes mailboxRide {
    0%, 100% { 
        top: 8px;
    }
    50% { 
        top: calc(100% - 62px);
    }
}

/* Top accent bar (like lift cabin top) */
.mailbox-top-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-dark) 0%,
        var(--accent-light) 50%,
        var(--accent-dark) 100%
    );
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 8px rgba(0, 212, 212, 0.5);
}

/* Mailbox body */
.mailbox-body {
    width: 100%;
    height: 46px;
    background: linear-gradient(
        180deg,
        var(--accent-light) 0%,
        var(--accent) 30%,
        var(--accent-dark) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    position: relative;
}

/* Mailbox slot (opening) */
.mailbox-slot {
    width: 38px;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 2px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Mailbox front label */
.mailbox-front {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 10px;
    border-radius: 3px;
}

.mailbox-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--bg-primary);
    letter-spacing: 1px;
}

/* Bottom accent bar */
.mailbox-bottom-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-dark) 0%,
        var(--accent) 50%,
        var(--accent-dark) 100%
    );
    border-radius: 0 0 3px 3px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .mailbox-shaft {
        width: 58px;
        height: 95px;
    }
    
    .mailbox-cabin {
        width: 44px;
    }
    
    @keyframes mailboxRide {
        0%, 100% { top: 6px; }
        50% { top: calc(100% - 54px); }
    }
    
    .mailbox-body {
        height: 40px;
        padding: 6px 0;
    }
    
    .mailbox-slot {
        width: 32px;
        height: 5px;
    }
    
    .mailbox-label {
        font-size: 0.5rem;
    }
    
    .mailbox-top-accent,
    .mailbox-bottom-accent {
        height: 3px;
    }
    
    .shaft-track::before,
    .shaft-track::after {
        width: 2px;
        left: 5px;
    }
    
    .shaft-track::after {
        left: auto;
        right: 5px;
    }
}

/* ============================================
   RESPONSIVE - Subpages
   ============================================ */

@media (max-width: 767px) {
    .page-header {
        padding: 100px 20px 40px;
        min-height: 40vh;
    }
    
    .back-home {
        top: 80px;
        left: 20px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .contact-form .form-group {
        padding: 0 20px;
    }
    
    .form-header {
        padding: 15px 20px;
    }
    
    .submit-btn {
        width: calc(100% - 40px);
        margin: 25px 20px;
    }
    
    .lift-facts {
        padding: 30px 20px;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
}
