    /* Custom styles and overrides */
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'DM Sans', sans-serif;
    }
    
    /* Navbar scroll effect */
    #navbar.scrolled {
        background: rgba(253, 248, 245, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    }
    
    /* Hero animations */
    #hero h1 {
        animation: fadeUp 0.8s ease-out both;
    }
    
    #hero p {
        animation: fadeUp 0.8s ease-out 0.15s both;
    }
    
    #hero .flex-wrap {
        animation: fadeUp 0.8s ease-out 0.3s both;
    }
    
    #hero .grid {
        animation: fadeUp 0.8s ease-out 0.45s both;
    }
    
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Service card stagger animation */
    .service-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
    
    .menu-line {
        transition: all 0.3s ease;
    }
    
    #mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.5rem;
    }
    
    /* Scroll reveal */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Form select arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239fa3aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #FDF8F5;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #e2e3e5;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #c4c6cb;
    }
    
    /* Selection color */
    ::selection {
        background: #ff6b4a;
        color: white;
    }
