/* Custom styles to complement Tailwind */

body {
    -webkit-tap-highlight-color: transparent;
}

.service-card {
    transition: all 0.2s ease-in-out;
}

/* Smooth check animation for confirmation */
@keyframes check-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.step-content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
