/* Booking Button */
.btn-book {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: #45a049;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

/* Form Styles */
#bookingForm .form-group {
    margin-bottom: 20px;
}

#bookingForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

#bookingForm input[type="text"],
#bookingForm input[type="email"],
#bookingForm input[type="tel"],
#bookingForm input[type="date"],
#bookingForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#bookingForm textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    text-align: right;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 90%;
    }
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 20px;
}

.booking-success i.fa-check-circle {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
    display: block;
}

.booking-success h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 24px;
}

.booking-details {
    background: #f5f9f5;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.booking-details p {
    margin: 10px 0;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.booking-details i {
    margin-right: 10px;
    color: #4CAF50;
    min-width: 20px;
    margin-top: 3px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.action-buttons .btn {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-buttons .btn i {
    font-size: 14px;
}

/* Animation for success checkmark */
@keyframes checkmark {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.booking-success i.fa-check-circle {
    animation: checkmark 0.6s ease-in-out;
}
