@font-face {
    font-family: 'RethinkSans';
    src: url(/assets/fonts/RethinkSans-VariableFont_wght.ttf);

}

:root {
    --main-color: #BD4732;
    --secondary-color: #1F4447;
    --secondary-dark: #2A3435;
    --tertial-color: #A6736D;
    --tertial-light: #F8E3E0;
    --accent-color: #FFF2EF;
    --plain-text: #242424;
    --white-color: #ffffff;
    --thm-font: 'RethinkSans';
    --status-available: #10B981;
    --status-unavailable: #EF4444;
    --shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    color: var(--plain-text);
    background: var(--white-color);
    font-family: var(--thm-font);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.thm-btn {
    background: var(--main-color);
    color: var(--white-color);
    font-family: var(--thm-font);
    width: max-content;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.thm-btn:hover {
    background: var(--secondary-color);
}

.section-padding {
    margin: 120px 0;
}

/* ---------------------------------------
        Preloader
   --------------------------------------- */
#thm-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--page-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.thm-spinner-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.thm-spinner {
    width: 100px;
    height: 100px;
    border: 6px solid var(--secondary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: thm-spin 1s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.thm-preloader-logo {
    width: 188px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}

@keyframes thm-spin {
    to {
        transform: rotate(360deg);
    }
}

body.thm-loaded #thm-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --------------------------------------
        tap to top
   -------------------------------------- */
#thm-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

#thm-to-top:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-4px);
}

#thm-to-top.thm-show {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------
        language selector
   --------------------------------------------- */
.lang-menu {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.selected-language {
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #F8E3E0;
}

.lang-circle {
    font-family: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: var(--white-color);
}

.lang-submenu {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #F8E3E0;
    padding: 10px 0;
    display: none;
    z-index: 100;
    transition: 0.3s;
}

.lang-submenu ul {
    list-style: none;
}

.lang-submenu li {
    padding: 10px;
    transition: 0.3s;
}

.lang-submenu li a:hover {
    color: var(--main-color);
}

.lang-submenu a {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--white-color);
}

.kzb-header.sticky .lang-submenu {
    background: var(--white-color);
    border: 1px solid var(--plain-text);
}

.kzb-header.sticky .lang-submenu a {
    color: var(--plain-text);
}

.kzb-header.sticky .lang-circle {
    color: var(--plain-text);
}

.kzb-header.sticky .selected-language {
    border: 1px solid var(--plain-text);
}

/* ===========================================
                 HEADER
   =========================================== */
.kzb-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s, box-shadow 0.3s;
    background: transparent;
}

.kzb-header.sticky {
    background: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kzb-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.kzb-header__logo img {
    height: 36px;
    width: auto;
    transition: 0.3s;
}

.kzb-header__logo .logo-sticky {
    display: none;
    transition: opacity 0.3s ease;
}

.kzb-header__logo .logo-initial, .kzb-header__logo .logo-sticky {
    transition: opacity 0.3s ease;
}

.kzb-header.sticky .logo-initial {
    opacity: 0;
    display: none;
}

.kzb-header.sticky .logo-sticky {
    display: block;
    opacity: 1;
}

.kzb-header__nav {
    flex: 1;
    text-align: center;
}

.kzb-header__menu {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.kzb-header__item a {
    color: var(--accent-color);
    transition: color 0.2s;
    font-weight: 400;
    font-size: 16px;
}

.kzb-header__item a:hover {
    color: var(--main-color);
}

.kzb-header.sticky .kzb-header__item a {
    color: var(--plain-text);
}

.kzb-header.sticky .kzb-header__item a:hover, .kzb-header.sticky .lang-submenu a:hover {
    color: var(--main-color);
}

.kzb-header__btn {
    padding: 11px 30px;
    background: transparent;
    transition: 0.3s;
    color: var(--accent-color);
    transition: 0.3s;
    border: 1px solid #F8E3E0;
    font-weight: 700;
    font-size: 16px;
}

.kzb-header__btn:hover {
    background: var(--main-color);
}

.kzb-header.sticky .kzb-header__btn {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.kzb-tw-l {
    display: flex;
    align-items: center;
    gap: 24px;
}

.kzb-header.sticky .kzb-header__btn:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.kzb-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.kzb-header__burger span {
    display: block;
    height: 3px;
    width: 25px;
    background: var(--white-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.kzb-header-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kzb-header-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.kzb-header-hero__container {
    position: initial;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.kzb-header-hero__text {
    position: relative;
    z-index: 10;
    max-width: 650px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.kzb-header-hero__title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
}

.kzb-header-hero__subtitle {
    font-weight: 400;
    font-size: 20px;
}

.kzb-header-hero__btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 27px;
}

.kzb-header-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.kzb-header-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
           home about section
   =========================================== */
.hm-about {
    width: 100%;
}

.hm-about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hm-about__images {
    position: relative;
    width: 90%;
}

.hm-about__image--big img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hm-about__image--small {
    position: absolute;
    bottom: -40px;
    right: -58px;
    width: 55%;
}

.hm-about__image--small img {
    width: 100%;
    object-fit: cover;
}

.hm-about__title {
    color: var(--secondary-color);
    margin-bottom: 36px;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}

.hm-about__text {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.hm-about__btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    transition: 0.3s;
}

.hm-about__btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

/* ===========================================
           home services
   =========================================== */
.hm-services-cards {
    display: grid;
    gap: 0;
    line-height: 0;
    grid-template-columns: 1fr 1fr 1fr;
}

.hm-services-card {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white-color);
    display: block;
    transition: 0.3s;
}

.hm-services-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.3s ease-in-out;
}

.hm-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(189, 71, 50, 0.95) 0%,
        rgba(189, 71, 50, 0.4) 50%, transparent 100%);
    transition: background 0.3s ease-in-out;
}

.hm-services-content {
    position: absolute;
    text-align: center;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.hm-services-title {
    color: var(--white-color);
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}

.hm-services-card:hover .hm-services-image {
    transform: scale(1.05);
}

.hm-services-card:hover .hm-services-overlay {
    background: linear-gradient(to top, rgba(189, 71, 50, 0.8) 0%, rgba(189, 71, 50, 0.2) 50%, transparent 100%);
}

/* ===========================================
           home rooms
   =========================================== */
.hm-room-heading {
    color: var(--secondary-color);
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 40px;
}

.hm-room-cards-container {
    display: flex;
    gap: 24px;
}

.hm-room-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
    min-height: 250px;
}

.hm-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hm-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hm-room-main-card {
    flex: 2;
    min-height: 550px;
}

.hm-room-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hm-room-small-card {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    position: absolute;
    bottom: 10px;
}

.hm-room-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    color: var(--accent-color);
}

.hm-room-details-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #FFF2EF;
}

.hm-room-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hm-rom-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hm-room-icon-item {
    font-size: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.hm-room-icon-item img {
    width: 16px;
    object-fit: contain;
}

.hm-room-price-info {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--tertial-light);
}

.hm-rm-pr-nght {
    color: var(--white-color);
}

.hm-room-reserve-btn {
    background-color: var(--main-color);
    color: var(--white-color);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.hm-room-reserve-btn:hover {
    background-color: #a33f32;
}

.hm-room-side-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hm-room-side-card {
    flex: 1;
}

.hm-room-title-small {
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
}

.hm-room-details-small {
    display: flex;
    gap: 24px;
}

.hm-room-card:hover .hm-room-image {
    transform: scale(1.05);
    transition: 0.3s;
}

/* ===========================================
           home plus value
   =========================================== */
.hm-plus-value {
    background: var(--accent-color);
}

.hm-value-container {
    padding: 80px 0;
}

.hm-value-content {
    display: flex;
    gap: 90px;
}

.hm-value-why-us {
    padding-top: 70px;
}

.hm-value-why-us-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.plus-valor-item {
    background: var(--white-color);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 21px;
}

.plus-valor-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.hm-value-why-us h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #1F4447;
}

.plus-valor-item h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: var(--secondary-color);
}

.plus-valor-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #242424;
}

/* ===========================================
           home reviews
   =========================================== */
.hm-rew-section {
    overflow: hidden;
}

.hm-rew-viewport {
    width: 100%;
    overflow: hidden;
}

.hm-rew-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    width: 100%;
    cursor: grab;
}

.hm-rew-track:active {
    cursor: grabbing;
}

.hm-rew-card {
    background-color: var(--secondary-color);
    padding: 28px;
    color: var(--white-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: calc((100% - 48px) / 3);
}

.hm-rew-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hm-rew-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.hm-rew-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white-color);
}

.hm-rew-role {
    color: #DC5C45;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

.hm-rew-text {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--white-color);
}

.hm-rew-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.hm-rew-dot {
    width: 16px;
    height: 16px;
    background-color: var(--tertial-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hm-rew-dot.active {
    background-color: var(--main-color);
    opacity: 1;
}


/* ===========================================
           home gallery
   =========================================== */
.hm-sld-section {
    overflow: hidden;
}

.hm-sld-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hm-sld-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.hm-sld-img {
    height: 384px;
    width: 384px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hm-sld-track:hover {
    animation-play-state: paused;
}

@keyframes hm-sld-scroll-anim {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===========================================
           rooms page
   =========================================== */
.kzb-header-hero-rooms {
    height: 460px;
}

.kzb-header-hero__overlay-rooms {
    background: rgba(0, 0, 0, 0.5);
}

.header-hero_title {
    font-weight: 600;
    font-size: 84px;
    line-height: 109px;
    letter-spacing: 0.02em;
    color: var(--white-color);
}

.room-page-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.hm-room-card {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
    cursor: pointer;
}

.hm-room-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.hm-room-card:hover .hm-room-inner {
    transform: rotateY(180deg);
}

.hm-room-card.is-flipped .hm-room-inner {
    transform: rotateY(180deg);
}

.hm-room-front, .hm-room-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hm-room-front {
    background-color: var(--white-color);
    z-index: 2;
    transform: rotateY(0deg);
}

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

.hm-room-overlay-pg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(360deg, #BD4732 0%, rgba(189, 71, 50, 0) 80%);
    padding: 20px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 60%;
}

.hm-room-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white-color);
}

.hm-room-meta {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hm-room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hm-room-meta span img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.hm-room-back {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
    display: flex;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hm-room-price {
    font-size: 1.2rem;
    font-weight: 500;
}

.hm-room-btn {
    background: var(--main-color);
    padding: 12px 30px;
    border: none;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.hm-room-btn:hover {
    background: var(--white-color);
    color: var(--main-color);
}

.hm-pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hm-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    border: 1px solid #E5E5E5;
    color: var(--plain-text);
    font-family: var(--thm-font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hm-page-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.hm-page-link.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    pointer-events: none;
}

.hm-page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 45px;
    color: var(--plain-text);
    font-weight: 600;
    letter-spacing: 2px;
}

/* ===========================================
           room-single
   =========================================== */
.room-sng-carousel {
    padding: 24px 0 48px 0;
}

.room-single-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.room-sng-carousel {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.room-sng-carousel::-webkit-scrollbar {
    display: none;
}

.room-sng-carousel.active {
    cursor: grabbing;
    scroll-snap-type: none;
}

.room-sng-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 15px;
}

.room-sng-card {
    position: relative;
    flex: 0 0 auto;
    height: 500px;
    overflow: hidden;
    scroll-snap-align: center;
    user-select: none;
}

.room-sng-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.hm-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hm-lightbox.show {
    opacity: 1;
}

.hm-lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hm-lightbox-content img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hm-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
    line-height: 1;
}

.hm-lightbox-close:hover {
    color: var(--main-color);
}

.hm-lightbox-prev, .hm-lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10001;
}

.hm-lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.hm-lightbox-prev {
    left: 0;
}

.hm-lightbox-prev:hover, .hm-lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.rm-sng-facilities-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.rm-sng-facilities-content {
    max-width: 100%;
    margin: 0 auto;
}

.rm-sng-header {
    display: flex;
    width: 100%;
    min-height: 120px;
    margin-bottom: 40px;
}

.rm-header-price {
    flex: 1;
    background-color: var(--tertial-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.rm-price-val {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.rm-price-suffix {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.rm-header-action {
    flex: 1;
    background-color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rm-book-btn {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 15px 50px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.rm-book-btn:hover {
    background-color: var(--white-color);
    color: var(--main-color);
}

.rm-meta-list {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    padding-bottom: 20px;
}

.rm-meta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--plain-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.rm-meta-list li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.rm-text-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--plain-text);
    font-size: 1rem;
    text-align: justify;
}

.rm-sng-facilities-grid-area {
    margin-top: 40px;
}

.rm-facilities-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--plain-text);
}

.rm-facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-facilities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--plain-text);
    font-size: 1rem;
}

.rm-facilities-list li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ===========================================
           Restaurant page
   =========================================== */
.kb-res-intro-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.kb-res-text-side {
    flex: 1;
}

.kb-res-desc p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--plain-text);
    text-align: justify;
}

.kb-res-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.kb-res-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-dark);
}

.kb-res-features li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.kb-res-schedule {
    margin-top: 30px;
}

.kb-res-schedule-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--plain-text);
}

.kb-res-schedule p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--plain-text);
    opacity: 0.9;
}

.kb-res-gallery-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
}

.kb-res-gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.kb-res-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kb-res-gallery-item:hover img {
    transform: scale(1.05);
}

.kb-res-gallery-item.big {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.kb-res-gallery-item.small-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.kb-res-gallery-item.small-bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.kb-res-menu-wrapper {
    margin-top: 60px;
}

.kb-res-menu-title {
    margin-bottom: 48px;
    color: var(--plain-text);
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}

.kb-res-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kb-res-menu-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.kb-res-menu-item.kb-visible {
    opacity: 1;
    transform: translateY(0);
}

.kb-res-menu-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 2px;
}

.kb-res-menu-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kb-res-menu-item:hover .kb-res-menu-img-box img {
    transform: scale(1.1);
}

.kb-res-menu-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--plain-text);
}

/* ===========================================
           Contact page
   =========================================== */
.kb-contact-section {
    margin: 60px 0;
}

.kb-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.kb-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--plain-text);
}

.kb-contact-block {
    margin-bottom: 40px;
}

.kb-contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--plain-text);
}

.kb-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.kb-contact-list img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.kb-contact-list a {
    text-decoration: none;
    color: var(--plain-text);
    transition: 0.3s;
}

.kb-contact-list a:hover {
    color: var(--main-color);
}

.kb-contact-socials {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.kb-contact-socials a {
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.kb-contact-socials a:hover {
    background-color: var(--tertial-light);
    transform: rotate(360deg);
}

.kb-contact-form-wrapper {
    background-color: var(--accent-color, #FFF2EF);
    padding: 40px;
}

.kb-contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--plain-text);
}

.kb-contact-honey {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.kb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.kb-form-group {
    position: relative;
    width: 100%;
}

.kb-contact-form input:not([type="checkbox"]),
.kb-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    background-color: var(--white-color);
    border-radius: 2px;
    font-family: var(--thm-font);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.kb-contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.kb-contact-form input:focus, .kb-contact-form textarea:focus {
    border-color: var(--main-color);
}

.kb-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--secondary-dark);
}

.kb-contact-btn {
    width: 100%;
    padding: 15px;
    border: none;
    cursor: pointer;
    background: var(--main-color);
    color: var(--white-color);
    font-weight: 600;
}

.kb-error-msg {
    color: var(--main-color);
    font-size: 0.8rem;
    position: absolute;
    bottom: -18px;
    left: 0;
    display: none;
}

.kb-form-check .contact-terms {
    color: var(--secondary-dark);
}

.kb-form-group.error input {
    border-color: var(--main-color);
}

.kb-form-group.error .kb-error-msg {
    display: block;
}

.kb-form-status {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

.kb-contact-map {
    width: 100%;
    overflow: hidden;
    filter: grayscale(20%);
}

.kb-contact-map iframe {
    width: 100%;
    height: 460px;
    border: 0;
}

/* ===========================================
           Terms & Conditions
   =========================================== */
.kb-tc-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kb-tc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--plain-text);
    margin-bottom: 10px;
}

.kb-tc-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.kb-tc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.kb-tc-sidebar {
    position: sticky;
    top: 100px;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.kb-tc-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.kb-tc-link {
    text-decoration: none;
    color: var(--plain-text);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.kb-tc-link:hover {
    background-color: #f9f9f9;
    color: var(--main-color);
}

.kb-tc-link.active {
    background-color: var(--accent-color);
    color: var(--main-color);
    border-left-color: var(--main-color);
    font-weight: 600;
}

.kb-tc-content {
    max-width: 900px;
}

.kb-tc-article {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.kb-tc-article h2 {
    font-size: 1.5rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.kb-tc-article p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--plain-text);
}

.kb-tc-article ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.kb-tc-article ul li {
    margin-bottom: 8px;
    list-style-type: disc;
    color: var(--plain-text);
}

.kb-tc-article strong {
    color: var(--main-color);
}


/* ===========================================
           footer
   =========================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white-color);
}

.footer-copyright p {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--tertial-color);
    font-weight: 400;
    font-size: 16px;
    color: var(--tertial-light);
}

.footer-copyright p a:hover {
    color: var(--main-color);
}

.footer-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    text-align: center;
    list-style: none;
}

.footer-addres {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: column;
}

.footer-addres-list li a:hover {
    color: var(--main-color);
}

.footer-addres-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.footer-address-center {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-address-thumb img {
    height: 58px;
    object-fit: contain;
}

.footer-addres-socials {
    margin: 0 auto;
}

.footer-addres-socials ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-addres-socials ul li {
    transition: 0.3s;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    padding: 10px;
}

.footer-addres-socials ul li a {
    display: flex;
    line-height: 0;
}

.footer-addres-socials ul li img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-addres-socials ul li:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

.footer-addres-socials ul li:hover img {
    transform: rotate(360deg);
}

/* Legacy Alert Styles (Deprecated - use alert-notification instead) */
.alert-fixed-top-right {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    min-width: 280px;
    max-width: 400px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    opacity: 0.98;
}

/* These are now handled by .alert-success and .alert-danger in notification styles */
/* Keeping for backward compatibility if needed */

/* ===========================================
           BOOKING
   =========================================== */
.bk-section {
    background: var(--accent-color)
}

.bk-search-panel {
    background: var(--white-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px
}

.bk-search-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center
}

.bk-search-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap
}

.bk-date-inputs {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 300px
}

.bk-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bk-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color)
}

.bk-icon {
    color: var(--main-color)
}

.bk-input {
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
    font-family: var(--thm-font);
    font-size: 16px;
    color: var(--plain-text);
    transition: border-color 0.3s, box-shadow 0.2s
}

.bk-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(189, 71, 50, 0.1)
}

.bk-search-btn {
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 6px
}

.bk-results {
    margin-top: 40px
}

.bk-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px
}

.bk-results-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.bk-date-range {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 500
}

.bk-legend {
    display: flex;
    gap: 24px
}

.bk-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--plain-text)
}

.bk-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%
}


.bk-rooms-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px
}

.bk-room-card {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer
}

.bk-room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.bk-card-booked {
    opacity: 0.6
}

.bk-card-booked:hover {
    transform: none;
    box-shadow: var(--shadow-md)
}

.bk-loading-overlay {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    padding: 40px 0
}

.bk-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--accent-color);
    border-top-color: var(--main-color);
    border-radius: 50%;
    animation: bk-spin 0.8s linear infinite
}

@keyframes bk-spin {
    to {
        transform: rotate(360deg)
    }
}

.bk-room-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden
}

.bk-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s
}

.bk-room-card:hover .bk-room-image {
    transform: scale(1.05)
}

.bk-room-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease
}

.bk-badge-hover {
    transform: scale(1.05)
}

.bk-status-available {
    background: rgba(16, 185, 129, 0.9);
    color: var(--white-color)
}

.bk-status-unavailable {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white-color)
}

.bk-room-content {
    padding: 20px
}

.bk-room-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px
}

.bk-room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.bk-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--plain-text)
}

.bk-meta-item svg {
    color: var(--main-color)
}

.bk-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #E5E5E5
}

.bk-room-price {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.bk-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color)
}

.bk-price-period {
    font-size: 14px;
    color: #6B7280
}

.bk-details-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}

.bk-details-btn:hover {
    color: var(--main-color)
}

.bk-details-btn svg {
    transition: transform 0.3s ease
}

.bk-room-card:hover .bk-details-btn svg {
    transform: translateX(3px)
}

.bk-no-rooms {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--plain-text)
}

.bk-no-rooms svg {
    margin: 0 auto 20px;
    color: var(--secondary-color);
    opacity: 0.5
}

.bk-no-rooms p {
    font-size: 18px;
    color: #6B7280
}

.bk-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: bk-fade-in 0.4s ease
}

.bk-modal-content {
    background: var(--white-color);
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: bk-slide-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.bk-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: transform 0.3s, background 0.3s
}

.bk-modal-close:hover {
    background: var(--main-color);
    transform: rotate(90deg)
}

.bk-modal-close:hover svg {
    color: var(--white-color)
}

.bk-modal-close svg {
    color: var(--secondary-color);
    transition: color 0.3s
}

.bk-modal-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    padding: 40px
}

.bk-modal-images {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bk-modal-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px
}

.bk-modal-thumbs {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 8px
}

.bk-modal-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    border: 2px solid transparent
}

.bk-modal-thumb:hover {
    opacity: 0.8;
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
    border-color: var(--main-color)
}

.bk-modal-info {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.bk-modal-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary-color)
}

.bk-modal-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.bk-modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--plain-text)
}

.bk-modal-description p {
    margin-bottom: 12px
}

.bk-facilities-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px
}

.bk-facilities-list {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0
}

.bk-facility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--plain-text)
}

.bk-facility-item img {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.bk-calendar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px
}

.bk-reserved-periods {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bk-period-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--accent-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--plain-text)
}

.bk-period-item svg {
    color: var(--main-color)
}

.bk-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid var(--accent-color)
}

.bk-modal-price {
    display: flex;
    align-items: baseline;
    gap: 8px
}

.bk-price-label {
    font-size: 16px;
    color: var(--plain-text)
}

.bk-view-btn {
    padding: 14px 32px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap
}

.bk-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 71, 50, 0.25)
}

.bk-view-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(189, 71, 50, 0.15)
}

@keyframes bk-fade-in {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes bk-slide-up {
    from {
        transform: translateY(30px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes bk-fade-out {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@media (max-width: 1024px) {
    .bk-modal-grid {
        grid-template-columns:1fr;
        padding: 30px
    }
}

@media (max-width: 768px) {
    .bk-search-panel {
        padding: 30px 20px
    }

    .bk-search-title {
        font-size: 28px
    }

    .bk-search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 16px
    }

    .bk-date-inputs {
        flex-direction: column;
        min-width: 100%;
        gap: 12px
    }

    .bk-input-group {
        gap: 6px
    }

    .bk-search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px
    }

    .bk-rooms-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px
    }

    .bk-room-card {
        border-radius: 6px
    }

    .bk-room-image-wrap {
        height: 200px
    }

    .bk-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .bk-results-title {
        font-size: 24px;
        gap: 8px
    }

    .bk-legend {
        width: 100%;
        gap: 20px
    }

    .bk-modal-content {
        border-radius: 10px;
        max-height: 85vh
    }

    .bk-modal-close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px
    }

    .bk-modal-grid {
        padding: 28px;
        gap: 30px
    }

    .bk-modal-main-image {
        height: 320px;
        border-radius: 6px
    }

    .bk-modal-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .bk-modal-thumb {
        height: 70px;
        border-radius: 4px
    }

    .bk-modal-title {
        font-size: 28px
    }

    .bk-modal-meta {
        gap: 16px
    }

    .bk-room-title {
        font-size: 18px
    }

    .bk-price-amount {
        font-size: 22px
    }

    .bk-facilities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .bk-modal-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding-top: 20px
    }

    .bk-view-btn {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 520px) {
    .bk-section {
        margin: 60px 0
    }

    .bk-search-panel {
        padding: 20px 16px;
        border-radius: 6px;
        margin-bottom: 30px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06)
    }

    .bk-search-title {
        font-size: 22px;
        margin-bottom: 20px
    }

    .bk-search-form {
        gap: 12px
    }

    .bk-date-inputs {
        gap: 12px
    }

    .bk-input {
        padding: 10px 12px;
        font-size: 15px
    }

    .bk-search-btn {
        padding: 11px 20px;
        font-size: 14px
    }

    .bk-rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .bk-room-image-wrap {
        height: 180px
    }

    .bk-room-content {
        padding: 16px
    }

    .bk-room-title {
        font-size: 16px;
        margin-bottom: 10px
    }

    .bk-room-meta {
        gap: 12px;
        margin-bottom: 12px
    }

    .bk-meta-item {
        font-size: 12px;
        gap: 4px
    }

    .bk-room-footer {
        padding-top: 12px;
        gap: 8px
    }

    .bk-price-amount {
        font-size: 20px
    }

    .bk-price-period {
        font-size: 12px
    }

    .bk-details-btn {
        font-size: 12px;
        gap: 2px
    }

    .bk-modal-content {
        border-radius: 8px;
        max-height: 90vh;
        overflow-y: auto
    }

    .bk-modal-grid {
        padding: 16px;
        gap: 20px
    }

    .bk-modal-images {
        gap: 12px
    }

    .bk-modal-main-image {
        height: 250px;
        border-radius: 6px
    }

    .bk-modal-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px
    }

    .bk-modal-thumb {
        height: 60px
    }

    .bk-modal-title {
        font-size: 20px;
        margin-bottom: 12px
    }

    .bk-modal-meta {
        gap: 12px;
        flex-wrap: wrap
    }

    .bk-modal-description {
        font-size: 14px;
        line-height: 1.5
    }

    .bk-facilities-title,
    .bk-calendar-title {
        font-size: 16px;
        margin-bottom: 12px
    }

    .bk-facilities-list {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .bk-period-item {
        padding: 10px;
        font-size: 12px
    }

    .bk-modal-footer {
        flex-direction: column;
        gap: 12px;
        padding-top: 16px
    }

    .bk-modal-price {
        flex-wrap: wrap;
        gap: 4px
    }

    .bk-view-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px
    }
}

/* Booking Form & Calendar Styles */
.booking-form-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 32px 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background: #f9fafb;
    transition: border-color 0.2s;
}
.form-group input:focus {
    border-color: #007bff;
    outline: none;
}
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
    min-height: 80px;
}
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(189, 71, 50, 0.1);
    background: #fff;
}
.calendar-section {
    margin: 24px 0;
    padding: 16px;
    background: #f5f7fa;
    border-radius: 8px;
}
#calendar {
    min-height: 180px;
    margin-bottom: 12px;
}
.blocked-dates-list {
    font-size: 15px;
    color: #b91c1c;
}
.blocked-dates-list ul {
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
}
.blocked-dates-list li {
    padding: 2px 0;
}
.checkout-section {
    margin-top: 24px;
    padding: 16px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 16px;
    color: #222;
}
.checkout-section div {
    margin-bottom: 8px;
}
.thm-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.thm-btn:hover {
    background: #0056b3;
}

/* ==========================================
   NOTIFICATION ALERTS - Modern Toast Style
   ========================================== */
.alert-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: alert-slide-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--thm-font);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.alert-message {
    color: inherit;
}

.alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Success Alert */
.alert-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white-color);
}

.alert-success .alert-icon {
    color: rgba(255, 255, 255, 0.9);
}

/* Error/Danger Alert */
.alert-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white-color);
}

.alert-danger .alert-icon {
    color: rgba(255, 255, 255, 0.9);
}

/* Hiding Animation */
.alert-hiding {
    animation: alert-slide-out 0.3s ease-out forwards;
}

/* Animations */
@keyframes alert-slide-in {
    from {
        opacity: 0;
        transform: translateX(400px) translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes alert-slide-out {
    to {
        opacity: 0;
        transform: translateX(400px) translateY(-20px) scale(0.95);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .alert-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 14px 16px;
        font-size: 14px;
    }

    .alert-icon {
        width: 20px;
        height: 20px;
    }

    .alert-close {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 380px) {
    .alert-notification {
        top: 12px;
        right: 12px;
        left: 12px;
        padding: 12px 12px;
        font-size: 13px;
    }

    .alert-content {
        gap: 10px;
    }

    .alert-icon {
        width: 18px;
        height: 18px;
    }
}

/* inceput cod */
/* sfarsit cod */

/* ===========================================
home about section
=========================================== */
.hm-about {width: 100%;}
.hm-about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}
.hm-about__images {position: relative;width: 90%;}
.hm-about__image--big img {width: 100%; height: auto; object-fit: cover;}
.hm-about__image--small {position: absolute; bottom: -40px; right: -58px; width: 55%;}
.hm-about__image--small img {width: 100%; object-fit: cover;}
.hm-about__title {
    color: var(--secondary-color);
    margin-bottom: 36px;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
}
.hm-about__text {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.hm-about__btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    transition: 0.3s;
}
.hm-about__btn:hover {background: var(--main-color); color: var(--white-color);}


/* ===========================================
            about us page
   =========================================== */
.kzb-ab-us-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
    margin-bottom: 60px;
}
.kzb-ab-us-row:last-child {margin-bottom: 0;}
.kzb-ab-us-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.02em;
    padding-bottom: 36px;
    color: var(--secondary-color);
}
.kzb-ab-us-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--plain-text);
}
.kzb-ab-us-content p:last-of-type {margin-bottom: 0;}
.kzb-ab-us-image {width: 100%; overflow: hidden;}
.kzb-ab-us-image img {
    width: 100%; height: auto;
    object-fit: cover;display: block;
}

.kzb-ab-us-exp-section {
    background-color: var(--white-color);
}
.kzb-ab-us-exp-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}
.kzb-ab-us-exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.kzb-ab-us-exp-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}
.kzb-ab-us-exp-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.kzb-ab-us-exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.kzb-ab-us-exp-card:hover .kzb-ab-us-exp-img img {
    transform: scale(1.08);
}
.kzb-ab-us-exp-label {
    background-color: var(--accent-color, #FFF2EF);
    color: var(--plain-text);
    text-align: center;
    padding: 20px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.kzb-ab-us-exp-card:hover .kzb-ab-us-exp-label {
    background-color: var(--tertial-light, #F8E3E0);
}

/* ==========================================
            Events page
   ========================================== */
.kzb-event-pg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}
.kzb-event-pg-content{display: flex;flex-direction: column;gap: 36px;}
.kzb-event-pg-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}
.kzb-event-pg-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--plain-text);
}
.kzb-event-pg-content p:last-child {margin-bottom: 0;}
.kzb-event-pg-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 20px;
}
.kzb-event-pg-img {
    border-radius: 4px;
    overflow: hidden;
    background-color: #E5E5E5;
}
.kzb-event-pg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.kzb-event-pg-img:hover img {transform: scale(1.05);}
.kzb-event-pg-img.small-top {grid-column: 1 / 2; grid-row: 1 / 2;}
.kzb-event-pg-img.small-bottom {grid-column: 1 / 2; grid-row: 2 / 3;}
.kzb-event-pg-img.large-right {grid-column: 2 / 3; grid-row: 1 / 3;}

.kzb-ev-types-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: stretch;
}
.kzb-ev-types-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kzb-ev-types-title {margin-bottom: 36px;}
.kzb-ev-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.kzb-ev-types-item {
    display: flex;
    align-items: stretch;
    background-color: var(--accent-color, #FFF2EF);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.kzb-ev-types-item:hover {transform: translateY(-3px);}
.kzb-ev-types-icon {
    background-color: var(--main-color, #BD4732);
    flex-shrink: 0; padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kzb-ev-types-icon img{width: 32px;height: 32px;object-fit: cover;}

.kzb-ev-types-text {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--plain-text);
    line-height: 1.4;
}
.kzb-ev-types-desc {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--plain-text);
    opacity: 0.9;
    line-height: 1.6;
}
.kzb-ev-types-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e5e5e5;
}
.kzb-ev-types-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kzb-ev-auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}
.kzb-ev-auth-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 100%;
}
.kzb-ev-auth-img-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: #E5E5E5;
    min-height: 450px;
}
.kzb-ev-auth-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kzb-ev-auth-content {
    display: flex;gap: 24px;
    flex-direction: column;
}
.kzb-ev-auth-features {
    display: flex;gap: 36px;
    flex-wrap: wrap; row-gap: 12px;
}
.kzb-ev-auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--plain-text);
    font-weight: 500;
}
.kzb-ev-auth-feature-item img {width: 32px;}

.kzb-ev-book-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 53px; align-items: start;
}
.kzb-ev-book-title {margin-bottom: 36px;}
.kzb-ev-book-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.kzb-ev-book-step {display: flex;align-items: center;gap: 20px;}
.kzb-ev-book-step-num {
    width: 45px;
    height: 45px;
    background-color: var(--tertial-color, #A6736D);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 2px;
    flex-shrink: 0;
}
.kzb-ev-book-step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plain-text);
    line-height: 1.4;
}

.kzb-ev-book-form-wrapper {
    background-color: var(--accent-color, #FFF2EF);
    padding: 25px;
}
.kzb-ev-book-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--plain-text);
    margin-bottom: 30px;
}
.kzb-ev-book-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.kzb-ev-book-group {width: 100%;}

.kzb-ev-book-form input[type="text"],
.kzb-ev-book-form input[type="email"],
.kzb-ev-book-form input[type="tel"],
.kzb-ev-book-form input[type="date"],
.kzb-ev-book-form textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--white-color);
    border-radius: 2px;
    font-family: var(--thm-font);
    font-size: 1rem;
    color: var(--plain-text);
    background: var(--white-color);
    transition: 0.3s;
    outline: none;
}
.kzb-ev-book-form input:focus,
.kzb-ev-book-form textarea:focus {border-color: var(--main-color);}
.kzb-ev-book-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--plain-text);
    margin-bottom: 5px;
    opacity: 0.8;
}
.kzb-ev-book-form textarea {
    resize: vertical;
    margin-bottom: 5px;
}

.kzb-ev-book-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.kzb-ev-book-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--plain-text);
}
.kzb-ev-book-submit {
    background-color: var(--main-color, #BD4732);
    color: #fff;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
}
.kzb-ev-book-error-msg {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: right;
    font-weight: 500;
}
.kzb-ev-book-check label a{color: var(--main-color);}
.kzb-ev-book-check label a:hover{color: var(--secondary-color);}

.kzb-ev-error input,
.kzb-ev-error textarea {
    border-color: var(--main-color, #BD4732) !important;
}
.kzb-ev-book-group .kzb-ev-book-error-msg,
.kzb-ev-book-check-wrapper .kzb-ev-book-error-msg {
    display: block;
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}
.kzb-ev-book-check-wrapper {
    margin-bottom: 10px;
}

/* Toast notification */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.kb-toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    font-size: 14px;
    line-height: 1.5;
}
.kb-toast-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.kb-toast-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===========================================
       Alpine x-cloak & reCAPTCHA transition
   =========================================== */
[x-cloak] {
    display: none !important;
}

.kb-recaptcha-enter {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.kb-recaptcha-enter-start {
    opacity: 0;
    transform: translateY(-8px);
}

.kb-recaptcha-enter-end {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1200px){
    .container {width: 98%;}
    .hm-rew-card {width: calc((100% - 24px) / 2);}
    .room-sng-track {gap: 15px; padding: 0;}
    .room-sng-card {width: 50vw; height: 300px;}
}

@media screen and (max-width: 1060px) {
    .plus-valor-item{padding: 40px;}
}

@media (max-width: 1024px) {
    .kb-res-intro-wrapper {flex-direction: column; }
    .kb-res-gallery-side {width: 100%; grid-template-rows: 250px 250px;}
    .kb-res-menu-grid {grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 992px) {
    .kzb-header__menu {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background: #0000005c;
        gap: 20px;
        padding: 20px;
        transition: left 0.3s;
    }
    .kzb-header.sticky .kzb-header__menu{background: var(--white-color);border-top: 1px solid #0003;}
    .kzb-header.sticky .kzb-header__burger span{background: var(--plain-text);}
    .kzb-header__menu.active {left: 0;}
    .kzb-header__burger {display: flex;}
    .kzb-header__nav {flex: none;}
    .hm-about__container {grid-template-columns: 1fr; gap: 40px;}
    .hm-about__images {gap: 15px;}
    .hm-room-cards-container {flex-direction: column;}
    .hm-room-main-card {min-height: 400px;}
    .hm-room-side-cards {flex-direction: row;}
    .hm-room-side-card {flex: 1; min-height: 250px;}
    .hm-value-content{gap: 40px;}
    .kzb-header-hero__title {font-size: 4rem;}
    .kzb-header-hero__subtitle {font-size: 1rem;}
    .kzb-header-hero__btn {padding: 10px 20px;font-size: 20px; }
    .kb-contact-wrapper {grid-template-columns: 1fr; gap: 40px;}
    .kb-contact-info {order: 2;}
    .kb-contact-form-wrapper {order: 1;}

    .kb-tc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .kb-tc-sidebar {
        position: relative; 
        top: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        padding-right: 0;
        overflow-x: auto; 
        white-space: nowrap;
    }
    .kb-tc-nav {flex-direction: row; }
    .kb-tc-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 15px;
        flex-shrink: 0;
    }
    .kb-tc-link.active {border-left-color: transparent; border-bottom-color: var(--main-color);    }
}

@media screen and (max-width: 862px){
    .hm-value-why-us{padding-top: 0;}
    .hm-value-content{display: grid;}
    .hm-value-why-us h1{font-size: 35px;}
    .footer-content{flex-direction: column;gap: 90px;}
    .header-hero_title{font-size: 55px;}

}

@media (max-width: 768px) {
    .hm-services-card {width: 100%; min-height: 250px;}
    .hm-services-title{font-size: 25px;}
    .hm-value-why-us-cards{grid-template-columns: 1fr 1fr;}
    .hm-rew-card {width: 100%; }    
    .hm-rew-section {padding: 60px 0;}
    .hm-sld-img {height: 200px;}
    .hm-sld-track {gap: 15px;}
    .hm-page-link {width: 35px; height: 35px; font-size: 14px;}
    .hm-pagination {gap: 6px; }
    .hm-lightbox-close {top: 15px;right: 20px;font-size: 35px;}
    .hm-lightbox-prev, .hm-lightbox-next {padding: 10px; font-size: 24px;}
    .rm-sng-header {flex-direction: column;}
    .rm-header-price, .rm-header-action {width: 100%; padding: 30px 0;}
    .rm-meta-list {flex-wrap: wrap;gap: 20px;}
    .rm-facilities-list {grid-template-columns: repeat(2, 1fr);}
    .kb-res-gallery-side {grid-template-columns: 1fr; grid-template-rows: auto;}
    .kb-res-gallery-item.big {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }
    .kb-res-gallery-item.small-top, .kb-res-gallery-item.small-bottom {height: 200px;}
    .kb-res-menu-grid {grid-template-columns: 1fr; gap: 40px;}
}

@media (max-width: 680px) {
    .hm-services-cards{grid-template-columns: auto;}
    .hm-services-card {min-height: 150px;}
    .hm-room-heading{font-size: 35px;}
     .header-hero_title{font-size: 45px;}
     .kzb-header-hero-rooms {height: 350px;}
}

@media (max-width: 600px) {
    .kb-form-row {grid-template-columns: 1fr; gap: 0;}
    .kb-form-group {margin-bottom: 20px;}
    .kb-contact-form-wrapper {padding: 25px;}
}

@media screen and (max-width: 576px) {
    .hm-about__title {font-size: 1.7rem;}
    .hm-about__image--small {bottom: -20px; right: -40px; width: 50%; }
    .hm-room-side-cards {flex-direction: column;}
    .hm-room-price-info {margin: 5px 0;}
    .hm-room-heading{font-size: 30px;}
}

@media screen and (max-width: 520px) {
    .kzb-header__btn{display: none;}
    .kzb-header-hero__title {font-size: 3rem;}
    .hm-rom-head{flex-direction: column;align-items: baseline;}
    .hm-value-why-us-cards{grid-template-columns: 1fr;}
    .hm-value-why-us h1{font-size: 30px;}
    .header-hero_title{font-size: 35px;line-height: 40px;}
    .room-sng-card {height: 250px;}
}

@media screen and (max-width: 380px) {
    .kzb-header__container{gap: 20px;}
    .hm-room-content{padding: 15px;}
    .hm-room-details-bar{flex-direction: column; gap: 20px;align-items: baseline;}
}