    /* Custom styles to complement Tailwind */
    
    * {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Hero geometric decorations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    @keyframes float-delayed {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
    }

    /* Service card hover glow */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 1.5rem;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

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

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(255, 248, 240, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    }

    #navbar.scrolled .menu-line {
        background: #1a1512;
    }

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

    #mobile-menu.active .mobile-link {
        animation: slideIn 0.4s ease forwards;
        opacity: 0;
    }

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

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

    /* Hamburger animation */
    .menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.5rem;
    }

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

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

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

    ::-webkit-scrollbar-track {
        background: #FFF8F0;
    }

    ::-webkit-scrollbar-thumb {
        background: #d94028;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #c22b1d;
    }

    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill,
    select:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #FFF8F0 inset !important;
    }

    /* Form focus states */
    input:focus,
    textarea:focus,
    select:focus {
        border-color: #d94028 !important;
        box-shadow: 0 0 0 4px rgba(217, 64, 40, 0.1) !important;
    }

    /* Selection color */
    ::selection {
        background: #d94028;
        color: white;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .service-card {
            padding: 1.5rem !important;
        }
    }
