.booking-btn {
    padding: 12px 20px;
    font-size: 1rem;
    background: #17a2b8;
    color: white !important;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
    min-width: 140px;
    max-width: 200px;
    margin: 0;
    text-decoration: none !important;
    white-space: nowrap;
    gap: 8px;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
    background: #138496;
    color: white;
    text-decoration: none;
}

.mobile-booking-btn {
    display: none;
}

@media (max-width: 768px) {
    .booking-btn {
        font-size: 1rem;
        padding: 10px 16px;
        min-width: 140px;
        max-width: 180px;
    }

    .mobile-booking-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .mobile-booking-btn .booking-btn {
        width: 90%;
        max-width: 240px;
        margin: 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    #searchForm .form-group {
        margin-bottom: 0;
    }
}

/* Service Packages Styling */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Booking Form Styling */
#bookingForm {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    background: #fff;
}

#bookingForm .card-body {
    padding: 30px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    height: auto;
}

.form-control:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 0 0.2rem rgba(23,162,184,0.25);
}

/* Review Section Styling */
.review-carousel .review-item {
    margin: 10px;
    border-radius: 10px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-button i {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Service Reminder Modal */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background: #17a2b8;
    color: white;
    border-radius: 10px 10px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    #bookingForm {
        margin: 15px;
    }
    
    .review-carousel {
        margin: 0 15px;
    }
}
