/* Pulsing animation for Book Appointment button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 110, 60, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(30, 110, 60, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 110, 60, 0);
    }
}

.btn-appointment {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-appointment:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-appointment:hover:before {
    left: 100%;
}

.btn-appointment:hover {
    animation: none;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}