.tourism-hero.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tourism-hero h1,
.tourism-hero p {
    opacity: 0;
    transform: translateY(30px);
}

.tourism-hero h1.animate-on-scroll.animated,
.tourism-hero p.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Анимации для статистики */
.tourism-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tourism-stat {
    text-align: center;
}

.tourism-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.tourism-stat-label {
    font-size: 1rem;
    color: #e5e7eb;
}

/* Контейнер для program-card */
.program-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Анимации для карточек программ */
.program-card {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card:nth-child(odd) {
    transform: translateX(-50px);
}

.program-card:nth-child(even) {
    transform: translateX(50px);
}

.program-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateX(0);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

/* Анимации для карточек активностей */
.activity-card {
    opacity: 0;
    transform: translateY(40px) rotate(-2deg);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-card:nth-child(even) {
    transform: translateY(40px) rotate(2deg);
}

.activity-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.activity-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

/* Анимации для карточек экспедиций */
.expedition-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expedition-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.expedition-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

/* Анимации для CTA секции */
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-section.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Анимации для контактной информации */
.contact-info-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

/* Анимации для формы */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Анимации для кнопок */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Общие анимации */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .program-card,
    .activity-card,
    .expedition-card {
        transform: translateY(30px) !important;
    }
    
    .program-card.animate-on-scroll.animated,
    .activity-card.animate-on-scroll.animated,
    .expedition-card.animate-on-scroll.animated {
        transform: translateY(0) !important;
    }
}