/* Single Tour Section Styling */

/* Обновляем сетку для одного тура */
.dates-grid.single-tour {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Стиль для единственной карточки тура */
.date-card.featured-tour {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 3px solid #dc2626;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.date-card.featured-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
}

.date-card.featured-tour:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.2);
}

/* Заголовок карточки */
.featured-tour .date-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}

/* Статус доступности - особый дизайн для "осталось 3 места" */
.featured-tour .availability.urgent {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 24px auto;
    display: block;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
    }
}

/* Фокус компаний */
.featured-tour .companies-highlight {
    margin-bottom: 24px;
}

.featured-tour .companies-highlight p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-align: center;
}

.featured-tour .companies-highlight p:nth-child(2) {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Преимущества тура */
.tour-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}

.benefit-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.benefit-item span {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

/* Кнопка бронирования */
.featured-tour .date-card-footer {
    margin-top: 28px;
    text-align: center;
}

.featured-tour .cta-button.dates-cta-urgent {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-tour .cta-button.dates-cta-urgent:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .dates-grid.single-tour {
        padding: 0 16px;
    }
    
    .date-card.featured-tour {
        padding: 24px;
        max-width: 100%;
    }
    
    .featured-tour .date-header h3 {
        font-size: 24px;
    }
    
    .featured-tour .availability.urgent {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .benefit-item {
        padding: 6px 10px;
    }
    
    .benefit-item span {
        font-size: 12px;
    }
    
    .featured-tour .cta-button.dates-cta-urgent {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .date-card.featured-tour {
        padding: 20px;
    }
    
    .featured-tour .date-header h3 {
        font-size: 22px;
    }
    
    .tour-benefits {
        gap: 8px;
    }
}