/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

@font-face {
    font-family: Tangerine;
    src: url('../maxFil-fonts/maxFil-tangerine.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('../maxFil-fonts/maxFil-inter.woff2') format('woff2');
    font-display: swap;
}

.body_maxFil {
    background-color: #FFFBEF;
    color: #000000B2;
    overflow-x: hidden;
    font-family: Inter, sans-serif;
    line-height: 1.6;
}

.container_maxFil {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp_maxFil {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse_maxFil {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.reveal_maxFil {
    opacity: 0;
    transition: 0.8s ease-out;
}

.reveal_maxFil.active_maxFil {
    opacity: 1;
    animation: fadeInUp_maxFil 0.8s ease-out forwards;
}

/* --- HEADER --- */
.header_maxFil {
    background: #FFFBEF;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: 0.3s;
}

.header_maxFil__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_maxFil {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav_maxFil__list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav_maxFil__link {
    text-decoration: none;
    font-family: Inter;
    font-size: 16px;
    color: #000000;
    transition: 0.3s;
    position: relative;
}

.nav_maxFil__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #c0173d;
    transition: 0.3s;
}

.nav_maxFil__link:hover {
    color: #A5432E;
}

.nav_maxFil__link:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn_maxFil {
    padding: 16px 0px;
    border-radius: 6px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 110.00000000000001%;
    cursor: poInter;
    transition: 0.3s;
    border: none;
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.btn_maxFil--primary {
    background: #FFFBEF;
    color: #A5432E;
    box-shadow: 0 4px 15px rgba(192, 23, 61, 0.2);
}

.btn_maxFil--primary2 {
    background: #A5432E;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(192, 23, 61, 0.2);
}

.btn_maxFil--primary:hover {
    background: #A1ADFF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 23, 61, 0.4);
}

.btn_maxFil--primary2:hover {
    background: #A1ADFF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 23, 61, 0.4);
}

.btn_maxFil--outline {
    background: transparent;
    border: 1px solid #BB133D;
    color: #fff;
}

.btn_maxFil--outline:hover {
    background: #BB133D;
    transform: translateY(-2px);
}

/* --- HERO & BACKGROUNDS --- */
.hero_maxFil {
    text-align: center;
    background: #A5432E;
}

.about_maxFil {
    background-image: url('../maxFil-img/maxFil-aboutback.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 550px;
}

.pg3_maxFil {
    background-image: url('../maxFil-img/maxFil-pg3.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 550px;
}

.hero-cont {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 1086px;
    margin: 0 auto;
}

.about-cont {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    height: 550px;
    display: flex;
    justify-content: center;
}

.cookie-cont {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 1086px;
    margin: 0 auto;
}

.hotel-pic {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
}

.section-top_maxFil {
    font-family: Inter;
    font-size: 26px;
    text-transform: uppercase;
    color: #A1ADFF;
}

.section-top_maxFil2 {
    font-family: Inter;
    font-size: 20px;
    text-transform: uppercase;
    color: #A1ADFF;
}

.hero_maxFil__title {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 84px;
    line-height: 95%;
    text-align: center;
    color: #F2F1EF;
}

.hero_maxFil__desc {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    text-align: center;
    color: #F2F1EF;
    max-width: 730px;
}

.ab-pic {
    width: 100%;
    object-fit: cover;
}


/* --- CARDS & GRID --- */
.section-head_maxFil {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-head_maxFil-ab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.hot-p {
    max-width: 630px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    text-align: right;
    color: #00000099;
}

.hot-p-ab {
    max-width: 630px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    text-align: center;
    color: #00000099;
}

.section-title_maxFil {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 55px;
    line-height: 95%;
    text-align: center;
    color: #A5432E;
}

.section-title_maxFil-fig {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 55px;
    line-height: 95%;
    text-align: center;
    color: #FFFBEF;
}

.section-text_maxFil {
    max-width: 305px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #000000B2;
}

.desc-ab {
    display: flex;
    gap: 20px;
}

.benefits_maxFil,
.steps_maxFil,
.cta_maxFil {
    padding: 120px 0 0 0;
}

.title-sec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-sec-fig {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-bottom: 30px;
}

.title-sec-ex {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.benefits_maxFil__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
}

.card_maxFil {
    border: 1px solid #3C4794;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(11, 13, 27, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card_maxFil:hover {
    transform: translateY(-10px);
    border-color: #c0173d;
    box-shadow: 0 10px 20px rgba(192, 23, 61, 0.2);
}

.card_maxFil img {
    width: 60px;
    transition: 0.3s;
}

.card_maxFil:hover img {
    transform: rotate(5deg) scale(1.1);
}

.steps_maxFil__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    max-width: 610px;
}

.step-card_maxFil {
    border: 1px solid #3C4794;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(11, 13, 27, 0.5);
}

.step-card_maxFil:hover {
    background: rgba(60, 71, 148, 0.2);
    border-color: #A1ADFF;
}

.step-card_maxFil__num {
    font-family: Tangerine;
    font-size: 50px;
    color: #BB133D;
    line-height: 1;
}

/* --- FORMS & MODALS (FIXED STYLES) --- */
.overlay_maxFil {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.overlay_maxFil.active {
    display: flex;
    animation: fadeIn_maxFil 0.3s ease;
}

@keyframes fadeIn_maxFil {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-wrapper_maxFil {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.modal-close_maxFil {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: poInter;
}

.auth-card_maxFil {
    background-color: #050714;
    border: 1px solid #1a1e3a;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay_maxFil.active .auth-card_maxFil {
    transform: scale(1);
}

.auth-card_maxFil__title {
    font-family: Inter;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.input_maxFil {
    width: 100%;
    background-color: transparent;
    border: 1px solid #3C4794;
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: Inter;
    font-size: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.input_maxFil:focus {
    border-color: #c0173d;
    box-shadow: 0 0 10px rgba(192, 23, 61, 0.15);
}

.input_maxFil::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit_maxFil {
    width: 100%;
    background-color: #c0173d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: Inter;
    font-size: 16px;
    cursor: poInter;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit_maxFil:hover {
    background-color: #9b1231;
    transform: translateY(-2px);
}

.auth-switch_maxFil {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
}

.auth-switch_maxFil button {
    background: none;
    border: none;
    color: #fff;
    font-family: Tangerine;
    cursor: poInter;
    padding-left: 5px;
}

.auth-switch_maxFil button:hover {
    text-decoration: underline;
}

.form-msg_maxFil {
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    font-family: Inter;
}

/* --- AGE & FOOTER --- */
.age-check_maxFil {
    position: fixed;
    inset: 0;
    background: #050811;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.age-check_maxFil__content {
    text-align: center;
    padding: 30px;
    animation: fadeInUp_maxFil 0.6s ease;
}

.age-check_maxFil h2 {
    font-family: Tangerine;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer_maxFil {
    padding: 60px 0 30px;
    background: #A5432E;
}

.footer_maxFil__top {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
}

.footer_maxFil__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_maxFil__link {
    color: #A1ADFF;
    text-decoration: none;
    transition: 0.3s;
}

.footer_maxFil__link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(161, 173, 255, 0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .burger_maxFil {
        display: flex;
    }

    .nav_maxFil {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #050811;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        display: flex;
        z-index: 100;
    }

    .nav_maxFil.active {
        right: 0;
    }

    .nav_maxFil__list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .benefits_maxFil__grid,
    .steps_maxFil__grid {
        grid-template-columns: 1fr;
    }

    .header_maxFil__auth {
        flex-direction: column;
        width: 80%;
    }

    .footer_maxFil__top {
        flex-direction: column;
    }
}

body.lock_maxFil {
    overflow: hidden;
}

.age-check_maxFil__content p {
    padding-bottom: 20px;
}

.header_maxFil__auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.works-cont {
    display: flex;
    gap: 20px;
}

.step-card_maxFil {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-card_maxFil h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-block button {
    margin-top: 20px;
}

.footer_maxFil__bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_maxFil__bottom p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFFCC;
}

.age_maxFil {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #BB133D;
}

.footer_maxFil__info {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_maxFil__info p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFCC;
}

.footer_maxFil__info2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_maxFil__info2 h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: capitalize;
}

.footer_maxFil__info2 p {
    padding-bottom: 10px;
    color: #FFFFFFCC;
}

.card_maxFil h2 {
    padding-bottom: 10px;
}

/* --- BURGER STYLES --- */
.burger_maxFil {
    display: none;
    /* Скрыт на десктопе */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: poInter;
    z-index: 1001;
    /* Поверх всего */
    padding: 0;
}

.burger-line_maxFil {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #282828;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Анимация превращения в крестик (когда у кнопки класс active) */
.burger_maxFil.active .burger-line_maxFil:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger_maxFil.active .burger-line_maxFil:nth-child(2) {
    opacity: 0;
}

.burger_maxFil.active .burger-line_maxFil:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 992px) {
    .burger_maxFil {
        display: flex;
        /* Показываем на мобилках */
    }

    .nav_maxFil {
        position: fixed;
        top: 0;
        right: -100%;
        /* Спрятан за экраном справа */
        width: 100%;
        height: 100vh;
        background-color: #FFF;
        /* Темный фон меню */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 40px;
    }

    /* Когда меню открыто */
    .nav_maxFil.active {
        right: 0;
    }

    .nav_maxFil__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav_maxFil__link {
        font-size: 24px;
        /* Увеличиваем ссылки для удобства нажатия */
    }

    .header_maxFil__auth {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .btn_maxFil {
        width: 100%;
    }
}

.ab-p {
    padding-bottom: 10px;
}

.ab-t {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.ab-gr {
    padding-bottom: 20px;
}

.ab-p-down {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 10px;
    color: #FFFFFFCC;
}

/* --- CONTACT SECTION --- */
.contact_maxFil {
    padding-top: 70px;
}

.contact-form-block_maxFil {
    width: 100%;
    max-width: 715px;
}

.contact-wrapper_maxFil {
    display: flex;
    gap: 20px;
    padding: 20px 0 50px 0;
}

.contact-form_maxFil {
    display: flex;
    flex-direction: column;
}

.textarea_maxFil {
    min-height: 150px;
    resize: none;
}

.checkbox-group_maxFil {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-group_maxFil input {
    width: 20px;
    height: 20px;
    cursor: poInter;
    accent-color: #c0173d;
}

.checkbox-group_maxFil label {
    font-size: 14px;
    color: #FFFFFFCC;
    cursor: poInter;
    line-height: 1.4;
}

.w-100_maxFil {
    width: 100%;
}

/* --- CONTACT INFO --- */
.contact-info-list_maxFil {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item_maxFil {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item_maxFil p {
    font-family: Inter;
    font-size: 16px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .contact-wrapper_maxFil {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/* --- POLICY PAGE STYLES --- */
.policy-hero_maxFil {
    padding: 60px 0;
    text-align: left;
}

.policy-content_maxFil {
    padding: 60px 0 100px 0;
}

.policy-text_maxFil {
    max-width: 900px;
}

.policy-text_maxFil h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    word-break: break-all;
}

.policy-text_maxFil ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.policy-text_maxFil ul li {
    margin-bottom: 10px;
}

.policy-text_maxFil strong {
    color: #fff;
    font-family: Tangerine;
}

/* Переопределение для адекватного отображения списков */
.policy-text_maxFil .ab-p-down {
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .policy-hero_maxFil {
        padding: 40px 0;
    }

    .ab-t {
        font-size: 32px;
    }
}

/* --- HOTELS LIST --- */
.hotels-list_maxFil {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    list-style: none;
    margin-top: 50px;
    padding: 0;
}

.hotels-list_maxFil-ab {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin-top: 50px;
    padding: 0;
}

.hotel-card_maxFil {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hotel-card_maxFil-ab {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    display: flex;
}

.hotel-card_maxFil:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hotel-img-box_maxFil {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.hotel-img-box_maxFil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-card_maxFil:hover .hotel-img-box_maxFil img {
    transform: scale(1.08);
}

.hotel-info_maxFil {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-row_maxFil {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.hotel-name_maxFil {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #A5432E;
}

.hotel-name_maxFil {
    font-size: 16px;
}

.hotel-info_maxFil {
    padding: 15px;
}

.hotel-info_maxFil-ab {
    padding: 20px;
    max-width: 630px;
}

.vis-ab {
    padding-bottom: 120px;
}

.hotel-rating_maxFil {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    color: #000000B2;
}

.hotel-rating_maxFil img {
    width: 19px;
    height: 19px;
}

.tag_maxFil {
    padding: 8px 10px;
}

.hotel-location_maxFil {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.hotel-text_maxFil {
    font-size: 13px;
    color: #00000099;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.hotel-tags_maxFil {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    margin-top: auto;
}

.tag_maxFil {
    font-size: 12px;
    padding: 6px 12px;
    background: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    color: #666;
}

.hotel-footer_maxFil {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #F0F0F0;
}

.hotel-price_maxFil {
    font-size: 14px;
    font-weight: 700;
    color: #A5432E;
}

.hotel-price_maxFil span {
    font-size: 18px;
}

.btn-book_maxFil {
    background: #A5432E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-book_maxFil:hover {
    background: #8e3825;
}

/* --- RESPONSIVE HOTELS --- */
@media (max-width: 1024px) {
    .hotels-list_maxFil {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 666px) {
    .hotels-list_maxFil {
        grid-template-columns: 1fr;
    }

    .hotel-img-box_maxFil {
        height: 300px;
    }
}

/* --- KEY FIGURES SECTION --- */
.stats_maxFil {
    background-color: #A5432E;
    padding: 40px 0;
    overflow: hidden;
    margin-top: 120px;
}

.stats-main-title_maxFil {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 64px;
    color: #F2F1EF;
    text-align: center;
    margin-bottom: 60px;
}

.stats-content_maxFil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-grid_maxFil {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    list-style: none;
}

.stat-item_maxFil {
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-item_maxFil:hover {
    transform: scale(1.05);
}

.stat-num_maxFil {
    font-family: Tangerine;
    font-weight: 700;
    font-style: Bold;
    font-size: 55px;
    line-height: 95%;
    letter-spacing: -2%;
    text-align: center;
    color: #FFFBEF;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-num_maxFil-ab {
    font-family: Tangerine;
    font-weight: 700;
    font-style: Bold;
    font-size: 55px;
    line-height: 95%;
    letter-spacing: -2%;
    text-align: center;
    color: #A5432E;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-desc_maxFil {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    text-align: center;
    color: #FFFBEF99;
    max-width: 305px;
}

/* Illustration Effects */
.stats-illustration_maxFil {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    animation: float_maxFil 4s ease-in-out infinite;
}

.stats-illustration_maxFil img {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.2));
}

/* Floating animation for the porter */
@keyframes float_maxFil {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- RESPONSIVE STATS --- */
@media (max-width: 992px) {
    .stats-content_maxFil {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hotel-card_maxFil-ab {
        flex-direction: column;
    }

    .hotel-info_maxFil-ab {
        max-width: 100%;
    }

    .stats-grid_maxFil {
        order: 2;
    }

    .stats-illustration_maxFil {
        order: 1;
        margin-bottom: 40px;
        flex: none;
    }
}

@media (max-width: 666px) {
    .stats-grid_maxFil {
        gap: 10px;
    }

    .stats-main-title_maxFil {
        font-size: 48px;
    }

    .stat-num_maxFil {
        font-size: 40px;
    }
}

/* --- EXCEPTIONAL STAYS SECTION --- */
.features_maxFil {
    background-color: #FFFBEF;
    padding: 120px 0 0 0;
}

.features_maxFil-ab {
    background-color: #FFFBEF;
    padding: 120px 0;
}

.features_maxFil-pg3 {
    background-color: #FFFBEF;
    padding: 120px 0 0 0;
}

.features-header_maxFil {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
}

.features-main-title_maxFil {
    font-family: Tangerine;
    font-weight: 700;
    font-size: 60px;
    color: #A5432E;
    margin-bottom: 20px;
    line-height: 1;
}

.features-sub-text_maxFil {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    text-align: center;
    color: #00000099;
    max-width: 730px;
}

.features-list_maxFil {
    list-style: none;
    padding: 0;
    border-top: 1px solid #00000026;
}

.feature-item_maxFil {
    display: grid;
    grid-template-columns: 197px 1fr 1.5fr;
    gap: 20px;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid #00000026;
    transition: all 0.4s ease;
    cursor: default;
}

/* Hover Effect: Строка плавно меняет фон и "приподнимается" */
.feature-item_maxFil:hover {
    background-color: rgba(165, 67, 46, 0.03);
    transform: translateX(10px);
}

.feature-icon_maxFil {
    display: flex;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon_maxFil img {
    max-width: 197px;
    height: 120px;
    object-fit: cover;
}

/* Анимация иконки при наведении на строку */
.feature-item_maxFil:hover .feature-icon_maxFil {
    transform: scale(1.1) rotate(5deg);
}

.feature-title_maxFil {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #A5432E;
}

.feature-desc_maxFil {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #000000B2;
}

/* --- RESPONSIVE FEATURES --- */
@media (max-width: 992px) {
    .feature-item_maxFil {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }


    .features-main-title_maxFil {
        font-size: 48px;
    }
}

@media (max-width: 666px) {
    .feature-item_maxFil {
        display: flex;
        text-align: center;
        padding: 10px 0px;
        gap: 10px;
    }

    .feature-item_maxFil:hover {
        transform: translateY(-5px);
        /* На мобильных лучше вверх, чем вбок */
    }

    .feature-title_maxFil {
        padding-right: 0;
        font-size: 16px;
    }

    .feature-desc_maxFil {
        font-size: 14px;
    }
}

/* --- REVIEWS SECTION STYLES --- */
.reviews-list_maxFil {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    list-style: none;
    margin: 0;
}

.review-card_maxFil {
    display: flex;
}

.review-item_maxFil {
    background-color: #FFFDF6;
    box-shadow: 0px 4px 8px 0px #00000026;
    /* Начальная светлая обводка */
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* ЭФФЕКТЫ ПРИ НАВЕДЕНИИ */
.review-item_maxFil:hover {
    transform: translateY(-8px);
    border-color: #A5432E;
    /* Яркая акцентная обводка */
    box-shadow: 0 15px 35px rgba(165, 67, 46, 0.15), 0 0 10px rgba(165, 67, 46, 0.1);
}

.review-header_maxFil {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar_maxFil {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #E5E5E5;
    transition: transform 0.4s ease;
}

.review-avatar_maxFil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-item_maxFil:hover .review-avatar_maxFil {
    transform: scale(1.05);
}

.review-name_maxFil {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #A5432E;
    text-transform: uppercase;
}

.review-text_maxFil {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #00000099;
}

/* Дополнительные стили для заголовка секции (title-sec-ex) */
.title-sec-ex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* --- RESPONSIVE REVIEWS --- */
@media (max-width: 1024px) {
    .reviews-list_maxFil {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-list_maxFil {
        grid-template-columns: 1fr;
    }

    .review-item_maxFil {
        padding: 20px;
    }

    .review-avatar_maxFil {
        width: 60px;
        height: 60px;
    }

    .review-name_maxFil {
        font-size: 16px;
    }
}

/* --- CONTACT SECTION STYLES --- */
.contact-sec_maxFil {
    padding: 120px 0;
    background-color: #FFFBEF;
}

.contact-grid_maxFil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items:
        flex-start;
}

.contact-title_maxFil {
    font-family: Tangerine, cursive;
    font-weight: 700;
    font-size: 64px;
    color: #A5432E;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-desc_maxFil {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 110.00000000000001%;
    padding-top: 15px;
    padding-bottom: 30px;
    color: #00000099;
}

.contact-form_maxFil {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group_maxFil input,
.input-group_maxFil textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #00000026;
    border-radius: 10px;
    background-color: #FFFDF6;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #00000099;
    transition: all 0.3s ease;
}

.input-group_maxFil textarea {
    height: 80px;
    resize: none;
}

/* Эффект при клике в поле */
.input-group_maxFil input:focus,
.input-group_maxFil textarea:focus {
    border-color: #A5432E;
    box-shadow: 0 0 8px rgba(165, 67, 46, 0.1);
}

.btn-send_maxFil {
    background-color: transparent;
    border: 1px solid #A5432E;
    color: #A5432E;
    padding: 11px;
    border-radius: 6px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 110.00000000000001%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send_maxFil:hover {
    background-color: #A5432E;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Стили для изображения */
.contact-right_maxFil {
    width: 100%;
    height: 100%;
}

.contact-img-wrapper_maxFil {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-img-wrapper_maxFil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.contact-img-wrapper_maxFil:hover img {
    transform: scale(1.03);
}

/* Стили для сообщения об успехе (настройка цвета под дизайн) */
.form-msg_maxFil {
    font-family: Inter, sans-serif;
    font-weight: 600;
    text-align: center;
}

/* --- RESPONSIVE CONTACT --- */
@media (max-width: 992px) {
    .contact-grid_maxFil {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-title_maxFil {
        font-size: 54px;
        text-align: center;
    }

    .contact-desc_maxFil {
        text-align: center;
    }
}

@media (max-width: 666px) {
    .contact-sec_maxFil {
        padding: 60px 0;
    }

    .contact-title_maxFil {
        font-size: 42px;
    }
}


/* --- FOOTER STYLES --- */
.footer_maxFil {
    background-color: #A5432E;
    color: #F2F1EF;
    padding: 30px 0;
    font-family: Inter, sans-serif;
}

.footer-top_maxFil {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    justify-content: space-between;
}

.footer-logo_maxFil img {
    width: 100%;
    display: block;
}

.footer-title_maxFil {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFBEF;
    padding-bottom: 15px;
}

.footer-list_maxFil {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list_maxFil li {
    margin-bottom: 10px;
}

.footer-link_maxFil {
    text-decoration: none;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    transition: color 0.3s ease;
    color: #F2F1EF99;
}

.footer-col_maxFil {
    width: 100%;
}

.footer-link_maxFil:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact block styles */
.contact-list_maxFil {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item_maxFil {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #F2F1EF99;
}

.contact-item_maxFil-copg {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #00000099;
}

.contact-item_maxFil-copg a {
    text-decoration: none;
    color: #00000099;
    transition: color 0.3s ease;
}

.contact-list_maxFil-co {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
}

.contact-item_maxFil img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-item_maxFil a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-item_maxFil a:hover {
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom_maxFil {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #F2F1EF99;
}

.mob-bl {
    display: none;
}

@media (max-width: 1050px) {
    .footer-col_maxFil {
        width: auto;
    }
}

/* --- MOBILE RESPONSIVE (Matching the 2nd mockup) --- */
@media (max-width: 992px) {
    .desk {
        display: none;
    }

    .footer-top_maxFil {
        flex-direction: column;
    }

    .footer-logo_maxFil img {
        width: auto;
    }

    .footer-top_maxFil {
        grid-template-columns: 1fr;
        /* Stack everything in one column */
        gap: 40px;
        text-align: left;
    }

    .footer-logo_maxFil {
        display: flex;
        justify-content: flex-start;
    }

    .footer-bottom_maxFil {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer_maxFil {
        padding: 40px 0 30px 0;
    }

    .mob-bl {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
}

@media(max-width: 666px) {
    .section-head_maxFil {
        flex-direction: column;
        gap: 20px;
    }

    .feature-icon_maxFil img {
        max-width: 107px;
        height: 120px;
        object-fit: contain;
    }

    .works-cont {
        flex-direction: column;
    }

    .header_maxFil {
        padding: 15px 0px;
    }

    .section-top_maxFil {
        font-size: 20px;
    }

    .hero_maxFil__title {
        font-size: 46px;
    }

    .hero_maxFil__desc {
        font-size: 14px;
    }

    .benefits_maxFil,
    .steps_maxFil,
    .cta_maxFil {
        padding: 60px 0 0 0;
    }

    .section-top_maxFil2 {
        font-size: 18px;
    }

    .section-title_maxFil h2 {
        font-size: 28px;
    }

    .section-text_maxFil p {
        font-size: 14px;
    }

    .card_maxFil img {
        width: 50px;
    }

    .card_maxFil {
        padding: 16px;
    }

    .card_maxFil h2 {
        font-size: 18px;
    }

    .card_maxFil p {
        font-size: 14px;
    }

    .step-card_maxFil__num {
        font-size: 40px;
    }

    .step-card_maxFil h2 {
        font-size: 18px;
    }

    .step-card_maxFil p {
        font-size: 14px;
    }

    .section-title_maxFil {
        font-size: 36px;
    }

    .hot-p {
        text-align: center;
        font-size: 14px;
    }

    .title-sec {
        width: 100%;
        justify-content: center;
        gap: 5px;
    }

    .desc-ab {
        flex-direction: column;
        gap: 0px;
    }

    .about-cont {
        height: 450px;
    }

    .about_maxFil {
        height: 450px;
    }

    .section-text_maxFil {
        max-width: 100%;
        font-size: 14px;
    }

    .ab-pic {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-radius: 10px;
    }

    .footer_maxFil__list {
        justify-content: center;
    }

    .logo_maxFil img {
        max-width: 265px;
    }

    .hero-cont {
        padding-top: 30px;
    }

    .hotel-tags_maxFil {
        gap: 5px !important;
        margin-bottom: 0px !important;
    }

    .hotel-footer_maxFil {
        padding-top: 0px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .stats_maxFil {
        background-color: #A5432E;
        padding: 40px 0;
        overflow: hidden;
        margin-top: 60px;
    }

    .stat-desc_maxFil {
        font-size: 14px;
    }

    .title-sec-fig {
        gap: 5px;
        padding-bottom: 20px;
    }

    .features_maxFil {
        background-color: #FFFBEF;
        padding: 60px 0 0 0;
    }

    .section-title_maxFil-fig {
        font-size: 36px;
    }

    .title-sec-ex {
        gap: 5px;
        margin-bottom: 0px;
    }

    .features-header_maxFil {
        gap: 10px;
        padding-bottom: 20px;
    }

    .pg3_maxFil {
        max-width: 450px;
    }

}

/* --- ADAPTIVE SLIDER STYLES --- */
@media (max-width: 992px) {
    .reviews-slider-container_maxFil {
        width: 100%;
        overflow: hidden;
        /* Скрываем карточки, которые не в фокусе */
        position: relative;
        padding: 20px 0;
    }

    .reviews-list_maxFil {
        display: flex;
        /* Вместо grid на мобилках используем flex для слайдинга */
        flex-wrap: nowrap;
        gap: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        /* Плавность анимации */
        padding-bottom: 20px;
    }

    .review-card_maxFil {
        flex: 0 0 100%;
        /* Каждая карточка занимает 100% ширины экрана */
        width: 100%;
        padding: 0 10px;
        /* Отступы по бокам, чтобы карточки не слипались */
        box-sizing: border-box;
    }

    .review-item_maxFil {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* --- ADAPTIVE HOTEL SLIDER --- */
@media (max-width: 992px) {
    .hotels-slider-container_maxFil {
        width: 100%;
        overflow: hidden;
        /* Скрываем соседние отели */
        position: relative;
        padding: 10px 0;
    }

    .hotels-list_maxFil-ab {
        display: flex !important;
        /* Переключаем с блочного на гибкий для слайдера */
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        margin: 0;
    }

    .hotel-card_maxFil-ab {
        flex: 0 0 100%;
        /* Каждый отель занимает всё окно */
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        box-shadow: none;
        /* Убираем лишние тени в движении */
    }

    .hotel-info_maxFil-ab {
        max-width: 100%;
    }
}

/* --- SLIDER DOTS STYLES --- */
.slider-dots_maxFil {
    display: none;
    /* Скрыты на десктопе */
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-bottom: 20px;
}

.dot_maxFil {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #A5432E;
    /* Цвет из твоего дизайна */
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot_maxFil.active {
    background-color: #A5432E;
    /* Закрашенная точка */
}

/* Показываем только на мобильном адаптивном режиме */
@media (max-width: 992px) {
    .slider-dots_maxFil {
        display: flex;
    }

    /* Убедись, что контейнер слайдера имеет нужные настройки */
    .hotels-slider-container_maxFil {
        overflow: hidden;
    }

    .hotels-list_maxFil-ab {
        display: flex !important;
        transition: transform 0.5s ease-in-out;
    }

    .hotel-card_maxFil-ab {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* --- ABOUT SECTION STYLES --- */
.about-sec_maxFil {
    padding: 120px 0 0 0;
    background-color: #FFFBEF;
}

.about-header_maxFil {
    text-align: center;
    margin-bottom: 50px;
}

.about-main_maxFil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 30px;
    padding-top: 15px;
}

.ab-pg3 {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    color: #000000B2;
}

.about-img-box_maxFil {
    width: 100%;
}

.about-img-box_maxFil img {
    width: 100%;
    max-width: 630px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-text-content_maxFil {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Сетка статистики */
.about-stats-grid_maxFil {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stat-desc_maxFil-ab {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #A5432E99;
    /* Приглушенный красный цвет текста */
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

/* Hover эффекты для статистики */
.about-stats-grid_maxFil .stat-item_maxFil {
    transition: transform 0.3s ease;
}

.about-stats-grid_maxFil .stat-item_maxFil:hover {
    transform: translateY(-5px);
}

/* --- RESPONSIVE ABOUT --- */
@media (max-width: 992px) {
    .about-main_maxFil {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats-grid_maxFil {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 666px) {

    .about-stats-grid_maxFil {
        gap: 10px;
    }

    .about-header_maxFil .section-title_maxFil {
        font-size: 48px;
    }

    .features_maxFil-pg3 {
        background-color: #FFFBEF;
        padding: 60px 0 0 0;
    }
}



/* --- POLICY TEXT STYLES --- */
.policy-content_maxFil {
    padding: 60px 0 100px 0;
}

.policy-content_maxFil p {
    color: #000 !important;
}

.policy-text_maxFil h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #A5432E;
    /* Используем ваш основной цвет */
}

.policy-text_maxFil ul {
    margin-left: 20px;
    margin-bottom: 30px;
    list-style-type: disc;
}

.policy-text_maxFil ul li {
    margin-bottom: 10px;
    color: #000000B2;
}

.policy-text_maxFil strong {
    color: #000000;
}

@media (max-width: 768px) {
    .policy-content_maxFil {
        padding: 40px 0 60px 0;
    }
}