@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600&display=swap");

:root {
    --color-primary: #0573ba;
    --color-primary-dark: #045f99;
    --color-primary-soft: #4ba3d8;
    --color-accent: #b78c4b;
    --color-accent-dark: #96713c;
    --color-accent-soft: #f5efe5;
    --color-heading: #142438;
    --color-heading-dark: #13243a;
    --color-navbar-text: #182126;
    --color-body-text: #6e7c8a;
    --color-white: #ffffff;
    --color-dark: #101820;
    --color-border: #e1e8ef;
    --color-section-bg: #f7f9fc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

input,
summary {
    font: inherit;
}

/* Shared components */

.section-shell {
    position: relative;
    overflow: hidden;
}

.section-heading {
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.section-label::before {
    width: 42px;
    height: 1px;
    flex-shrink: 0;
    background-color: var(--color-accent);
    content: "";
}

.section-title,
.card-title,
.footer-title,
.testimonial-author-info h3 {
    color: var(--color-heading);
    font-family: "Cormorant Garamond", serif;
}

.section-title {
    margin: 0;
    font-size: clamp(48px, 4.2vw, 70px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.8px;
}

.section-description {
    margin: 22px 0 0;
    color: #6e7c8a;
    font-size: 16px;
    line-height: 1.8;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 16px 27px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease,
        color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgb(20 36 56 / 16%);
    transform: translateY(-2px);
}

.primary-btn i,
.text-link i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i,
.text-link:hover i {
    transform: translateX(5px);
}

.card-surface {
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    box-shadow: 0 18px 50px rgb(20 36 56 / 8%);
    transition: transform 0.4s ease, box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.hover-lift:hover {
    border-color: rgb(5 115 186 / 22%);
    box-shadow: 0 28px 65px rgb(20 36 56 / 13%);
    transform: translateY(-8px);
}

.card-title {
    margin: 0;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(5 115 186 / 20%);
    color: var(--color-primary);
    transition: background-color 0.35s ease, color 0.35s ease,
        transform 0.35s ease, box-shadow 0.35s ease;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--color-primary);
}

/* Image hover */

.image-card,
.room-image,
.about-main-image {
    overflow: hidden;
}

.image-card img,
.room-image img,
.about-main-image img {
    display: block;
    transition: transform 0.8s ease;
}

.image-card:hover img,
.room-card:hover .room-image img,
.about-main-image:hover img {
    transform: scale(1.05);
}

.room-card.hover-lift:hover {
    transform: none;
}

/* Reveal animations */

.reveal {
    opacity: 0;
    transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(45px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay-1 {
    transition-delay: 0.4s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Topbar */

.topbar {
    background-color: var(--color-navbar-text);
    color: var(--color-white);
}

.topbar-content {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 60px;
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.topbar-phone i {
    font-size: 15px;
}

.topbar-phone:hover {
    color: var(--color-accent);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.topbar-socials a:hover {
    color: var(--color-accent);
}

/* Main navbar */

.main-navbar {
    position: relative;
    background-color: var(--color-white);
    border-bottom: 1px solid #e8e8e8;
}

.navbar-content {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-inline: 60px;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo img {
    width: 190px;
    height: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-links>li {
    position: relative;
}

.navbar-links>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 112px;
    color: var(--color-navbar-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.navbar-links>li>a::after {
    position: absolute;
    right: 0;
    bottom: 29px;
    left: 0;
    height: 2px;
    background-color: var(--color-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-links>li>a:hover,
.navbar-links>li>a.active {
    color: var(--color-accent);
}

.navbar-links>li>a:hover::after,
.navbar-links>li>a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Language dropdown */

.language-dropdown {
    position: relative;
}

.language-dropdown summary {
    list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 112px;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: var(--color-navbar-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-button:hover {
    color: var(--color-accent);
}

.language-button i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown[open] .language-button i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 20;
    min-width: 175px;
    margin: 0;
    padding: 8px;
    border: 1px solid #e5e5e5;
    background-color: var(--color-white);
    box-shadow: 0 14px 35px rgb(0 0 0 / 12%);
    list-style: none;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    color: var(--color-navbar-text);
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-menu a:hover {
    background-color: #f5f2ed;
    color: var(--color-accent);
}

.language-menu img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

/* Mobile toggle */

.navbar-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.navbar-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 7px 0;
    background-color: var(--color-navbar-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-links>li>.book-now-btn {
    min-height: auto;
    padding: 15px 30px;
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.navbar-links>li>.book-now-btn::after {
    display: none;
}

.navbar-links>li>.book-now-btn:hover {
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #101417;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    width: 100%;
    height: 80vh;
    min-height: 720px;
}

.hero-section .carousel-item {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 7s ease;
}

.hero-section .carousel-item.active .hero-image {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgb(8 14 19 / 76%) 0%,
            rgb(8 14 19 / 48%) 43%,
            rgb(8 14 19 / 16%) 72%,
            rgb(8 14 19 / 8%) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 70px 8%;
}

.hero-text {
    width: 56%;
}

.hero-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-label::before {
    width: 42px;
    height: 1px;
    background-color: var(--color-accent);
    content: "";
}

.hero-text h1,
.hero-text h2 {
    margin: 0;
    color: var(--color-white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 5.2vw, 82px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -1px;
}

.hero-text p {
    width: 82%;
    margin: 27px 0 34px;
    color: rgb(255 255 255 / 82%);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 27px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.hero-primary-btn:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-primary);
}

.hero-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: rgb(255 255 255 / 55%);
    content: "";
    transform: scaleX(1);
    transform-origin: left;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.hero-link:hover {
    color: var(--color-white);
}

.hero-link:hover::after {
    background-color: var(--color-accent);
    transform: scaleX(0.65);
}

.hero-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hero-link:hover i {
    transform: translateX(5px);
}

.hero-navigation {
    position: absolute;
    right: 7%;
    bottom: 55px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-control {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-white);
    font-size: 14px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.hero-control:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.hero-navigation-line {
    width: 35px;
    height: 1px;
    background-color: rgb(255 255 255 / 40%);
}

.hero-scroll {
    position: absolute;
    bottom: 55px;
    left: 8%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgb(255 255 255 / 65%);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 55px;
    height: 1px;
    overflow: hidden;
    background-color: rgb(255 255 255 / 35%);
}

.hero-scroll-line::after {
    display: block;
    width: 50%;
    height: 100%;
    background-color: var(--color-primary);
    content: "";
    animation: heroScrollLine 2.3s ease-in-out infinite;
}

.hero-section .carousel-item.active .hero-label {
    animation: heroFadeUp 0.7s 0.1s both;
}

.hero-section .carousel-item.active h1,
.hero-section .carousel-item.active h2 {
    animation: heroFadeUp 0.8s 0.25s both;
}

.hero-section .carousel-item.active .hero-text p {
    animation: heroFadeUp 0.8s 0.4s both;
}

.hero-section .carousel-item.active .hero-actions {
    animation: heroFadeUp 0.8s 0.55s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScrollLine {
    0% {
        transform: translateX(-110%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(220%);
    }
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background-color: var(--color-section-bg);
}

.about-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background-color: #eef4fa;
    content: "";
}

.about-row {
    position: relative;
    z-index: 2;
    padding: 0 7%;
}

.about-visual {
    position: relative;
    min-height: 650px;
    padding-right: 75px;
}

.about-main-image {
    position: absolute;
    top: 0;
    right: 75px;
    bottom: 60px;
    left: 0;
    overflow: hidden;
}

.about-main-image img,
.about-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-main-image img {
    transition: transform 0.8s ease;
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    height: 270px;
    overflow: hidden;
    border: 10px solid var(--color-section-bg);
    box-shadow: 0 24px 60px rgb(15 38 61 / 14%);
}

.about-experience-card {
    position: absolute;
    top: 55px;
    left: -28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 235px;
    padding: 23px 27px;
    background-color: var(--color-primary);
    box-shadow: 0 20px 45px rgb(5 115 186 / 25%);
    color: var(--color-white);
}

.about-experience-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 0.85;
}

.about-experience-text {
    display: flex;
    flex-direction: column;
    padding-left: 17px;
    border-left: 1px solid rgb(255 255 255 / 35%);
    font-size: 13px;
    letter-spacing: 1.1px;
    line-height: 1.5;
    text-transform: uppercase;
}

.about-experience-text strong {
    font-weight: 600;
}

.about-experience-text span {
    color: rgb(255 255 255 / 75%);
}

.about-shape {
    position: absolute;
    top: -38px;
    right: 35px;
    width: 130px;
    height: 130px;
    border: 1px solid rgb(5 115 186 / 25%);
    border-radius: 50%;
}

.about-shape::before,
.about-shape::after {
    position: absolute;
    border: 1px solid rgb(5 115 186 / 15%);
    border-radius: 50%;
    content: "";
}

.about-shape::before {
    inset: 18px;
}

.about-shape::after {
    inset: 38px;
}

.about-content {
    position: relative;
    padding-left: 85px;
}

.about-label span {
    width: 42px;
    height: 1px;
    background-color: var(--color-accent);
}

.about-intro {
    margin: 28px 0 17px;
    color: #263b50;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
}

.about-description {
    margin: 0;
    color: #6e7b8a;
    font-size: 16px;
    line-height: 1.85;
}

.about-features {
    margin-top: 38px;
    padding: 32px 0;
    border-top: 1px solid #dfe6ed;
    border-bottom: 1px solid #dfe6ed;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(5 115 186 / 22%);
    color: var(--color-primary);
    font-size: 18px;
}

.about-feature h3 {
    margin: 0 0 7px;
    color: #17283a;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
}

.about-feature p {
    margin: 0;
    color: #7a8793;
    font-size: 13px;
    line-height: 1.65;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 38px;
}

.about-rating {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stars {
    display: flex;
    gap: 4px;
    color: var(--color-accent);
    font-size: 12px;
}

.about-rating span {
    color: #6d7b89;
    font-size: 13px;
}

.facilities-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: var(--color-section-bg);
}

.facilities-section::before {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 430px;
    height: 430px;
    border: 1px solid rgb(5 115 186 / 10%);
    border-radius: 50%;
    content: "";
}

.facilities-section::after {
    position: absolute;
    right: 80px;
    bottom: -230px;
    width: 500px;
    height: 500px;
    border: 1px solid rgb(5 115 186 / 8%);
    border-radius: 50%;
    content: "";
}

.facilities-wrapper {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 7%;
}

.facilities-heading {
    padding-right: 20px;
}

.facilities-heading p {
    margin: 28px 0 34px;
}

.facilities-cards {
    position: relative;
}

.facility-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    padding: 40px 32px 35px;
}

.facility-card::before {
    position: absolute;
    top: -95px;
    right: -95px;
    width: 185px;
    height: 185px;
    border: 1px solid rgb(5 115 186 / 10%);
    border-radius: 50%;
    content: "";
    transition:
        transform 0.5s ease,
        background-color 0.5s ease;
}

.facility-card:hover::before {
    background-color: rgb(5 115 186 / 5%);
    transform: scale(1.15);
}

.facility-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    border: 1px solid rgb(5 115 186 / 18%);
    background-color: #f3f8fc;
    color: var(--color-primary);
    font-size: 28px;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.facility-card:hover .facility-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-4px);
}

.facility-number {
    position: absolute;
    top: 33px;
    right: 28px;
    color: rgb(20 36 56 / 12%);
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.facility-card p {
    margin: 0;
    color: #72808e;
    font-size: 15px;
    line-height: 1.8;
}

.facility-line {
    position: absolute;
    right: 32px;
    bottom: 0;
    left: 32px;
    height: 3px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-line {
    transform: scaleX(1);
}

.rooms-section {
    position: relative;
    overflow: hidden;
    padding: 120px 6%;
    background-color: #f5f8fc;
}

.rooms-section::before {
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgb(5 115 186 / 10%);
    border-radius: 50%;
    content: "";
}

.rooms-section .container-fluid {
    position: relative;
    z-index: 2;
}

.rooms-heading {
    margin-bottom: 55px;
}

.rooms-heading p {
    margin-top: 23px;
}

.rooms-list {
    position: relative;
}

.room-card {
    height: 100%;
    overflow: hidden;
}

.room-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.room-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgb(10 20 30 / 3%) 45%,
            rgb(10 20 30 / 32%) 100%);
    content: "";
}

.room-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-content {
    position: relative;
    min-height: 255px;
    padding: 30px 29px 28px;
}

.room-details {
    min-height: 80px;
    margin-top: 18px;
}

.room-details p {
    margin: 0 0 7px;
    color: #6f7d8b;
    font-size: 14px;
    line-height: 1.65;
}

.rooms-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.gallery-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-color: var(--color-white);
}

.gallery-section .container-fluid {
    padding: 0 6%;
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 52px;
}

.gallery-heading p {
    margin-top: 23px;
}

.gallery-carousel {
    position: relative;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item a {
    position: relative;
    height: 430px;
    display: block;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgb(8 20 31 / 4%) 35%,
            rgb(8 20 31 / 48%) 100%);
    opacity: 0.75;
    transition:
        background-color 0.4s ease,
        opacity 0.4s ease;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 75%);
    border-radius: 50%;
    background-color: rgb(8 20 31 / 18%);
    color: var(--color-white);
    font-size: 17px;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-carousel .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 35px;
}

.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid #d6e0e8;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-heading);
    font-size: 14px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.gallery-carousel .owl-nav button.owl-prev:hover,
.gallery-carousel .owl-nav button.owl-next:hover {
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.gallery-carousel .owl-dots {
    display: none;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background-color: #f3f7fb;
}

.testimonials-section::before {
    position: absolute;
    top: -170px;
    right: -150px;
    width: 390px;
    height: 390px;
    border: 1px solid rgb(5 115 186 / 10%);
    border-radius: 50%;
    content: "";
}

.testimonials-section::after {
    position: absolute;
    bottom: -210px;
    left: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgb(5 115 186 / 8%);
    border-radius: 50%;
    content: "";
}

.testimonials-section .container-fluid {
    position: relative;
    z-index: 2;
    padding: 0 7%;
}

.testimonials-heading {
    margin-bottom: 48px;
}

.testimonials-heading p {
    margin-top: 22px;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .item {
    padding-top: 8px;
    padding-bottom: 8px;
}

.testimonial-card {
    width: 100%;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
}

.testimonial-accent {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-primary);
}

.testimonial-accent::before {
    position: absolute;
    top: -55px;
    left: -55px;
    width: 150px;
    height: 150px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    content: "";
}

.testimonial-accent::after {
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 50%;
    content: "";
}

.testimonial-quote {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-size: 42px;
}

.testimonial-review-number {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 2;
    color: rgb(255 255 255 / 55%);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    transform: translateX(-50%);
}

.testimonial-content {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 52px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-flag {
    width: 58px !important;
    height: 58px;
    flex: 0 0 58px;
    display: block;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 7px 20px rgb(20 36 56 / 14%);
    object-fit: cover;
}

.testimonial-author-info h3 {
    margin: 0 0 4px;
    color: var(--color-heading-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
}

.testimonial-author-info span {
    color: #788796;
    font-size: 14px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: var(--color-accent);
    font-size: 13px;
}

.testimonial-text {
    margin: 0;
    color: #667788;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    line-height: 1.65;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
    padding-top: 21px;
    border-top: 1px solid #e6edf2;
    color: #82909d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.testimonial-bottom i {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(5 115 186 / 10%);
    color: var(--color-primary);
    font-size: 9px;
}

.testimonials-carousel .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid #d2dee7;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-heading-dark);
    font-size: 14px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.testimonials-carousel .owl-dots {
    display: none;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 95px 0 0;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.site-footer::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgb(255 255 255 / 6%);
    border-radius: 50%;
    content: "";
}

.site-footer::after {
    position: absolute;
    bottom: -220px;
    left: -160px;
    width: 460px;
    height: 460px;
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 50%;
    content: "";
}

.site-footer .container-fluid {
    position: relative;
    z-index: 2;
    padding: 0 6%;
}

.footer-main {
    margin: 0;
    padding-bottom: 70px;
}

.footer-column {
    position: relative;
}

.footer-title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 15px;
    color: var(--color-white);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 500;
}

.footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 1px;
    background-color: var(--color-accent);
    content: "";
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: rgb(255 255 255 / 74%);
    font-size: 15px;
    line-height: 1.65;
}

.footer-contact-list i {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 4px;
    color: var(--color-primary-soft);
    font-size: 15px;
    text-align: center;
}

.footer-contact-list a {
    color: rgb(255 255 255 / 74%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--color-white);
}

.footer-socials {
    display: flex;
    gap: 11px;
    margin-top: 30px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 14px;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-about {
    margin: 0;
    color: rgb(255 255 255 / 68%);
    font-size: 15px;
    line-height: 1.85;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(255 255 255 / 72%);
    font-size: 15px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links i {
    color: var(--color-primary-soft);
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-map {
    position: relative;
    height: 220px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 12%);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(20%);
}

.footer-bottom {
    margin: 0;
    padding: 27px 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p {
    margin: 0;
    color: rgb(255 255 255 / 60%);
    font-size: 13px;
    line-height: 1.5;
}

.footer-powered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-imtech-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
}

.footer-imtech-logo {
    width: 110px;
    max-width: 110px;
    height: 34px;
    max-height: 34px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer-imtech-link:hover .footer-imtech-logo {
    opacity: 0.82;
    transform: translateY(-2px);
}

.footer-booking a {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-booking a:hover {
    color: var(--color-primary-soft);
}

.footer-bottom>div {
    display: flex;
    align-items: center;
}

.footer-bottom>div:first-child {
    justify-content: flex-start;
}

.footer-bottom>div:nth-child(2) {
    justify-content: center;
}

.footer-bottom>div:last-child {
    justify-content: flex-end;
}

.footer-column {
    height: 100%;
}

.footer-map {
    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-map:hover {
    border-color: rgb(75 163 216 / 55%);
    transform: translateY(-3px);
}

.about-label {
    margin-bottom: 22px;
}

/* Subtle decorative motion */

.about-experience-card {
    animation: gentleFloat 5s ease-in-out infinite;
}

.about-shape,
.facilities-section::before,
.rooms-section::before,
.testimonials-section::before {
    animation: slowDrift 12s ease-in-out infinite alternate;
}

.facility-card:hover .facility-icon,
.about-feature:hover .about-feature-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 26px rgb(5 115 186 / 18%);
    transform: translateY(-4px);
}

.footer-socials a:hover,
.hero-control:hover,
.gallery-carousel .owl-nav button:hover,
.testimonials-carousel .owl-nav button:hover {
    transform: translateY(-2px);
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes slowDrift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(10px, 8px, 0);
    }
}

.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(10 20 30 / 52%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    text-align: center;
}

.about-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 7vw, 86px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
}

/* Rooms page */

.rooms-page-section {
    padding: 120px 0;
    background-color: var(--color-section-bg);
}

.rooms-page-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.rooms-page-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
    
}

.room-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 400px;
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 55px rgb(20 36 56 / 8%);
}

.room-row:nth-child(even) .room-row-image {
    order: 2;
}

.room-row-image {
    overflow: hidden;
}

.room-row-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-row:hover .room-row-image img {
    transform: scale(1.04);
}

.room-row-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 35px 45px;
}

.room-row-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.room-title-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-size: 15px;
}

.room-row-title h3 {
    margin: 0;
    color: var(--color-heading);
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.15;
}

.room-size {
    margin: 25px 0 0;
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
}

.room-description {
    max-width: 520px;
    margin: 17px 0 0;
    color: var(--color-body-text);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 12px;
}

.room-amenities {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 18px 0 22px;
    color: var(--color-accent);
    font-size: 25px;
}

.room-amenities span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gallery-page-section {
    padding: 110px 0;
    background-color: var(--color-white);
}

.gallery-page-item {
    height: 320px;
    display: block;
    overflow: hidden;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-page-item:hover img {
    filter: brightness(0.82);
    transform: scale(1.04);
}

.contact-section {
    padding: 110px 0;
    background-color: var(--color-section-bg);
}

.contact-info {
    height: 100%;
    padding: 50px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.contact-heading {
    margin-bottom: 38px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(5 115 186 / 20%);
    color: var(--color-primary);
    font-size: 18px;
}

.contact-item h3 {
    margin: 0 0 7px;
    color: var(--color-heading);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--color-body-text);
    font-size: 15px;
    line-height: 1.7;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-map {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* ==================================================
   RESPONSIVE
   ================================================== */

   @media (max-width: 1199.98px) {
    .topbar-content,
    .navbar-content {
        padding-inline: 35px;
    }

    .navbar-content {
        gap: 30px;
    }

    .navbar-links {
        gap: 24px;
    }

    .navbar-logo img {
        width: 165px;
    }

    .hero-text {
        width: 68%;
    }

    .about-row,
    .facilities-wrapper,
    .testimonials-section .container-fluid {
        padding-inline: 5%;
    }

    .about-content {
        padding-left: 45px;
    }

    .facility-card {
        padding-inline: 25px;
    }

    .room-image {
        height: 300px;
    }

    .testimonial-content {
        padding: 38px 40px;
    }

    .site-footer .container-fluid,
    .gallery-section .container-fluid {
        padding-inline: 5%;
    }
}

@media (max-width: 991.98px) {
    .topbar-content,
    .navbar-content {
        padding-inline: 25px;
    }

    .navbar-content {
        min-height: 90px;
    }

    .navbar-logo img {
        width: 150px;
    }

    .navbar-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 18px 25px 25px;
        border-top: 1px solid var(--color-border);
        background-color: var(--color-white);
        box-shadow: 0 18px 35px rgb(20 36 56 / 10%);
    }

    .navbar-checkbox:checked ~ .navbar-menu {
        display: block;
    }

    .navbar-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .navbar-links > li > a,
    .language-button {
        width: 100%;
        min-height: auto;
        padding: 13px 0;
    }

    .navbar-links > li > a::after {
        bottom: 7px;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
    }

    .navbar-booking {
        margin-top: 12px;
    }

    .navbar-links > li > .book-now-btn {
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        height: 72vh;
        min-height: 620px;
    }

    .hero-content {
        padding-inline: 6%;
    }

    .hero-text {
        width: 82%;
    }

    .hero-text p {
        width: 95%;
    }

    .about-section,
    .rooms-section,
    .gallery-section,
    .rooms-page-section,
    .gallery-page-section,
    .contact-section {
        padding-block: 90px;
    }

    .facilities-section,
    .testimonials-section {
        padding-block: 85px;
    }

    .about-visual {
        min-height: 580px;
        margin-bottom: 65px;
    }

    .about-content {
        padding-left: 0;
    }

    .facilities-heading {
        margin-bottom: 45px;
        padding-right: 0;
    }

    .facility-card {
        min-height: 350px;
    }

    .room-image {
        height: 330px;
    }

    .gallery-item a {
        height: 380px;
    }

    .testimonial-accent,
    .testimonial-content {
        min-height: 300px;
    }

    .footer-main > div {
        margin-bottom: 45px;
    }

    .footer-bottom > div,
    .footer-bottom > div:first-child,
    .footer-bottom > div:nth-child(2),
    .footer-bottom > div:last-child {
        justify-content: center;
        text-align: center;
    }

    .room-row {
        grid-template-columns: 1fr;
    }

    .room-row:nth-child(even) .room-row-image {
        order: 0;
    }

    .room-row-image {
        height: 360px;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-map {
        min-height: 430px;
    }
}

@media (max-width: 767.98px) {
    .topbar-content {
        min-height: 44px;
        padding-inline: 20px;
    }

    .topbar-phone {
        font-size: 13px;
    }

    .topbar-socials {
        gap: 3px;
    }

    .navbar-content {
        min-height: 82px;
        padding-inline: 20px;
    }

    .navbar-logo img {
        width: 135px;
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        height: 70vh;
        min-height: 570px;
    }

    .hero-content {
        padding: 45px 25px 100px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 50px;
    }

    .hero-text p {
        width: 100%;
        font-size: 15px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-navigation {
        right: auto;
        bottom: 28px;
        left: 25px;
    }

    .section-title {
        font-size: 46px;
    }

    .about-row,
    .facilities-wrapper,
    .testimonials-section .container-fluid,
    .gallery-section .container-fluid,
    .site-footer .container-fluid {
        padding-inline: 25px;
    }

    .rooms-section {
        padding-inline: 25px;
    }

    .about-visual {
        min-height: 500px;
        padding-right: 35px;
    }

    .about-main-image {
        right: 35px;
        bottom: 45px;
    }

    .about-small-image {
        height: 205px;
        border-width: 7px;
    }

    .about-experience-card {
        left: 0;
    }

    .about-shape {
        display: none;
    }

    .about-actions,
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .facility-card {
        min-height: auto;
    }

    .room-content {
        min-height: 235px;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .gallery-item a {
        height: 360px;
    }

    .testimonial-accent {
        min-height: 95px;
    }

    .testimonial-content {
        min-height: auto;
        padding: 34px 30px;
    }

    .testimonial-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-review-number {
        right: 25px;
        bottom: 50%;
        left: auto;
        transform: translateY(50%);
    }

    .footer-map {
        height: 260px;
    }

    .about-hero {
        min-height: 350px;
    }

    .about-hero h1 {
        font-size: 58px;
    }

    .room-row-image {
        height: 320px;
    }

    .room-row-content {
        padding: 35px 30px;
    }

    .gallery-page-item {
        height: 280px;
    }

    .contact-info {
        padding: 35px 30px;
    }

    .contact-map {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .topbar-phone span {
        font-size: 12px;
    }

    .topbar-socials a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .navbar-content,
    .navbar-menu {
        padding-inline: 18px;
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        height: 68vh;
        min-height: 540px;
    }

    .hero-content {
        padding-inline: 20px;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-label::before {
        width: 30px;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 41px;
    }

    .hero-primary-btn,
    .primary-btn {
        padding: 14px 21px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-description {
        font-size: 15px;
    }

    .about-row,
    .facilities-wrapper,
    .testimonials-section .container-fluid,
    .gallery-section .container-fluid,
    .site-footer .container-fluid {
        padding-inline: 18px;
    }

    .rooms-section {
        padding-inline: 18px;
    }

    .about-section,
    .rooms-section,
    .gallery-section,
    .rooms-page-section,
    .gallery-page-section,
    .contact-section {
        padding-block: 70px;
    }

    .facilities-section,
    .testimonials-section {
        padding-block: 70px;
    }

    .about-visual {
        min-height: 420px;
        padding-right: 22px;
    }

    .about-main-image {
        right: 22px;
        bottom: 38px;
    }

    .about-small-image {
        width: 48%;
        height: 155px;
        border-width: 5px;
    }

    .about-experience-card {
        top: 20px;
        min-width: 180px;
        padding: 16px 18px;
    }

    .about-experience-number {
        font-size: 40px;
    }

    .about-experience-text {
        padding-left: 12px;
        font-size: 10px;
    }

    .about-intro {
        font-size: 21px;
    }

    .about-features {
        padding-block: 26px;
    }

    .about-feature {
        margin-bottom: 22px;
    }

    .facility-card {
        padding: 32px 24px;
    }

    .facility-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 30px;
        font-size: 24px;
    }

    .room-image {
        height: 275px;
    }

    .room-content {
        min-height: 225px;
        padding: 25px 22px;
    }

    .room-details {
        min-height: 70px;
    }

    .gallery-item a {
        height: 310px;
    }

    .gallery-carousel .owl-nav,
    .testimonials-carousel .owl-nav {
        justify-content: flex-start;
    }

    .testimonial-content {
        padding: 30px 23px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .footer-title {
        font-size: 27px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-powered {
        flex-wrap: wrap;
    }

    .about-hero {
        min-height: 300px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .room-row-image {
        height: 260px;
    }

    .room-row-content {
        padding: 30px 22px;
    }

    .room-row-title {
        gap: 14px;
    }

    .room-row-title h3 {
        font-size: 29px;
    }

    .room-amenities {
        gap: 18px;
        font-size: 22px;
    }

    .gallery-page-item {
        height: 240px;
    }

    .contact-info {
        padding: 30px 22px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .contact-map {
        min-height: 320px;
    }
}
