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

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Feature card hover */
    .feature-card {
        transform: translateY(0);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(212, 160, 23, 0.08);
    }

    /* Mobile menu */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Scroll animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    /* Gold gradient text utility */
    .gold-gradient {
        background: linear-gradient(135deg, #F0C940, #D4A017, #B8860B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0A1628;
    }

    ::-webkit-scrollbar-thumb {
        background: #D4A017;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #E8B828;
    }

    /* Selection color */
    ::selection {
        background: rgba(212, 160, 23, 0.3);
        color: #fff;
    }

    /* Map container fix */
    iframe {
        border-radius: 1rem;
    }

    /* Smooth image loading */
    img {
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    @media (max-width: 768px) {
        .font-serif {
            line-height: 1.2;
        }
    }
