@import url('./animations.css');

@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeue.ttf') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #63AB45;
    --secondary-color: #fff;
    --text-color: #000;
    --body-color: #F1F1F4;
    --muted-color: #6c757d;
    --light-bg: #f8f9fa;
    --success-bg: #63AB45;
    --success-bg-opacity: rgba(99, 171, 69, 0.75);
    --btn-hover: #51913a;
    --btn-outline: #63AB45;
    --btn-outline-bg: #fff;
    --btn-outline-hover-bg: #e8f5e9;
    --btn-outline-hover: #51913a;
    --border-radius: 20px;
    --font-family: 'Arial', sans-serif;
}

.booking-form-input {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.modal:not(.nav-modal) {
    border-radius: 20px;
}


input:focus, input:focus-visible, input:focus-within {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 .25rem rgba(99, 171, 69, .25) !important;
}

a:hover, a:focus {
    text-decoration: none !important;
}

body {
    overflow-x: hidden;
}

main {
    min-height: 50vh;
    overflow-x: hidden;
}
.clamp-5-lines {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 112.5px;
}

a {
    text-decoration: none;
}

a :hover {
    text-decoration: none;
}

body {
    background-color: var(--body-color);
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

main {
    margin-top: 2rem;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

.container-fluid {
    padding: 0 40px;
}

section {
    margin-top: 5rem !important;
}

.hero-bg {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    min-height: 400px;
    color: #fff;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    pointer-events: none;
}

#hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
    max-width: 75%;
}

#hero-subtitle {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: inline-flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #63AB45;
    max-width: 75%;
}

.sl-button-next,
.sl-button-prev {
    z-index: 100;
    position: absolute;
}

.hero-overlay > * {
    pointer-events: auto;
}

#yandex-map {
    border-radius: 20px;
    overflow: hidden;
}

.section-title {
    color: #000;
    font-family: "Inter";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 21px;
}


.sub-section {
    margin-top: 2rem;
}

.sub-section .title {
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    margin-bottom: 14px;
}

.sub-section p {
    display: block;
    color: #676767;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;

}

.sub-section img {
    width: 25px;
    height: 25px;
    border-radius: 60%;
}

.section-description p {
    color: #676767;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;

}


.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    margin: 0.5rem;
}

.news-img {
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.map-section {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem 1rem;
}

.bg-custom-success {
    background-color: var(--success-bg) !important;
    color: #fff !important;
}

.bg-custom-success-opacity {
    background-color: var(--success-bg-opacity) !important;
    color: #fff !important;
}

.bg-custom-white {
    background-color: var(--secondary-color) !important;
}

.bg-custom-light {
    background-color: var(--light-bg) !important;
}

.text-custom-success {
    color: var(--primary-color) !important;
}

.text-custom-muted {
    color: var(--muted-color) !important;
}

.btn-custom-success {
    background-color: var(--success-bg);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    transition: background 0.2s;
}

.btn-custom-success:hover,
.btn-custom-success:focus {
    background-color: var(--btn-hover);
    color: #fff;
}

.btn-custom-outline-success {
    background-color: var(--btn-outline-bg);
    color: var(--btn-outline);
    border: 1.5px solid var(--btn-outline);
    border-radius: var(--border-radius);
    transition: background 0.2s, color 0.2s;
}

.btn-custom-outline-success:hover,
.btn-custom-outline-success:focus {
    background-color: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover);
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.shadow-custom {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.sl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}
.sl-video-block{
    height: 500px;
}

.sl-video-block img,
.sl-video-block video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.header-hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-hero-wrapper header {
    flex: 0 0 auto;
    max-height: 20vh;
}

.header-hero-wrapper .hero-outher {
    flex: 1 0 auto;
    min-height: 0;
}

.header-hero-wrapper .hero-outher .hero-bg {
    height: 77vh;
    flex: 1 0 auto;
    border-radius: 3rem;
}


.page-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.page-nav .nav-link span {
    color: #000;
    text-align: center;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.page-nav .nav-link span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #63AB45;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.page-nav .nav-link:hover span {
    color: #63AB45;
}

.page-nav .nav-link:hover span::after {
    width: 100%;
}

.page-nav .nav-link.active span {
    border-bottom: 1px solid #63AB45;
    color: #63AB45;
}

footer.sl-page-footer {
    background: #FFF;
    padding: 3rem 0;
}

.links .title {
    color: #000;
    text-align: start;
    font-family: "Inter";
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 1.5rem;
}

.links.sl-site-links ul {
    column-count: 2;
    column-gap: 2rem;
}

.links ul {
    list-style: none;
    padding-left: 0;
}

.links ul li {
    margin-bottom: 1rem;
}

#partner-logo:hover path {
    fill: var(--primary-color);
}

#partner-logo {
    height: 24px;
    width: auto;
}

.links ul a {
    color: #7D7D7D;
    text-align: center;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    transition: all 0.3s ease;
}

.links ul a:hover {
    color: var(--primary-color);
    font-weight: 500;
}

.sl-footer-bt-info-block {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sl-ft-block span {
    color: #7D7D7D;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 2rem;
}

.sl-footer-logo {
    width: 200px;
}

.sl-footer-info-block {
    border-bottom: 1px solid #EBEBEB;
    padding: 1rem 0;
}

.footer-str svg {
    margin-left: .5rem;
}


.page-nav .nav-link.active span::after {
    display: none;
}

.dropdown-lang .btn {
    background-color: transparent !important;
    border: none;
    color: #000;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    gap: 5px;
}

.dropdown-lang .btn:hover {
    color: var(--primary-color);
}

.dropdown-lang .dropdown-menu.show {
    padding: 0.25rem 0;
    min-width: 100px !important;
}

.dropdown-lang a:hover {
    color: #171717aa;
    transition: none !important;
}

.dropdown-lang a {
    transition: none;
    padding: 5px 15px;
}

.dropdown-lang a.active, .dropdown-lang a:active,
.dropdown-item:focus, .dropdown-item:focus-visible {
    color: rgb(33, 37, 41);
    background-color: rgb(241, 243, 244);
    outline: none;
    font-weight: 500;
}


.dropdown-lang .dropdown-toggle::after {
    display: none;
}

.page-nav .sl-nav {
    gap: 45px;
}

.page-nav .logo-img {
    width: 150px;
    height: auto;
}

.sl-swiper-button-next,
.sl-swiper-button-prev {
    z-index: 100;
    position: absolute;
}

.hero-booking-form-abs {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.booking-form {
    max-width: 63%;
    padding: 2rem 4rem;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    gap: 23px;
    width: 100%;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
}


.custom-image-gap {
    display: flex;
    gap: 20px;
}

.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.booking-form-label {
    color: #222;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: .75rem;
}

.booking-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calendar-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.booking-form-input {
    padding: 11px 25px;
    transition: border 0.2s;
    border-radius: 25px;
    border: 1px solid #DCDCDC;
    background: #FFF;
    color: rgba(33, 37, 41, 0.75);
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}

.booking-form-input i:before, .booking-form-input i:after {
    display: none !important;

}

.booking-form-input:focus, .booking-form-input:focus-within, .booking-form-input:focus-visible {
    border: 1px solid var(--primary-color);
    outline: none;
}

.booking-form-btn-group {
    display: flex;
    align-items: flex-end;
    min-width: 120px;

}

.booking-form-btn {
    width: auto;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    transition: background 0.2s;
    border-radius: 30px;
    border: 1px solid #63AB45;
    background: #63AB45;
    display: inline-flex;
    justify-content: center;
    padding: 11px 25px;
    align-items: center;
    gap: 10px;
}

.booking-form-btn:hover,
.booking-form-btn:focus {
    background: #51913a;
}


.block-title {
    color: #222;
    font-family: "Inter";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;

}

.room-card {
    border-radius: 20px;
    background: #FFF;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.room-card:hover {
    box-shadow: 0 4px 24px 0 rgba(99, 171, 69, 0.10);
    transform: translateY(-4px) scale(1.02);
}

.room-card-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.room-card img {
    aspect-ratio: 16/9 !important;
    border-radius: 10px;
}



.sl-btn-primary {
    border-radius: 8px;
    background: #63AB45;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 18px;
    color: #FFF;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}


.sl-btn-danger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 18px;
    color: #FFF;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 30px;
    gap: 8px;
    border: 1px solid #E13E3F;
    background: #E13E3F;
    transition: background 0.18s, box-shadow 0.18s;
}

.sl-btn-secondary {
    border-radius: 8px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 18px;
    color: #000;
    height: fit-content;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    gap: 10px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.sl-btn-badge {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 18px;
    color: #FFF;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.event-section .btn svg {
    margin-left: 10px;
}

.event-overlay {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.sl-btn-disabled {
    display: inline-flex;
    padding: 8px 18px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #222;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background: transparent;
}

.sl-btn-disabled:hover {
    background: #F1F1F1 !important;
    text-decoration: none;
    color: #222 !important;
}
.room-card .sl-btn-disabled{
    color: #848484;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sl-btn-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.sl-btn-group .btn {
    flex: 1 1 0;
    min-width: 0;
}

.room-card-body .card-title {
    color: #232631;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.room-card-body .card-text {
    color: #848484;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-swiper,
.review-swiper {
    overflow: visible !important;
}

.sl-review-card {
    border-radius: 15px;
    background: #FFF;
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sl-review-card:hover {
    box-shadow: 0 4px 24px 0 rgba(99, 171, 69, 0.10);
    transform: translateY(-4px) scale(1.02);
}

.sl-review-card .rating {
    display: flex;
    gap: 5px;
    justify-content: start;
    margin-bottom: 17px;
}

.sl-review-content {
    color: var(--Medium-Dark, #646464);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    margin-bottom: 1.5rem;
}

.sl-review-user {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sl-review-user .name {
    color: #121511;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;

}

.sl-review-user .source {
    color: var(--Medium-Dark, #646464);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Inter";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    text-decoration: none;
}

.sl-btn-primary:hover,
.sl-btn-primary:focus {
    background: #51913a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 171, 69, 0.15);
    text-decoration: none;
}


.sl-btn-secondary:hover,
.sl-btn-secondary:focus {
    background: #f1f1f1;
    color: #63AB45;
    border: 1px solid #63AB45;
    text-decoration: none;
}

.sl-btn-badge:hover,
.sl-btn-badge:focus {
    background: #7bc96f;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 700px) {

    .booking-form-btn-group {
        flex: 1 1 0;
    }
}

.review-swiper-pagination .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
}

.review-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.sl-event-section-info {
    margin-left: 65px;
}

.sl-event-section-info p {
    color: #FFF;
    font-family: "Inter";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;

    margin-bottom: 60px;
    max-width: 40%;
    text-align: start;
}

.sl-event-section-info .section-title {
    color: #FFF;
    font-family: "Inter";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;

    max-width: 75%;
    text-align: start;
    margin-bottom: 2rem;
}

.event-section {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}


.event-section .sl-btn-group {
    width: 30%;
}

.event-section .sl-btn-group .btn {
    border-radius: 20px;
    min-width: 100px;
}

.event-swiper,
.event-swiper .swiper-wrapper,
.event-swiper .swiper-slide {
    height: 500px;
    position: relative;
}

.event-slide-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.event-swiper-pagination {
    position: absolute;
    left: 50% !important;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

footer .social-link {
    border-radius: 50%;
    overflow: hidden;
}

.event-swiper-pagination .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: opacity 0.2s;
    border: none;
}

.event-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: opacity 0.2s;
    border: none;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s;
}

.article-card:hover {
    transform: translateY(-1px) scale(1.02);
}

.article-card img {
    aspect-ratio: 16/9;
    border-radius: 20px;
    width: 100%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card .title {
    color: #000;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}


#service-tabs {
    border-bottom: 2px solid transparent;
    margin-bottom: 0 !important;
}

#service-tabs .nav-link {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 16px 24px 14px 24px !important;
    color: #666 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    margin-right: 0 !important;
    border-bottom: 2px solid transparent !important;
}

#service-tabs .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(99, 171, 69, 0.05) !important;
}

#service-tabs .nav-link.active {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color) !important;
    font-weight: 600 !important;
}

.tab-content {
    margin-top: 2rem;
}

/* Smooth tab transition effect */
#service-tabs .nav-item {
    position: relative;
}
/* Connect borders effect */
#service-tabs .nav-item:not(:last-child) .nav-link:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 20px;
    width: 1px;
    background: #e4e4e4;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

#service-tabs .nav-item .nav-link.active:after,
#service-tabs .nav-item .nav-link:hover:after {
    opacity: 0;
}

@media (max-width: 768px) {
    #service-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #service-tabs::-webkit-scrollbar {
        display: none !important;
    }

    #service-tabs .nav-item {
        flex-shrink: 0 !important;
    }

    #service-tabs .nav-link {
        padding: 12px 20px 10px 20px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    #service-tabs .badge {
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    #service-tabs .nav-link {
        padding: 10px 16px 8px 16px !important;
        font-size: 13px !important;
    }
}
.article-card .title:hover,
.article-card .title:focus {
    color: #63AB45;
    text-decoration: none;
}

.article-card:hover img {
    transform: scale(1.06);
}

.article-card:hover .title {
    color: #63AB45;
    text-decoration: none;
}

.sl-map-section {
    border-radius: 30px;
    background: #FFF;
    padding: 5rem;
}

.sl-map-section h4 {
    color: #191919;
    font-family: "Helvetica Neue";
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;

    letter-spacing: 0.2px;
    margin-bottom: 2rem;
}

.sl-map-section p {
    color: #606060;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

    margin-bottom: 3rem;
}

.sl-map-section .sl-btn-primary {
    max-width: 220px;
}


a,
.btn,
button,
[role="button"]:not(.sl-button-prev, .sl-button-next),
.sl-btn-primary,
.sl-btn-secondary,
.sl-btn-badge {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, text-decoration 0.2s;
}

a:hover,
a:focus {
    color: #63AB45;
    text-decoration: underline;
    background: none;
}

.btn:hover,
.btn:focus,
button:hover,
button:focus,
[role="button"]:not(.sl-button-prev, .sl-button-next):hover,
[role="button"]:not(.sl-button-prev, .sl-button-next):focus,
.sl-btn-primary:hover,
.sl-btn-primary:focus,
.sl-btn-secondary:hover,
.sl-btn-secondary:focus,
.sl-btn-badge:hover,
.sl-btn-badge:focus {
    background: #f5f5f5;
    color: #63AB45;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(99, 171, 69, 0.04);
}


.custom-datetime-dropdown .custom-datetime-dropdown-content {
    border-radius: 20px;
    background: #FFF;
    padding: 2.5rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.custom-datetime-dropdown-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    min-width: 650px;
    min-height: 350px;
    display: flex;

    flex-direction: column;
    overflow: hidden;
}


.custom-datetime-modal {
    display: none !important;
}

.custom-datetime-modal-content {
    display: none !important;
}


.custom-datetime-modal-body {
    display: flex;
    flex-direction: row;
    background: #fff;
}

.custom-datetime-calendar-section {
    padding-right: 40px;
    min-width: 320px;
}

.custom-datetime-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px;
    color: #232323;
}

.custom-datetime-calendar-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #232323;
    padding: 0 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.custom-datetime-calendar-header button:hover {
    background: #f5f5f5;
}

.custom-datetime-calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.custom-datetime-calendar-table th {
    color: #b0b0b0;
    font-weight: 500;
    padding-bottom: 8px;
    font-size: 15px;
}

.custom-datetime-calendar-table td {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    color: #232323;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
}

.custom-datetime-calendar-table td.selected {
    background: #63ab45;
    color: #fff;
    z-index: 2;
}

.custom-datetime-calendar-table td.range-start,
.custom-datetime-calendar-table td.range-end {
    background: #63ab45;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
}

.custom-datetime-calendar-table td.in-range {
    background: #e8f5e9;
    color: #232323;
    z-index: 1;
}

.custom-datetime-calendar-table tr {
    position: relative;
}

.custom-datetime-calendar-table td.disabled {
    color: #ccc;
    pointer-events: none;
    background: none;
}

.custom-datetime-calendar-table td:hover:not(.disabled):not(.selected) {
    background: #c8e6c9;
}


.custom-datetime-time-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafbfc;
    border: 1.5px solid #e4e4e4;
    border-radius: 24px;
    padding: 6px 18px 6px 12px;
    width: fit-content;
}

.custom-datetime-time-input-wrapper input[type="time"] {
    border: none;
    background: transparent;
    font-size: 18px;
    color: #232323;
    width: 70px;
    outline: none;
    padding: 0;
    margin: 0 2px 0 0;
}

.custom-datetime-time-input-wrapper .clock-icon {
    margin-right: 6px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
}

.custom-datetime-time-input-wrapper .ampm-toggle {
    margin-left: 8px;
    font-size: 15px;
    color: #b0b0b0;
    font-weight: 500;
    letter-spacing: 0.2px;
    user-select: none;
}

.custom-datetime-actions {
    display: flex;
    gap: 18px;
    margin-top: 32px;
    justify-content: flex-start;
    align-items: center;
}

.custom-datetime-actions #custom-datetime-submit {
    background: #63ab45;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 38px;
    box-shadow: none;
    transition: background 0.18s;
}

.custom-datetime-actions #custom-datetime-submit:hover {
    background: #51913a;
}

.custom-datetime-actions #custom-datetime-cancel {
    background: none;
    color: #b0b0b0;
    border: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 18px;
    box-shadow: none;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.18s;
}

.custom-datetime-actions #custom-datetime-cancel:hover {
    color: #232323;
    background: #f5f5f5;
}


.custom-datetime-modal-body {
    position: relative;
}

.custom-time-picker-dropdown {
    position: absolute;
    z-index: 10001;
    display: none;
}

.custom-time-picker-popup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(99, 171, 69, 0.10);
    padding: 18px 24px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.custom-time-picker-header {
    font-size: 13px;
    color: #b0b0b0;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}

.custom-time-picker-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-time-picker-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 110px;
    overflow-y: auto;
    min-width: 38px;
    font-size: 20px;
    font-weight: 500;
    scrollbar-width: none;

}

.custom-time-picker-col::-webkit-scrollbar {
    display: none;

}

.custom-time-picker-col > div {
    padding: 2px 0;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    transition: background 0.15s, color 0.15s;
}

.custom-time-picker-col > div.selected {
    color: #63ab45;
    font-weight: 700;
    background: #e8f5e9;
}

.custom-time-picker-sep {
    font-size: 20px;
    color: #b0b0b0;
    font-weight: 600;
    margin: 0 2px;
}

.custom-time-picker-col.ampm {
    flex-direction: column;
    gap: 2px;
    min-width: 38px;
}

.custom-time-picker-col.ampm .ampm-option {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 500;
    padding: 2px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-time-picker-col.ampm .ampm-option.selected {
    color: #63ab45;
    background: #e8f5e9;
    font-weight: 700;
}


.guest-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    padding: 24px 28px 18px 28px;
    min-width: 280px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.guest-picker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.guest-picker-label {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
}

.guest-picker-desc {
    font-size: 13px;
    color: #b0b0b0;
    margin-top: 2px;
}

.guest-picker-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-picker-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e4e4e4;
    background: #fafbfc;
    color: #b0b0b0;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.guest-picker-btn:active {
    background: #f0f0f0;
}

.guest-picker-btn:disabled {
    color: #e4e4e4;
    cursor: not-allowed;
}

.guest-picker-count {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    min-width: 18px;
    text-align: center;
}

.sl-page-r-list .room-card a {
    width: 100%;
}

.guest-picker-save {
    margin-top: 12px;
    align-self: flex-end;
    background: #63ab45;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.guest-picker-save:hover {
    background: #51913a;
}

.sl-btn-danger:hover,
.sl-btn-danger:focus {
    background: #c82324;
    box-shadow: 0 2px 8px 0 rgba(225, 62, 63, 0.10);
    color: #FFF;
    text-decoration: none;
    outline: none;
}


.sl-search-filter {
    max-width: 60%;
}



.bg-none {
    background: none !important;
}


.swiper-btn-left-40 {
    left: 40px !important;
}

.hero-overlay-custom {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: auto;
}

.booking-input-wrapper-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-input-padding-right {
    padding-left: 40px !important;
}

.calendar-icon-custom {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.room-section-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.room-swiper-nav-custom {
    display: flex;
}

.modal-slide-up .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    max-width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.modal-slide-up.show .modal-dialog {
    transform: translateY(0);
}

.modal-slide-up .modal-content {
    border-radius: 16px 16px 0 0;
    min-height: 50vh;
} 

.room-swiper-btn-custom {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}

.block-title-no-margin {
    margin: 0 !important;
}

.mb-4-2rem {
    margin-bottom: 2rem !important;
}

.bg-white-shadow {
    background: #fff !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.03) !important;
}

.p-4-custom {
    padding: 1.5rem !important;
}

.mb-3-1-1rem {
    margin-bottom: 1.1rem !important;
}

.text-muted-666 {
    color: #666 !important;
}

.text-green-63ab45 {
    color: #63AB45 !important;
}

.text-dark-222 {
    color: #222 !important;
}

.font-size-2-2rem {
    font-size: 2.2rem !important;
}

.font-size-1-1rem {
    font-size: 1.1rem !important;
}

.font-size-1-2rem {
    font-size: 1.2rem !important;
}

.font-size-1-5rem {
    font-size: 1.5rem !important;
}

.font-size-2rem {
    font-size: 2rem !important;
}

.bg-light-custom {
    background: #f8f9fa !important;
}

.width-320px {
    width: 320px !important;
}

.bg-e4e4e4 {
    background: #E4E4E4 !important;
}

.text-888 {
    color: #888 !important;
}

.sl-room-detail-wrapper {
    padding: 4rem;
    background: #fff !important;
    position: relative;
    border-radius: 1.5rem !important;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.03) !important;
}

.sl-room-detail-wrapper .title {
    color: #222;
    font-family: "Inter";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;

    margin-bottom: 2rem;
}

.sl-booking-bottom-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 1.5rem calc(var(--bs-gutter-x) * .5) 3rem calc(var(--bs-gutter-x) * .5);
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    background: #FFF;
    z-index: 999;
    justify-content: center;
    border-top: 1px solid #DADADA;
}

.sl-booking-bottom-section .sl-btn-primary {
    padding: 10px 40px;
}

.sl-room-detail-wrapper .description {
    color: #848484;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

    margin-bottom: 2rem;
}

.sl-room-detail-wrapper .sub-block-title {
    color: #848484;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sl-room-detail-wrapper .price {
    color: #222;
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 3rem;
}

.sl-room-detail-wrapper .price span {
    color: #222;
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.sl-room-detail-wrapper .sl-btn-primary {
    display: inline-flex;
}

.sl-room-adv {
    margin-bottom: 3rem;
}

.sl-button-next {
    right: 40px !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    position: absolute;
}

.sl-button-prev {
    left: 40px !important;
    transform: translateY(-50%) !important;
    top: 50% !important;
    position: absolute;
}

.sl-btn-sm.sl-button-next {
    right: 20px !important;
}

.sl-btn-sm.sl-button-prev {
    left: 20px !important;
}

.sl-btn-sm.sl-button-next img,
.sl-btn-sm.sl-button-prev img {
    width: 40px;
}

.sl-room-detail-page {
    margin-top: 1.5rem;
}
.sl-room-detail-page hr {
    color: #B8B8B8;
}

.sl-room-info-card {
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.40);
    padding: 2rem 3rem;
}

.sl-room-info-card .title {
    color: #222;
    font-family: "Inter";
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;

}

.sl-room-info-card .content p {
    color: #848484;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.sl-room-info-card .content p:not(:last-child) {
    margin-bottom: 1.5rem;
}


.sl-booking-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
}

.sl-booking-modal-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: 420px;
    padding: 48px 32px 48px 48px;
}

.sl-booking-modal-form-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
}

.sl-booking-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #232323;
}

.sl-booking-modal-form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.sl-booking-modal-form-group label {
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #232323;
}

.sl-booking-modal-btn {
    width: 100%;
    margin-top: 2rem;
    background: #63AB45;
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 0;
    border: none;
    transition: background 0.2s;
}

.sl-booking-modal-btn:hover {
    background: #51913a;
}

.sl-booking-modal-room-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
}

.sl-booking-modal-room-card {
    background: #F1F1F4;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sl-booking-modal-swiper {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.sl-booking-modal-swiper .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.sl-booking-modal-room-info {
    width: 100%;
}

.sl-booking-modal-room-title {
    color: #232631;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sl-booking-modal-room-capacity {
    color: #848484;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
}

.sl-booking-modal-room-details {
    background: #fff;
    border-radius: 12px;
    font-size: 0.98rem;
    color: #232323;
}

.sl-booking-modal-room-dates {
    display: flex;
    justify-content: space-between;
}

.sl-booking-modal-room-dates > div {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 50%;
}

.sl-booking-modal-room-dates > div:first-child {
    border-right: 1px solid #B8B8B8;
}

.sl-booking-modal-room-dates span:first-child {
    color: #595C5F;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    margin-bottom: 0.5rem;
}

.sl-booking-modal-room-dates span:nth-child(2) {
    color: #222;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="datetime-local"] {
    appearance: textfield;
}

.sl-booking-modal-room-guests {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    border-top: 1px solid #B8B8B8;
    padding: 1rem;
}

.sl-booking-modal-room-guests span:first-child {
    color: #595C5F;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    margin-bottom: 0.5rem;
}

.sl-booking-modal-room-guests span:last-child {
    color: #222;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}

.room-detail-swiper {
    border-radius: 20px;
}



.sl-banner-swiper {
    height: 181px;
}

.sl-banner-swiper .hero-bg {
    background-position-y: 65%;
}

.sl-banner {
    position: relative;
    margin-top: 1rem;
}

.sl-banner .hero-overlay {
    border-radius: 0;
}

.sl-banner-title {
    background: linear-gradient(90deg, #68C03C 4.63%, rgba(104, 192, 60, 0.00) 104.94%);
    color: #FFF;
    font-family: "Inter";
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 1.5rem 2.5rem;
    display: inline;

}

.sl-article-page .booking-form {
    max-width: 100%;
    padding: 3rem;

}

.sl-article-page .booking-form-row {
    gap: 0;
}

.sl-article-page .booking-form-group {
    flex: 0 0 auto;
}

.sl-article-page .booking-form-group:not(:last-child) {
    margin-bottom: 1rem;
}

.sl-article-page .booking-form-input {
    padding: 13px 18px;
}

.sl-article-page .sl-article-content p, .sl-article-page .sl-article-content span {
    color: #575656;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.sl-article-page .sl-article-content h2 {
    color: #000;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sl-article-page .sl-article-content img {
    border-radius: 10px;
}

.sl-form-title {
    color: #000;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 1.5rem;
}

.sl-article-thumbnail {
    width: 100%;
    border-radius: 20px;
}

.mobile-header .sl-info-part a {
    color: #63AB45;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.mobile-header .logo-img img {
    height: 40px;
}

.mobile-header .dropdown-lang button {
    padding: 5px 13px;
    border-radius: 50px;
    border: 1px solid #63AB45;
    color: #63AB45;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}

.mobile-header .dropdown-lang button:after {
    display: none;
}


.nav-modal.modal .custom-modal-content {
    position: absolute;
    bottom: 0;
    height: max-content;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.nav-modal.modal .modal-dialog {
    position: static;
}

.nav-modal.modal .custom-modal-content .modal-body {
    padding-top: 15px;
}

.nav-modal.modal .custom-modal-content .modal-body .line {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.nav-modal.modal .custom-modal-content .modal-body .line div {
    width: 88px;
    height: 4px;
    border-radius: 3.5px;
    background: #D9D9D9;
}

.nav-modal.modal .custom-modal-content .modal-body .search-box {
    margin-left: 0;
    width: 100%;
}

.nav-modal.modal .custom-modal-content .modal-body .search-box .group {
    width: 100%;
}

.nav-modal.modal .custom-modal-content .modal-body .navbar-nav {
    margin-bottom: 1rem;
}

.nav-modal.modal .custom-modal-content .modal-body .navbar-nav .nav-item {
    border-bottom: 0.5px solid rgba(80, 80, 80, 0.2);
}

.nav-modal.modal .custom-modal-content .modal-body .navbar-nav .nav-item:last-child {
    border-bottom: none;
}

.nav-modal.modal .custom-modal-content .modal-body .navbar-nav .nav-item .nav-link {
    padding: 18.5px 0;
    display: flex;
    justify-content: space-between;
}

.nav-modal.modal .custom-modal-content .modal-body .navbar-nav .nav-item .nav-link.active {
    color: var(--color-secondary);
    font-weight: 500;
}

.nav-modal.modal .custom-modal-content .modal-body .nav-address {
    color: #7C7C7C;
    font-family: 'Inter';
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.nav-modal.modal .custom-modal-content .modal-body .th-social {
    margin-top: 2.5rem;
}

.nav-modal.modal .custom-modal-content .modal-body .th-social a {
    margin-right: 1.25rem;
}

.nav-modal.modal.show .custom-modal-content {
    transform: translateY(0%);
}

.sl-booking-modal-grid .booking-form-input {
    padding: 11px 20px !important;
}


.info-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    min-height: 2rem;
}

.sl-back-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.booking-info {
    border-radius: 45px;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
    padding: 1rem 1.5rem;
    color: #000;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mobile-time-picker-modal {
    display: none;
}

.sl-status-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.sl-status-modal img {
    width: 100px;
    height: 100px;
}

.sl-status-modal h3 {
    color: #232631;
    text-align: center;
    font-family: "Inter";
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 0;
}

.sl-status-modal .sl-status-modal-text {
    color: #959595;
    text-align: center;
    font-family: "Inter";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
    margin-bottom: 1rem;
}

.sl-status-modal.success .btn-close {
    border-radius: 50px;
    border: 1px solid #63AB45;
    color: #63AB45;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
    padding: 13px 24px;
    width: auto;
    background: transparent none;
}

.sl-status-modal.error .btn-close {
    border-radius: 50px;
    border: 1px solid #232631;
    color: #232631;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    width: auto;
    padding: 13px 24px;
    line-height: 100%; 
    background: transparent none;
}

.sl-footer-bt-info-block span {
    color: #7D7D7D;
    font-family: "Inter";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; 
}




@media screen and (max-width: 998px) {
    .container-fluid {
        padding: 0;
    }

    .dropdown.mobile-lang .dropdown-menu {
        display: none !important;
    }

    .hero-overlay {
        border-radius: 0;
    }

    .header-hero-wrapper .booking-form-input.booking-input-padding-right {
        font-size: 12px;
    }

    .booking-form-btn svg {
        display: none !important;
    }

    .header-hero-wrapper .hero-outher .hero-bg {
        border-radius: 0;
    }

    #hero-title {
        color: #FFF;
        text-align: center;
        font-family: "Inter";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%; 
        letter-spacing: 0.2px;
        margin-bottom: 1.5rem;
    }
    #hero-subtitle {
        color: #FFF;
        text-align: center;
        font-family: "Inter";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; 
    }

    .booking-form {
        padding: 1.5rem 1rem;
        max-width: 90%;
    }

    .booking-form-input {
        padding: 13px 18px;
    }

    .booking-input-wrapper-custom {
        margin-bottom: 13px;
    }

    section {
        margin-top: 3rem;
    }

    .section-title {
        color: #000;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; 
        margin-top: 20px;
        max-width: 80%;
        margin-bottom: 10px;
    }

    .section-description p {
        color: #676767;
        font-family: "Inter";
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 130%; 
        margin-bottom: 0;
    }

    .sub-section {
        margin-top: 0;
    }

    .sub-section .title {
        margin-bottom: 5px;
        color: #222;
        font-family: "Inter";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; 
        flex-direction: column;
        align-items: start;
        gap: 7px;
    }

    .sl-mobile-booking-form {
        margin-bottom: 2rem;
    }

    .sub-section img {
        width: 27px;
        height: 27px;
    }

    .sub-section p {
        color: #676767;
        font-family: "Inter";
        font-size: 11px;
        font-style: normal;
        font-weight: 300;
        line-height: 130%;
    }

    .room-section-header-custom {
        margin-bottom: 1rem;
    }

    .block-title {
        color: #222;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
    }

    .room-card {
        padding: .5rem;
        gap: 5px;
        border-radius: 10px;
    }

    .room-card .card-text {
        color: #848484;
        font-family: "Inter";
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .room-card .card-img-top {
        aspect-ratio: 1 !important;
        object-fit: cover;
        border-radius: 10px;
    }

    .room-card .card-title {
        color: #232631;
        font-family: "Inter";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
    }

    .sl-video-block{
        height: 350px;
    }

    .sl-event-section-info {
        margin: 0;
        padding: 1.5rem;
    }

    .sl-event-section-info .section-title {
        color: #FFF;
        font-family: "Inter";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; 
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .sl-event-section-info p {
        color: #FFF;
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 130%; 
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .event-section .sl-btn-group .btn {
        padding: 8px 1rem;
    }

    .event-section .sl-btn-group {
        width: 100%;
    }

    .article-card {
        flex-direction: row;
    }

    .article-card a {
        width: 50%;
    }

    .article-card img {
        border-radius: 7px;
    }

    .article-card .title {
        color: #000;
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; 
    }

    .sl-map-section {
        padding: 1rem;
    }

    .sl-map-section h4 {
        color: #191919;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%; 
        letter-spacing: 0.2px;
        margin-bottom: .75rem;
    }

    .booking-form-btn {
        width: 100%;
    }

    .sl-map-section p {
        color: #606060;
        font-family: "Inter";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; 
        margin-bottom: 1.5rem;
    }

    .sl-map-section .sl-btn-primary {
        margin-bottom: 1rem;
    }

    .sl-banner-swiper {
        height: 65px;
    }

    .sl-banner-swiper .hero-bg {
        min-height: 100%;
        background-position-y: 55%;
    }

    .sl-banner-title {
        color: #FFF;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%; 
        padding: .5rem 1.5rem;
    }

    #roomtype-list .room-card {
        padding: 1rem;
        gap: 10px;
    }

    #roomtype-list .room-card .card-img-top {
        aspect-ratio: 16/9 !important;
    }

    .sl-booking-modal-content {
        max-width: 99vw;
    }

    .sl-booking-modal-grid {
        flex-direction: column;
        min-height: unset;
    }

    .sl-booking-modal-form-col,
    .sl-booking-modal-room-col {
        min-width: 0;
        padding: 32px 16px;
    }

    .sl-booking-modal-room-card {
        max-width: 100%;
    }

    .sl-room-detail-wrapper {
        padding: 1rem;
        margin-top: 1rem;
    }

    .sl-room-detail-wrapper .title {
        color: #232631;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .sl-room-detail-wrapper .description {
        color: #848484;
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; 
        margin-bottom: 20px;
    }

    .sl-room-detail-wrapper .sub-block-title {
        color: #848484;
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .sl-room-adv {
        margin-bottom: 1.5rem;
    }

    .sl-room-detail-wrapper .price {
        color: #222;
        font-family: "Inter";
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 0;
    }

    .sl-room-detail-wrapper .price span {
        color: #222;
        font-family: "Inter";
        font-size: 19px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .sl-room-detail-wrapper .col-lg-5 {
        margin-top: 1rem;
    }

    .room-detail-swiper {
        border-radius: 0;
    }

    .sl-room-info-card {
        border-radius: 15px;
        background: #FFF;
        padding: 1.5rem;
    }

    .sl-article-thumbnail {
        border-radius: 0;
        margin-top: 0;
    }

    .sl-article-content {
        color: var(--dark-grey-400, #575656);
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 120%; 
    }

    .sl-mobile-booking-info {
        color: #626262;
        font-family: "Inter";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 15px;
        background: #FFF;
        box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
        padding: 1.5rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sl-mobile-booking-form {
        margin-top: 1.5rem;
    }

    .sl-mobile-booking-form label {
        color: #222;
        font-family: "Inter";
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; 
        margin-bottom: .75rem;
    }

    .sl-mobile-booking-form input {
        border-radius: 10px;
        border: 1px solid #DCDCDC;
        background: #FFF;
    }

    .sl-mobile-booking-form .sl-btn-primary {
        padding: .75rem 40px;
        margin-top: 1rem;
    }

    #bookingModal .modal-content.custom-modal-content {
        padding-bottom: 4rem;
    }

    .sl-mobile-booking-form h5 {
        color: #222;
        font-family: "Inter";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%; 
        margin-bottom: 2rem;
    }

    .nav-modal.modal .custom-modal-content .modal-body {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sl-footer-logo {
        width: 120px;
    }

    .links .title {
        text-align: center;
        color: #000;
        font-family: "Inter";
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; 
    }

    .sl-ft-block span {
        text-align: center;
    }

    .sl-footer-info-block {
        padding: 1rem .8rem;
    }

    .links ul {
        padding: 0;
    }

    .sl-footer-bt-info-block {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-str {
        color: #6E6E6E;
        font-family: "Inter";
        font-size: 8px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .links.sl-site-links ul {
        column-gap: 4rem;
    }

    #partner-logo {
        height: 14px;
    }

    .sl-footer-bt-info-block span {
        color: #7D7D7D;
        font-family: "Inter";
        font-size: 10px;
        font-style: normal;
        font-weight: 300;
        line-height: 120%; 
    }

}

.room-card,
.sl-review-card,
.article-card {
    transition: box-shadow 0.18s, transform 0.18s;
}

.room-card:hover,
.sl-review-card:hover,
.article-card:hover {
    box-shadow: 0 2px 8px rgba(99, 171, 69, 0.08);
    transform: translateY(-1px);
}

.btn,
.sl-btn-primary,
.sl-btn-secondary,
.sl-btn-badge,
.booking-form-btn {
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.btn:hover,
.sl-btn-primary:hover,
.sl-btn-secondary:hover,
.sl-btn-badge:hover,
.booking-form-btn:hover {
    background: #51913a;
    color: #fff;
    box-shadow: 0 1px 4px rgba(99, 171, 69, 0.10);
}

.sl-gis-link img {
    max-width: 100%;
    height: 35px;
}

.sl-gis-link {
    display: flex;
    width: 134px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #F1F1F4;
}

.sl-gis-link:hover, .sl-gis-link:focus, .sl-gis-link:focus-within, .sl-gis-link:focus-visible {
    background: #C7C7C7 !important;
}

.room-card img,
.article-card img {
    transition: transform 0.18s;
}

.room-card:hover img,
.article-card:hover img {
    transform: scale(1.015);
}

.page-nav .nav-link span {
    transition: color 0.18s;
}

.booking-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(99, 171, 69, 0.08);
    transition: border-color 0.18s, box-shadow 0.18s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.sl-section-subtitle {
    color: #191919;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8e6b8;
}

.sl-video-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Fallback for when video doesn't load */
.sl-video-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    z-index: -1;
}

.sl-video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.sl-video.loaded + .sl-video-overlay + .sl-video-loading {
    display: none;
}

/* Booking form layout optimization */
.booking-form-row {
    display: flex;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
}

.booking-form-row .booking-form-group {
    flex: 1;
    min-width: 0; /* Allow flex items to shrink below content size */
}

.booking-form-row .booking-form-group:last-child,
.booking-form-row .booking-form-btn-group {
    flex: 0 0 auto; /* Button takes only the space it needs */
    width: auto;
}

.sl-article-page .booking-form-row .booking-form-group:last-child,
.sl-article-page .booking-form-row .booking-form-btn-group {
    flex: 1 1 100%;
    width: 100%;
}

.sl-article-page .booking-form-row .booking-form-group:last-child .booking-form-btn {
    width: 100%;
}

.booking-form-row .booking-form-group:not(:last-child):not(.booking-form-btn-group) {
    flex: 1 1 0; /* Equal width distribution for input fields */
    min-width: 120px; /* Minimum width for inputs */
}

/* Specific styling for the search button */
.booking-form-btn {
    white-space: nowrap;
    min-width: fit-content;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.75rem;
    }

    /* First two fields (check-in and check-out) in first row */
    .booking-form-row .booking-form-group:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .booking-form-row .booking-form-group:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Guest field in second row */
    .booking-form-row .booking-form-group:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    /* Search button in third row */
    .booking-form-row .booking-form-group:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: 3;
    }
    .booking-form-row .booking-form-group {
        width: 100%;
        flex: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .booking-form-row .booking-form-group:not(:last-child):not(.booking-form-btn-group) {
        min-width: 100px;
    }
}

.route-modal-backdrop {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background 0.2s;
}

.route-modal-sheet {
    background: #fff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 420px;
    margin-bottom: 0;
    padding: 24px 0 12px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: slideUp 0.25s cubic-bezier(.4, 0, .2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.route-modal-title {
    font-size: 16px;
    color: #888;
    margin-bottom: 16px;
}

.route-modal-link {
    display: block;
    padding: 16px 0;
    color: #1976d2;
    font-size: 18px;
    text-decoration: none;
    border-top: 1px solid #eee;
    transition: background 0.1s;
}

.route-modal-link:first-of-type {
    border-top: none;
}

.route-modal-link:active {
    background: #f0f0f0;
}

.route-modal-cancel {
    margin-top: 16px;
    width: 90%;
    background: #eee;
    color: #888;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 18px;
    cursor: pointer;
}

.mobile-lang-modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-lang-modal-content {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 18px 18px 0 0;
    padding: 24px 0 12px 0;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    animation: slideUp 0.25s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-lang-modal-drag {
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

#mobile-lang-list {
    list-style: none;
    margin: 0;
    padding: 1rem 2rem;
}

#mobile-lang-list li:not(:last-child) {
    border-bottom: 1px solid rgba(99, 171, 69, 0.25);
}

#mobile-lang-list li {
    padding: 1rem 0;
}

.mobile-lang-item {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 18px;
    color: #222;
    text-align: left;
    outline: none;
    transition: background 0.2s;
}

.mobile-lang-item.active {
    color: #4CAF50;
    font-weight: bold;
}

.mobile-lang-item:not(.active):hover {
    background: #f5f5f5;
}
