    *, *::before, *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(201, 168, 76, 0.3);
        color: #faf8f4;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a170f;
    }
    ::-webkit-scrollbar-thumb {
        background: #1a3a2a;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #2a5c31;
    }

    /* Service card tilt on hover */
    .service-card {
        transform: translateY(0);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px -20px rgba(201, 168, 76, 0.1);
    }

    /* Gallery hover overlay */
    .gallery-item {
        position: relative;
        overflow: hidden;
    }
    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 23, 15, 0.4) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    .gallery-item:hover::after {
        opacity: 1;
    }

    /* Floating animation for stat cards */
    @media (prefers-reduced-motion: no-preference) {
        .stat-card-1 {
            animation: float1 6s ease-in-out infinite;
        }
        .stat-card-2 {
            animation: float2 5s ease-in-out infinite;
        }
        .stat-card-3 {
            animation: float3 7s ease-in-out infinite;
        }
    }

    @keyframes float1 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    @keyframes float2 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
    @keyframes float3 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }

    /* Reveal animations (progressive enhancement — only when JS runs) */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    }

    /* Mobile menu transitions */
    .menu-line {
        display: block;
    }
    #menuBtn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    #menuBtn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menuBtn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 20px;
        margin-left: 0;
    }

    /* Navbar solid background on scroll */
    #navbar.scrolled {
        background: rgba(10, 23, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    /* Select dropdown styling */
    select option {
        background: #1a3a2a;
        color: #faf8f4;
    }
