/* ==================== */
/* СТИЛИ СЕКЦИЙ */
/* ==================== */

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Изначально скрываем элементы для анимации */
.service-card,
.advantage,
.price-card,
.package-card,
.review,
.gallery-item,
.team-member {
    opacity: 0;
}

/* Герой-баннер */
.hero {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    color: #2c3e50;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(44, 90, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c5aa0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-left-color: #e74c3c;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.feature p {
    font-size: 16px;
    color: #718096;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Промо-акция */
.promo {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo::before {
    content: '🥌';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.promo__card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo__card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo__card p {
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.promo__card small {
    font-size: 16px;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

/* Услуги */
.services {
    padding: 80px 0;
    background: #ffffff;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #4a5568;
}

/* Преимущества */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.advantage__icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.advantage h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 22px;
}

.advantage p {
    color: #4a5568;
}

/* Фотогалерея */
.gallery {
    padding: 80px 0;
    background: #ffffff;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.gallery-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.gallery-item:nth-child(1) .gallery-placeholder {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background: linear-gradient(135deg, #4a7bc8 0%, #667eea 100%);
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8a8a 100%);
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background: linear-gradient(135deg, #2c5aa0 0%, #e74c3c 100%);
}

.gallery-item:nth-child(6) .gallery-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #2c5aa0 100%);
}

.gallery-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Цены */
.prices {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
}

.prices__table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: #2c5aa0;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 15px 0;
}

.price-note {
    margin-top: 10px;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
}

.prices__note {
    background: rgba(44, 90, 160, 0.1);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.prices__note p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.prices__note strong {
    color: #2c5aa0;
}

/* Пакеты мероприятий */
.packages {
    padding: 80px 0;
    background: #ffffff;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: #2c5aa0;
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
    border-color: #2c5aa0;
    background: linear-gradient(to bottom, #ffffff, #fff5f5);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.package-card h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: #2c5aa0;
    text-align: center;
    margin: 25px 0;
}

.package-features {
    list-style: none;
    margin: 25px 0 35px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.package-card .btn {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* Команда */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.member-photo {
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
}

.photo-2 {
    background: linear-gradient(135deg, #4a7bc8 0%, #2c5aa0 100%);
}

.photo-3 {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
}

.photo-4 {
    background: linear-gradient(135deg, #2c5aa0 0%, #e74c3c 100%);
}

.team-member h3 {
    margin: 20px 0 5px;
    color: #2c3e50;
}

.member-position {
    color: #2c5aa0;
    font-weight: 600;
    margin: 5px 0;
}

.member-desc {
    color: #718096;
    font-size: 14px;
}

/* Отзывы */
.reviews {
    padding: 80px 0;
    background: #ffffff;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review:hover {
    border-color: #2c5aa0;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.review::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.1;
    font-family: serif;
}

.review__author {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.review__author strong {
    display: block;
    font-size: 18px;
    color: #2c3e50;
}

.review__position {
    color: #2c5aa0;
    font-size: 14px;
    margin-top: 5px;
}

.review p {
    color: #4a5568;
    line-height: 1.6;
}

.review__rating {
    color: #ffd700;
    font-size: 18px;
    margin-top: 15px;
}

/* Как добраться */
.how-to-get {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
}

.how-to-get__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.how-to-get__grid > div {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.how-to-get__grid > div:hover {
    border-color: #2c5aa0;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.how-to-get__grid h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-to-get__grid h3::before {
    font-size: 24px;
}

.transport h3::before {
    content: '🚌';
}

.parking h3::before {
    content: '🅿️';
}

.transfer h3::before {
    content: '🚗';
}

.how-to-get__grid ul {
    list-style: none;
}

.how-to-get__grid li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.how-to-get__grid li:last-child {
    border-bottom: none;
}

.how-to-get__grid li strong {
    color: #2c5aa0;
}

.how-to-get__grid p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2c5aa0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #2c5aa0;
    font-size: 18px;
    list-style: none;
    position: relative;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: #f0f8ff;
}

.faq-item summary:after {
    content: "▼";
    position: absolute;
    right: 25px;
    transition: transform 0.3s ease;
    color: #2c5aa0;
}

.faq-item[open] summary:after {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    background: #f0f8ff;
    border-bottom: 2px solid #2c5aa0;
}

.faq-item p {
    padding: 20px 25px;
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Форма бронирования - улучшенные стили */
.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '🥌';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    z-index: 1;
}

.booking-form > * {
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group label::after {
    content: ' *';
    color: #e74c3c;
    font-weight: bold;
}

.form-group label[for="duration"],
.form-group label[for="guests"],
.form-group label[for="event-type"],
.form-group label[for="package"],
.form-group label[for="comments"]::after {
    content: '';
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background: #ffffff;
    color: #2c3e50;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #4a7bc8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c5aa0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.2);
    background: #f8fafc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232c5aa0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.form-submit .btn {
    min-width: 250px;
    font-size: 18px;
    padding: 16px 40px;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #718096;
    text-align: center;
    line-height: 1.5;
}

.form-note a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #2c5aa0;
    transition: all 0.3s ease;
}

.form-note a:hover {
    color: #e74c3c;
    border-bottom: 1px solid #e74c3c;
}

.booking-result {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #4caf50;
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.booking-result h3 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.booking-result p {
    margin-bottom: 15px;
    color: #2e7d32;
    font-size: 16px;
}

#orderNumber {
    color: #2c5aa0;
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    margin: 0 5px;
    padding: 5px 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #4caf50;
}

/* Контакты */
.contacts {
    padding: 80px 0;
    background: #ffffff;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacts__info {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #e74c3c;
}

.contacts__info h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 28px;
}

.contacts__info p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #4a5568;
}

.contacts__info strong {
    color: #2c3e50;
}

.contacts__info a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contacts__info a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.contacts__social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.contacts__social p:first-child {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.social-link.vk { 
    background: linear-gradient(135deg, #4c75a3 0%, #3a5a80 100%);
}

.social-link.tg { 
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}

.social-link.inst { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-note {
    font-size: 14px;
    color: #718096;
    margin-top: 15px;
    font-style: italic;
}

/* Контакты - улучшенные стили для карты */
.contacts__map {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
    height: 400px;
}

.contacts__map > div:first-child {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e6f0ff 0%, #d1e1ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(44, 90, 160, 0.1) 20px, rgba(44, 90, 160, 0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(44, 90, 160, 0.1) 20px, rgba(44, 90, 160, 0.1) 21px);
}

.map-placeholder::after {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.map-placeholder span {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Адаптивность для секций */
@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__subtitle {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .promo__card h2 {
        font-size: 28px;
    }
    
    .promo__card p {
        font-size: 18px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .packages__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .reviews__slider {
        grid-template-columns: 1fr;
    }
    
    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .how-to-get__grid {
        grid-template-columns: 1fr;
    }
    
    .feature h3 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .gallery-placeholder {
        height: 200px;
        font-size: 16px;
    }
    
    .member-photo {
        height: 180px;
        font-size: 3rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .header__inner {
        padding: 10px 0;
    }
}
/* Исправление: делаем элементы галереи и команды видимыми */
.gallery-item,
.team-member {
    opacity: 1 !important;
    animation: none !important;
}

/* Для плавного появления без анимации */
.gallery__grid,
.team__grid {
    opacity: 1;
}
/* ==================== */
/* СТИЛИ РАЗДЕЛА НОВОСТЕЙ */
/* ==================== */

.news {
    padding: 80px 0;
    background: #ffffff;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
}

.news-item:hover {
    border-color: #2c5aa0;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.news-item__date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.news-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 10px;
}

.news-month {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

.news-item__title {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item__content {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
}

.news-item__content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.news-item__content li {
    margin-bottom: 5px;
}

.news-item__content p {
    margin-bottom: 10px;
}

.news-item__content .btn {
    margin-top: 15px;
}

/* Адаптивность для новостей */
@media (max-width: 768px) {
    .news__grid {
        grid-template-columns: 1fr;
    }
    
    .news-item__date {
        flex-wrap: wrap;
    }
    
    .news-item__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 60px 0;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-day {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
