/* Стили для страницы бронирования */
.booking-page {
    padding: 50px 0;
    min-height: 70vh;
}

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

.booking-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.booking-header p {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Контейнер для виджета бронирования */
.booking-engine-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 50px;
    min-height: 400px;
    position: relative;
}

.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

/* Информационные карточки */
.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Адаптивность для бронирования */
@media (max-width: 768px) {
    .booking-engine-container {
        padding: 20px;
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .booking-header h1 {
        font-size: 2rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
}