/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Цвета меню для sticky header */
.header-menu__list-link {
    color: #333 !important;
}

.header-menu__list-link:hover {
    color: #c41e3a !important;
}

.header-contacts__phone {
    color: #333 !important;
}

/* Мобильное меню - на всю ширину экрана */
@media (max-width: 1199px) {
    .header {
        position: fixed !important;
        width: 100%;
        z-index: 9999 !important;
        overflow: visible !important;
        padding: 10px 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .header .container,
    .header .header__container {
        overflow: visible !important;
    }

    .header .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header__container {
        min-height: 50px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .header-logo {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .header-logo__img {
        height: 32px !important;
        width: auto !important;
    }

    .header-contacts {
        margin: 0 !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .header-contacts__phone {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .header-menu__open {
        background-image: url("../img/header/icon-menu_black.svg") !important;
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
    }

    .header-menu__open_opened {
        background-image: url("../img/header/icon-close.svg") !important;
    }

    .header-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        max-height: none !important;
        background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%) !important;
        padding: 30px 20px !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: none;
        box-sizing: border-box !important;
    }

    .header-menu[style*="display: block"],
    .header-menu[style*="display:block"] {
        display: block !important;
    }

    .header-menu__list {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .header-menu__list-item {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .header-menu__list-link {
        font-size: 18px;
        display: block;
        padding: 15px 20px;
        border-radius: 12px;
        transition: all 0.2s ease;
        background: #fff;
        margin-bottom: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .header-menu__list-link:hover,
    .header-menu__list-link:active {
        color: #fff !important;
        background: #c41e3a;
    }

    .header-menu__open {
        display: block !important;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .header-contacts {
        margin-right: 15px;
    }

    .header-contacts__phone {
        font-size: 14px !important;
    }

    .header__container {
        position: relative;
    }

    /* Добавим кнопку звонка в меню */
    .header-menu::after {
        content: '';
        display: block;
        height: 100px;
    }
}

/* Десктоп - меню всегда видно */
@media (min-width: 1200px) {
    .header-menu {
        display: block !important;
    }
}

/* Хедер - логотип и расположение */
.header-logo {
    display: flex !important;
    margin-right: auto;
}

.header-logo__img {
    height: 50px;
    width: auto;
}

@media (min-width: 1200px) {
    .header__container {
        flex-wrap: nowrap;
    }

    .header-logo__img {
        height: 40px;
    }

    .header-menu {
        margin-right: 0 !important;
        flex-shrink: 0;
    }

    .header-contacts {
        margin-left: auto;
        margin-right: 0 !important;
        flex-shrink: 0;
    }

    .header-menu__open {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-logo__img {
        height: 40px;
    }

    .program__description {
        margin-bottom: 15px;
    }
}

/* Кликабельные элементы */
.open-popup,
.button,
.topbar__button {
    cursor: pointer;
}

/* Обводка для фото блюд */
.dishes-item__bg {
    border: 1px solid #fff;
    box-sizing: border-box;
}

.body-scroll-lock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

/* Фоновое видео в hero */
.promo {
    position: relative;
    overflow: hidden;
}

.promo__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.promo__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Фоновое видео в блоке отзывов */
.reviews {
    position: relative;
    overflow: hidden;
}

.reviews::before,
.reviews::after {
    z-index: 1 !important;
}

.reviews__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.reviews__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.mt-30 {
    margin-top: 30px;
}

.promo__link {
    clear: both;
}

.promo__description-text {
    display: block;
    font-size: 24px;
}

/* Рейтинг в Hero - компактный бейдж */
.promo__rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.promo__rating-stars {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 1px;
}

.promo__rating-score {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.promo__rating-reviews {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* Белая кнопка */
.button_white {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: 2px solid #fff !important;
}

.button_white:hover {
    background: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Hero-блок - всё по центру, аккуратная структура */
.promo__container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo__title {
    font-size: 42px !important;
    line-height: 1.2 !important;
    margin: 0 auto 20px !important;
    max-width: 700px !important;
}

.promo__title-sub {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.95;
    display: block;
    margin-top: 8px;
}

.promo__subtitle {
    font-size: 17px;
    color: #fff;
    margin: 0 auto 30px;
    padding: 14px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    width: fit-content;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
}

.promo__features {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 620px;
    max-width: calc(100% - 30px);
}

.promo__features li {
    color: #fff;
    font-size: 15px;
    padding: 12px 20px 12px 50px;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    text-align: left;
    width: 100%;
}

.promo__features li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
}

.promo__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.promo__buttons .button {
    padding: 14px 28px !important;
    font-size: 15px !important;
    min-width: 200px;
    text-align: center;
    border-radius: 6px !important;
    font-weight: 600 !important;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.promo__buttons .button_white {
    background: #fff !important;
    color: #333 !important;
    border: none !important;
}

.promo__buttons .button_white:hover {
    background: #f5f5f5 !important;
}

.promo__urgency {
    margin: 25px auto 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

@media (max-width: 992px) {
    .promo__title {
        font-size: 34px !important;
    }

    .promo__title-sub {
        font-size: 22px;
    }

    .promo__features li {
        font-size: 14px;
        padding: 10px 20px 10px 45px;
        min-width: 480px;
    }

    .promo__features li::before {
        left: 18px;
    }
}

@media (max-width: 768px) {
    .promo__container {
        padding: 0 12px;
    }

    .promo__rating {
        margin-bottom: 12px;
        padding: 6px 12px;
        gap: 5px;
    }

    .promo__rating-stars {
        font-size: 12px;
    }

    .promo__rating-score {
        font-size: 14px;
    }

    .promo__rating-reviews {
        font-size: 11px;
    }

    .promo__title {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .promo__title-sub {
        font-size: 16px;
        margin-top: 4px;
    }

    .promo__subtitle {
        font-size: 10px;
        padding: 6px 10px;
        margin-bottom: 15px;
        white-space: normal !important;
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    .promo__features {
        width: 100%;
        margin-bottom: 20px;
        gap: 5px;
    }

    .promo__features li {
        font-size: 12px;
        padding: 8px 10px 8px 32px;
        min-width: auto;
        width: 100%;
    }

    .promo__features li::before {
        left: 12px;
        font-size: 12px;
    }

    .promo__buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px !important;
        margin: 0 !important;
    }

    .promo__buttons .button,
    .promo__buttons .promo__button {
        padding: 10px 20px !important;
        font-size: 13px !important;
        width: 100%;
        max-width: 260px;
        min-width: auto;
        height: 42px;
        margin: 0 !important;
    }

    .promo__buttons .button_white {
        display: none !important;
    }

    .promo__urgency {
        font-size: 11px;
        padding: 8px 14px;
        margin-top: 15px;
    }
}

.color-green {
    color: #ffd700;
}

/* =====================================================
   СЕКЦИЯ НОМЕРОВ И ЦЕН - СЛАЙДЕР
   ===================================================== */
.rooms {
    padding: 60px 0;
    background: #f8f8f8;
}

.rooms__title,
.rooms__description {
    text-align: center;
}

/* Слайдер */
.rooms-slider {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.rooms-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.rooms-slider__track::-webkit-scrollbar {
    display: none;
}

.rooms-slider__slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    scroll-snap-align: start;
}

/* Карточка номера */
.rooms__item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.rooms__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rooms__item_premium {
    border: 2px solid #ffd700;
}

.rooms__image {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.rooms__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rooms__item:hover .rooms__image img {
    transform: scale(1.05);
}

.rooms__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c41e3a;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.rooms__badge_gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
}

.rooms__content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.rooms__name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}

.rooms__capacity {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
}

.rooms__features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    flex: 1;
}

.rooms__features li {
    padding: 4px 0 4px 22px;
    position: relative;
    font-size: 13px;
    color: #555;
}

.rooms__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.rooms__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.rooms__price-value {
    font-size: 22px;
    font-weight: 700;
    color: #c41e3a;
}

.rooms__price-period {
    font-size: 13px;
    color: #888;
}

.rooms__button {
    display: block !important;
    width: calc(100% - 4px) !important;
    max-width: 100%;
    text-align: center;
    padding: 12px 16px !important;
    font-size: 14px !important;
    margin: auto 2px 0 2px;
    box-sizing: border-box;
}

/* Навигация слайдера */
.rooms-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.rooms-slider__nav:hover {
    background: #c41e3a;
    color: #fff;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.rooms-slider__nav_prev {
    left: 0;
}

.rooms-slider__nav_next {
    right: 0;
}

/* Индикаторы */
.rooms-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.rooms-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.rooms-slider__dot:hover {
    background: #bbb;
}

.rooms-slider__dot_active {
    background: #c41e3a;
    transform: scale(1.2);
}

.rooms__note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 25px;
}

/* Планшеты */
@media (max-width: 1024px) {
    .rooms-slider {
        padding: 0 40px;
    }

    .rooms-slider__slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .rooms {
        padding: 40px 0;
    }

    .rooms-slider {
        padding: 0 15px;
        margin: 30px auto 0;
    }

    .rooms-slider__track {
        gap: 15px;
    }

    .rooms-slider__slide {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .rooms-slider__nav {
        display: none;
    }

    .rooms__item {
        min-height: 380px;
    }

    .rooms__image {
        height: 160px;
    }

    .rooms__content {
        padding: 18px;
    }

    .rooms__name {
        font-size: 18px;
    }

    .rooms__price-value {
        font-size: 20px;
    }

    .rooms__button {
        padding: 10px 12px !important;
        font-size: 13px !important;
        width: calc(100% - 4px) !important;
    }
}

/* Маленькие мобильные */
@media (max-width: 480px) {
    .rooms-slider {
        padding: 0 10px;
    }

    .rooms-slider__slide {
        flex: 0 0 90%;
        min-width: 240px;
    }

    .rooms__item {
        min-height: 360px;
    }

    .rooms__image {
        height: 140px;
    }

    .rooms__content {
        padding: 15px;
    }

    .rooms__name {
        font-size: 17px;
    }

    .rooms__capacity {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .rooms__features li {
        font-size: 12px;
        padding: 3px 0 3px 20px;
    }

    .rooms__price {
        margin-bottom: 12px;
    }

    .rooms__price-value {
        font-size: 18px;
    }

    .rooms__button {
        padding: 10px 10px !important;
        font-size: 12px !important;
        width: calc(100% - 4px) !important;
    }

    .rooms-slider__dots {
        margin-top: 20px;
    }

    .rooms-slider__dot {
        width: 8px;
        height: 8px;
    }
}

/* =====================================================
   БЛОК ГАРАНТИЙ
   ===================================================== */
.guarantees {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.guarantees__title,
.guarantees__description {
    text-align: center;
    color: #fff !important;
}

.guarantees__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.guarantees__item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.guarantees__item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.guarantees__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guarantees__name {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 10px;
}

.guarantees__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .guarantees__grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .guarantees__item {
        padding: 20px 15px;
    }

    .guarantees__icon {
        font-size: 36px;
    }

    .guarantees__name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guarantees__grid {
        grid-template-columns: 1fr;
    }
}

/* Акцентный цвет для элементов */
.promo__description-label:before,
.steps-item__number:before {
    background: #c41e3a !important;
}

/* =====================================================
   НОВОГОДНИЙ ЛЕНДИНГ 2025-2026
   ===================================================== */

/* Верхняя плашка с таймером */
.topbar {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.topbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar__dates,
.topbar__places {
    font-size: 14px;
}

.topbar__label {
    opacity: 0.8;
    margin-right: 5px;
}

.topbar__value {
    font-weight: bold;
}

.topbar__places-text strong {
    color: #ffd700;
    font-size: 18px;
}

.topbar__countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown__item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 10px;
    border-radius: 5px;
}

.countdown__number {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
}

.countdown__text {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.topbar__button {
    background: #ffd700;
    color: #000;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.topbar__button:hover {
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .topbar__container {
        justify-content: center;
        text-align: center;
    }

    .topbar__countdown {
        width: 100%;
        justify-content: center;
    }
}

/* Hero - кнопки (стили .promo__features перенесены выше) */

/* Секция "Что включено" */
.included {
    padding: 60px 0;
    background: #f8f8f8;
}

.included__title,
.included__description {
    text-align: center;
}

.included__content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.included__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 40px 0;
    text-align: left;
}

.included__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.included__icon {
    color: #28a745;
    font-size: 24px;
    font-weight: bold;
}

.included__text {
    font-size: 16px;
}

.included__button {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
}

.included__extra {
    text-align: center;
    margin: 30px 0 10px;
    padding: 20px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(196, 30, 58, 0.2);
}

.included__extra-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.included__extra-text {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Секция "Программа" */
.program {
    padding: 60px 0;
}

.program__title,
.program__description {
    text-align: center;
}

.program__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.program__tab {
    padding: 15px 40px;
    border: 2px solid #c41e3a;
    background: transparent;
    color: #c41e3a;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
}

.program__tab:hover,
.program__tab_active {
    background: #c41e3a;
    color: #fff;
}

.program__day {
    display: none;
    max-width: 700px;
    margin: 0 auto;
}

.program__day_active {
    display: block;
}

.program__timeline {
    position: relative;
    padding-left: 50px;
    margin-left: 10px;
}

.program__timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #c41e3a, #ffd700);
    border-radius: 2px;
}

.program__event {
    position: relative;
    padding: 20px 0 20px 10px;
    border-bottom: 1px solid #eee;
}

.program__event::before {
    content: "";
    position: absolute;
    left: -52px;
    top: 25px;
    width: 18px;
    height: 18px;
    background: #c41e3a;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c41e3a;
}

.program__event_highlight {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 10px 0;
}

.program__event_highlight::before {
    background: #ffd700;
    box-shadow: 0 0 0 3px #ffd700;
}

.program__time {
    font-size: 14px;
    color: #c41e3a;
    font-weight: bold;
    margin-bottom: 5px;
}

.program__event-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
}

.program__event-desc {
    color: #666;
    margin: 0;
}

.program__event-list {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.program__event-list li {
    margin-bottom: 5px;
    color: #555;
}

.program__button {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
}

/* Секция "Меню банкета" */
.menu-banquet {
    padding: 60px 0;
    background: #f8f8f8;
}

.menu-banquet__title,
.menu-banquet__description {
    text-align: center;
}

.menu-banquet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.menu-banquet__category {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.menu-banquet__category_drinks {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .menu-banquet__category_drinks {
        grid-column: span 1;
    }
}

.menu-banquet__category-title {
    font-size: 18px;
    color: #c41e3a;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.menu-banquet__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-banquet__list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.menu-banquet__list li:last-child {
    border-bottom: none;
}

/* Секция SPA */
.spa {
    padding: 60px 0;
}

.spa__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.spa__item {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.spa__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spa__item-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.spa__item-title {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #333;
}

.spa__item-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.spa__button {
    margin-top: 40px;
}

/* Секция FAQ */
.faq {
    padding: 60px 0;
    background: #f8f8f8;
}

.faq__title,
.faq__description {
    text-align: center;
}

.faq__list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq__item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: all 0.3s;
}

.faq__question:hover {
    background: #f8f8f8;
}

.faq__arrow {
    color: #c41e3a;
    transition: transform 0.3s;
}

.faq__item.active .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in-out;
}

.faq__answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Секция "Спецпредложение" */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffd700' fill-opacity='0.1'/%3E%3C/svg%3E") repeat;
    background-size: 50px 50px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.special-offer__badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.special-offer__title {
    color: #fff !important;
    position: relative;
    z-index: 1;
}

.special-offer__subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.special-offer__hooks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.special-offer__hook {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: left;
    transition: all 0.3s;
}

.special-offer__hook:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.special-offer__hook-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.special-offer__hook-content h4 {
    color: #ffd700;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.special-offer__hook-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.special-offer__cta {
    position: relative;
    z-index: 1;
}

.special-offer__urgency {
    color: #ff6b6b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.special-offer__button {
    font-size: 20px;
    padding: 20px 50px;
}

.special-offer__note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .special-offer {
        padding: 60px 0;
    }

    .special-offer__hooks {
        grid-template-columns: 1fr;
    }

    .special-offer__button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Видео-отзывы с кнопкой Play */
.reviews-item_video {
    position: relative;
    width: 251px;
    height: 446px;
    margin: 0 auto;
}

.reviews-item__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.reviews-item__preview .reviews-item__picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.reviews-item__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}

.reviews-item_video.playing .reviews-item__preview {
    opacity: 0;
    pointer-events: none;
}

.reviews-item_video.playing .reviews-item__video {
    opacity: 1;
    pointer-events: auto;
}

.reviews-item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.reviews-item__play svg {
    width: 30px;
    height: 30px;
    color: #fff;
    margin-left: 4px;
}

.reviews-item__preview:hover .reviews-item__play {
    background: rgba(196, 30, 58, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
}

.reviews-item_video .reviews-item__picture {
    transition: transform 0.3s ease;
}

.reviews-item__preview:hover .reviews-item__picture {
    transform: scale(1.03);
}

/* =====================================================
   QUIZ - Премиальная многошаговая форма (Marquiz-style)
   ===================================================== */

:root {
    --quiz-primary: #c41e3a;
    --quiz-primary-dark: #a01830;
    --quiz-primary-light: #ff4d6d;
    --quiz-success: #10b981;
    --quiz-bg: #1a472a;
    --quiz-bg-dark: #0d2818;
    --quiz-text: #1f2937;
    --quiz-text-light: #6b7280;
    --quiz-border: #e5e7eb;
    --quiz-border-hover: #d1d5db;
    --quiz-white: #ffffff;
    --quiz-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --quiz-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --quiz-radius: 16px;
    --quiz-radius-lg: 24px;
    --quiz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz {
    padding: 80px 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.quiz::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.quiz::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quiz__wrapper {
    width: 100%;
    max-width: 100%;
    background: var(--quiz-white);
    border-radius: var(--quiz-radius-lg);
    padding: 48px 56px 56px;
    box-shadow: var(--quiz-shadow);
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Прогресс-бар */
.quiz__progress {
    height: 6px;
    background: #f3f4f6;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}

.quiz__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--quiz-primary) 0%, var(--quiz-primary-light) 100%);
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.quiz__progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.quiz__progress-text {
    text-align: center;
    font-size: 13px;
    color: var(--quiz-text-light);
    margin-bottom: 32px;
    font-weight: 500;
}

.quiz__progress-text span {
    color: var(--quiz-primary);
    font-weight: 600;
}

/* Контент шагов */
.quiz__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Шаги */
.quiz__step {
    display: none;
    text-align: center;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    animation: quizFadeIn 0.4s ease-out;
    width: 100%;
}

.quiz__step_active {
    display: flex;
}

.quiz__step > * {
    width: 100%;
    max-width: 800px;
}

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

.quiz__step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
}

.quiz__step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--quiz-text);
    margin: 0 0 12px;
    line-height: 1.3;
}

.quiz__step-desc {
    font-size: 16px;
    color: var(--quiz-text-light);
    margin: 0 auto 32px;
    line-height: 1.6;
    max-width: 480px;
}

/* Кнопка старт */
.quiz__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--quiz-white);
    background: linear-gradient(135deg, var(--quiz-primary) 0%, var(--quiz-primary-dark) 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--quiz-transition);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.4);
    position: relative;
    overflow: hidden;
}

.quiz__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.quiz__btn:hover::before {
    left: 100%;
}

.quiz__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.45);
}

.quiz__btn:active {
    transform: translateY(0);
}

.quiz__btn_start {
    padding: 20px 48px;
    font-size: 17px;
}

.quiz__btn_submit {
    width: 100%;
    max-width: 360px;
    padding: 20px 32px;
}

/* Опции выбора */
.quiz__options {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 32px;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.quiz__option {
    cursor: pointer;
    position: relative;
    width: 100% !important;
    min-width: 0;
    display: block !important;
}

.quiz__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz__option-box {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-width: 100% !important;
    height: 80px;
    padding: 20px 24px;
    background: var(--quiz-white);
    border: 2px solid var(--quiz-border);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--quiz-text);
    transition: var(--quiz-transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box !important;
}

.quiz__option:hover .quiz__option-box {
    border-color: var(--quiz-primary);
    background: #fef2f4;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.12);
    transform: translateY(-2px);
}

.quiz__option input:checked + .quiz__option-box {
    border-color: var(--quiz-primary);
    background: var(--quiz-primary);
    color: var(--quiz-white);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
    transform: translateY(-2px);
}

.quiz__option input:checked + .quiz__option-box::before {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--quiz-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--quiz-white);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

/* Множественный выбор - возраст детей */
.quiz__options_multi {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 20px;
}

.quiz__options_multi .quiz__option-box {
    height: 80px;
    font-size: 18px;
}

/* Карточки номеров */
.quiz__options_rooms {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
}

.quiz__option_room {
    width: 100%;
}

.quiz__option_room .quiz__option-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 !important;
    height: auto !important;
    min-width: 100% !important;
    overflow: hidden;
    border-radius: var(--quiz-radius);
}

.quiz__room-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    display: block !important;
    transition: transform 0.4s ease;
}

.quiz__option_room:hover .quiz__room-img {
    transform: scale(1.05);
}

.quiz__room-info {
    display: block !important;
    padding: 18px 20px;
    text-align: left;
    background: var(--quiz-white);
}

.quiz__room-name {
    display: block !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--quiz-text);
    transition: color 0.3s;
}

.quiz__room-desc {
    display: block !important;
    font-size: 14px;
    color: var(--quiz-text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.quiz__option_room input:checked + .quiz__option-box .quiz__room-name,
.quiz__option_room input:checked + .quiz__option-box .quiz__room-desc {
    color: var(--quiz-white);
}

/* Поля ввода */
.quiz__input {
    width: 100%;
    max-width: 320px;
    height: 60px;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 500;
    border: 2px solid var(--quiz-border);
    border-radius: 12px;
    background: var(--quiz-white);
    transition: var(--quiz-transition);
    box-sizing: border-box;
    text-align: center;
    color: var(--quiz-text);
    margin: 0 auto;
    display: block;
}

.quiz__input:focus {
    outline: none;
    border-color: var(--quiz-primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.quiz__input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Кастомный календарь */
.quiz__calendar {
    max-width: 420px;
    margin: 24px auto 0;
    background: var(--quiz-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quiz__calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.quiz__calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--quiz-text);
    text-transform: capitalize;
}

.quiz__calendar-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quiz-text);
    transition: var(--quiz-transition);
}

.quiz__calendar-nav:hover {
    background: var(--quiz-primary);
    color: var(--quiz-white);
}

.quiz__calendar-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quiz__calendar-nav:disabled:hover {
    background: #f3f4f6;
    color: var(--quiz-text);
}

.quiz__calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.quiz__calendar-weekdays span {
    font-size: 12px;
    font-weight: 600;
    color: var(--quiz-text-light);
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz__calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.quiz__calendar-day {
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--quiz-text);
    cursor: pointer;
    transition: var(--quiz-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz__calendar-day:hover:not(:disabled):not(.quiz__calendar-day_empty) {
    background: #fef2f2;
    color: var(--quiz-primary);
}

.quiz__calendar-day_today {
    background: #f3f4f6;
    font-weight: 700;
}

.quiz__calendar-day_selected {
    background: var(--quiz-primary) !important;
    color: var(--quiz-white) !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    transform: scale(1.05);
}

.quiz__calendar-day_disabled,
.quiz__calendar-day:disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: transparent;
}

.quiz__calendar-day_empty {
    visibility: hidden;
}

.quiz__calendar-day_weekend {
    color: var(--quiz-primary-light);
}

.quiz__calendar-day_weekend:disabled {
    color: #f5c2c7;
}

/* Форма контактов */
.quiz__form {
    margin-top: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.quiz__form-group {
    margin-bottom: 16px;
}

.quiz__form .quiz__input {
    text-align: left;
    max-width: 100%;
}

.quiz__privacy {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
    line-height: 1.5;
}

.quiz__privacy a {
    color: var(--quiz-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.quiz__privacy a:hover {
    opacity: 0.8;
}

.form__policy_error .form__policy-text {
    color: #ef4444;
}

.form__policy_error .form__radio + .form__radio-label:before {
    border-color: #ef4444;
}

/* Навигация */
.quiz__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.quiz__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--quiz-text-light);
    background: #f9fafb;
    border: 1px solid var(--quiz-border);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--quiz-transition);
}

.quiz__back:hover {
    color: var(--quiz-text);
    background: #f3f4f6;
    border-color: var(--quiz-border-hover);
}

.quiz__back svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.quiz__back:hover svg {
    transform: translateX(-2px);
}

.quiz__nav .quiz__btn_next {
    padding: 12px 24px;
    font-size: 14px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

/* Экран успеха */
.quiz__step[data-step="8"] {
    padding: 40px 0;
}

.quiz__step[data-step="8"] .quiz__step-icon {
    font-size: 80px;
    animation: quizCelebrate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes quizCelebrate {
    0% {
        transform: scale(0) rotate(-10deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Десктоп - принудительные стили для больших экранов */
@media (min-width: 1025px) {
    .quiz__options {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px !important;
        gap: 20px !important;
    }

    .quiz__option-box {
        height: 80px !important;
        font-size: 18px !important;
    }

    .quiz__options_multi {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px !important;
        gap: 20px !important;
    }

    .quiz__options_multi .quiz__option-box {
        height: 80px !important;
        font-size: 18px !important;
    }

    .quiz__options_rooms {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px !important;
        gap: 20px !important;
    }

    .quiz__room-img {
        height: 180px !important;
    }

    .quiz__calendar {
        max-width: 420px !important;
    }
}

/* Планшеты */
@media (max-width: 1024px) {
    .quiz {
        padding: 60px 0;
    }

    .quiz__wrapper {
        padding: 40px 40px 48px;
        min-height: 480px;
    }

    .quiz__options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        gap: 14px;
    }

    .quiz__option-box {
        height: 70px;
        font-size: 17px;
    }

    .quiz__options_multi {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
    }

    .quiz__options_rooms {
        grid-template-columns: 1fr 1fr;
        max-width: 480px;
    }
}

/* Маленькие планшеты */
@media (max-width: 768px) {
    .quiz {
        padding: 40px 0;
    }

    .quiz::before,
    .quiz::after {
        display: none;
    }

    .quiz .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .quiz__wrapper {
        margin: 0 16px;
        padding: 32px 24px 40px;
        border-radius: 20px;
        min-height: 440px;
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
    }

    .quiz__progress {
        height: 5px;
    }

    .quiz__progress-text {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .quiz__step-icon {
        font-size: 52px;
        margin-bottom: 16px;
    }

    .quiz__step-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .quiz__step-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .quiz__btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .quiz__btn_start {
        padding: 18px 36px;
        font-size: 16px;
    }

    .quiz__options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        width: 100%;
    }

    .quiz__option-box {
        height: 64px;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .quiz__options_multi {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
        gap: 12px;
    }

    .quiz__options_multi .quiz__option-box {
        height: 60px;
        font-size: 15px;
    }

    .quiz__options_rooms {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        width: 100%;
        gap: 12px;
    }

    .quiz__room-img {
        height: 100px;
    }

    .quiz__room-info {
        padding: 14px 16px;
    }

    .quiz__room-name {
        font-size: 15px;
    }

    .quiz__room-desc {
        font-size: 12px;
    }

    .quiz__input {
        height: 54px;
        font-size: 16px;
        max-width: 100%;
        border-radius: 10px;
    }

    .quiz__form {
        max-width: 100%;
        width: 100%;
    }

    .quiz__step > * {
        max-width: 100%;
    }

    .quiz__btn_submit {
        padding: 18px 24px;
        font-size: 15px;
    }

    .quiz__nav {
        padding-top: 20px;
        margin-top: 24px;
    }

    .quiz__back {
        padding: 10px 14px;
        font-size: 13px;
    }

    .quiz__nav .quiz__btn_next {
        padding: 10px 20px;
        font-size: 13px;
    }

    .quiz__step[data-step="8"] .quiz__step-icon {
        font-size: 64px;
    }

    .quiz__calendar {
        max-width: 100%;
        width: 100%;
        padding: 16px;
    }

    .quiz__calendar-month {
        font-size: 16px;
    }

    .quiz__calendar-nav {
        width: 36px;
        height: 36px;
    }

    .quiz__calendar-day {
        font-size: 14px;
    }
}

/* Мобильные */
@media (max-width: 480px) {
    .quiz {
        padding: 24px 0;
    }

    .quiz::before,
    .quiz::after {
        display: none;
    }

    .quiz .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .quiz__wrapper {
        margin: 20px 12px;
        padding: 24px 16px 32px;
        border-radius: 16px;
        min-height: 400px;
        max-width: calc(100vw - 24px);
    }

    .quiz__step-icon {
        font-size: 44px;
        margin-bottom: 12px;
    }

    .quiz__step-title {
        font-size: 19px;
    }

    .quiz__step-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .quiz__options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .quiz__option-box {
        height: 58px;
        font-size: 15px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .quiz__option input:checked + .quiz__option-box::before {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }

    .quiz__options_multi {
        max-width: 100%;
        width: 100%;
    }

    .quiz__options_multi .quiz__option-box {
        height: 54px;
        font-size: 14px;
    }

    .quiz__options_rooms {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }

    .quiz__room-img {
        height: 110px;
    }

    .quiz__room-info {
        padding: 12px 14px;
    }

    .quiz__input {
        height: 50px;
        font-size: 15px;
        max-width: 100%;
    }

    .quiz__form {
        max-width: 100%;
        width: 100%;
    }

    .quiz__step > * {
        max-width: 100%;
    }

    .quiz__form .quiz__input {
        max-width: 100%;
    }

    .quiz__privacy {
        font-size: 11px;
    }

    .quiz__btn_start {
        padding: 16px 32px;
        font-size: 15px;
    }

    .quiz__btn_submit {
        padding: 16px 20px;
        font-size: 14px;
    }

    .quiz__nav {
        padding-top: 16px;
        margin-top: 20px;
    }

    .quiz__back {
        padding: 8px 12px;
        font-size: 12px;
    }

    .quiz__back svg {
        width: 14px;
        height: 14px;
    }

    .quiz__nav .quiz__btn_next {
        padding: 8px 16px;
        font-size: 12px;
    }

    .quiz__calendar {
        max-width: 100%;
        width: 100%;
        padding: 14px;
        margin-top: 16px;
    }

    .quiz__calendar-header {
        margin-bottom: 14px;
    }

    .quiz__calendar-month {
        font-size: 15px;
    }

    .quiz__calendar-nav {
        width: 32px;
        height: 32px;
    }

    .quiz__calendar-nav svg {
        width: 16px;
        height: 16px;
    }

    .quiz__calendar-weekdays span {
        font-size: 10px;
        padding: 6px 0;
    }

    .quiz__calendar-day {
        font-size: 13px;
        border-radius: 8px;
    }
}

/* =====================================================
   БЛОК ЦИТАТ ИЗ ОТЗЫВОВ
   ===================================================== */
.testimonials {
    padding: 60px 0;
    background: #fff;
}

.testimonials__title,
.testimonials__description {
    text-align: center;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.testimonials__item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #c41e3a;
    transition: all 0.3s ease;
}

.testimonials__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonials__stars {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials__text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 15px;
    font-style: italic;
}

.testimonials__author {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.testimonials__link {
    text-align: center;
    margin-top: 35px;
}

.testimonials__button {
    display: inline-block;
    color: #c41e3a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #c41e3a;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.testimonials__button:hover {
    background: #c41e3a;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials__item {
        padding: 25px 20px;
    }

    .testimonials__text {
        font-size: 14px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .quiz__wrapper {
        margin: 0 8px;
        padding: 20px 12px 28px;
        max-width: calc(100vw - 16px);
    }

    .quiz__options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 8px;
        width: 100%;
    }

    .quiz__option-box {
        height: 52px;
        font-size: 13px;
        padding: 10px 8px;
    }

    .quiz__step-title {
        font-size: 17px;
    }

    .quiz__step > * {
        max-width: 100%;
    }

    .quiz__calendar {
        max-width: 100%;
        padding: 12px;
        width: 100%;
    }

    .quiz__calendar-day {
        font-size: 12px;
    }

    .quiz__form {
        max-width: 100%;
        width: 100%;
    }

    .quiz__input {
        max-width: 100%;
    }

    .quiz__options_rooms,
    .quiz__options_multi {
        max-width: 100%;
        width: 100%;
    }
}

/* =====================================================
   МОДАЛЬНОЕ ОКНО ОНЛАЙН-БРОНИРОВАНИЯ (ОТДЕЛЬНОЕ)
   ===================================================== */

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

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

.booking-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ПК - большое окно по центру */
.booking-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    max-width: 1200px;
    height: 95vh;
    max-height: 95vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: bookingModalIn 0.3s ease-out;
    -webkit-overflow-scrolling: touch;
}

@keyframes bookingModalIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.booking-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s ease;
    z-index: 10;
}

.booking-modal__close:hover {
    background: #c41e3a;
    color: #fff;
    transform: rotate(90deg);
}

.booking-modal__header {
    padding: 25px 70px 20px 30px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.booking-modal__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.booking-modal__subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.booking-modal__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 30px;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.booking-modal__widget {
    width: 100%;
    min-height: 700px;
    border-radius: 12px;
    overflow: visible;
    background: #f9f9f9;
}

.booking-modal__widget iframe {
    width: 100% !important;
    min-height: 700px !important;
    border: none !important;
    display: block;
}

.booking-modal__footer {
    padding: 16px 30px;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}

.booking-modal__phone {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin: 0;
}

.booking-modal__phone a {
    color: #c41e3a;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.2s;
}

.booking-modal__phone a:hover {
    color: #a01830;
}

/* ПЛАНШЕТЫ - полный экран */
@media (max-width: 1024px) {
    .booking-modal__container {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

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

    .booking-modal__header {
        padding: 20px 60px 15px 20px;
    }

    .booking-modal__title {
        font-size: 24px;
    }

    .booking-modal__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .booking-modal__body {
        padding: 15px 20px;
    }

    .booking-modal__widget {
        min-height: 500px;
    }

    .booking-modal__widget iframe {
        min-height: 500px !important;
    }
}

/* МОБИЛЬНЫЕ - полный экран */
@media (max-width: 768px) {
    .booking-modal__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .booking-modal__header {
        padding: 15px 55px 12px 15px;
    }

    .booking-modal__title {
        font-size: 20px;
    }

    .booking-modal__subtitle {
        font-size: 14px;
    }

    .booking-modal__body {
        padding: 10px 15px;
    }

    .booking-modal__widget {
        min-height: 400px;
        border-radius: 8px;
    }

    .booking-modal__widget iframe {
        min-height: 400px !important;
    }

    .booking-modal__footer {
        padding: 12px 15px;
    }

    .booking-modal__phone {
        font-size: 13px;
    }

    .booking-modal__phone a {
        font-size: 16px;
        display: block;
        margin: 5px 0 0;
    }
}

/* МАЛЕНЬКИЕ МОБИЛЬНЫЕ */
@media (max-width: 480px) {
    .booking-modal__close {
        width: 36px;
        height: 36px;
    }

    .booking-modal__close svg {
        width: 20px;
        height: 20px;
    }

    .booking-modal__header {
        padding: 12px 45px 10px 12px;
    }

    .booking-modal__title {
        font-size: 18px;
    }

    .booking-modal__subtitle {
        font-size: 13px;
    }

    .booking-modal__body {
        padding: 8px 10px;
    }

    .booking-modal__widget {
        min-height: 350px;
    }

    .booking-modal__widget iframe {
        min-height: 350px !important;
    }

    .booking-modal__footer {
        padding: 10px;
    }
}

.wellcomeai-voicyfy-container {
    display: none;
}
