/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

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

.booking-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.booking-modal-header h2 {
    margin: 0 0 10px 0;
    color: #667eea;
    font-size: 2em;
}

.booking-modal-header p {
    margin: 0;
    color: #666;
    font-size: 1em;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: #f5f5f5;
    color: #484848;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.booking-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.booking-option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.booking-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.booking-option-content {
    flex: 1;
}

.booking-option-content h3 {
    margin: 0 0 5px 0;
    color: #484848;
    font-size: 1.2em;
}

.booking-option-content p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.booking-option-arrow {
    color: #667eea;
    font-size: 1.5em;
    margin-left: 10px;
}

.booking-modal-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.booking-modal-footer p {
    margin: 0;
    color: #999;
    font-size: 0.85em;
}

/* Responsive Design */
@media (max-width: 600px) {
    .booking-modal-content {
        padding: 30px 20px;
    }

    .booking-modal-header h2 {
        font-size: 1.6em;
    }

    .booking-option {
        padding: 15px;
    }

    .booking-option-icon {
        width: 40px;
        height: 40px;
    }
    
    .booking-logo {
        max-width: 100%;
        max-height: 100%;
    }

    .booking-option-content h3 {
        font-size: 1.1em;
    }
}
