    /* Custom Styles for Guarisco Insurance Services */
    
    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Selection Color */
    ::selection {
        background-color: rgba(13, 148, 136, 0.2);
        color: inherit;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #64748b;
    }
    
    /* Navigation Transitions */
    .nav-text {
        transition: color 0.3s ease;
    }
    
    #navbar.scrolled .nav-text {
        color: #0f172a;
    }
    
    /* Hero Animations */
    .hero-anim {
        opacity: 0;
        transform: translateY(30px);
        animation: heroFadeIn 0.8s ease forwards;
    }
    
    .hero-anim:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .hero-anim:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .hero-anim:nth-child(4) {
        animation-delay: 0.6s;
    }
    
    .hero-anim:nth-child(5) {
        animation-delay: 0.8s;
    }
    
    @keyframes heroFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Scroll Reveal Animations */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal-up {
        transform: translateY(40px);
    }
    
    .reveal-left {
        transform: translateX(-40px);
    }
    
    .reveal-right {
        transform: translateX(40px);
    }
    
    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translate(0, 0);
    }
    
    /* Service Card Hover */
    .service-card {
        transform: translateY(0);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .service-card:hover {
        transform: translateY(-4px);
    }
    
    /* Mobile Menu */
    #mobile-menu {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s 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; }
    #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
    
    /* Menu Icon Animation */
    #menu-btn.active #line1 {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    #menu-btn.active #line2 {
        opacity: 0;
    }
    
    #menu-btn.active #line3 {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 1.5rem;
    }
    
    /* Focus Styles */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
    }
    
    /* Button Focus */
    button:focus-visible,
    a:focus-visible {
        outline: 2px solid #14b8a6;
        outline-offset: 2px;
    }
    
    /* Reduce Motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        html {
            scroll-behavior: auto;
        }
        
        .reveal-up,
        .reveal-left,
        .reveal-right {
            opacity: 1;
            transform: none;
        }
    }
    
    /* Print Styles */
    @media print {
        nav,
        #contact-form,
        .scroll-indicator {
            display: none;
        }
        
        body {
            color: #000;
            background: #fff;
        }
        
        .bg-slate-900,
        .bg-teal-700 {
            background: #fff !important;
            color: #000 !important;
        }
    }
