/* Floating Call and WhatsApp Buttons */
.floating-call-btn,
.floating-whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.floating-call-btn {
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.floating-whatsapp-btn {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.floating-call-btn:hover,
.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.floating-call-btn i,
.floating-whatsapp-btn i {
    animation: ring 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-call-btn,
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .floating-call-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* Enhanced Booking Form Styles */
.booking-form-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.booking-form-container h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 15px;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: all 0.3s ease;
    color: #333;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.form-group-custom input.error,
.form-group-custom select.error,
.form-group-custom textarea.error {
    border-color: #ff4444;
    background: #fff5f5;
}

.error-message {
    color: #ffdddd;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn-custom {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.success-message {
    background: #4caf50;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Service Cards */
.service-card-enhanced {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Professional Badges */
.badge-professional {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
