
    :root {
    --bg: #04060a;
    --muted: #9aa3a8;
    --accent: #bffb9d;
    --accent-dark: #9eea7a;
    --text-light: #e9eef0;
    --text-dark: #1a1a1a;
    --card-bg: #0f1217;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--bg);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Wave-like dotted spots background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
        radial-gradient(circle at 20% 25%, rgba(191, 251, 157, 0.04) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 35%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
        radial-gradient(circle at 40% 45%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
        radial-gradient(circle at 50% 55%, rgba(191, 251, 157, 0.03) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 65%, rgba(191, 251, 157, 0.04) 0 2px, transparent 2px),
        radial-gradient(circle at 70% 75%, rgba(191, 251, 157, 0.03) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 85%, rgba(191, 251, 157, 0.02) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 95%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
        radial-gradient(circle at 15% 90%, rgba(191, 251, 157, 0.02) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 80%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
        radial-gradient(circle at 35% 70%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
        radial-gradient(circle at 45% 60%, rgba(191, 251, 157, 0.04) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 50%, rgba(191, 251, 157, 0.03) 0 2px, transparent 2px),
        radial-gradient(circle at 65% 40%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 30%, rgba(191, 251, 157, 0.03) 0 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 20%, rgba(191, 251, 157, 0.04) 0 2px, transparent 2px),
        radial-gradient(circle at 95% 10%, rgba(191, 251, 157, 0.02) 0 1px, transparent 1px);
    background-size: 200px 200px, 180px 180px, 220px 220px;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
    animation: waveMove 25s infinite linear;
}

@keyframes waveMove {
    0% {
        background-position: 0px 0px, 100px 50px, 50px 100px;
    }
    100% {
        background-position: 200px 200px, 300px 250px, 250px 300px;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s, padding 0.3s;
}

header.scrolled {
    background: rgba(4, 6, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5vw;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
    z-index: 1002;
}

.logo span {
    color: var(--accent);
}

/* Burger Menu Styles */
.burger-menu {
    position: relative;
    z-index: 1002;
}

.burger-btn {
    background: none;
    border: none;
    width: 35px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0;
}

.burger-line {
    display: block;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    width: 100%;
}

.burger-line:nth-child(2) {
    width: 80%;
}

.burger-line:nth-child(3) {
    width: 60%;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    width: 100%;
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    width: 100%;
}

.burger-btn:hover .burger-line {
    background: var(--accent);
}

.burger-btn.active .burger-line {
    background: var(--accent);
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    padding: 1rem;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1003;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: var(--accent);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.menu-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 100%;
}

.menu-nav a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.menu-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.menu-nav a:hover::before {
    width: 100%;
}

.menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.menu-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.menu-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-contact-item i {
    color: var(--accent);
    width: 20px;
    flex-shrink: 0;
}

.menu-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.menu-social a {
    color: var(--muted);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.menu-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Hide desktop nav */
nav.desktop-nav {
    display: none;
}

/* Hero Section - Centered Door Only */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5vw 40px;
    position: relative;
    overflow: hidden;
}

.copy {
    display: none;
}

/* 3D Door Container - INCREASED BY 10% FOR DESKTOP */
.frame-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    position: relative;
    width: 100%;
    max-width: 440px; /* Increased by 10% from 400px */
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: scale(0.85);
}

/* Outer Threshold Frame - Wooden - INCREASED BY 10% */
.threshold-frame {
    position: absolute;
    width: 105%;
    height: 105%;
    background: linear-gradient(135deg, #fff, #fff, #fff);
    border: 22px solid #fff; /* Increased by 10% from 20px */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.0),
        0 16.5px 33px rgba(0, 0, 0, 0.0), /* Increased by 10% */
        inset 0 0 16.5px rgba(0, 0, 0, 0.0); /* Increased by 10% */
    z-index: 1;
    transform: translateZ(8.8px); /* Increased by 10% from 8px */
    border-radius: 2.2px; /* Increased by 10% */
}

/* 3D Shadow Effect between Threshold and Door - Wooden - INCREASED BY 10% */
.door-shadow {
    position: absolute;
    width: 102%;
    height: 102%;
    background: linear-gradient(135deg, #fff, #fff, #fff);
    z-index: 2;
    transform: translateZ(13.2px); /* Increased by 10% from 12px */
    border-radius: 4.4px; /* Increased by 10% */
    box-shadow: 
        inset 0 0 13.2px rgba(0, 0, 0, 0.0), /* Increased by 10% */
        0 4.4px 16.5px rgba(0, 0, 0, 0.0), /* Increased by 10% */
        inset 0 0 0 1.1px rgba(255, 255, 255, 0.0); /* Increased by 10% */
    opacity: 0.8;
}

/* Door Recess Effect - Wooden - INCREASED BY 10% */
.door-recess {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #3E2723, #212121);
    z-index: 3;
    transform: translateZ(16.5px); /* Increased by 10% from 15px */
    border-radius: 6.6px; /* Increased by 10% */
    box-shadow: 
        inset 0 0 22px rgba(0, 0, 0, 0.7), /* Increased by 10% */
        inset 0 0 0 2.2px rgba(94, 53, 24, 0.3); /* Increased by 10% */
}

/* Main Door Container - INCREASED BY 10% FOR DESKTOP */
.door-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    perspective: 1200px;
    max-width: 440px; /* Increased by 10% from 400px */
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 4;
    transform: translateZ(17.6px); /* Increased by 10% from 16px */
}

/* Door Frame - Wooden Look - INCREASED BY 10% */
.door-frame {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #fff, #fff, #fff);
    box-shadow: 
        0 6.6px 27.5px rgba(0, 0, 0, 0.0), /* Increased by 10% */
        0 0 0 11px rgba(255, 255, 255, 0.0), /* Increased by 10% */
        inset 0 0 27.5px rgba(0, 0, 0, 0.0); /* Increased by 10% */
    border-radius: 8.8px; /* Increased by 10% */
}

/* Inner Frame with Wooden Border - INCREASED BY 10% */
.door-frame::before {
    content: "";
    position: absolute;
    inset: 30.8px; /* Increased by 10% from 28px */
    border: 13.2px solid #D3D3D3; /* Increased by 10% from 12px */
    z-index: 2;
    box-shadow: 
        inset 0 0 8.8px rgba(0, 0, 0, 0.7), /* Increased by 10% */
        0 0 8.8px rgba(255, 255, 255, 0.7); /* Increased by 10% */
    border-radius: 2.2px; /* Increased by 10% */
}

/* Inner Door Panels Container - GLOSSY BLACK - INCREASED BY 10% */
.inner-door {
    position: absolute;
    inset: 44px; /* Increased by 10% from 40px */
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 13.2px; /* Increased by 10% from 12px */
    padding: 13.2px; /* Increased by 10% from 12px */
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    background: #111; /* Dark base color */
    border-radius: 2.2px; /* Increased by 10% */
    transform: translateZ(27.5px); /* Increased by 10% from 25px */
    background-image: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(40, 40, 40, 0.9) 25%,
            rgba(20, 20, 20, 0.95) 50%,
            rgba(40, 40, 40, 0.9) 75%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 13.2px,
            rgba(255, 255, 255, 0.05) 13.2px,
            rgba(255, 255, 255, 0.05) 14.3px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 13.2px,
            rgba(255, 255, 255, 0.03) 13.2px,
            rgba(255, 255, 255, 0.03) 14.3px
        );
    box-shadow: 
        inset 0 0 22px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1.1px rgba(255, 255, 255, 0.1),
        0 4.4px 16.5px rgba(0, 0, 0, 0.5);
}

.door-container.open .inner-door {
    transform: translateZ(27.5px) rotateY(-90deg); /* Increased by 10% */
}

/* Individual Panels - GLOSSY BLACK effect - INCREASED BY 10% */
.panel {
    background: 
        linear-gradient(145deg, #000, #222, #000),
        linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%
        );
    background-blend-mode: overlay;
    border-radius: 2.2px; /* Increased by 10% */
    box-shadow: 
        inset 2.2px 2.2px 6.6px rgba(255, 255, 255, 0.15),
        inset -2.2px -2.2px 6.6px rgba(0, 0, 0, 0.8),
        0 2.2px 6.6px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(0, 0, 0, 0.3);
    border: 1.1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Add glossy texture to panels - INCREASED BY 10% */
.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%,
            transparent 25%,
            rgba(0, 0, 0, 0.3) 50%,
            transparent 75%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 40%
        );
    opacity: 0.7;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.panel::after {
    content: "";
    position: absolute;
    top: 3.3px;
    left: 3.3px;
    right: 3.3px;
    bottom: 3.3px;
    border: 1.1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.1px;
    box-shadow: 
        inset 0 0 11px rgba(255, 255, 255, 0.1),
        inset 0 0 22px rgba(0, 0, 0, 0.5);
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03) 50%,
        transparent
    );
}

/* Door Handle/Latch - Wrought Iron Look - INCREASED BY 10% */
.door-handle {
    position: absolute;
    right: 22px; /* Increased by 10% from 20px */
    top: 50%;
    transform: translateY(-50%);
    width: 8.8px; /* Increased by 10% from 8px */
    height: 55px; /* Increased by 10% from 50px */
    background: linear-gradient(to right, #424242, #616161, #424242);
    border-radius: 4.4px; /* Increased by 10% from 4px */
    z-index: 10;
    box-shadow: 
        2.2px 0 6.6px rgba(0, 0, 0, 0.5), /* Increased by 10% */
        0 0 8.8px rgba(97, 97, 97, 0.3); /* Increased by 10% */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-style: preserve-3d;
    transform: translateZ(33px) translateY(-50%); /* Increased by 10% from 30px */
}

.door-handle:hover {
    background: linear-gradient(to right, #555, #757575, #555);
    box-shadow: 
        2.2px 0 8.8px rgba(0, 0, 0, 0.6), /* Increased by 10% */
        0 0 13.2px rgba(117, 117, 117, 0.4); /* Increased by 10% */
}

.door-handle.active {
    transform: translateZ(33px) translateY(-50%) rotate(-15deg); /* Increased by 10% */
    box-shadow: 
        2.2px 0 11px rgba(0, 0, 0, 0.7), /* Increased by 10% */
        0 0 16.5px rgba(117, 117, 117, 0.5); /* Increased by 10% */
}

.door-handle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -13.2px; /* Increased by 10% from -12px */
    width: 26.4px; /* Increased by 10% from 24px */
    height: 8.8px; /* Increased by 10% from 8px */
    background: linear-gradient(to bottom, #757575, #424242);
    border-radius: 2.2px; /* Increased by 10% from 2px */
    transform: translateY(-50%);
    box-shadow: 2.2px 0 4.4px rgba(0, 0, 0, 0.4); /* Increased by 10% */
}

.door-handle::after {
    content: "";
    position: absolute;
    right: -11px; /* Increased by 10% from -10px */
    top: 50%;
    transform: translateY(-50%);
    width: 19.8px; /* Increased by 10% from 18px */
    height: 19.8px; /* Increased by 10% from 18px */
    background: linear-gradient(145deg, #757575, #424242);
    border-radius: 50%;
    box-shadow: 
        2.2px 0 6.6px rgba(0, 0, 0, 0.5), /* Increased by 10% */
        0 0 8.8px rgba(97, 97, 97, 0.3); /* Increased by 10% */
    border: 2.2px solid rgba(255, 255, 255, 0.1); /* Increased by 10% */
}

/* Door Reveal Content - GLOSSY BLACK Interior - INCREASED BY 10% */
.door-reveal {
    position: absolute;
    inset: 44px; /* Increased by 10% from 40px */
    background: 
        linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4.4%; /* Increased by 10% */
    text-align: center;
    opacity: 0;
    transform: scale(0.95) translateZ(22px); /* Increased by 10% from 20px */
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    z-index: 2;
    border-radius: 4.4px; /* Increased by 10% */
    box-shadow: 
        inset 0 0 22px rgba(0, 0, 0, 0.5), /* Increased by 10% */
        0 0 16.5px rgba(191, 251, 157, 0.1); /* Increased by 10% */
    border: 1.1px solid rgba(255, 255, 255, 0.1); /* Changed to match glossy theme */
    overflow: hidden;
}

/* Glossy texture overlay for reveal - INCREASED BY 10% */
.door-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.03) 50%, 
            transparent 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 33px, /* Increased by 10% */
            rgba(255, 255, 255, 0.02) 33px,
            rgba(255, 255, 255, 0.02) 35.2px /* Increased by 10% */
        );
    opacity: 0.5;
    pointer-events: none;
}

.door-container.open .door-reveal {
    opacity: 1;
    transform: scale(1) translateZ(22px); /* Increased by 10% */
}

.reveal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.32rem, 3.3vw, 2.2rem); /* Increased by 10% */
    font-weight: 300;
    margin-bottom: 0.88rem; /* Increased by 10% */
    color: var(--accent);
    line-height: 1.3;
    text-shadow: 0 2.2px 4.4px rgba(0, 0, 0, 0.3); /* Increased by 10% */
}

.reveal-text {
    color: var(--muted);
    margin-bottom: 1.1rem; /* Increased by 10% */
    line-height: 1.5;
    font-size: clamp(0.99rem, 2.2vw, 1.1rem); /* Increased by 10% */
    padding: 0 1.1rem; /* Increased by 10% */
    text-shadow: 0 1.1px 2.2px rgba(0, 0, 0, 0.3); /* Increased by 10% */
}

.reveal-btn {
    background: transparent;
    border: 2.2px solid var(--accent); /* Increased by 10% */
    color: var(--accent);
    padding: 0.66rem 1.32rem; /* Increased by 10% */
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.99rem; /* Increased by 10% */
    text-shadow: 0 1.1px 2.2px rgba(0, 0, 0, 0.3); /* Increased by 10% */
    box-shadow: 0 3.3px 11px rgba(191, 251, 157, 0.2); /* Increased by 10% */
}

.reveal-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2.2px); /* Increased by 10% */
    box-shadow: 0 4.4px 16.5px rgba(191, 251, 157, 0.3); /* Increased by 10% */
}

/* Door Opening Instruction - INCREASED BY 10% */
.door-instruction {
    position: absolute;
    bottom: -38.5px; /* Increased by 10% from -35px */
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 0.88rem; /* Increased by 10% from 0.8rem */
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.44rem 0.88rem; /* Increased by 10% */
    border-radius: 16.5px; /* Increased by 10% */
    backdrop-filter: blur(5.5px); /* Increased by 10% */
}

.door-container.open + .door-instruction {
    opacity: 0;
    pointer-events: none;
}

/* Hand Animation Guide */
.hand-guide {
    position: absolute;
    right: 70px; /* Position to the left of the handle */
    top: 50%;
    transform: translateY(-50%) translateX(0);
    z-index: 11;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hand-guide.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
    animation: handPulse 2s infinite ease-in-out;
}

.hand-guide i {
    font-size: 24px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hand-text {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(191, 251, 157, 0.2);
    pointer-events: none;
    z-index: 10;
}

.hand-text.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes handPulse {
    0% {
        transform: translateY(-50%) translateX(-10px) scale(1);
    }
    50% {
        transform: translateY(-50%) translateX(-15px) scale(1.1);
    }
    100% {
        transform: translateY(-50%) translateX(-10px) scale(1);
    }
}

/* Sections */
section {
    padding: 80px 5vw;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    line-height: 1.3;
}

.section-title span {
    color: var(--accent);
}

/* About Section */
.about {
    background: var(--card-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-text {
    width: 100%;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 300;
    color: var(--accent);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-image {
    width: 100%;
    height: 300px;
    background: #1a1d23;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(191, 251, 157, 0.1), transparent);
}

/* History Section - Interactive Cards */
.history {
    position: relative;
}

.history-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.history-card {
    flex: 0 0 100%;
    min-width: 280px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.history-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.history-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.history-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.history-year {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    z-index: 1;
}

.history-content {
    padding: 1.2rem;
}

.history-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.history-content p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.4;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 1rem;
}

/* Portfolio Section */
.portfolio {
    background: var(--card-bg);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

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

.portfolio-item {
    height: 250px;
    background: #1a1d23;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1600607687644-c7171b42498b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item:nth-child(5) {
    background-image: url('https://images.unsplash.com/photo-1600585154340-9635a0d57d1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item:nth-child(6) {
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.portfolio-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 2;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.portfolio-info p {
    color: var(--muted);
    font-size: 0.8rem;
}

/* Testimonials Section - Slider */
.testimonials {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #1a1d23;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before {
    content: """;
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.author-info p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

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

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    width: 100%;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-detail i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

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

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    width: 100%;
    max-width: 200px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 251, 157, 0.2);
}

/* Footer */
footer {
    background: #0a0c10;
    padding: 3rem 5vw 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 250px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-column p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    header {
        padding: 1.5rem 7vw;
    }
    
    header.scrolled {
        padding: 1rem 7vw;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .burger-btn {
        width: 40px;
        height: 30px;
    }
    
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(14px) rotate(45deg);
    }
    
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-14px) rotate(-45deg);
    }
    
    .hero {
        padding: 100px 7vw 50px;
    }
    
    section {
        padding: 100px 7vw;
    }
    
    .menu-nav a {
        font-size: 2rem;
        gap: 2rem;
    }
    
    .menu-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 7vw;
    }
    
    .menu-contact {
        align-items: flex-start;
        text-align: left;
    }
    
    .menu-contact-item {
        justify-content: flex-start;
    }
    
    .about-content {
        flex-direction: row;
        gap: 4rem;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
        height: 400px;
    }
    
    .history-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-content {
        flex-direction: row;
        gap: 4rem;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form {
        flex: 1;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .portfolio-grid {
        gap: 1.5rem;
    }
    
    .portfolio-item {
        height: 280px;
    }
    
    .door-handle {
        right: 27.5px; /* Increased by 10% for tablet */
        width: 11px; /* Increased by 10% for tablet */
        height: 60.5px; /* Increased by 10% for tablet */
    }
    
    .door-handle::after {
        width: 22px; /* Increased by 10% for tablet */
        height: 22px; /* Increased by 10% for tablet */
    }
}

@media (min-width: 1024px) {
    .history-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .about-stats {
        justify-content: flex-start;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .menu-nav a {
        font-size: 2.5rem;
        gap: 2.5rem;
    }
    
    .btn-primary {
        width: auto;
    }
    
    .door-handle {
        right: 33px; /* Increased by 10% for desktop */
        width: 13.2px; /* Increased by 10% for desktop */
        height: 66px; /* Increased by 10% for desktop */
    }
}

/* MOBILE VERSION - INCREASED BY 20% */
@media (max-width: 767px) {
    .frame-wrap {
        max-width: 384px; /* Increased by 20% from 320px */
        transform: scale(0.9); /* Increased scaling for better visibility */
    }
    
    .door-container {
        max-width: 384px; /* Increased by 20% from 320px */
    }
    
    /* All door components increased by 20% for mobile */
    .threshold-frame {
        border: 26.4px solid #fff; /* Increased by 20% */
        box-shadow: 
            0 0 0 1.2px rgba(255, 255, 255, 0.0), /* Increased by 20% */
            0 19.8px 39.6px rgba(0, 0, 0, 0.0), /* Increased by 20% */
            inset 0 0 19.8px rgba(0, 0, 0, 0.0); /* Increased by 20% */
        transform: translateZ(9.6px); /* Increased by 20% */
        border-radius: 2.4px; /* Increased by 20% */
    }
    
    .door-shadow {
        transform: translateZ(14.4px); /* Increased by 20% */
        border-radius: 4.8px; /* Increased by 20% */
        box-shadow: 
            inset 0 0 14.4px rgba(0, 0, 0, 0.0), /* Increased by 20% */
            0 4.8px 18px rgba(0, 0, 0, 0.0), /* Increased by 20% */
            inset 0 0 0 1.2px rgba(255, 255, 255, 0.0); /* Increased by 20% */
    }
    
    .door-recess {
        transform: translateZ(18px); /* Increased by 20% */
        border-radius: 7.2px; /* Increased by 20% */
        box-shadow: 
            inset 0 0 24px rgba(0, 0, 0, 0.7), /* Increased by 20% */
            inset 0 0 0 2.4px rgba(94, 53, 24, 0.3); /* Increased by 20% */
    }
    
    .door-container {
        transform: translateZ(19.2px); /* Increased by 20% */
    }
    
    .door-frame {
        box-shadow: 
            0 7.2px 30px rgba(0, 0, 0, 0.0), /* Increased by 20% */
            0 0 0 12px rgba(255, 255, 255, 0.0), /* Increased by 20% */
            inset 0 0 30px rgba(0, 0, 0, 0.0); /* Increased by 20% */
        border-radius: 9.6px; /* Increased by 20% */
    }
    
    .door-frame::before {
        inset: 33.6px; /* Increased by 20% */
        border: 14.4px solid #D3D3D3; /* Increased by 20% */
        box-shadow: 
            inset 0 0 9.6px rgba(0, 0, 0, 0.7), /* Increased by 20% */
            0 0 9.6px rgba(255, 255, 255, 0.7); /* Increased by 20% */
        border-radius: 2.4px; /* Increased by 20% */
    }
    
    .inner-door {
        inset: 48px; /* Increased by 20% */
        gap: 14.4px; /* Increased by 20% */
        padding: 14.4px; /* Increased by 20% */
        border-radius: 2.4px; /* Increased by 20% */
        transform: translateZ(30px); /* Increased by 20% */
        /* GLOSSY BLACK for mobile */
        background-image: 
            linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%,
                rgba(40, 40, 40, 0.9) 25%,
                rgba(20, 20, 20, 0.95) 50%,
                rgba(40, 40, 40, 0.9) 75%,
                rgba(0, 0, 0, 0.8) 100%
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 14.4px,
                rgba(255, 255, 255, 0.05) 14.4px,
                rgba(255, 255, 255, 0.05) 15.6px
            ),
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 14.4px,
                rgba(255, 255, 255, 0.03) 14.4px,
                rgba(255, 255, 255, 0.03) 15.6px
            );
        box-shadow: 
            inset 0 0 24px rgba(0, 0, 0, 0.8),
            inset 0 0 0 1.2px rgba(255, 255, 255, 0.1),
            0 4.8px 18px rgba(0, 0, 0, 0.5);
    }
    
    .door-container.open .inner-door {
        transform: translateZ(30px) rotateY(-90deg); /* Increased by 20% */
    }
    
    .panel {
        border-radius: 2.4px; /* Increased by 20% */
        box-shadow: 
            inset 2.4px 2.4px 7.2px rgba(255, 255, 255, 0.15),
            inset -2.4px -2.4px 7.2px rgba(0, 0, 0, 0.8),
            0 2.4px 7.2px rgba(0, 0, 0, 0.5),
            0 0 24px rgba(0, 0, 0, 0.3);
        border: 1.2px solid rgba(255, 255, 255, 0.05);
    }
    
    .panel::before {
        background-size: 54px 54px, 36px 36px; /* Increased by 20% */
    }
    
    .panel::after {
        top: 3.6px; /* Adjusted for glossy effect */
        left: 3.6px;
        right: 3.6px;
        bottom: 3.6px;
        border: 1.2px solid rgba(255, 255, 255, 0.15);
        border-radius: 1.2px;
        box-shadow: 
            inset 0 0 12px rgba(255, 255, 255, 0.1),
            inset 0 0 24px rgba(0, 0, 0, 0.5);
    }
    
    .door-handle {
        right: 24px; /* Increased by 20% */
        width: 9.6px; /* Increased by 20% */
        height: 60px; /* Increased by 20% */
        border-radius: 4.8px; /* Increased by 20% */
        box-shadow: 
            2.4px 0 7.2px rgba(0, 0, 0, 0.5), /* Increased by 20% */
            0 0 9.6px rgba(97, 97, 97, 0.3); /* Increased by 20% */
        transform: translateZ(36px) translateY(-50%); /* Increased by 20% */
    }
    
    .door-handle:hover {
        box-shadow: 
            2.4px 0 9.6px rgba(0, 0, 0, 0.6), /* Increased by 20% */
            0 0 14.4px rgba(117, 117, 117, 0.4); /* Increased by 20% */
    }
    
    .door-handle.active {
        transform: translateZ(36px) translateY(-50%) rotate(-15deg); /* Increased by 20% */
        box-shadow: 
            2.4px 0 12px rgba(0, 0, 0, 0.7), /* Increased by 20% */
            0 0 18px rgba(117, 117, 117, 0.5); /* Increased by 20% */
    }
    
    .door-handle::before {
        left: -14.4px; /* Increased by 20% */
        width: 28.8px; /* Increased by 20% */
        height: 9.6px; /* Increased by 20% */
        border-radius: 2.4px; /* Increased by 20% */
        box-shadow: 2.4px 0 4.8px rgba(0, 0, 0, 0.4); /* Increased by 20% */
    }
    
    .door-handle::after {
        right: -12px; /* Increased by 20% */
        width: 21.6px; /* Increased by 20% */
        height: 21.6px; /* Increased by 20% */
        box-shadow: 
            2.4px 0 7.2px rgba(0, 0, 0, 0.5), /* Increased by 20% */
            0 0 9.6px rgba(97, 97, 97, 0.3); /* Increased by 20% */
        border: 2.4px solid rgba(255, 255, 255, 0.1); /* Increased by 20% */
    }
    
    .door-reveal {
        inset: 48px; /* Increased by 20% */
        background-size: cover, 180px 180px; /* Increased by 20% */
        padding: 4.8%; /* Increased by 20% */
        transform: scale(0.95) translateZ(24px); /* Increased by 20% */
        border-radius: 4.8px; /* Increased by 20% */
        box-shadow: 
            inset 0 0 24px rgba(0, 0, 0, 0.5), /* Increased by 20% */
            0 0 18px rgba(191, 251, 157, 0.1); /* Increased by 20% */
        border: 1.2px solid rgba(255, 255, 255, 0.1); /* Changed for glossy theme */
    }
    
    .door-reveal::before {
        background: 
            linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.03) 50%, 
                transparent 100%
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 36px, /* Increased by 20% */
                rgba(255, 255, 255, 0.02) 36px,
                rgba(255, 255, 255, 0.02) 38.4px /* Increased by 20% */
            );
    }
    
    .door-container.open .door-reveal {
        transform: scale(1) translateZ(24px); /* Increased by 20% */
    }
    
    .reveal-title {
        font-size: clamp(1.44rem, 3.6vw, 2.4rem); /* Increased by 20% */
        margin-bottom: 0.96rem; /* Increased by 20% */
        text-shadow: 0 2.4px 4.8px rgba(0, 0, 0, 0.3); /* Increased by 20% */
    }
    
    .reveal-text {
        margin-bottom: 1.2rem; /* Increased by 20% */
        font-size: clamp(1.08rem, 2.4vw, 1.2rem); /* Increased by 20% */
        padding: 0 1.2rem; /* Increased by 20% */
        text-shadow: 0 1.2px 2.4px rgba(0, 0, 0, 0.3); /* Increased by 20% */
    }
    
    .reveal-btn {
        border: 2.4px solid var(--accent); /* Increased by 20% */
        padding: 0.72rem 1.44rem; /* Increased by 20% */
        font-size: 1.08rem; /* Increased by 20% */
        text-shadow: 0 1.2px 2.4px rgba(0, 0, 0, 0.3); /* Increased by 20% */
        box-shadow: 0 3.6px 12px rgba(191, 251, 157, 0.2); /* Increased by 20% */
    }
    
    .reveal-btn:hover {
        transform: translateY(-2.4px); /* Increased by 20% */
        box-shadow: 0 4.8px 18px rgba(191, 251, 157, 0.3); /* Increased by 20% */
    }
    
    .door-instruction {
        bottom: -42px; /* Increased by 20% */
        font-size: 0.96rem; /* Increased by 20% */
        padding: 0.48rem 0.96rem; /* Increased by 20% */
        border-radius: 18px; /* Increased by 20% */
        backdrop-filter: blur(6px); /* Increased by 20% */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 4vw 30px;
    }
    
    section {
        padding: 60px 4vw;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .menu-nav a {
        font-size: 1.5rem;
        gap: 1rem;
    }
    
    .menu-header {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .menu-footer {
        bottom: 1.5rem;
        padding: 0 4vw;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        min-width: 100%;
    }
    
    footer {
        padding: 2rem 4vw 1.5rem;
    }
    
    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    /* Small mobile screens - keep the 20% increase */
    .frame-wrap {
        max-width: 336px; /* 280px + 20% */
        transform: scale(0.84); /* Adjusted scaling */
    }
    
    .door-container {
        max-width: 336px; /* 280px + 20% */
    }
    
    .door-instruction {
        font-size: 0.9rem;
        bottom: -36px;
        padding: 0.36rem 0.72rem;
    }
    
    .reveal-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .reveal-text {
        font-size: clamp(0.96rem, 2.16vw, 1.08rem);
    }
}

@media (max-width: 350px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .burger-btn {
        width: 30px;
        height: 20px;
    }
    
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .menu-nav a {
        font-size: 1.3rem;
    }
    
    .menu-contact-item {
        font-size: 0.9rem;
    }
    
    /* Very small screens - reduced scaling but maintain 20% increase from base */
    .frame-wrap {
        max-width: 300px;
        transform: scale(0.75);
    }
    
    .door-container {
        max-width: 300px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .history-card:hover,
    .service-card:hover,
    .portfolio-item:hover {
        transform: none;
    }
    
    .portfolio-item::before {
        opacity: 0.5;
    }
    
    .portfolio-info {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
    
    .service-link:hover {
        gap: 0.5rem;
    }
    
    .slider-btn:hover,
    .btn-primary:hover,
    .reveal-btn:hover,
    .filter-btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .filter-btn.active {
        background: var(--accent);
        color: var(--text-dark);
    }
    
    .door-handle:hover {
        background: linear-gradient(to right, #424242, #616161, #424242);
        box-shadow: 
            2px 0 6px rgba(0, 0, 0, 0.5),
            0 0 8px rgba(97, 97, 97, 0.3);
    }
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Responsive adjustments for hand guide */
@media (max-width: 767px) {
    .hand-guide {
        right: 60px;
    }
    
    .hand-guide i {
        font-size: 20px;
    }
    
    .hand-text {
        right: 85px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hand-guide.visible {
        animation: handPulseMobile 2s infinite ease-in-out;
    }
    
    @keyframes handPulseMobile {
        0% {
            transform: translateY(-50%) translateX(-8px) scale(1);
        }
        50% {
            transform: translateY(-50%) translateX(-12px) scale(1.1);
        }
        100% {
            transform: translateY(-50%) translateX(-8px) scale(1);
        }
    }
}

@media (max-width: 480px) {
    .hand-guide {
        right: 50px;
    }
    
    .hand-guide i {
        font-size: 18px;
    }
    
    .hand-text {
        right: 70px;
        font-size: 11px;
        padding: 5px 8px;
    }
}