/* Custom styles to complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Form input focus styles */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Emergency badge animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.emergency-badge {
    animation: pulse 2s infinite;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.show {
    max-height: 500px;
}

/* Floating CTA button transition */
#floating-cta {
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

#floating-cta.show {
    transform: translateY(0);
    opacity: 1;
}

/* Print styles */
@media print {
    nav, footer, #floating-cta {
        display: none !important;
    }
}
.more-services {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.more-services.hidden {
    opacity: 0;
    transform: translateY(10px);
}