    /* Base & Utilities */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(201, 162, 39, 0.3);
        color: #FDFBF7;
    }

    /* Navbar */
    #navbar.scrolled {
        background: rgba(2, 44, 34, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    }

    /* Hero */
    #hero {
        position: relative;
    }

    /* Service Cards */
    .service-card {
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #C9A227, transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    /* Process Steps */
    .process-step {
        position: relative;
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -0.5rem;
        width: 1rem;
        height: 1px;
        background: linear-gradient(90deg, #C9A227, transparent);
        display: none;
    }

    @media (min-width: 768px) {
        .process-step:not(:last-child)::after {
            display: block;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
        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; }
    .reveal-delay-5 { transition-delay: 0.5s; }

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

    /* Image hover zoom */
    .service-card img {
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover img {
        transform: scale(1.05);
    }

    /* Gold gradient text helper */
    .text-gold-gradient {
        background: linear-gradient(135deg, #C9A227 0%, #E5C158 50%, #C9A227 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    ::-webkit-scrollbar-track {
        background: #022C22;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(201, 162, 39, 0.4);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(201, 162, 39, 0.7);
    }

    /* Input autofill */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px rgba(253, 251, 247, 0.05) inset !important;
        -webkit-text-fill-color: #FDFBF7 !important;
    }
