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

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

    body {
        overflow-x: hidden;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-track {
        background: #fdfcf8;
    }
    ::-webkit-scrollbar-thumb {
        background: #047857;
        border-radius: 3px;
    }

    /* Hero animations */
    .hero-badge {
        opacity: 0;
        animation: fadeDown 0.8s ease forwards 0.2s;
    }
    .hero-title {
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.4s;
    }
    .hero-subtitle {
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.6s;
    }
    .hero-ctas {
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.8s;
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-16px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

    /* Service cards */
    .service-card {
        transition: background 0.4s ease;
    }
    .service-card:hover {
        background: #fef9ee;
    }

    /* Gallery */
    .gallery-item {
        cursor: pointer;
    }
    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(4, 120, 87, 0);
        transition: background 0.4s ease;
    }
    .gallery-item:hover::after {
        background: rgba(4, 120, 87, 0.1);
    }
    .gallery-item {
        position: relative;
    }

    /* Testimonial cards */
    .testimonial-card {
        transition: background 0.4s ease;
    }
    .testimonial-card:hover {
        background: #065f46;
    }

    /* Navbar */
    #navbar {
        background: transparent;
    }
    #navbar.scrolled {
        background: rgba(253, 252, 248, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(4, 120, 87, 0.08);
    }
    #navbar.scrolled .nav-logo {
        color: #022c22;
    }
    #navbar.scrolled .nav-link {
        color: rgba(2, 44, 34, 0.6);
    }
    #navbar.scrolled .nav-link:hover {
        color: #047857;
    }

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

    /* Contact form select */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23047857' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 36px;
    }

    /* Thin line accents */
    .thin-line {
        width: 48px;
        height: 1px;
        background: #047857;
        opacity: 0.3;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .scroll-indicator {
            display: none;
        }
    }
