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

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

    body {
        overflow-x: hidden;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a0a0a;
    }
    ::-webkit-scrollbar-thumb {
        background: #166534;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #15803d;
    }

    /* Selection */
    ::selection {
        background: #166534;
        color: #fefef8;
    }

    /* Hero Animations */
    .hero-eyebrow {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }

    .hero-headline {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.4s;
        opacity: 0;
    }

    .hero-sub {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.6s;
        opacity: 0;
    }

    .hero-cta {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Section Animations */
    .section-eyebrow,
    .section-title,
    .about-eyebrow,
    .about-title,
    .contact-eyebrow,
    .contact-title {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .section-eyebrow.visible,
    .section-title.visible,
    .about-eyebrow.visible,
    .about-title.visible,
    .contact-eyebrow.visible,
    .contact-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .about-image {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .about-image.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Service Cards */
    .service-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

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

    /* Gallery */
    .gallery-item {
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .gallery-item.visible {
        opacity: 1;
        transform: scale(1);
    }

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

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(22, 101, 52, 0.2);
    }

    /* Nav links hover effect */
    .nav-link::after {
        content: '';
        display: block;
        width: 0;
        height: 1px;
        background: #4ade80;
        transition: width 0.3s ease;
        margin-top: 2px;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Mobile link animation */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

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

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

    /* Hamburger animation */
    #menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 24px;
    }

    /* Form focus states */
    input:focus, select:focus, textarea:focus {
        outline: none;
    }

    /* Image aspect ratios */
    .gallery-item img,
    .about-image img {
        will-change: transform;
    }
