.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-support .btn {
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.time-slot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: #007bff;
    color: white;
}

.time-slot.selected {
    background-color: #28a745;
    color: white;
}