    /* ========== RESET & BASE ========== */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(200, 164, 92, 0.3);
        color: #fff;
    }

    /* ========== HERO ANIMATIONS ========== */
    .hero-reveal {
        opacity: 0;
        transform: translateY(40px);
        animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

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

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

    /* ========== HERO BACKGROUND SHAPES ========== */
    .hero-shape {
        position: absolute;
        pointer-events: none;
    }

    .shape-circle-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        top: -200px;
        right: -150px;
        animation: floatShape 8s ease-in-out infinite;
    }

    .shape-rect-1 {
        width: 200px;
        height: 200px;
        background: rgba(200, 164, 92, 0.05);
        border: 1px solid rgba(200, 164, 92, 0.1);
        border-radius: 24px;
        bottom: 20%;
        left: 5%;
        transform: rotate(15deg);
        animation: floatShape 10s ease-in-out infinite reverse;
    }

    .shape-circle-2 {
        width: 120px;
        height: 120px;
        background: rgba(200, 164, 92, 0.06);
        border-radius: 50%;
        top: 40%;
        right: 10%;
        animation: floatShape 6s ease-in-out infinite;
    }

    .shape-triangle-1 {
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-bottom: 104px solid rgba(200, 164, 92, 0.04);
        bottom: 15%;
        left: 15%;
        transform: rotate(-20deg);
        animation: floatShape 12s ease-in-out infinite;
    }

    @keyframes floatShape {
        0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
        50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
    }

    .shape-rect-1 { --rotate: 15deg; }
    .shape-triangle-1 { --rotate: -20deg; }

    @keyframes floatShape {
        0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
        50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
    }

    /* ========== ROOM CARDS ========== */
    .room-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .room-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .room-card:nth-child(2) { transition-delay: 0.1s; }
    .room-card:nth-child(3) { transition-delay: 0.2s; }

    /* ========== AMENITY CARDS ========== */
    .amenity-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .amenity-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ========== NAVBAR ========== */
    #navbar {
        background: transparent;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(9, 17, 40, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    /* ========== MOBILE MENU ========== */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }

    #bar1.open {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #bar2.open {
        opacity: 0;
    }

    #bar3.open {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.5rem;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

    /* ========== SCROLL REVEAL ========== */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    /* ========== GEOMETRIC DECORATIONS ========== */
    .geo-dots {
        background-image: radial-gradient(rgba(200, 164, 92, 0.3) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    /* ========== CUSTOM SCROLLBAR ========== */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #091128;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(200, 164, 92, 0.3);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(200, 164, 92, 0.5);
    }

    /* ========== FORM FOCUS ========== */
    input:focus, textarea:focus {
        background: rgba(15, 27, 61, 0.8);
    }

    /* ========== IMAGE PLACEHOLDER ========== */
    img {
        image-rendering: auto;
    }
