@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: clip;
  background-color: #242830;
  
}
img{
  max-width:100%;
  height:auto
}
:root {
    --primary-color: #CA984A;
    --dark-color: #242830;
    --text-color: #7a7a7a;
    --white: #ffffff;
}
body {
    font-family: "EB Garamond", sans-serif;
}

/* ANIMATION BASE */
.fade-in,
.fade-up,
.fade-down,
.fade-left,
.fade-right,
.scale-in,
.zoom-in {
    opacity: 0;
    will-change: opacity, transform;
}
.fade-in.animate {
    animation: fade-in 1s cubic-bezier(.16, 1, .3, 1) both;
}
.fade-up.animate {
    animation: fade-up 1.05s cubic-bezier(.16, 1, .3, 1) both;
}
.fade-down.animate {
    animation: fade-down 1.05s cubic-bezier(.16, 1, .3, 1) both;
}
.fade-left.animate {
    animation: fade-left 1.1s cubic-bezier(.16, 1, .3, 1) both;
}
.fade-right.animate {
    animation: fade-right 1.1s cubic-bezier(.16, 1, .3, 1) both;
}
.scale-in.animate {
    animation: scale-in .95s cubic-bezier(.16, 1, .3, 1) both;
}
.zoom-in.animate {
    animation: zoom-in 1.1s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-down {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-left {
    from {
        opacity: 0;
        transform: translateX(45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fade-right {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(.90);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.delay-100 {
    animation-delay: 100ms !important;
}
.delay-200 {
    animation-delay: 200ms !important;
}
.delay-300 {
    animation-delay: 300ms !important;
}
.delay-400 {
    animation-delay: 400ms !important;
}
.delay-500 {
    animation-delay: 500ms !important;
}
.delay-600 {
    animation-delay: 600ms !important;
}
.delay-700 {
    animation-delay: 700ms !important;
}
.delay-800 {
    animation-delay: 800ms !important;
}
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-up,
    .fade-down,
    .fade-left,
    .fade-right,
    .scale-in,
    .zoom-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* NAVABAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 14px 0;
    background: rgba(36, 40, 48, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background-color 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease;
}
.navbar.scrolled {
    padding: 9px 0;
    background: rgba(36, 40, 48, 0.97);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);
}
.navbar > .container {
    display: flex;
    align-items: center;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}
.navbar-brand img {
    display: block;
    width: 100px;
    max-width: 100%;
    height: auto;
    transition:
        width 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
}
.navbar.scrolled .navbar-brand img {
    width: 90px;
}
.navbar-brand:hover img {
    transform: scale(1.04);
}
.navbar-collapse {
    align-items: center;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.navbar-nav .nav-item {
    position: relative;
}
.navbar-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(.16, 1, .3, 1);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}
.navbar-nav .dropdown-toggle {
    position: relative;
    padding-right: 22px;
}
.navbar-nav .dropdown-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    width: 7px;
    height: 7px;
    margin: 0;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    background: transparent;
    transform:
        translateY(-65%)
        rotate(45deg);
    transform-origin: center;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}
.navbar-nav .dropdown.show > .dropdown-toggle::after {
    transform:
        translateY(-25%)
        rotate(225deg);
}
.book-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 25px;
    color: #ffffff !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(202, 152, 74, 0.20);
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.35s ease;
}
.book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.30),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}
.book-btn:hover::before {
    left: 140%;
}
.book-btn:hover {
    color: var(--primary-color) !important;
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202, 152, 74, 0.30);
}
.navbar .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 190px;
    margin: 0;
    padding: 10px;
    background: rgba(36, 40, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin: 2px 0;
    color: var(--white);
    background: transparent;
    border-radius: 7px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}
.navbar .dropdown-item img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    flex-shrink: 0;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--primary-color);
    background: rgba(202, 152, 74, 0.10);
    transform: translateX(3px);
}
.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none !important;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}
.navbar-toggler:hover {
    border-color: var(--primary-color);
    background: rgba(202, 152, 74, 0.10);
}
.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    background:
        linear-gradient(
            #ffffff,
            #ffffff
        )
        center 9.5px / 19px 2px
        no-repeat !important;
    border-radius: 2px;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 1px;
    width: 19px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        top 0.3s ease,
        background-color 0.3s ease;
}
.navbar-toggler-icon::before {
    top: 5px;
}
.navbar-toggler-icon::after {
    top: 14px;
}

/* HOME CAROUSEL */
.home-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #242830;
}
.home-carousel .carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.home-carousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.home-carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    padding: 0 !important;
    overflow: hidden;
    background: #242830;
}
.home-carousel .hero-image {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    filter:
        brightness(0.52)
        contrast(1.08)
        saturate(0.85)
        sepia(0.04);
    transform:
        scale(1.06)
        translate3d(0, 0, 0);
    will-change:
        transform,
        filter;
    pointer-events: none;
    user-select: none;
}
.home-carousel .carousel-item:nth-child(1).active .hero-image {
    animation:
        heroImageOne
        7s
        cubic-bezier(.16, 1, .3, 1)
        both;
}
@keyframes heroImageOne {
    0% {
        transform:
            scale(1.08)
            translate3d(-1.2%, -0.5%, 0);
        filter:
            brightness(0.45)
            contrast(1.08)
            saturate(0.78)
            sepia(0.06);
    }
    50% {
        transform:
            scale(1.12)
            translate3d(0, 0, 0);
        filter:
            brightness(0.51)
            contrast(1.10)
            saturate(0.84)
            sepia(0.04);
    }
    100% {
        transform:
            scale(1.06)
            translate3d(1.2%, 0.4%, 0);
        filter:
            brightness(0.54)
            contrast(1.08)
            saturate(0.88)
            sepia(0.03);
    }
}
.home-carousel .carousel-item:nth-child(2).active .hero-image {
    animation:
        heroImageTwo
        7s
        cubic-bezier(.16, 1, .3, 1)
        both;
}
@keyframes heroImageTwo {
    0% {
        transform:
            scale(1.06)
            translate3d(1.2%, 0.4%, 0);
        filter:
            brightness(0.46)
            contrast(1.08)
            saturate(0.80)
            sepia(0.06);
    }
    50% {
        transform:
            scale(1.12)
            translate3d(0, 0, 0);
        filter:
            brightness(0.51)
            contrast(1.10)
            saturate(0.85)
            sepia(0.04);
    }
    100% {
        transform:
            scale(1.07)
            translate3d(-1.2%, -0.4%, 0);
        filter:
            brightness(0.54)
            contrast(1.08)
            saturate(0.88)
            sepia(0.03);
    }
}
.home-carousel .carousel-item:nth-child(3).active .hero-image {
    animation:
        heroImageThree
        7s
        cubic-bezier(.16, 1, .3, 1)
        both;
}
@keyframes heroImageThree {
    0% {
        transform:
            scale(1.07)
            translate3d(0, 1%, 0);
        filter:
            brightness(0.46)
            contrast(1.08)
            saturate(0.80)
            sepia(0.06);
    }
    50% {
        transform:
            scale(1.12)
            translate3d(0, 0, 0);
        filter:
            brightness(0.51)
            contrast(1.10)
            saturate(0.85)
            sepia(0.04);
    }
    100% {
        transform:
            scale(1.06)
            translate3d(0, -1%, 0);
        filter:
            brightness(0.54)
            contrast(1.08)
            saturate(0.88)
            sepia(0.03);
    }
}
.home-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(20, 22, 26, 0.42) 0%,
            rgba(20, 22, 26, 0.10) 28%,
            rgba(20, 22, 26, 0.08) 48%,
            rgba(20, 22, 26, 0.30) 68%,
            rgba(20, 22, 26, 0.82) 100%
        );
}
.home-carousel .hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(0, 0, 0, 0.08) 55%,
            rgba(0, 0, 0, 0.38) 100%
        );
}
.home-carousel .hero-overlay::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -80%;
    width: 55%;
    height: 140%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.015) 35%,
            rgba(255, 255, 255, 0.055) 50%,
            rgba(255, 255, 255, 0.015) 65%,
            transparent 100%
        );
    transform:
        skewX(-15deg);
    animation:
        luxuryLightSweep
        9s
        ease-in-out
        infinite;
    pointer-events: none;
}
@keyframes luxuryLightSweep {
    0% {
        left: -80%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        left: 125%;
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}
.home-carousel .carousel-caption {
    position: absolute;
    top: 57%;
    left: 50%;
    z-index: 5;
    width: 950px;
    max-width: 90%;
    padding: 0;
    margin: 0;
    text-align: center;
    transform:
        translate(-50%, -50%);
}
.home-carousel .hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 25px;
    color:  var(--primary-color, #ca984a);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
    opacity: 0;
}
.home-carousel .hero-subtitle::before,
.home-carousel .hero-subtitle::after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background: var(--primary-color, #ca984a);
    opacity: 0.75;
}
.home-carousel .hero-subtitle::before {
    margin-right: 18px;
}
.home-carousel .hero-subtitle::after {
    margin-left: 18px;
}
.home-carousel .hero-title {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 38px;
    padding: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-transform: none;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.30), 0 2px 8px rgba(0, 0, 0, 0.18);
    opacity: 0;
}
.home-carousel .hero-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 16px 40px;
    color: #ffffff !important;
    background: var(--primary-color, #ca984a);
    border: 1px solid var(--primary-color, #ca984a);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(202, 152, 74, 0.28);
    overflow: hidden;
    opacity: 0;
    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.4s ease;
}
.home-carousel .hero-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}
.home-carousel .hero-button:hover::before {
    left: 140%;
}
.home-carousel .hero-button:hover {
    color: var(--primary-color, #ca984a) !important;
    background: transparent;
    border-color: var(--primary-color, #ca984a);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(202, 152, 74, 0.30);
}
.home-carousel .carousel-item.active .hero-subtitle {
    animation:
        heroSubtitleReveal
        0.9s
        cubic-bezier(.16, 1, .3, 1)
        0.25s
        both;
}
.home-carousel .carousel-item.active .hero-title {
    animation:
        heroTitleReveal
        1.1s
        cubic-bezier(.16, 1, .3, 1)
        0.40s
        both;
}
.home-carousel .carousel-item.active .hero-button {
    animation:
        heroButtonReveal
        0.9s
        cubic-bezier(.16, 1, .3, 1)
        0.65s
        both;
}
@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
        letter-spacing: 7px;
    }
    to {
        opacity: 1;
        transform:translateY(0);
        letter-spacing: 4px;
    }
}
@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroButtonReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-carousel .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}
.home-carousel .carousel-fade .carousel-item.active {
    opacity: 1;
}
.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    z-index: 10;
    opacity: 1;
    transition: transform 0.35s ease;
}
.home-carousel .carousel-control-prev {
    left: 25px;
}
.home-carousel .carousel-control-next {
    right: 25px;
}
.home-carousel .carousel-control-prev-icon,
.home-carousel .carousel-control-next-icon {
    width: 54px;
    height: 54px;
    border:  1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background-color: rgba(20, 22, 26, 0.22);
    background-size:  18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:  blur(10px);
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.home-carousel .carousel-control-prev:hover {
    transform:  translateX(-5px);
}
.home-carousel .carousel-control-next:hover {
    transform: translateX(5px);
}
.home-carousel
.carousel-control-prev:hover
.carousel-control-prev-icon,
.home-carousel
.carousel-control-next:hover
.carousel-control-next-icon {
    background-color: var(--primary-color, #ca984a);
    border-color: var(--primary-color, #ca984a);
    box-shadow: 0 10px 30px rgba(202, 152, 74, 0.28);
    transform: scale(1.06);
}

/* ABOUT SECTION */
.about-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 120px 0 !important;
    background-color: #1F2229;
    overflow: hidden;
}
.about-section .container {
    position: relative;
    z-index: 2;
}
.about-section .row {
    align-items: center;
}
.about-images {
    position: relative;
    width: 100%;
    min-height: 570px;
    padding-right: 70px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 70px);
    height: 520px;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    border: 0;
    border-radius: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition:
        transform 0.65s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.65s ease;
}
.about-img-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 270px;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    border: 10px solid #242830;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
    z-index: 2;
    transition:
        transform 0.65s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.65s ease;
}
.about-images:hover .about-img-main {
    transform: scale(1.015);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}
.about-images:hover .about-img-small {
    transform: translateY(-8px);
    box-shadow:  0 28px 65px rgba(0, 0, 0, 0.50);
}
.about-images::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 25px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #CA984A;
    border-right:2px solid #CA984A;
    opacity: 0.85;
    z-index: 3;
    pointer-events: none;
}
.about-section .section-heading {
    position: relative;
    width: 100%;
    margin: 0 0 28px;
    padding: 0;
}
.about-section .section-heading span {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}
.about-section .section-heading span::before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    margin-right: 14px;
    background-color: #CA984A;
    opacity: 0.9;
}
.about-section .section-heading h2 {
    width: 100%;
    max-width: 620px;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1px;
    text-transform: none;
}
.about-section > .container > .row > .col-lg-6:last-child > p {
    width: 100%;
    max-width: 610px;
    margin: 0 0 18px;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.1px;
}
.about-section .book-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    margin-top: 16px;
    padding: 15px 30px;
    color: #ffffff !important;
    background-color: #CA984A;
    border: 1px solid #CA984A;
    border-radius: 0;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(202, 152, 74, 0.20);
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.35s ease;
}
.about-section .book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0.08) 65%,
            transparent 100%
        );
    transform: skewX(-20deg);
    transition:
        left 0.7s ease;
    pointer-events: none;
}
.about-section .book-btn:hover::before {
    left: 140%;
}
.about-section .book-btn:hover {
    color: #CA984A !important;
    background-color: transparent;
    border-color: #CA984A;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(202, 152, 74, 0.28);
}

/*  FACILITIES */
.facilities-section {
    position: relative;
    width: 100%;
    padding: 115px 0;
    background-color: #242830;
    overflow: hidden;
}
.facilities-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.08) 0%,
            rgba(202, 152, 74, 0.025) 40%,
            transparent 72%
        );
    pointer-events: none;
}
.facilities-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 450px;
    height: 450px;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.06) 0%,
            rgba(202, 152, 74, 0.015) 40%,
            transparent 72%
        );
    pointer-events: none;
}
.facilities-section .container {
    position: relative;
    z-index: 2;
}
.facilities-section .section-heading {
    position: relative;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 65px !important;
}
.facilities-section .section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.facilities-section .section-heading span::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-right: 15px;
    background-color: #CA984A;
    opacity: 0.8;
}
.facilities-section .section-heading span::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-left: 15px;
    background-color: #CA984A;
    opacity: 0.8;
}
.facilities-section .section-heading h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: none;
}
.facilities-section .section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.62);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}
.facility-card {
    position: relative;
    height: 100%;
    min-height: 285px;
    padding: 38px 30px 34px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        transform 0.5s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.5s ease;
}
.facility-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #CA984A;
    transition: width 0.5s cubic-bezier(.16, 1, .3, 1);
}
.facility-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.10) 0%,
            transparent 70%
        );
    opacity: 0;
    transition: opacity 0.5s ease;
}
.facility-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(202, 152, 74, 0.38);
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}
.facility-card:hover::before {
    width: 100%;
}
.facility-card:hover::after {
    opacity: 1;
}
.facility-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    color: #CA984A;
    background: rgba(202, 152, 74, 0.08);
    border: 1px solid rgba(202, 152, 74, 0.25);
    font-size: 24px;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.4s cubic-bezier(.16, 1, .3, 1);
}
.facility-card:hover .facility-icon {
    color: #ffffff;
    background-color: #CA984A;
    border-color: #CA984A;
    transform: translateY(-3px);
}
.facility-number {
    position: absolute;
    top: 28px;
    right: 25px;
    color: rgba(202, 152, 74, 0.28);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.facility-card h4 {
    position: relative;
    margin: 0 0 13px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.facility-card:hover h4 {
    color: #CA984A;
}
.facility-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: "EB Garamond", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

/* HOME-ROOMS */
.rooms-section {
    position: relative;
    width: 100%;
    padding-top: 115px !important;
    padding-bottom: 115px !important;
    background-color: #1F2229;
    overflow: hidden;
}
.rooms-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.075) 0%,
            rgba(202, 152, 74, 0.025) 42%,
            transparent 72%
        );
    pointer-events: none;
}
.rooms-section::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.06) 0%,
            rgba(202, 152, 74, 0.02) 42%,
            transparent 72%
        );
    pointer-events: none;
}
.rooms-section .container {
    position: relative;
    z-index: 2;
}
.rooms-section .section-heading {
    position: relative;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 58px !important;
}
.rooms-section .section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.rooms-section .section-heading span::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-right: 15px;
    background-color: #CA984A;
    opacity: 0.8;
}
.rooms-section .section-heading span::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-left: 15px;
    background-color: #CA984A;
    opacity: 0.8;
}
.rooms-section .section-heading h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: none;
}
.rooms-section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.60);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}
.rooms-carousel {
    position: relative;
    width: 100%;
    padding: 0 35px;
}
.rooms-carousel .owl-stage-outer {
    overflow: hidden;
    padding-top: 8px;
    padding-bottom: 15px;
}
.rooms-carousel .owl-item {
    display: flex;
    height: auto;
}
.rooms-carousel .item {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px !important;
    margin: 0 !important;
}
.room-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 610px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition:
        transform 0.55s cubic-bezier(.16, 1, .3, 1),
        border-color 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.5s ease;
}
.room-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    z-index: 5;
    background-color: #CA984A;
    transition: width 0.55s cubic-bezier(.16, 1, .3, 1);
}
.room-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202, 152, 74, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
}
.room-card:hover::before {
    width: 100%;
}
.room-image {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background-color: #1d2026;
}
.room-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition:
        transform 0.9s cubic-bezier(.16, 1, .3, 1),
        filter 0.6s ease;
}
.room-card:hover .room-image img {
    transform: scale(1.07);
    filter: brightness(0.92) saturate(0.95);
}
.room-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(20, 22, 26, 0.02) 20%,
            rgba(20, 22, 26, 0.12) 55%,
            rgba(20, 22, 26, 0.65) 100%
        );
    opacity: 0.85;
    transition: opacity 0.5s ease;
}
.room-card:hover .room-image-overlay {
    opacity: 0.65;
}
.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    color: #ffffff;
    background: rgba(36, 40, 48, 0.82);
    border:#1c2028 1px solid rgba(202, 152, 74, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.room-card:hover .room-badge {
    background-color: rgba(202, 152, 74, 0.92);
    border-color: #CA984A;
    transform: translateY(-2px);
}
.room-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
}
.room-content h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;
    transition:  color 0.3s ease;
}
.room-card:hover .room-content h4 {
    color: #CA984A;
}
.room-content > p {
    min-height: 76px;
    margin: 0 0 15px;
    color:  rgba(255, 255, 255, 0.58);
    font-family: "EB Garamond", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.room-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-bottom: 28px;
    padding:  20px 0;
    border-top:  1px solid rgba(255, 255, 255, 0.08);
    border-bottom:  1px solid rgba(255, 255, 255, 0.08);
}
.room-info > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.room-info > div:last-child {
    border-right: none;
}
.room-info h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    color: #CA984A;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}
.room-info > div:hover h5 {
    color: #ffffff;
    transform:
        translateY(-2px);
}
.room-info span {
    display: block;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.2px;
    text-align: center;
}
.room-content .book-btn {
    align-self: flex-start;
    min-width: 150px;
    margin-top: auto;
    padding: 13px 25px;
    font-size: 11px;
    letter-spacing: 1.5px;
}
.rooms-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}
.rooms-carousel .owl-nav button.owl-prev,
.rooms-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0 !important;
    color: #ffffff !important;
    background: rgba(36, 40, 48, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50%;
    font-size: 22px !important;
    line-height: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.rooms-carousel .owl-nav button.owl-prev {
    transform: translateX(-5px);
}
.rooms-carousel .owl-nav button.owl-prev:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(-8px);
    box-shadow: 0 10px 30px rgba(202, 152, 74, 0.25);
}
.rooms-carousel .owl-nav button.owl-next {
    transform: translateX(5px);
}
.rooms-carousel .owl-nav button.owl-next:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(202, 152, 74, 0.25);
}
.rooms-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.rooms-carousel .owl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}
.rooms-carousel .owl-dot span {
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50%;
    transition:
        width 0.35s ease,
        background-color 0.35s ease,
        border-radius 0.35s ease;
}
.rooms-carousel .owl-dot.active span {
    width: 28px;
    background:  #CA984A !important;
    border-radius: 10px;
}
.rooms-section .section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}
.rooms-section .section-btn .book-btn {
    min-width: 155px;
    padding: 15px 30px;
}

/* TESTIMONILAS */
.testimonial-section {
    position: relative;
    width: 100%;
    padding: 110px 0 !important;
    background: #242830;
    overflow: hidden;
}
.testimonial-section::before {
    content: "";
    position: absolute;
    top: -250px;
    left: -220px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.07) 0%,
            rgba(202, 152, 74, 0.025) 42%,
            transparent 72%
        );
    pointer-events: none;
}
.testimonial-section::after {
    content: "";
    position: absolute;
    right: -250px;
    bottom: -280px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.055) 0%,
            rgba(202, 152, 74, 0.018) 42%,
            transparent 72%
        );
    pointer-events: none;
}
.testimonial-section .container {
    position: relative;
    z-index: 2;
}
.testimonial-section .section-heading {
    position: relative;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-section .section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.testimonial-section .section-heading span::before,
.testimonial-section .section-heading span::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    background: #CA984A;
    opacity: 0.75;
}
.testimonial-section .section-heading span::before {
    margin-right: 16px;
}
.testimonial-section .section-heading span::after {
    margin-left: 16px;
}
.testimonial-section .section-heading h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: none;
}
.testimonial-section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.58);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}
.testimonial-carousel {
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.testimonial-carousel .owl-stage-outer {
    padding: 15px 0 25px;
    overflow: hidden;
}
.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.testimonial-carousel .owl-item {
    display: flex;
    height: auto;
}
.testimonial-carousel .item {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 12px !important;
    margin: 0 !important;
}
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 355px;
    padding: 55px 40px 38px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid rgba(202, 152, 74, 0.16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    transition:
        transform 0.55s cubic-bezier(.16, 1, .3, 1),
        border-color 0.4s ease,
        box-shadow 0.5s ease,
        background 0.4s ease;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #CA984A;
    transition: width 0.6s cubic-bezier(.16, 1, .3, 1);
}
.testimonial-card::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.08) 0%,
            rgba(202, 152, 74, 0.02) 45%,
            transparent 72%
        );
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-9px);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.025)
        );
    border-color: rgba(202, 152, 74, 0.42);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.30);
}
.testimonial-card:hover::before {
    width: 100%;
}
.testimonial-stamp {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 25px;
    color: #1F2229;
    background:
        linear-gradient(
            135deg,
            #D7AD67,
            #CA984A
        );
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(202, 152, 74, 0.22);
    transition:
        transform 0.45s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.4s ease;
}
.testimonial-card:hover .testimonial-stamp {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 17px 35px rgba(202, 152, 74, 0.30);
}
.testimonial-stamp i {
    display: block;
    color: #242830;
    line-height: 1;
}
.testimonial-score {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.5px;
}
.testimonial-score::before {
    content: "★★★★★";
    margin-right: 9px;
    color: #CA984A;
    font-size: 11px;
    letter-spacing: 2px;
}
.testimonial-card p {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 430px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.76);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.1px;
}
.testimonial-author {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 5px;
}
.testimonial-author h5 {
    margin: 0 0 7px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.testimonial-card:hover .testimonial-author h5 {
    color: #CA984A;
}
.testimonial-author span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}
.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0 !important;
    color: #ffffff !important;
    background: rgba(31, 34, 41, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 50%;
    font-size: 20px !important;
    line-height: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.testimonial-carousel .owl-nav button.owl-prev {
    transform: translateX(-8px);
}
.testimonial-carousel .owl-nav button.owl-next {
    transform: translateX(8px);
}
.testimonial-carousel .owl-nav button.owl-prev:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(-12px);
    box-shadow:  0 12px 30px rgba(202, 152, 74, 0.25);
}
.testimonial-carousel .owl-nav button.owl-next:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(12px);
    box-shadow:  0 12px 30px rgba(202, 152, 74, 0.25);
}
.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.testimonial-carousel .owl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}
.testimonial-carousel .owl-dot span {
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.22) !important;
    border-radius: 50%;
    transition:
        width 0.35s ease,
        background-color 0.35s ease,
        border-radius 0.35s ease;
}
.testimonial-carousel .owl-dot.active span {
    width: 28px;
    background: #CA984A !important;
    border-radius: 10px;
}

/* GALLERY */
.home-gallery {
    position: relative;
    width: 100%;
    padding-top: 110px !important;
    padding-bottom: 110px !important;
    background: #1F2229;
    overflow: hidden;
}
.home-gallery::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(202, 152, 74, 0.07) 0%,
        rgba(202, 152, 74, 0.025) 42%,
        transparent 72%
    );
    pointer-events: none;
}
.home-gallery::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(202, 152, 74, 0.055) 0%,
        rgba(202, 152, 74, 0.02) 42%,
        transparent 72%
    );
    pointer-events: none;
}
.home-gallery .container {
    position: relative;
    z-index: 2;
}
.home-gallery .section-heading {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.home-gallery .section-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.home-gallery .section-heading span::before {
    content: "";
    width: 38px;
    height: 1px;
    margin-right: 15px;
    background: #CA984A;
    opacity: 0.8;
}
.home-gallery .section-heading span::after {
    content: "";
    width: 38px;
    height: 1px;
    margin-left: 15px;
    background: #CA984A;
    opacity: 0.8;
}
.home-gallery .section-heading h2 {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
}
.home-gallery .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.60);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}
.gallery-carousel {
    position: relative;
    width: 100%;
    padding: 0 35px;
}
.gallery-carousel .owl-stage-outer {
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 20px;
}
.gallery-carousel .owl-stage {
    display: flex;
}
.gallery-carousel .owl-item {
    display: flex;
    height: auto;
}
.gallery-carousel .item {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px !important;
    margin: 0 !important;
}
.gallery-item {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #242830;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition:
        transform 0.55s cubic-bezier(.16, 1, .3, 1),
        border-color 0.4s ease,
        box-shadow 0.5s ease;
}
.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    z-index: 5;
    background: #CA984A;
    transition:
        width 0.55s cubic-bezier(.16, 1, .3, 1);
}
.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(202, 152, 74, 0.45);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}
.gallery-item:hover::before {
    width: 100%;
}
.gallery-card {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1),
        filter 0.6s ease;
}
.gallery-item:hover .gallery-card {
    transform: scale(1.08);
    filter:
        brightness(0.82)
        saturate(0.92);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(20, 22, 26, 0.02) 15%,
            rgba(20, 22, 26, 0.08) 45%,
            rgba(20, 22, 26, 0.72) 100%
        );
    opacity: 0.65;
    transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}
.gallery-item::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 45px;
    height: 45px;
    z-index: 4;
    border-right: 1px solid rgba(202, 152, 74, 0.8);
    border-bottom: 1px solid rgba(202, 152, 74, 0.8);
    opacity: 0;
    transform: translate(8px, 8px);
    transition:
        opacity 0.4s ease,
        transform 0.45s ease;
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}
.gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0 !important;
    color: #ffffff !important;
    background: rgba(31, 34, 41, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50%;
    font-size: 21px !important;
    line-height: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.gallery-carousel .owl-nav button.owl-prev {
    transform: translateX(-5px);
}
.gallery-carousel .owl-nav button.owl-next {
    transform: translateX(5px);
}
.gallery-carousel .owl-nav button.owl-prev:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(-8px);
    box-shadow:
        0 10px 30px rgba(202, 152, 74, 0.25);
}
.gallery-carousel .owl-nav button.owl-next:hover {
    color: #ffffff !important;
    background: #CA984A !important;
    border-color: #CA984A !important;
    transform: translateX(8px);
    box-shadow:
        0 10px 30px rgba(202, 152, 74, 0.25);
}
.gallery-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.gallery-carousel .owl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}
.gallery-carousel .owl-dot span {
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50%;
    transition:
        width 0.35s ease,
        background-color 0.35s ease,
        border-radius 0.35s ease;
}
.gallery-carousel .owl-dot.active span {
    width: 28px;
    background: #CA984A !important;
    border-radius: 10px;
}
.home-gallery .section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}
.home-gallery .section-btn .book-btn {
    min-width: 175px;
    padding: 15px 30px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* COVER */
.cover {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1F2229;
}
.cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(.72) saturate(.82);
    transition:
        transform 1.5s cubic-bezier(.16, 1, .3, 1),
        filter 1s ease;
}
.cover:hover > img {
    transform: scale(1.04);
    filter: brightness(.78) saturate(.9);
}
.cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(20, 22, 27, .88) 0%,
            rgba(20, 22, 27, .68) 38%,
            rgba(20, 22, 27, .35) 70%,
            rgba(20, 22, 27, .55) 100%
        ),
        linear-gradient(
            0deg,
            rgba(20, 22, 27, .70) 0%,
            transparent 45%,
            rgba(20, 22, 27, .30) 100%
        );
}
.cover::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, .12) 0%,
            rgba(202, 152, 74, .035) 45%,
            transparent 72%
        );
}
.cover-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 900px;
    padding: 80px 30px;
    margin: 0 auto;
    text-align: center;
}
.cover-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.cover-label::before,
.cover-label::after {
    content: "";
    width: 38px;
    height: 1px;
    background: #CA984A;
    opacity: .8;
}
.cover-label::before {
    margin-right: 15px;
}
.cover-label::after {
    margin-left: 15px;
}
.cover-title {
    max-width: 850px;
    margin: 0 auto;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
}
.cover-line {
    width: 65px;
    height: 1px;
    margin: 28px auto 22px;
    background: #CA984A;
}
.cover-subtitle {
    max-width: 620px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .72);
    font-family: "EB Garamond", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
}
.cover-content .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    padding: 15px 30px;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 120px;
    height: 2px;
    z-index: 5;
    background: #CA984A;
    transform: translateX(-50%);
}

/* FOOTER */
.footer {
    position: relative;
    background: #1c2028;
    color: #c7ccd3;
    padding: 90px 0 10px;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(202, 152, 74, 0.07) 0%,
        rgba(202, 152, 74, 0.02) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.footer::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(202, 152, 74, 0.05) 0%,
        rgba(202, 152, 74, 0.015) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.footer .container {
    position: relative;
    z-index: 2;
}
.footer .row {
    align-items: stretch;
}
.footer .row > div {
    display: flex;
    flex-direction: column;
}
.footer-brand {
    height: 100%;
    padding: 45px 35px;
    text-align: center;
    background: #242933;
    border-top: 2px solid var(--primary-color);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}
.footer-brand:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.30);
}
.footer-logo {
    display: block;
    width: 110px;
    margin: 0 auto 25px;
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.footer-description {
    max-width: 340px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}
.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary-color);
    border: 1px solid rgba(202, 152, 74, 0.25);
    border-radius: 50%;
    text-decoration: none;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.footer-socials a:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow:
        0 10px 25px rgba(202, 152, 74, 0.22);
}
.footer-title {
    position: relative;
    margin: 5px 0 27px;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}
.footer-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--primary-color);
}
.footer-link {
    color: #c7ccd3;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}
.footer-link:hover {
    color: var(--primary-color);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.footer-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}
.footer-list li:last-child {
    margin-bottom: 0;
}
.footer-list i {
    flex: 0 0 18px;
    margin-top: 5px;
    color: var(--primary-color);
    font-size: 14px;
}
.footer .col-lg-2 .footer-list {
    text-align: center;
}
.footer .col-lg-2 .footer-list a {
    display: block;
    margin-bottom: 13px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.footer .col-lg-2 .footer-list a:hover {
    transform: translateX(3px);
}
.footer-map {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(202, 152, 74, 0.15);
    border-radius: 4px;
    background: #242933;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.footer iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
    filter:
        grayscale(0.15)
        saturate(0.8);
    transition: filter 0.4s ease;
}
.footer-map:hover iframe {
    filter:
        grayscale(0)
        saturate(1);
}
.footer-divider {
    height: 1px;
    margin: 35px 0 10px;
    border: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(202, 152, 74, 0.35),
            transparent
        );
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}
.powered p {
    display: flex;
    align-items: center;
    gap: 7px;
}
.powered img {
    display: block;
    width: 100px;
    height: auto;
    opacity: 0.75;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.powered img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ABOUT.HTML */
/* TOP COVER */
.top-cover {
    position: relative;
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1c2028;
}
.top-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(0.55) saturate(0.85);
}
.top-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(20, 23, 28, 0.35) 0%,
            rgba(20, 23, 28, 0.55) 50%,
            rgba(20, 23, 28, 0.88) 100%
        );
}
.top-cover::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(202, 152, 74, 0.12) 0%,
        rgba(202, 152, 74, 0.04) 35%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
}
.top-cover .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 80px;
}
.top-cover-title {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.top-cover-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 22px auto 0;
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(202, 152, 74, 0.35);
}
.top-cover .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
}
.top-cover .breadcrumb-item {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.top-cover .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}
.top-cover .breadcrumb-item a:hover {
    color: var(--primary-color);
}
.top-cover .breadcrumb-item.active {
    color: var(--primary-color);
}
.top-cover .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
    padding: 0 12px;
    content: "/";
}
.top-cover-img.zoom-in {
    animation:
        cover-image-zoom
        1.4s
        cubic-bezier(.16, 1, .3, 1)
        both;
}
@keyframes cover-image-zoom {
    from {
        opacity: 0;
        transform: scale(1.08);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.top-cover-title.fade-up {
    animation-duration: 1s;
}
.top-cover .breadcrumb.fade-up {
    animation-duration: 1s;
}

/* ROOMS.HTML */
.room-section {
    position: relative;
    width: 100%;
    padding-top: 115px !important;
    padding-bottom: 115px !important;
    background: #242830;
    overflow: hidden;
}
.room-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.075) 0%,
            rgba(202, 152, 74, 0.025) 42%,
            transparent 72%
        );
}
.room-section::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(202, 152, 74, 0.06) 0%,
            rgba(202, 152, 74, 0.02) 42%,
            transparent 72%
        );
}
.room-section .container {
    position: relative;
    z-index: 2;
}
.room-section .row.justify-content-center {
    position: relative;
}
.room-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.room-subtitle::before {
    content: "";
    width: 38px;
    height: 1px;
    margin-right: 15px;
    background: #CA984A;
    opacity: 0.8;
}
.room-subtitle::after {
    content: "";
    width: 38px;
    height: 1px;
    margin-left: 15px;
    background: #CA984A;
    opacity: 0.8;
}
.room-title {
    max-width: 850px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1px;
}
.room-intro {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.60);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}
.room-row {
    position: relative;
    margin-bottom: 110px !important;
}
.room-row:last-of-type {
    margin-bottom: 70px !important;
}
.room-image-wrap {
    position: relative;
    width: 100%;
    height: 510px;
    overflow: hidden;
    background: #1c2028;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.28);
}
.room-image-wrap::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    border: 1px solid rgba(202, 152, 74, 0.30);
    z-index: 2;
    pointer-events: none;
    transition:
        border-color 0.5s ease,
        top 0.5s ease,
        left 0.5s ease,
        width 0.5s ease,
        height 0.5s ease;
}
.room-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(20, 22, 26, 0.02) 25%,
            rgba(20, 22, 26, 0.12) 55%,
            rgba(20, 22, 26, 0.60) 100%
        );
    transition: opacity 0.5s ease;
}
.room-image-wrap:hover::before {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-color: rgba(202, 152, 74, 0.65);
}
.room-image-wrap:hover::after {
    opacity: 0.75;
}
.room-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition:
        transform 0.9s cubic-bezier(.16, 1, .3, 1),
        filter 0.6s ease;
}
.room-image-wrap:hover .room-img {
    transform: scale(1.07);
    filter:
        brightness(0.92)
        saturate(0.95);
}
.room-label {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    color: #ffffff;
    background: rgba(36, 40, 48, 0.86);
    border: 1px solid rgba(202, 152, 74, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.room-image-wrap:hover .room-label {
    background: rgba(202, 152, 74, 0.92);
    border-color: #CA984A;
    transform: translateY(-3px);
}
.room-content {
    position: relative;
    padding: 25px 10px 25px 35px;
}
.room-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 70px;
    background: #CA984A;
    transition:
        height 0.5s cubic-bezier(.16, 1, .3, 1);
}
.room-content:hover::before {
    height: 100%;
}
.room-number {
    display: block;
    margin-bottom: 12px;
    color: #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1;
    opacity: 0.9;
}
.room-number::before {
    content: "ROOM ";
}
.room-content h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    transition: color 0.35s ease;
}
.room-content:hover h3 {
    color: #CA984A;
}
.room-content > p {
    max-width: 570px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.62);
    font-family: "EB Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}
.room-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 600px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.room-info > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.room-info > div:last-child {
    border-right: none;
}
.room-info h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 9px;
    color: #CA984A;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}
.room-info > div:hover h5 {
    color: #ffffff;
    transform: translateY(-3px);
}
.room-info span {
    display: block;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-align: center;
}
.room-content .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    margin-top: 28px;
    padding: 14px 28px;
    color: #ffffff;
    background: #CA984A;
    border: 1px solid #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.6px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.room-content .book-btn:hover {
    color: #ffffff;
    background: transparent;
    border-color: #CA984A;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(202, 152, 74, 0.18);
}
.room-section .section-btn {
    position: relative;
    margin-top: 15px;
}
.room-section .section-btn .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 30px;
    color: #ffffff;
    background: #CA984A;
    border: 1px solid #CA984A;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.room-section .section-btn .book-btn:hover {
    color: #ffffff;
    background: transparent;
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(202, 152, 74, 0.18);
}

/* GALLERY SECTION */
.gallery-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.gallery-section .room-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.gallery-section .room-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 20px;
}
.gallery-intro {
    color: rgba(255, 255, 255, .65);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto;
}
.gallery-section .row.g-4 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}
.gallery-item {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: #242830;
    border: 1px solid rgba(202, 152, 74, .12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .20);
}
.gallery-section .col-lg-3 .gallery-item {
    height: 300px;
}
.gallery-section .col-lg-4 .gallery-item {
    height: 360px;
}
.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform .8s cubic-bezier(.16, 1, .3, 1),
        filter .6s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(20, 22, 27, 0) 35%,
            rgba(20, 22, 27, .18) 65%,
            rgba(20, 22, 27, .65) 100%
        );
    opacity: .7;
    transition:
        opacity .5s ease,
        background .5s ease;
}
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(202, 152, 74, .0);
    pointer-events: none;
    transition:
        border-color .5s ease,
        inset .5s cubic-bezier(.16, 1, .3, 1);
}
.gallery-item:hover {
    box-shadow:
        0 25px 55px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(202, 152, 74, .12);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(.82) saturate(.95);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background:
        linear-gradient(
            180deg,
            rgba(202, 152, 74, .05),
            rgba(20, 22, 27, .15) 40%,
            rgba(20, 22, 27, .72)
        );
}
.gallery-item:hover::before {
    inset: 20px;
    border-color: rgba(202, 152, 74, .55);
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.gallery-section a {
    display: block;
    text-decoration: none;
}

.gallery-item {
    cursor: zoom-in;
}
.gallery-item.fade-up {
    will-change: opacity, transform;
}

/* CONTACT.HTML */
.contact-section {
    background: #1f2229;
    padding: 90px 0;
    overflow: hidden;
}
.contact-intro {
    color: rgba(255, 255, 255, .62);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
    margin: 20px auto 0;
}
.contact-box {
    height: 100%;
    background: #242830;
    border: 1px solid rgba(202, 152, 74, .15);
    border-top: 3px solid var(--primary-color);
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}
.contact-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -100px;
    border: 1px solid rgba(202, 152, 74, .08);
    border-radius: 50%;
}
.contact-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -70px;
    right: -70px;
    border: 1px solid rgba(202, 152, 74, .08);
    border-radius: 50%;
}
.contact-label {
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-box h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin: 12px 0 18px;
}
.contact-box > p {
    color: rgba(255, 255, 255, .62);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 152, 74, .08);
    border: 1px solid rgba(202, 152, 74, .25);
    color: var(--primary-color);
    font-size: 17px;
    transition: all .35s ease;
}
.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: #242830;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(202, 152, 74, .2);
}
.contact-item h5 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px;
}
.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, .58);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    text-decoration: none;
    transition: color .3s ease;
}
.contact-item a:hover {
    color: var(--primary-color);
}
.contact-action {
    margin-top: 35px;
}
.contact-map {
    height: 100%;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(202, 152, 74, .2);
    background: #242830;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    border: 0;
    filter:
        grayscale(.25)
        saturate(.75)
        contrast(1.05);
}
.map-overlay-btn {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: rgba(31, 34, 41, .92);
    border: 1px solid rgba(202, 152, 74, .4);
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all .35s ease;
}
.map-overlay-btn:hover {
    background: var(--primary-color);
    color: #242830;
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* MEDIA QUERIES */
@media (max-width: 1199.98px) {
    .navbar-nav {
        gap: 1rem;
    }
    .navbar-nav .nav-link {
        font-size: 14px;
    }
    .navbar-brand img {
        width: 95px;
    }
    .navbar.scrolled .navbar-brand img {
        width: 85px;
    }
    .book-btn {
        min-width: 120px;
        padding: 11px 20px;
        font-size: 12px;
    }
}
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 0;
    }
    .navbar.scrolled {
        padding: 9px 0;
    }
    .navbar-brand img {
        width: 95px;
    }
    .navbar.scrolled .navbar-brand img {
        width: 88px;
    }
    .navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0;
    }
    .navbar-collapse {
        margin-top: 12px;
        padding: 15px;
        background: rgba(36, 40, 48, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
    }
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 2px;
        margin: 0;
    }
    .navbar-nav .nav-item {
        position: relative;
        width: auto;
    }
    .navbar-nav .nav-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 12px 12px;
        color: var(--white);
        font-size: 15px;
        border-radius: 7px;
    }
    .navbar-nav .nav-link::before {
        left: 12px;
        bottom: 5px;
        width: 0;
        max-width: calc(100% - 24px);
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: calc(100% - 24px);
    }
    .navbar-nav .dropdown-toggle {
        padding-right: 38px;
    }
    .navbar-nav .dropdown-toggle::after {
        right: 13px;
        width: 7px;
        height: 7px;
    }
    .navbar .dropdown-menu {
        position: static;
        width: auto;
        min-width: 190px;
        margin: 4px 0 8px 12px;
        padding: 7px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        box-shadow: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition:
            opacity 0.25s ease,
            max-height 0.3s ease,
            visibility 0.25s ease;
    }
    .navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        transform: none;
    }
    .navbar .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        margin: 2px 0;
        font-size: 14px;
    }
    .navbar .dropdown-item img {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
    .book-btn {
        display: inline-flex;
        width: auto;
        min-width: 130px;
        margin-top: 10px;
        padding: 12px 25px;
        align-self: flex-start;
        font-size: 12px;
    }
}
@media (max-width: 767.98px) {
    .navbar {
        padding: 10px 0;
    }
    .navbar.scrolled {
        padding: 8px 0;
    }
    .navbar-brand img {
        width: 90px;
    }
    .navbar.scrolled .navbar-brand img {
        width: 82px;
    }
    .navbar-collapse {
        margin-top: 10px;
        padding: 12px;
    }
    .navbar-nav {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .navbar-nav .nav-link {
        padding: 11px 10px;
        font-size: 14px;
    }
    .navbar-nav .nav-link::before {
        left: 10px;
        bottom: 4px;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: calc(100% - 20px);
    }
    .navbar-nav .dropdown-toggle {
        padding-right: 36px;
    }
    .navbar-nav .dropdown-toggle::after {
        right: 12px;
        width: 6px;
        height: 6px;
    }
    .navbar .dropdown-menu {
        min-width: 180px;
        margin-left: 10px;
    }
    .navbar .dropdown-item {
        padding: 9px 10px;
        font-size: 13px;
    }
    .navbar .dropdown-item img {
        width: 23px;
        height: 23px;
    }
    .book-btn {
        display: inline-flex;
        width: auto;
        min-width: 120px;
        margin-top: 8px;
        padding: 12px 20px;
        align-self: flex-start;
        font-size: 12px;
        letter-spacing: 0.8px;
    }
    .navbar-toggler {
        width: 40px;
        height: 40px;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 18px;
    }
}
@media (max-width: 575.98px) {
    .navbar {
        padding: 9px 0;
    }
    .navbar.scrolled {
        padding: 7px 0;
    }
    .navbar-brand img {
        width: 85px;
    }
    .navbar.scrolled .navbar-brand img {
        width: 78px;
    }
    .navbar-collapse {
        margin-top: 8px;
        padding: 10px;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .navbar-nav .nav-link {
        padding: 10px 9px;
        font-size: 14px;
    }
    .navbar-nav .nav-link::before {
        left: 9px;
        bottom: 4px;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: calc(100% - 18px);
    }
    .navbar-nav .dropdown-toggle {
        padding-right: 34px;
    }
    .navbar-nav .dropdown-toggle::after {
        right: 11px;
        width: 6px;
        height: 6px;
    }
    .navbar .dropdown-menu {
        min-width: 175px;
        margin-left: 9px;
    }
    .navbar .dropdown-item {
        padding: 9px;
        font-size: 13px;
    }
    .navbar .dropdown-item img {
        width: 22px;
        height: 22px;
    }
    .book-btn {
        width: auto;
        min-width: 115px;
        padding: 11px 18px;
        font-size: 11px;
        letter-spacing: 0.7px;
    }
}
@media (max-width: 400px) {
    .navbar-brand img {
        width: 78px;
    }
    .navbar.scrolled .navbar-brand img {
        width: 72px;
    }
    .navbar-toggler {
        width: 38px;
        height: 38px;
    }
    .navbar-toggler-icon {
        width: 19px;
        height: 19px;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 17px;
    }
    .navbar-collapse {
        padding: 8px;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .navbar-nav .nav-link {
        padding: 10px 8px;
        font-size: 13px;
    }
    .navbar-nav .nav-link::before {
        left: 8px;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: calc(100% - 16px);
    }
    .navbar-nav .dropdown-toggle {
        padding-right: 32px;
    }
    .navbar-nav .dropdown-toggle::after {
        right: 10px;
        width: 5px;
        height: 5px;
    }
    .navbar .dropdown-menu {
        min-width: 165px;
        margin-left: 8px;
    }
    .navbar .dropdown-item {
        padding: 8px;
        font-size: 12px;
    }
    .navbar .dropdown-item img {
        width: 21px;
        height: 21px;
    }
    .book-btn {
        width: auto;
        min-width: 105px;
        padding: 10px 14px;
        font-size: 10px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-brand img,
    .navbar-nav .nav-link,
    .navbar-nav .nav-link::after,
    .navbar .dropdown-menu,
    .navbar .dropdown-item,
    .navbar-toggler,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .book-btn,
    .book-btn::before {
        transition: none !important;
    }
}
@media (max-width: 991.98px) {
    .home-carousel {
        height: 600px;
        min-height: 0;
    }
    .home-carousel .carousel {
        height: 600px;
    }
    .home-carousel .carousel-inner {
        height: 600px;
    }
    .home-carousel .carousel-item {
        height: 600px;
        min-height: 0;
    }
    .home-carousel .hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .home-carousel .carousel-caption {
        top: 57%;
        width: 88%;
    }
    .home-carousel .hero-subtitle {
        margin-bottom: 18px;
        font-size: 16px;
        letter-spacing: 3px;
    }
    .home-carousel .hero-subtitle::before,
    .home-carousel .hero-subtitle::after {
        width: 35px;
    }
    .home-carousel .hero-subtitle::before {
        margin-right: 13px;
    }
    .home-carousel .hero-subtitle::after {
        margin-left: 13px;
    }
    .home-carousel .hero-title {
        max-width: 750px;
        margin-bottom: 28px;
        font-size:  clamp(40px, 6vw, 62px);
        line-height: 1.08;
    }
    .home-carousel .hero-button {
        min-width: 150px;
        padding: 14px 32px;
        font-size: 12px;
    }
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        width: 58px;
        height: 58px;
        margin-top: -29px;
    }
    .home-carousel .carousel-control-prev {
        left: 15px;
    }
    .home-carousel .carousel-control-next {
        right: 15px;
    }
    .home-carousel .carousel-control-prev-icon,
    .home-carousel .carousel-control-next-icon {
        width: 48px;
        height: 48px;
        background-size: 15px;
    }
}
@media (max-width: 767.98px) {
    .home-carousel {
        height: 520px;
        min-height: 0;
    }
    .home-carousel .carousel {
        height: 520px;
    }
    .home-carousel .carousel-inner {
        height: 520px;
    }
    .home-carousel .carousel-item {
        height: 520px;
        min-height: 0;
    }
    .home-carousel .hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .home-carousel .carousel-caption {
        top: 58%;
        width: 88%;
    }
    .home-carousel .hero-subtitle {
        margin-bottom: 14px;
        font-size: 13px;
        letter-spacing: 2.5px;
    }
    .home-carousel .hero-subtitle::before,
    .home-carousel .hero-subtitle::after {
        width: 25px;
    }
    .home-carousel .hero-subtitle::before {
        margin-right: 10px;
    }
    .home-carousel .hero-subtitle::after {
        margin-left: 10px;
    }
    .home-carousel .hero-title {
        max-width: 620px;
        margin-bottom: 22px;
        font-size:  clamp(34px, 7vw, 48px);
        line-height: 1.08;
        letter-spacing: -0.6px;
    }
    .home-carousel .hero-button {
        min-width: 140px;
        padding: 13px 28px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        top: auto;
        bottom: 18px;
        width: 46px;
        height: 46px;
        margin: 0;
    }
    .home-carousel .carousel-control-prev {
        left: 15px;
    }
    .home-carousel .carousel-control-next {
        right: 15px;
    }
    .home-carousel .carousel-control-prev-icon,
    .home-carousel .carousel-control-next-icon {
        width: 42px;
        height: 42px;
        background-size: 13px;
    }
}
@media (max-width: 575.98px) {
    .home-carousel {
        height: 450px;
        min-height: 0;
    }
    .home-carousel .carousel {
        height: 450px;
    }
    .home-carousel .carousel-inner {
        height: 450px;
    }
    .home-carousel .carousel-item {
        height: 450px;
        min-height: 0;
    }
    .home-carousel .hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .home-carousel .carousel-caption {
        top: 58%;
        width: 90%;
    }
    .home-carousel .hero-subtitle {
        margin-bottom: 11px;
        font-size: 11px;
        letter-spacing: 1.8px;
    }
    .home-carousel .hero-subtitle::before,
    .home-carousel .hero-subtitle::after {
        width: 18px;
    }
    .home-carousel .hero-subtitle::before {
        margin-right: 8px;
    }
    .home-carousel .hero-subtitle::after {
        margin-left: 8px;
    }
    .home-carousel .hero-title {
        max-width: 480px;
        margin-bottom: 19px;
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.08;
        letter-spacing: -0.3px;
    }
    .home-carousel .hero-button {
        min-width: 125px;
        padding: 11px 23px;
        font-size: 10px;
        letter-spacing: 1.3px;
    }
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
    .home-carousel .carousel-control-prev {
        left: 12px;
    }
    .home-carousel .carousel-control-next {
        right: 12px;
    }
    .home-carousel .carousel-control-prev-icon,
    .home-carousel .carousel-control-next-icon {
        width: 38px;
        height: 38px;
        background-size: 12px;
    }
}
@media (max-width: 380px) {
    .home-carousel {
        height: 410px;
    }
    .home-carousel .carousel {
        height: 410px;
    }
    .home-carousel .carousel-inner {
        height: 410px;
    }
    .home-carousel .carousel-item {
        height: 410px;
    }
    .home-carousel .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .home-carousel .carousel-caption {
        top: 57%;
        width: 90%;
    }
    .home-carousel .hero-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .home-carousel .hero-subtitle::before,
    .home-carousel .hero-subtitle::after {
        width: 15px;
    }
    .home-carousel .hero-title {
        margin-bottom: 16px;
        font-size: 26px;
        line-height: 1.08;
    }
    .home-carousel .hero-button {
        min-width: 118px;
        padding: 10px 20px;
        font-size: 9px;
        letter-spacing: 1.1px;
    }
}
@media (max-height: 600px) and (orientation: landscape) {
    .home-carousel {
        height: 100vh;
        min-height: 430px;
    }
    .home-carousel .carousel {
        height: 100vh;
    }
    .home-carousel .carousel-inner {
        height: 100vh;
    }
    .home-carousel .carousel-item {
        height: 100vh;
        min-height: 430px;
    }
    .home-carousel .hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-carousel .carousel-caption {
        top: 55%;
    }
    .home-carousel .hero-subtitle {
        margin-bottom: 8px;
        font-size: 10px;
    }
    .home-carousel .hero-title {
        margin-bottom: 13px;
        font-size: 30px;
    }
    .home-carousel .hero-button {
        padding: 10px 23px;
    }
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        top: 50%;
        bottom: auto;
        width: 44px;
        height: 44px;
        margin-top: -22px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .home-carousel .hero-image,
    .home-carousel .hero-overlay::before,
    .home-carousel .hero-subtitle,
    .home-carousel .hero-title,
    .home-carousel .hero-button {
        animation: none !important;
    }
    .home-carousel .carousel-fade .carousel-item {
        transition: none !important;
    }
    .home-carousel .hero-subtitle,
    .home-carousel .hero-title,
    .home-carousel .hero-button {
        opacity: 1 !important;
        transform: none !important;
    }
    .home-carousel .hero-button,
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next,
    .home-carousel .carousel-control-prev-icon,
    .home-carousel .carousel-control-next-icon {
        transition: none !important;
    }
}
.home-carousel .carousel-control-prev:focus-visible,
.home-carousel .carousel-control-next:focus-visible,
.home-carousel .hero-button:focus-visible {
    outline: 2px solid var(--primary-color, #ca984a);
    outline-offset:
        4px;
}
@media (min-width: 1200px) {
    .about-section {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }
    .about-images {
        min-height: 610px;
        padding-right: 80px;
    }
    .about-img-main {
        width: calc(100% - 80px);
        height: 560px;
    }
    .about-img-small {
        width: 50%;
        height: 290px;
        border-width: 10px;
    }
    .about-images::before {
        top: 38px;
        right: 28px;
        width: 85px;
        height: 85px;
    }
    .about-section .section-heading {
        margin-bottom: 30px;
    }
    .about-section .section-heading span {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .about-section .section-heading h2 {
        font-size: 58px;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        font-size: 19px;
        line-height: 1.78;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .about-section {
        padding-top: 105px !important;
        padding-bottom: 105px !important;
    }
    .about-images {
        min-height: 540px;
        padding-right: 60px;
    }
    .about-img-main {
        width: calc(100% - 60px);
        height: 495px;
    }
    .about-img-small {
        width: 52%;
        height: 245px;
        border-width: 9px;
    }
    .about-images::before {
        top: 30px;
        right: 20px;
        width: 70px;
        height: 70px;
    }
    .about-section .section-heading h2 {
        font-size: 48px;
        line-height: 1.1;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        font-size: 17px;
        line-height: 1.7;
    }
}
@media (max-width: 991.98px) {
    .about-section {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }
    .about-section .row {
        --bs-gutter-y: 55px;
    }
    .about-images {
        width: 90%;
        min-height: 520px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 55px;
    }
    .about-img-main {
        width: calc(100% - 55px);
        height: 470px;
    }
    .about-img-small {
        width: 50%;
        height: 235px;
        border-width: 8px;
    }
    .about-images::before {
        top: 25px;
        right: 15px;
        width: 65px;
        height: 65px;
        border-width: 1px;
    }
    .about-section .section-heading {
        margin-bottom: 22px;
    }
    .about-section .section-heading span {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 2.5px;
    }
    .about-section .section-heading span::before {
        width: 30px;
        margin-right: 11px;
    }
    .about-section .section-heading h2 {
        max-width: 700px;
        font-size: clamp(36px, 5vw, 50px);
        line-height: 1.1;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        max-width: 700px;
        font-size: 17px;
        line-height: 1.7;
    }
    .about-section .book-btn {
        margin-top: 12px;
    }
}
@media (max-width: 767.98px) {
    .about-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .about-section .row {
        --bs-gutter-y: 45px;
    }
    .about-images {
        width: 92%;
        min-height: 450px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 45px;
    }
    .about-img-main {
        width: calc(100% - 45px);
        height: 400px;
    }
    .about-img-small {
        width: 52%;
        height: 205px;
        border-width: 7px;
    }
    .about-images::before {
        top: 20px;
        right: 8px;
        width: 55px;
        height: 55px;
    }
    .about-section .section-heading {
        margin-bottom: 20px;
    }
    .about-section .section-heading span {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    .about-section .section-heading span::before {
        width: 25px;
        margin-right: 9px;
    }
    .about-section .section-heading h2 {
        max-width: 600px;
        font-size: clamp(32px, 7vw, 44px);
        line-height: 1.1;
        letter-spacing: -0.5px;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 15px;
    }
    .about-section .book-btn {
        min-width: 150px;
        padding: 14px 26px;
        font-size: 11px;
        letter-spacing: 1.4px;
    }
}
@media (max-width: 575.98px) {
    .about-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .about-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .about-section .row {
        --bs-gutter-y: 38px;
    }
    .about-images {
        width: 94%;
        min-height: 375px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 32px;
    }
    .about-img-main {
        width: calc(100% - 32px);
        height: 335px;
    }
    .about-img-small {
        right: 0;
        bottom: 0;
        width: 52%;
        height: 170px;
        border-width: 6px;
    }
    .about-images::before {
        top: 15px;
        right: 3px;
        width: 42px;
        height: 42px;
    }
    .about-section .section-heading {
        margin-bottom: 18px;
    }
    .about-section .section-heading span {
        margin-bottom: 11px;
        font-size: 10px;
        letter-spacing: 1.7px;
    }
    .about-section .section-heading span::before {
        width: 20px;
        margin-right: 8px;
    }
    .about-section .section-heading h2 {
        max-width: 100%;
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.1;
        letter-spacing: -0.3px;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    .about-section .book-btn {
        min-width: 140px;
        margin-top: 12px;
        padding: 13px 23px;
        font-size: 10px;
        letter-spacing: 1.3px;
    }
    .about-images:hover .about-img-main {
        transform: none;
    }
    .about-images:hover .about-img-small {
        transform: none;
    }
}
@media (max-width: 380px) {
    .about-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .about-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .about-images {
        width: 96%;
        min-height: 330px;
        padding-right: 27px;
    }
    .about-img-main {
        width: calc(100% - 27px);
        height: 295px;
    }
    .about-img-small {
        width: 53%;
        height: 145px;
        border-width: 5px;
    }
    .about-images::before {
        width: 35px;
        height: 35px;
    }
    .about-section .section-heading h2 {
        font-size: 28px;
    }
    .about-section > .container > .row > .col-lg-6:last-child > p {
        font-size: 15px;
        line-height: 1.6;
    }
    .about-section .book-btn {
        min-width: 130px;
        padding: 12px 20px;
        font-size: 9px;
    }
}
@media (max-height: 600px) and (orientation: landscape) {
    .about-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .about-images {
        min-height: 400px;
    }
    .about-img-main {
        height: 370px;
    }
    .about-img-small {
        height: 170px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .about-img-main,
    .about-img-small,
    .about-section .book-btn,
    .about-section .book-btn::before {
        transition: none !important;
    }
    .about-images:hover .about-img-main,
    .about-images:hover .about-img-small {
        transform: none !important;
    }
}
.about-section .book-btn:focus-visible {
    outline: 2px solid #CA984A;
    outline-offset: 4px;
}
@media (min-width: 1200px) {
    .facilities-section {
        padding-top: 130px;
        padding-bottom: 130px;
    }
    .facilities-section .section-heading {
        margin-bottom: 70px !important;
    }
    .facility-card {
        min-height: 300px;
        padding: 40px 32px 36px;
    }
    .facility-card h4 {
        font-size: 25px;
    }
    .facility-card p {
        font-size: 17px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .facilities-section {
        padding-top: 105px;
        padding-bottom: 105px;
    }
    .facilities-section .section-heading {
        margin-bottom: 55px !important;
    }
    .facility-card {
        min-height: 290px;
        padding: 32px 25px;
    }
    .facility-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 23px;
        font-size: 22px;
    }
    .facility-card h4 {
        font-size: 22px;
    }
    .facility-card p {
        font-size: 16px;
    }
}
@media (max-width: 991.98px) {
    .facilities-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }
    .facilities-section .section-heading {
        margin-bottom: 50px !important;
    }
    .facilities-section .section-heading h2 {
        font-size: clamp(36px, 5vw, 48px);
    }
    .facility-card {
        min-height: 270px;
        padding: 32px 27px;
    }
    .facility-card h4 {
        font-size: 23px;
    }
}
@media (max-width: 767.98px) {
    .facilities-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .facilities-section .section-heading {
        margin-bottom: 42px !important;
    }
    .facilities-section .section-heading span {
        font-size: 11px;
        letter-spacing: 2.2px;
    }
    .facilities-section .section-heading span::before,
    .facilities-section .section-heading span::after {
        width: 25px;
    }
    .facilities-section .section-heading span::before {
        margin-right: 10px;
    }
    .facilities-section .section-heading span::after {
        margin-left: 10px;
    }
    .facilities-section .section-heading h2 {
        font-size: clamp(32px, 7vw, 43px);
        letter-spacing: -0.5px;
    }
    .facilities-section .section-heading p {
        font-size: 17px;
        line-height: 1.65;
    }
    .facility-card {
        min-height: 260px;
        padding: 30px 25px;
    }
    .facility-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
        font-size: 21px;
    }
    .facility-card h4 {
        font-size: 22px;
    }
    .facility-card p {
        font-size: 16px;
    }
}
@media (max-width: 575.98px) {
    .facilities-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .facilities-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .facilities-section .section-heading {
        margin-bottom: 35px !important;
    }
    .facilities-section .section-heading span {
        margin-bottom: 13px;
        font-size: 10px;
        letter-spacing: 1.7px;
    }
    .facilities-section .section-heading span::before,
    .facilities-section .section-heading span::after {
        width: 20px;
    }
    .facilities-section .section-heading span::before {
        margin-right: 8px;
    }
    .facilities-section .section-heading span::after {
        margin-left: 8px;
    }
    .facilities-section .section-heading h2 {
        font-size: clamp(29px, 8vw, 37px);
        line-height: 1.1;
    }
    .facilities-section .section-heading p {
        font-size: 16px;
        line-height: 1.6;
    }
    .facility-card {
        min-height: 0;
        padding: 28px 23px 30px;
    }
    .facility-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
        font-size: 20px;
    }
    .facility-number {
        top: 24px;
        right: 20px;
    }
    .facility-card h4 {
        font-size: 21px;
        margin-bottom: 11px;
    }
    .facility-card p {
        font-size: 16px;
        line-height: 1.6;
    }
    .facility-card:hover {
        transform: none;
    }
    .facility-card:hover .facility-icon {
        transform: none;
    }
}
@media (max-width: 380px) {
    .facilities-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .facilities-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .facilities-section .section-heading h2 {
        font-size: 28px;
    }
    .facilities-section .section-heading p {
        font-size: 15px;
    }
    .facility-card {
        padding: 25px 20px 27px;
    }
    .facility-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .facility-card h4 {
        font-size: 20px;
    }
    .facility-card p {
        font-size: 15px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .facility-card,
    .facility-card::before,
    .facility-card::after,
    .facility-icon,
    .facility-card h4 {
        transition: none !important;
    }
    .facility-card:hover {
        transform: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .rooms-section {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }
    .rooms-section .section-heading {
        max-width: 760px;
        margin-bottom: 45px !important;
    }
    .rooms-section .section-heading h2 {
        font-size: 48px;
    }
    .rooms-section .section-heading p {
        font-size: 17px;
    }
    .rooms-carousel {
        padding: 0 25px;
    }
    .rooms-carousel .item {
        padding: 8px !important;
    }
    .room-card {
        min-height: 575px;
    }
    .room-image {
        height: 270px;
    }
    .room-content {
        padding: 22px;
    }
    .room-content h4 {
        font-size: 25px;
    }
    .room-content > p {
        min-height: 75px;
        font-size: 15px;
    }
    .room-info {
        margin-bottom: 23px;
        padding: 17px 0;
    }
    .room-info > div {
        padding: 0 5px;
    }
    .room-info span {
        font-size: 9px;
    }
    .room-carousel .owl-nav button.owl-prev,
    .rooms-carousel .owl-nav button.owl-next {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .rooms-section {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }
    .rooms-section .section-heading {
        max-width: 700px;
        margin-bottom: 40px !important;
    }
    .rooms-section .section-heading span {
        font-size: 12px;
        letter-spacing: 2.5px;
        margin-bottom: 15px;
    }
    .rooms-section .section-heading span::before,
    .rooms-section .section-heading span::after {
        width: 30px;
    }
    .rooms-section .section-heading h2 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }
    .rooms-section .section-heading p {
        max-width: 600px;
        font-size: 16px;
        line-height: 1.65;
    }
    .rooms-carousel {
        padding: 0 25px;
    }
    .rooms-carousel .owl-stage-outer {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .rooms-carousel .item {
        padding: 7px !important;
    }
    .room-card {
        min-height: 560px;
    }
    .room-image {
        height: 250px;
    }
    .room-content {
        padding: 20px;
    }
    .room-content h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .room-content > p {
        min-height: 70px;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.55;
    }
    .room-badge {
        top: 15px;
        right: 15px;
        padding: 7px 10px;
        font-size: 9px;
    }
    .room-info {
        margin-bottom: 22px;
        padding: 16px 0;
    }
    .room-info > div {
        padding: 0 4px;
    }
    .room-info h5 {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .room-info span {
        font-size: 9px;
    }
    .room-content .book-btn {
        min-width: 140px;
        padding: 12px 22px;
        font-size: 10px;
    }
    .rooms-carousel .owl-nav button.owl-prev,
    .rooms-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
        font-size: 19px !important;
    }
    .rooms-carousel .owl-nav button.owl-prev {
        transform: translateX(-2px);
    }
    .rooms-carousel .owl-nav button.owl-next {
        transform: translateX(2px);
    }
    .rooms-section .section-btn {
        margin-top: 35px;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .rooms-section {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }
    .rooms-section .section-heading {
        max-width: 560px;
        margin-bottom: 32px !important;
    }
    .rooms-section .section-heading span {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 13px;
    }
    .rooms-section .section-heading span::before,
    .rooms-section .section-heading span::after {
        width: 25px;
        margin-right: 10px;
        margin-left: 10px;
    }
    .rooms-section .section-heading h2 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.4px;
        padding: 0 10px;
    }
    .rooms-section .section-heading p {
        padding: 0 15px;
        font-size: 15px;
        line-height: 1.6;
    }
    .rooms-carousel {
        padding: 0 30px;
    }
    .rooms-carousel .item {
        padding: 6px !important;
    }
    .room-card {
        min-height: auto;
    }
    .room-image {
        height: 280px;
    }
    .room-content {
        padding: 22px;
    }
    .room-content h4 {
        font-size: 25px;
    }
    .room-content > p {
        min-height: auto;
        margin-bottom: 18px;
        font-size: 15px;
    }
    .room-info {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 22px;
        padding: 17px 0;
    }
    .room-info > div {
        padding: 0 5px;
    }
    .room-info h5 {
        font-size: 15px;
    }
    .room-info span {
        font-size: 9px;
    }
    .room-content .book-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 14px 20px;
    }
    .room-badge {
        top: 15px;
        right: 15px;
        font-size: 9px;
    }
    .rooms-carousel .owl-nav {
        display: none;
    }
    .rooms-carousel .owl-dots {
        margin-top: 20px;
    }
    .rooms-section .section-btn {
        margin-top: 30px;
    }
}
@media (max-width: 575.98px) {
    .rooms-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }
    .rooms-section::before,
    .rooms-section::after {
        width: 350px;
        height: 350px;
    }
    .rooms-section::before {
        top: -160px;
        left: -180px;
    }
    .rooms-section::after {
        right: -180px;
        bottom: -160px;
    }
    .rooms-section .section-heading {
        max-width: 100%;
        margin-bottom: 30px !important;
    }
    .rooms-section .section-heading span {
        font-size: 10px;
        letter-spacing: 1.8px;
        margin-bottom: 12px;
    }
    .rooms-section .section-heading span::before,
    .rooms-section .section-heading span::after {
        width: 22px;
        margin-right: 9px;
        margin-left: 9px;
    }
    .rooms-section .section-heading h2 {
        max-width: 100%;
        padding: 0 8px;
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.3px;
    }
    .rooms-section .section-heading p {
        max-width: 100%;
        padding: 0 8px;
        font-size: 15px;
        line-height: 1.6;
    }
    .rooms-carousel {
        padding: 0 12px;
    }
    .rooms-carousel .owl-stage-outer {
        padding-top: 4px;
        padding-bottom: 8px;
    }
    .rooms-carousel .item {
        padding: 5px !important;
    }
    .room-card {
        min-height: 0;
        height: auto;
    }
    .room-image {
        height: 235px;
    }
    .room-content {
        padding: 20px 17px 18px;
    }
    .room-content h4 {
        font-size: 23px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .room-content > p {
        min-height: 0;
        margin-bottom: 17px;
        font-size: 15px;
        line-height: 1.55;
    }
    .room-badge {
        top: 12px;
        right: 12px;
        padding: 7px 9px;
        font-size: 8px;
        letter-spacing: 1px;
    }
    .room-info {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 18px;
        padding: 15px 0;
        row-gap: 16px;
    }
    .room-info > div {
        min-height: 42px;
        padding: 0 6px;
    }
    .room-info > div:nth-child(2) {
        border-right: none;
    }
    .room-info > div:nth-child(3),
    .room-info > div:nth-child(4) {
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
    .room-info h5 {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .room-info span {
        font-size: 9px;
        line-height: 1.3;
    }
    .room-content .book-btn {
        width: 100%;
        min-width: 0;
        padding: 13px 18px;
        font-size: 10px;
        letter-spacing: 1.3px;
    }
    .rooms-carousel .owl-nav {
        display: none;
    }
    .rooms-carousel .owl-dots {
        margin-top: 18px;
        gap: 7px;
    }
    .rooms-carousel .owl-dot span {
        width: 6px;
        height: 6px;
    }
    .rooms-carousel .owl-dot.active span {
        width: 24px;
    }
    .rooms-section .section-btn {
        margin-top: 28px;
    }
    .rooms-section .section-btn .book-btn {
        min-width: 145px;
        padding: 13px 25px;
        font-size: 10px;
    }
}
@media (max-width: 380px) {
    .rooms-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }
    .rooms-section .section-heading span {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .rooms-section .section-heading span::before,
    .rooms-section .section-heading span::after {
        width: 18px;
        margin-right: 7px;
        margin-left: 7px;
    }
    .rooms-section .section-heading h2 {
        font-size: 27px;
    }
    .rooms-section .section-heading p {
        font-size: 14px;
    }
    .rooms-carousel {
        padding: 0 8px;
    }
    .rooms-carousel .item {
        padding: 4px !important;
    }
    .room-image {
        height: 215px;
    }
    .room-content {
        padding: 18px 15px 16px;
    }
    .room-content h4 {
        font-size: 21px;
    }
    .room-content > p {
        font-size: 14px;
    }
    .room-info {
        margin-bottom: 16px;
        padding: 13px 0;
        row-gap: 12px;
    }
    .room-info > div:nth-child(3),
    .room-info > div:nth-child(4) {
        padding-top: 12px;
    }
    .room-info span {
        font-size: 8px;
    }
    .room-badge {
        top: 10px;
        right: 10px;
        padding: 6px 8px;
        font-size: 7px;
    }
    .room-content .book-btn {
        padding: 12px 15px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .room-card,
    .room-card::before,
    .room-image img,
    .room-image-overlay,
    .room-badge,
    .room-content h4,
    .room-info h5,
    .rooms-carousel .owl-nav button.owl-prev,
    .rooms-carousel .owl-nav button.owl-next,
    .rooms-carousel .owl-dot span {
        transition: none !important;
    }
}
@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 90px 0 !important;
    }
    .testimonial-section .section-heading {
        margin-bottom: 35px !important;
    }
    .testimonial-section .section-heading h2 {
        font-size: clamp(34px, 5vw, 48px);
    }
    .testimonial-card {
        min-height: 350px;
        padding: 50px 32px 35px;
    }
    .testimonial-card p {
        font-size: 17px;
        line-height: 1.65;
    }
    .testimonial-carousel {
        padding: 0 20px;
    }
    .testimonial-carousel .owl-nav {
        left: -5px;
        right: -5px;
    }
    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
        font-size: 18px !important;
    }
}
@media (max-width: 767.98px) {
    .testimonial-section {
        padding: 75px 0 !important;
    }
    .testimonial-section::before {
        top: -180px;
        left: -250px;
        width: 450px;
        height: 450px;
    }
    .testimonial-section::after {
        right: -250px;
        bottom: -220px;
        width: 450px;
        height: 450px;
    }
    .testimonial-section .section-heading {
        padding: 0 10px;
    }
    .testimonial-section .section-heading span {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
    .testimonial-section .section-heading span::before,
    .testimonial-section .section-heading span::after {
        width: 28px;
    }
    .testimonial-section .section-heading span::before {
        margin-right: 11px;
    }
    .testimonial-section .section-heading span::after {
        margin-left: 11px;
    }
    .testimonial-section .section-heading h2 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }
    .testimonial-section .section-heading p {
        font-size: 17px;
        line-height: 1.6;
    }
    .testimonial-carousel {
        padding: 0 8px;
    }
    .testimonial-carousel .owl-stage-outer {
        padding: 10px 0 20px;
    }
    .testimonial-carousel .item {
        padding: 8px !important;
    }
    .testimonial-card {
        min-height: 330px;
        padding: 45px 24px 32px;
    }
    .testimonial-stamp {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        font-size: 27px;
    }
    .testimonial-score {
        font-size: 11px;
    }
    .testimonial-score::before {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .testimonial-card p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    .testimonial-author h5 {
        font-size: 19px;
    }
    .testimonial-author span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    .testimonial-carousel .owl-nav {
        display: none;
    }
    .testimonial-carousel .owl-dots {
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .testimonial-section {
        padding: 65px 0 !important;
    }
    .testimonial-section .section-heading h2 {
        font-size: 30px;
    }
    .testimonial-section .section-heading p {
        font-size: 16px;
    }
    .testimonial-card {
        min-height: 320px;
        padding: 42px 20px 30px;
    }
    .testimonial-card p {
        font-size: 16px;
        line-height: 1.65;
    }
    .testimonial-stamp {
        width: 56px;
        height: 56px;
        font-size: 25px;
    }
}
@media (max-width: 991.98px) {
    .home-gallery {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }
    .home-gallery .section-heading {
        margin-bottom: 40px !important;
    }
    .home-gallery .section-heading h2 {
        font-size: 42px;
    }
    .home-gallery .section-heading p {
        font-size: 17px;
    }
    .gallery-carousel {
        padding: 0 25px;
    }
    .gallery-item {
        height: 350px;
    }
    .gallery-carousel .owl-nav button.owl-prev,
    .gallery-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
        font-size: 18px !important;
    }
}
@media (max-width: 767.98px) {
    .home-gallery {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .home-gallery .section-heading {
        margin-bottom: 30px !important;
    }
    .home-gallery .section-heading span {
        font-size: 11px;
        letter-spacing: 2.2px;
        margin-bottom: 14px;
    }
    .home-gallery .section-heading span::before,
    .home-gallery .section-heading span::after {
        width: 25px;
    }
    .home-gallery .section-heading span::before {
        margin-right: 10px;
    }
    .home-gallery .section-heading span::after {
        margin-left: 10px;
    }
    .home-gallery .section-heading h2 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }
    .home-gallery .section-heading p {
        padding: 0 10px;
        font-size: 16px;
        line-height: 1.65;
    }
    .gallery-carousel {
        padding: 0 8px;
    }
    .gallery-carousel .item {
        padding: 7px !important;
    }
    .gallery-item {
        height: 300px;
    }
    .gallery-carousel .owl-nav {
        display: none;
    }
    .gallery-carousel .owl-dots {
        margin-top: 18px;
    }
    .home-gallery .section-btn {
        margin-top: 30px;
    }
}
@media (max-width: 575.98px) {
    .home-gallery {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .home-gallery .section-heading h2 {
        font-size: 30px;
    }
    .home-gallery .section-heading p {
        font-size: 15px;
    }
    .gallery-carousel {
        padding: 0;
    }
    .gallery-carousel .item {
        padding: 5px !important;
    }
    .gallery-item {
        height: 270px;
    }
    .home-gallery .section-btn .book-btn {
        width: 100%;
        max-width: 210px;
        text-align: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-card,
    .gallery-overlay,
    .gallery-item::before,
    .gallery-item::after {
        transition: none !important;
    }
    .gallery-item:hover {
        transform: none;
    }
    .gallery-item:hover .gallery-card {
        transform: none;
    }
}
@media (max-width: 991.98px) {
    .cover {
        min-height: 520px;
    }
    .cover-content {
        padding: 70px 25px;
    }
    .cover-title {
        font-size: clamp(40px, 7vw, 58px);
    }
    .cover-subtitle {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .cover {
        min-height: 500px;
    }
    .cover > img {
        object-position: center;
    }
    .cover-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 22, 27, .55) 0%,
                rgba(20, 22, 27, .62) 45%,
                rgba(20, 22, 27, .88) 100%
            );
    }
    .cover-content {
        padding: 65px 20px;
    }
    .cover-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .cover-label::before,
    .cover-label::after {
        width: 24px;
    }
    .cover-label::before {
        margin-right: 9px;
    }
    .cover-label::after {
        margin-left: 9px;
    }
    .cover-title {
        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -.7px;
    }
    .cover-line {
        margin: 22px auto 18px;
    }
    .cover-subtitle {
        max-width: 480px;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .cover-content .book-btn {
        min-width: 165px;
        padding: 14px 24px;
    }
}
@media (max-width: 575.98px) {
    .cover {
        min-height: 460px;
    }
    .cover-content {
        padding: 55px 18px;
    }
    .cover-title {
        font-size: 32px;
    }
    .cover-subtitle {
        font-size: 15px;
    }
    .cover-content .book-btn {
        width: 100%;
        max-width: 210px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .cover > img {
        transition: none !important;
    }
    .cover:hover > img {
        transform: none;
    }
}
@media (max-width: 991.98px) {
    .footer {
        padding: 75px 0 15px;
    }
    .footer-brand {
        padding: 40px 30px;
    }
    .footer-title {
        margin-top: 15px;
    }
    .footer-map {
        margin-top: 0;
    }
    .footer iframe {
        height: 260px;
    }
}
@media (max-width: 767.98px) {
    .footer {
        padding: 65px 0 15px;
    }
    .footer-brand {
        padding: 35px 25px;
    }
    .footer-logo {
        width: 100px;
        margin-bottom: 20px;
    }
    .footer-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    .footer-title {
        font-size: 19px;
        margin-top: 10px;
        margin-bottom: 23px;
    }
    .footer-list li {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .footer .col-lg-2 .footer-list {
        text-align: center;
    }
    .footer-map {
        width: 100%;
    }
    .footer iframe {
        height: 230px;
    }
    .footer-divider {
        margin: 40px 0 20px;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .powered p {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .footer {
        padding: 55px 0 12px;
    }
    .footer-brand {
        padding: 30px 20px;
    }
    .footer-description {
        max-width: 300px;
        font-size: 14px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-socials a {
        width: 42px;
        height: 42px;
    }
    .footer iframe {
        height: 210px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
    .powered img {
        width: 90px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .footer *,
    .footer::before,
    .footer::after {
        transition: none !important;
        animation: none !important;
    }
}
@media (max-width: 991px) {
    .top-cover {
        min-height: 380px;
    }
    .top-cover .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .top-cover-title {
        font-size: clamp(40px, 8vw, 58px);
    }
}
@media (max-width: 767px) {
    .top-cover {
        min-height: 330px;
    }
    .top-cover .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .top-cover-title {
        font-size: 42px;
        letter-spacing: -0.5px;
    }
    .top-cover-title::after {
        width: 45px;
        margin-top: 18px;
    }
    .top-cover .breadcrumb-item {
        font-size: 13px;
    }
    .top-cover .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
    }
}
@media (max-width: 480px) {
    .top-cover {
        min-height: 300px;
    }
    .top-cover-title {
        font-size: 36px;
    }
    .top-cover-img {
        object-position: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .top-cover-img.zoom-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
@media (min-width: 992px) {
    .room-row:nth-of-type(2) .room-content,
    .room-row:nth-of-type(4) .room-content {
        padding-left: 10px;
        padding-right: 35px;
    }
    .room-row:nth-of-type(2) .room-content::before,
    .room-row:nth-of-type(4) .room-content::before {
        left: auto;
        right: 0;
    }
}
@media (max-width: 1199px) {
    .room-section {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }
    .room-row {
        margin-bottom: 85px !important;
    }
    .room-image-wrap {
        height: 450px;
    }
    .room-content {
        padding-left: 25px;
    }
    .room-content h3 {
        font-size: 34px;
    }
    .room-content > p {
        font-size: 17px;
    }
    .room-info span {
        font-size: 9px;
    }
}
@media (max-width: 991px) {
    .room-section {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }
    .room-title {
        font-size: 44px;
    }
    .room-intro {
        font-size: 17px;
    }
    .room-row {
        margin-bottom: 75px !important;
    }
    .room-image-wrap {
        height: 460px;
    }
    .room-content {
        padding: 10px 0 10px 25px;
    }
    .room-content h3 {
        font-size: 36px;
    }
    .room-content > p {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .room-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .room-subtitle {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
    .room-subtitle::before,
    .room-subtitle::after {
        width: 25px;
    }
    .room-subtitle::before {
        margin-right: 10px;
    }
    .room-subtitle::after {
        margin-left: 10px;
    }
    .room-title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }
    .room-intro {
        font-size: 16px;
        line-height: 1.65;
    }
    .room-row {
        margin-bottom: 65px !important;
    }
    .room-image-wrap {
        height: 360px;
    }
    .room-image-wrap::before {
        top: 12px;
        left: 12px;
        width: calc(100% - 24px);
        height: calc(100% - 24px);
    }
    .room-label {
        top: 18px;
        right: 18px;
        padding: 8px 11px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }
    .room-content {
        padding: 15px 0 15px 20px;
    }
    .room-content::before {
        height: 55px;
    }
    .room-content h3 {
        font-size: 31px;
        line-height: 1.18;
    }
    .room-content > p {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    .room-info {
        grid-template-columns: repeat(4, 1fr);
        padding: 17px 0;
    }
    .room-info > div {
        padding: 0 5px;
    }
    .room-info h5 {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .room-info span {
        font-size: 8px;
        line-height: 1.3;
    }
    .room-content .book-btn {
        margin-top: 22px;
    }
}
@media (max-width: 480px) {
    .room-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .room-title {
        font-size: 31px;
    }
    .room-intro {
        font-size: 15px;
    }
    .room-image-wrap {
        height: 300px;
    }
    .room-label {
        top: 15px;
        right: 15px;
        padding: 7px 9px;
        font-size: 8px;
    }
    .room-content {
        padding-left: 17px;
    }
    .room-content h3 {
        font-size: 28px;
    }
    .room-content > p {
        font-size: 15px;
    }
    .room-info {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }
    .room-info > div:nth-child(2) {
        border-right: none;
    }
    .room-info > div:nth-child(1),
    .room-info > div:nth-child(2) {
        padding-bottom: 5px;
    }
    .room-info > div:nth-child(3),
    .room-info > div:nth-child(4) {
        padding-top: 5px;
    }
    .room-info > div:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }
    .room-info span {
        font-size: 9px;
    }
    .room-content .book-btn {
        width: 100%;
        max-width: 190px;
    }
    .room-section .section-btn .book-btn {
        width: 100%;
        max-width: 220px;
    }
}
@media (max-width: 360px) {
    .room-title {
        font-size: 28px;
    }
    .room-image-wrap {
        height: 270px;
    }
    .room-content h3 {
        font-size: 25px;
    }
    .room-info {
        gap: 10px 0;
    }
    .room-info h5 {
        font-size: 14px;
    }
    .room-info span {
        font-size: 8px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .room-img,
    .room-image-wrap,
    .room-image-wrap::before,
    .room-image-wrap::after,
    .room-label,
    .room-content h3,
    .room-info h5,
    .room-content .book-btn,
    .room-section .section-btn .book-btn {
        transition: none !important;
    }
}
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 80px 0;
    }
    .gallery-section .col-lg-3 .gallery-item,
    .gallery-section .col-lg-4 .gallery-item {
        height: 300px;
    }
    .gallery-section .row.g-4 {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
    }
}
@media (max-width: 767.98px) {
    .gallery-section {
        padding: 70px 0;
    }
    .gallery-section .room-subtitle {
        font-size: 12px;
        letter-spacing: 2.5px;
    }
    .gallery-section .room-title {
        font-size: 32px;
        line-height: 1.3;
    }
    .gallery-section .room-title br {
        display: none;
    }
    .gallery-intro {
        font-size: 14px;
        line-height: 1.8;
    }
    .gallery-section .row.g-4 {
        --bs-gutter-x: 14px;
        --bs-gutter-y: 14px;
    }
    .gallery-section .col-lg-3 .gallery-item,
    .gallery-section .col-lg-4 .gallery-item {
        height: 280px;
    }
    .gallery-item::before {
        inset: 10px;
    }
    .gallery-item:hover::before {
        inset: 14px;
    }
    .gallery-item::after {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .gallery-section {
        padding: 60px 0;
    }
    .gallery-section .room-title {
        font-size: 29px;
    }
    .gallery-section .col-lg-3 .gallery-item,
    .gallery-section .col-lg-4 .gallery-item {
        height: 260px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .gallery-img,
    .gallery-item,
    .gallery-overlay,
    .gallery-item::before,
    .gallery-item::after {
        transition: none !important;
    }
    .gallery-item:hover .gallery-img {
        transform: none;
    }
}
@media (max-width: 991px) {
    .contact-section {
        padding: 70px 0;
    }
    .contact-map,
    .contact-map iframe {
        min-height: 450px;
    }
    .contact-box {
        padding: 40px 30px;
    }
}
@media (max-width: 575px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-box {
        padding: 35px 25px;
    }
    .contact-box h3 {
        font-size: 26px;
    }
    .contact-map,
    .contact-map iframe {
        min-height: 380px;
    }
    .map-overlay-btn {
        left: 15px;
        bottom: 15px;
        padding: 11px 15px;
        font-size: 10px;
    }
}