/* landing-defer.css - Non-critical CSS for optimized loading */
/* Hover states, non-above-the-fold styling, animations */
a:hover {
    color: #0056b3;
}
.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}
.call-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}
