        :root {
            --primary-dark: #222222;
            --accent-gold: #CCA677;
            --light-bg: #F8F9FA;
            --pure-white: #ffffff;
            --section-spacing: 5rem;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 70px; 
}

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--primary-dark);
            background-color: var(--pure-white);
            line-height: 1.7;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3 { font-weight: 700; letter-spacing: -0.5px; margin-top: 0; }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            margin: 15px auto 0;
        }

        a { text-decoration: none; }

        .btn {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--pure-white);
            padding: 14px 35px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(204, 166, 119, 0.3);
        }

        .btn:hover {
            background-color: #b38e60;
            transform: translateY(-3px);
        }

        header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
        }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

nav a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    header {
        padding: 10px 0 !important;
        min-height: 50px !important;
    }
    .logo img {
        height: 50px !important;
        width: auto;
    }

    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo div {
        font-size: 1.1rem !important;
        margin-left: -5px !important;
    }

    .hamburger { 
        display: flex; 
        gap: 5px;
    } 

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    nav ul {
        display: none; 
        width: 60%;
        position: absolute;
        top: 100%; 
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.active {
        display: flex; 
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;   
        width: 100%;   
        padding: 12px 0; 
        text-align: center;
        transition: background-color 0.3s;
        font-size: 0.9rem;
    }

    nav ul li a:active, 
    nav ul li a:hover {
        background-color: rgba(204, 166, 119, 0.1); 
    }


    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    nav a { font-size: 100%; }
}

        .hero {
    background-image: url('../assets/img/wlcomepage.jpg');
    background-size: cover;
    background-position: center center; 
    background-attachment: scroll; 
    min-height: 600px;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .hero {
        height: 80vh; 
    }
}

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
            color: var(--pure-white);
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeIn 1s ease-out forwards; 
            animation-delay: 0.2s;
        }

        @keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

        .hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; max-width: 800px; }
        .hero h1 span { color: var(--accent-gold); }
        .hero p { font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 600px; opacity: 0.9; }

        section { padding: var(--section-spacing) 0; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; 
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-item, .gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-item {
            padding: 2rem;
            background: var(--pure-white);
            transition: transform 0.3s;
            border-radius: 8px;
        }
        
        .feature-item:hover {
             transform: translateY(-10px) !important;
             box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-icon-box {
            width: 60px; height: 60px;
            background-color: var(--accent-gold);
            margin-bottom: 1.5rem;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: white;
        }

        .bg-light { background-color: var(--light-bg); }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            position: relative; overflow: hidden; border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); background: #fff;
        }

        .gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
        .gallery-item:hover img { transform: scale(1.05); }
        .model-info { padding: 1.5rem; text-align: center; }

        .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .modern-form { background: var(--pure-white); padding: 3rem; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
        .form-group { margin-bottom: 1.5rem; }
        .modern-input { width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #eee; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; background: transparent; }
        .modern-input:focus { outline: none; border-bottom-color: var(--accent-gold); }

footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 4rem 0 2rem 0;
}

footer .logo {
    color: var(--pure-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 2px;
}

footer .logo span {
    color: var(--accent-gold);
}

footer p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            letter-spacing: 1px;
        }
        .logo span { 
            color: var(--accent-gold); 
        }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    color: var(--pure-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
    transform: translateY(-3px);
}

.parallax-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    background-image: url('../assets/img/wcomepage.jpg');
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.parallax-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
}

.parallax-text h2 {
    font-size: 3rem;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.parallax-text h2::after {
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            nav ul { display: none; }
            .contact-container { grid-template-columns: 1fr; }
        }

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(204, 166, 119, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active { display: flex; }
.lightbox.active img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover { color: var(--gold); }