/* =========================================================
   THE RANA RESORT
   GLOBAL DESIGN SYSTEM
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {

    /* Brand Colors */
    --navy: #0b243d;
    --navy-dark: #071a2c;
    --navy-light: #163b5d;

    --gold: #c9963e;
    --gold-light: #d8ae62;
    --gold-soft: #ead6ad;

    --cream: #f7f3eb;
    --cream-dark: #eee7da;

    --white: #ffffff;
    --black: #111111;

    /* Text */
    --text: #26313b;
    --text-light: #6b7278;
    --text-muted: #92979b;

    /* Borders */
    --border: #e5dfd5;
    --border-light: #eeeae3;

    /* Typography */
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;

    /* Layout */
    --container-width: 1240px;
    --section-padding: 95px;

    /* Radius */
    --radius-sm: 2px;
    --radius-md: 4px;

    /* Shadow */
    --shadow-sm: 0 8px 25px rgba(7, 26, 44, 0.06);
    --shadow-md: 0 15px 45px rgba(7, 26, 44, 0.10);

    /* Transition */
    --transition: all 0.3s ease;

}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;

    background: var(--white);
    color: var(--text);

    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    transition: var(--transition);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}


/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   04. SECTION SPACING
   ========================================================= */

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}


/* =========================================================
   05. SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-block;

    color: var(--gold);

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.4px;
    line-height: 1.4;

    text-transform: uppercase;
}

.section-heading h2 {
    margin: 10px 0 18px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.85;
}

.section-divider {
    width: 48px;
    height: 1px;

    margin: 0 auto 22px;

    background: var(--gold);
}


/* =========================================================
   06. COMMON HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--serif);
    color: var(--navy);
    font-weight: 500;
}

h1 {
    font-size: 70px;
    line-height: 1;
}

h2 {
    font-size: 54px;
    line-height: 1.05;
}

h3 {
    font-size: 34px;
    line-height: 1.1;
}

h4 {
    font-size: 26px;
    line-height: 1.2;
}


/* =========================================================
   07. BUTTON SYSTEM
   ========================================================= */

.btn-rana {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 24px;

    border: 1px solid var(--gold);
    border-radius: 0;

    background: var(--gold);
    color: var(--navy);

    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    cursor: pointer;

    transition: var(--transition);
}

.btn-rana i {
    font-size: 13px;
    transition: var(--transition);
}

.btn-rana:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
}

.btn-rana:hover i {
    transform: translateX(4px);
}


/* Secondary Button */

.btn-rana-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 24px;

    border: 1px solid rgba(255,255,255,0.65);

    background: transparent;
    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    transition: var(--transition);
}

.btn-rana-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}


/* =========================================================
   08. COMMON IMAGE SYSTEM
   ========================================================= */

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrap {
    position: relative;
    overflow: hidden;
}

.image-wrap img {
    transition: transform 0.6s ease;
}

.image-wrap:hover img {
    transform: scale(1.04);
}


/* =========================================================
   09. INNER PAGE HERO
   ========================================================= */

.inner-page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.inner-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.82),
            rgba(7, 26, 44, 0.48)
        );
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-content {
    max-width: 720px;
    padding: 70px 0;
}

.inner-page-hero-content .section-eyebrow {
    color: var(--gold-light);
}

.inner-page-hero-content h1 {
    margin: 12px 0 18px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 64px;
    font-weight: 500;
    line-height: 0.98;
}

.inner-page-hero-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   10. COMMON CTA
   ========================================================= */

.inner-page-cta {
    position: relative;

    padding: 100px 0;

    background-image:
        linear-gradient(
            rgba(7, 26, 44, 0.58),
            rgba(7, 26, 44, 0.68)
        ),
        url("../images/cta/cta-home.png");

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.inner-page-cta .container {
    position: relative;
    z-index: 2;
}

.inner-page-cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.inner-page-cta-content .section-eyebrow {
    color: var(--gold-light);
}

.inner-page-cta-content h2 {
    margin: 12px 0 15px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 58px;
    font-weight: 500;
    line-height: 1;
}

.inner-page-cta-content p {
    max-width: 620px;

    margin: 0 auto 28px;

    color: rgba(255,255,255,0.82);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   11. FORM SYSTEM
   ========================================================= */

.form-control,
.form-select {
    width: 100%;

    min-height: 50px;

    padding: 12px 15px;

    border: 1px solid var(--border);
    border-radius: 0;

    background: var(--white);
    color: var(--text);

    font-size: 13px;

    box-shadow: none;

    transition: var(--transition);
}

.form-control::placeholder {
    color: #a2a6a9;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 2px rgba(201, 150, 62, 0.08);

    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}


/* =========================================================
   12. FORM LABEL
   ========================================================= */

.form-label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   13. COMMON CARD
   ========================================================= */

.rana-card {
    background: var(--white);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.rana-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


/* =========================================================
   14. GOLD LINE
   ========================================================= */

.gold-line {
    width: 45px;
    height: 1px;
    background: var(--gold);
}


/* =========================================================
   15. TEXT UTILITIES
   ========================================================= */

.text-gold {
    color: var(--gold) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.bg-cream {
    background: var(--cream);
}

.bg-navy {
    background: var(--navy);
}


/* =========================================================
   16. PAGE SPACING HELPERS
   ========================================================= */

.section-top-space {
    padding-top: var(--section-padding);
}

.section-bottom-space {
    padding-bottom: var(--section-padding);
}


/* =========================================================
   17. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/* =========================================================
   18. SWIPER GLOBAL
   ========================================================= */

.swiper-button-prev,
.swiper-button-next {
    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,0.55);

    color: var(--white);

    transition: var(--transition);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    background: rgba(255,255,255,0.6);

    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}


/* =========================================================
   19. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* =========================================================
   HEADER / TOPBAR / NAVIGATION
========================================================= */


/* =========================================================
   TOPBAR
========================================================= */

.rana-topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.78);
    font-size: 11px;
}

.rana-topbar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.rana-topbar a {
    color: rgba(255,255,255,0.78);

    display: inline-flex;
    align-items: center;
    gap: 7px;

    transition: var(--transition);
}

.rana-topbar a:hover {
    color: var(--gold-light);
}

.rana-topbar i {
    color: var(--gold);
    font-size: 12px;
}

.rana-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}


/* =========================================================
   MAIN HEADER
========================================================= */
/* =========================================================
   FIXED TOPBAR + NAVBAR
========================================================= */

.rana-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

/* Topbar */
.rana-topbar {
    position: relative;
    width: 100%;
}

/* Navbar */
.rana-header {
    position: relative;
    width: 100%;
}


.rana-topbar {
    position: sticky;
    top: 0;
    z-index: 1001;

    background: var(--navy-dark);
    color: rgba(255,255,255,0.78);
    font-size: 11px;
}

.rana-header {
    position: sticky;
    top: 38px;
    z-index: 1000;

    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.rana-navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.rana-logo {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    line-height: 1;
}

.rana-logo-image {
    display: block;

    width: 275px;
    height: auto;

    max-width: 100%;
}

.rana-logo-main {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.rana-logo-sub {
    margin-top: 5px;

    color: var(--gold);

    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 4px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.rana-nav {
    margin-left: auto;
}

.rana-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.rana-nav ul li a {
    position: relative;

    display: inline-block;

    padding: 30px 0;

    color: var(--navy);

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.rana-nav ul li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: var(--transition);
}

.rana-nav ul li a:hover,
.rana-nav ul li a.active {
    color: var(--gold);
}

.rana-nav ul li a:hover::after,
.rana-nav ul li a.active::after {
    width: 100%;
}


/* =========================================================
   NAV CTA
========================================================= */

.rana-nav-cta {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 42px;

    padding: 10px 19px;

    background: var(--gold);
    border: 1px solid var(--gold);

    color: var(--navy);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.rana-nav-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
}

.rana-nav-cta i {
    transition: var(--transition);
}

.rana-nav-cta:hover i {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.rana-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 1px solid var(--border);

    background: var(--white);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.rana-menu-toggle span {
    display: block;

    width: 19px;
    height: 1px;

    background: var(--navy);

    transition: var(--transition);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.rana-mobile-nav {
    display: none;

    background: var(--white);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.rana-mobile-nav nav {
    padding: 18px 0 22px;
}

.rana-mobile-nav ul li {
    border-bottom: 1px solid var(--border-light);
}

.rana-mobile-nav ul li:last-child {
    border-bottom: 0;
}

.rana-mobile-nav ul li a {
    display: block;

    padding: 13px 0;

    color: var(--navy);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.rana-mobile-nav ul li a:hover {
    color: var(--gold);
}

.mobile-enquiry-btn {
    width: 100%;
    margin-top: 16px;
}

/* =========================================================
   FOOTER
========================================================= */

.rana-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.72);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.rana-footer-main {
    padding: 80px 0 65px;
}

.rana-footer-main .row {
    align-items: flex-start;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.rana-footer-logo {
    display: inline-flex;
    flex-direction: column;

    line-height: 1;

    margin-bottom: 22px;
}

.rana-footer-logo-main {
    color: var(--white);

    font-family: var(--serif);
    font-size: 31px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.rana-footer-logo-sub {
    margin-top: 5px;

    color: var(--gold-light);

    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 4px;
}


.rana-footer-about {
    max-width: 370px;

    margin-bottom: 25px;

    color: rgba(255,255,255,0.62);

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================================
   FOOTER ENQUIRY BUTTON
========================================================= */

.rana-footer-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.rana-footer-enquiry:hover {
    color: var(--white);
}

.rana-footer-enquiry i {
    transition: var(--transition);
}

.rana-footer-enquiry:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER TITLES
========================================================= */

.rana-footer-title {
    margin-bottom: 22px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.rana-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rana-footer-links li a {
    display: inline-block;

    color: rgba(255,255,255,0.62);

    font-size: 12px;
}

.rana-footer-links li a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.rana-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rana-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,0.65);

    font-size: 12px;
}

.rana-footer-contact-item:hover {
    color: var(--gold-light);
}

.rana-footer-contact-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,150,62,0.5);
    border-radius: 50%;

    color: var(--gold);

    font-size: 13px;
}


/* =========================================================
   SOCIAL
========================================================= */

.rana-footer-social {
    display: flex;
    gap: 9px;

    margin-top: 25px;
}

.rana-footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);

    color: rgba(255,255,255,0.68);

    font-size: 13px;
}

.rana-footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);

    color: var(--navy);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.rana-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
}

.rana-footer-bottom-inner {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.rana-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 10px;
    line-height: 1.6;
}

.rana-footer-bottom strong {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rana-footer-main {
        padding: 70px 0 55px;
    }

    .rana-footer-bottom-inner {
        min-height: 70px;
    }

}


@media (max-width: 767px) {

    .rana-footer-main {
        padding: 60px 0 45px;
    }

    .rana-footer-title {
        font-size: 23px;
        margin-bottom: 17px;
    }

    .rana-footer-about {
        font-size: 12px;
    }

    .rana-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        padding: 18px 0;
    }

    .rana-footer-bottom p {
        font-size: 9px;
    }

}

/* =========================================================
   HOMEPAGE HERO
========================================================= */

.rana-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rana-hero-slider {
    width: 100%;
    height: 720px;
}

.rana-hero-slide {
    position: relative;
    overflow: hidden;
}

.rana-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);
}

.rana-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.78) 0%,
            rgba(7, 26, 44, 0.48) 48%,
            rgba(7, 26, 44, 0.20) 100%
        );

    z-index: 1;
}

.rana-hero-slide .container {
    position: relative;
    height: 100%;
    z-index: 2;
}

.rana-hero-content {
    height: 100%;

    max-width: 720px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 35px;
}

.rana-hero-content .section-eyebrow {
    color: var(--gold-light);
    margin-bottom: 12px;
}

.rana-hero-content h1 {
    max-width: 680px;

    margin: 0 0 20px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 76px;
    font-weight: 500;

    line-height: 0.94;
    letter-spacing: -1px;
}

.rana-hero-content h1 span {
    display: block;
    color: var(--white);
}

.rana-hero-content p {
    max-width: 540px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.84);

    font-size: 15px;
    line-height: 1.85;
}

.rana-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* Hero Navigation */

.rana-hero .swiper-button-prev,
.rana-hero .swiper-button-next {
    top: auto;
    bottom: 48px;

    margin: 0;

    z-index: 5;
}

.rana-hero .swiper-button-prev {
    left: auto;
    right: 120px;
}

.rana-hero .swiper-button-next {
    right: 65px;
}

.rana-hero .swiper-pagination {
    width: auto;

    left: 65px;
    bottom: 67px;

    display: flex;
    align-items: center;
    gap: 6px;

    text-align: left;
}

.rana-hero .swiper-pagination-bullet {
    margin: 0 !important;
}


/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .rana-hero-slider {
        height: 650px;
    }

    .rana-hero-content h1 {
        font-size: 68px;
    }

}


@media (max-width: 991px) {

    .rana-hero-slider {
        height: 610px;
    }

    .rana-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 26, 44, 0.82),
                rgba(7, 26, 44, 0.40)
            );
    }

    .rana-hero-content {
        max-width: 650px;
    }

    .rana-hero-content h1 {
        font-size: 60px;
    }

    .rana-hero .swiper-pagination {
        left: 25px;
        bottom: 38px;
    }

    .rana-hero .swiper-button-prev {
        right: 85px;
        bottom: 20px;
    }

    .rana-hero .swiper-button-next {
        right: 30px;
        bottom: 20px;
    }

}


@media (max-width: 767px) {

    .rana-hero-slider {
        height: 590px;
    }

    .rana-hero-image {
        object-position: center center;
    }

    .rana-hero-content {
        padding-top: 20px;
    }

    .rana-hero-content h1 {
        font-size: 49px;
        line-height: 0.98;
        letter-spacing: 0;
    }

    .rana-hero-content p {
        max-width: 470px;
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .rana-hero-buttons {
        gap: 9px;
    }

    .rana-hero .swiper-pagination {
        left: 20px;
        bottom: 25px;
    }

    .rana-hero .swiper-button-prev,
    .rana-hero .swiper-button-next {
        width: 36px;
        height: 36px;
        bottom: 15px;
    }

    .rana-hero .swiper-button-prev {
        right: 70px;
    }

    .rana-hero .swiper-button-next {
        right: 20px;
    }

}


@media (max-width: 575px) {

    .rana-hero-slider {
        height: 550px;
    }

    .rana-hero-content h1 {
        font-size: 43px;
    }

    .rana-hero-content p {
        font-size: 12px;
    }

    .rana-hero-buttons .btn-rana,
    .rana-hero-buttons .btn-rana-outline {
        min-height: 44px;
        padding: 10px 17px;
    }

}

/* =========================================================
   HOME — ABOUT THE RANA
========================================================= */

.about-home {
    padding: 72px 0;
    background: var(--white);
}

.about-home-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 65px;
}


/* =========================================================
   CONTENT
========================================================= */

.about-home-content {
    padding-left: 35px;
}

.about-home-content .section-eyebrow {
    margin-bottom: 7px;
}

.about-home-content h2 {
    max-width: 480px;

    margin: 0 0 16px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -0.3px;
}

.about-home-content h2 span {
    display: block;
}

.about-home-content p {
    max-width: 510px;

    margin: 0 0 22px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   IMAGE
========================================================= */

.about-home-image {
    position: relative;
}

.about-home-image-wrap {
    position: relative;

    height: 340px;

    overflow: hidden;
}

.about-home-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-home-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.about-home-image-caption {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 11px 17px;

    background: rgba(7, 26, 44, 0.88);

    color: var(--white);
}

.about-home-image-caption span {
    color: var(--gold-light);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-home-image-caption strong {
    padding-left: 12px;

    border-left: 1px solid rgba(255,255,255,0.28);

    color: var(--white);

    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   DECORATIVE GOLD LINE
========================================================= */

.about-home-image::after {
    content: "";

    position: absolute;

    right: -12px;
    bottom: -12px;

    width: 65px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   BUTTON
========================================================= */

.about-home-content .btn-rana {
    min-height: 42px;

    padding: 10px 19px;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .about-home {
        padding: 65px 0;
    }

    .about-home-grid {
        gap: 45px;
    }

    .about-home-content {
        padding-left: 15px;
    }

    .about-home-content h2 {
        font-size: 44px;
    }

    .about-home-image-wrap {
        height: 320px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-home {
        padding: 65px 0;
    }

    .about-home-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-home-content {
        padding-left: 0;
    }

    .about-home-content h2 {
        font-size: 40px;
    }

    .about-home-content p {
        font-size: 12px;
    }

    .about-home-image-wrap {
        height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-home {
        padding: 58px 0;
    }

    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-home-content {
        padding-left: 0;
    }

    .about-home-content h2 {
        max-width: 520px;

        font-size: 42px;
        line-height: 1;
    }

    .about-home-content p {
        max-width: 600px;

        font-size: 13px;
        line-height: 1.8;
    }

    .about-home-image-wrap {
        height: 330px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .about-home {
        padding: 52px 0;
    }

    .about-home-grid {
        gap: 30px;
    }

    .about-home-content h2 {
        font-size: 38px;
    }

    .about-home-content p {
        font-size: 12px;
    }

    .about-home-image-wrap {
        height: 280px;
    }

    .about-home-image-caption {
        padding: 9px 13px;
    }

    .about-home-image-caption span {
        font-size: 7px;
    }

    .about-home-image-caption strong {
        padding-left: 9px;
        font-size: 15px;
    }

}

/* =========================================================
   HOME — ROOMS
========================================================= */

.rooms-home {
    padding: 68px 0 74px;
    background: var(--cream);
}


/* =========================================================
   HEADING
========================================================= */

.rooms-home-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 28px;
}

.rooms-home-heading h2 {
    margin: 2px 0 0;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;

    line-height: 0.95;
}

.rooms-home-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 5px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.rooms-home-view-all i {
    transition: var(--transition);
}

.rooms-home-view-all:hover {
    color: var(--navy);
}

.rooms-home-view-all:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ROOMS GRID
========================================================= */

.rooms-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================================
   ROOM CARD
========================================================= */

.rooms-home-card {
    background: var(--white);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);
}

.rooms-home-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   IMAGE
========================================================= */

.rooms-home-image {
    position: relative;

    height: 205px;

    overflow: hidden;
}

.rooms-home-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.rooms-home-card:hover .rooms-home-image img {
    transform: scale(1.045);
}


/* Number */

.rooms-home-number {
    position: absolute;

    top: 13px;
    left: 13px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(7, 26, 44, 0.82);

    color: var(--gold-light);

    font-family: var(--serif);
    font-size: 14px;
}


/* =========================================================
   CONTENT
========================================================= */

.rooms-home-content {
    padding: 17px 19px 18px;
}

.rooms-home-content h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;

    line-height: 1;
}


/* =========================================================
   ROOM META
========================================================= */

.rooms-home-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px 12px;

    margin-bottom: 14px;
}

.rooms-home-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--text-light);

    font-size: 9px;
    line-height: 1.4;
}

.rooms-home-meta span:not(:last-child)::after {
    content: "";

    width: 3px;
    height: 3px;

    margin-left: 5px;

    border-radius: 50%;

    background: var(--gold);
}

.rooms-home-meta i {
    color: var(--gold);

    font-size: 10px;
}


/* =========================================================
   VIEW DETAILS
========================================================= */

.rooms-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.5px;
}

.rooms-home-link i {
    transition: var(--transition);
}

.rooms-home-link:hover {
    color: var(--navy);
}

.rooms-home-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .rooms-home {
        padding: 65px 0 70px;
    }

    .rooms-home-grid {
        gap: 15px;
    }

    .rooms-home-image {
        height: 190px;
    }

    .rooms-home-content {
        padding: 16px;
    }

    .rooms-home-content h3 {
        font-size: 27px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {

    .rooms-home-heading h2 {
        font-size: 44px;
    }

    .rooms-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-home-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 7.5px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rooms-home {
        padding: 58px 0 62px;
    }

    .rooms-home-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;

        margin-bottom: 25px;
    }

    .rooms-home-heading h2 {
        font-size: 41px;
    }

    .rooms-home-view-all {
        margin-bottom: 0;
    }

    .rooms-home-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rooms-home-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .rooms-home-image {
        height: 230px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .rooms-home {
        padding: 52px 0 58px;
    }

    .rooms-home-heading h2 {
        font-size: 38px;
    }

    .rooms-home-image {
        height: 210px;
    }

    .rooms-home-content {
        padding: 15px 16px 17px;
    }

    .rooms-home-content h3 {
        font-size: 27px;
    }

    .rooms-home-meta {
        gap: 6px 9px;
    }

}
/* =========================================================
   HOME — EXPERIENCE THE RANA / FACILITIES
========================================================= */

.facilities-home {
    position: relative;

    padding: 30px 0;

    background-image:
        linear-gradient(
            rgba(7, 26, 44, 0.78),
            rgba(7, 26, 44, 0.82)
        ),
        url("../images/facilities/facilities-bg.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    color: var(--white);

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.facilities-home-heading {
    text-align: center;

    margin-bottom: 17px;
}

.facilities-home-heading .section-eyebrow {
    color: var(--gold-light);
}


/* =========================================================
   FACILITY GRID
========================================================= */

.facilities-home-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}


/* =========================================================
   FACILITY ITEM
========================================================= */

.facility-home-item {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 14px 22px;

    text-align: left;

    border-right: 1px solid rgba(255,255,255,0.13);

    transition: var(--transition);
}

.facility-home-item:last-child {
    border-right: 0;
}

.facility-home-item:hover {
    background: rgba(255,255,255,0.06);
}


/* =========================================================
   ICON
========================================================= */

.facility-home-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    font-size: 21px;

    border: 1px solid rgba(201,150,62,0.65);
    border-radius: 50%;

    transition: var(--transition);
}

.facility-home-item:hover .facility-home-icon {
    background: var(--gold);
    border-color: var(--gold);

    color: var(--navy);

    transform: translateY(-2px);
}


/* =========================================================
   CONTENT
========================================================= */

.facility-home-content h3 {
    margin: 0 0 2px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;

    line-height: 1.05;
}

.facility-home-content p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 9px;
    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .facilities-home {
        padding: 28px 0;
    }

    .facility-home-item {
        gap: 10px;
        padding: 13px 15px;
    }

    .facility-home-icon {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }

    .facility-home-content h3 {
        font-size: 21px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {

    .facilities-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-home-item:nth-child(2) {
        border-right: 0;
    }

    .facility-home-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255,255,255,0.13);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .facilities-home {
        padding: 25px 0;
    }

    .facilities-home-heading {
        margin-bottom: 14px;
    }

    .facilities-home-grid {
        grid-template-columns: 1fr;
    }

    .facility-home-item {
        min-height: 70px;

        justify-content: flex-start;

        padding: 13px 18px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.13);
    }

    .facility-home-item:last-child {
        border-bottom: 0;
    }

    .facility-home-item:nth-child(2) {
        border-right: 0;
    }

    .facility-home-icon {
        width: 42px;
        height: 42px;

        font-size: 19px;
    }

    .facility-home-content h3 {
        font-size: 22px;
    }

    .facility-home-content p {
        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .facilities-home {
        padding: 23px 0;
    }

    .facility-home-item {
        padding: 12px 15px;
    }

    .facility-home-icon {
        width: 40px;
        height: 40px;
    }

    .facility-home-content h3 {
        font-size: 21px;
    }

}
/* =========================================================
   HOME — GALLERY
========================================================= */

.gallery-home {
    padding: 75px 0;
    background: var(--white);
}


/* =========================================================
   HEADING
========================================================= */

.gallery-home-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 28px;
}

.gallery-home-heading h2 {
    margin: 3px 0 0;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;

    line-height: 0.95;
}

.gallery-home-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 5px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gallery-home-view-all:hover {
    color: var(--navy);
}

.gallery-home-view-all i {
    transition: var(--transition);
}

.gallery-home-view-all:hover i {
    transform: translateX(4px);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-home-grid {
    display: grid;

    grid-template-columns: 1.45fr 0.8fr 0.8fr;

    grid-template-rows: 180px 180px;

    gap: 12px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-home-item {
    position: relative;

    display: block;

    overflow: hidden;

    background: var(--cream);
}

.gallery-home-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.gallery-home-item:hover img {
    transform: scale(1.045);
}


/* Main Image */

.gallery-home-main {
    grid-row: span 2;
}


/* =========================================================
   OVERLAY
========================================================= */

.gallery-home-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 18px;

    background:
        linear-gradient(
            to top,
            rgba(7, 26, 44, 0.72),
            rgba(7, 26, 44, 0.02) 65%
        );

    opacity: 0;

    transition: var(--transition);
}

.gallery-home-item:hover .gallery-home-overlay {
    opacity: 1;
}

.gallery-home-overlay span {
    color: var(--white);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.gallery-home-overlay i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 50%;

    color: var(--white);

    font-size: 11px;

    transition: var(--transition);
}

.gallery-home-item:hover .gallery-home-overlay i {
    background: var(--gold);
    border-color: var(--gold);

    color: var(--navy);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .gallery-home {
        padding: 68px 0;
    }

    .gallery-home-grid {
        grid-template-rows: 165px 165px;
        gap: 10px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 991px) {

    .gallery-home-heading h2 {
        font-size: 44px;
    }

    .gallery-home-grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 210px 210px 210px;
    }

    .gallery-home-main {
        grid-row: span 2;
    }

    .gallery-home-item:nth-child(4) {
        grid-column: 1;
    }

    .gallery-home-item:nth-child(5) {
        grid-column: 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gallery-home {
        padding: 58px 0;
    }

    .gallery-home-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-bottom: 24px;
    }

    .gallery-home-heading h2 {
        font-size: 41px;
    }

    .gallery-home-view-all {
        margin-bottom: 0;
    }

    .gallery-home-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            220px
            150px
            150px;

        gap: 9px;
    }

    .gallery-home-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-home-overlay {
        opacity: 1;
        padding: 14px;
    }

    .gallery-home-overlay span {
        font-size: 8px;
    }

    .gallery-home-overlay i {
        width: 29px;
        height: 29px;
        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .gallery-home {
        padding: 52px 0;
    }

    .gallery-home-heading h2 {
        font-size: 38px;
    }

    .gallery-home-grid {
        grid-template-rows:
            200px
            135px
            135px;
    }

}

/* =========================================================
   TESTIMONIALS HOME
========================================================= */

.testimonials-home {
    padding: 95px 0;
    background: var(--white);
}

.testimonials-home-header {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.testimonials-home-header h2 {
    margin: 12px 0 0;
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--navy);
}

.testimonials-home-header h2 span {
    display: block;
    color: var(--gold);
}

.testimonials-home-intro {
    max-width: 430px;
    margin-left: auto;
}

.testimonials-home-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}


/* SLIDER */

.testimonials-home-slider {
    overflow: hidden;
}

.testimonial-home-card {
    position: relative;
    min-height: 340px;
    padding: 42px 42px 35px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


/* QUOTE */

.testimonial-home-quote {
    position: absolute;
    top: 26px;
    right: 32px;
    font-size: 52px;
    line-height: 1;
    color: var(--gold-soft);
}

.testimonial-home-quote i {
    display: block;
}


/* STARS */

.testimonial-home-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
}

.testimonial-home-stars i {
    font-size: 13px;
    color: var(--gold);
}


/* TEXT */

.testimonial-home-text {
    max-width: 620px;
    margin: 0 0 34px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--navy);
}


/* AUTHOR */

.testimonial-home-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.testimonial-author-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-size: 17px;
}

.testimonial-home-author h4 {
    margin: 0 0 3px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
}

.testimonial-home-author span {
    font-size: 12px;
    color: var(--text-muted);
}


/* CONTROLS */

.testimonials-home-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.testimonials-home-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 7px;
}

.testimonials-home-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--border);
    opacity: 1;
}

.testimonials-home-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold);
}


/* ARROWS */

.testimonials-home-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-home-arrows button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-home-arrows button:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* =========================================================
   HOME FINAL CTA
========================================================= */

.cta-home {
    position: relative;
    padding: 42px 0;
    background-image:
        linear-gradient(
            rgba(7, 26, 44, 0.48),
            rgba(7, 26, 44, 0.62)
        ),
        url("../images/cta/cta-home.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-home-inner {
    position: relative;
    z-index: 2;
    min-height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 55px;
}

.cta-home-content {
    text-align: right;
}

.cta-home .section-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-light);
}

.cta-home h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 31px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--white);
}

.cta-home p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.cta-home-action {
    flex-shrink: 0;
}

.cta-home-action .btn-rana {
    min-width: 135px;
    justify-content: center;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.cta-home-action .btn-rana:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
}

/* =========================================================
   BOOKING ENQUIRY
========================================================= */

.booking-enquiry {
    position: relative;
    padding: 38px 0;
    background: var(--cream);
    overflow: hidden;
}

.booking-enquiry::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -45px;
    width: 300px;
    height: 130px;
    background-image: url("../images/cta/mountain-line.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
}

.booking-enquiry-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.78fr 1.42fr;
    align-items: center;
    gap: 55px;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.booking-enquiry-content {
    padding-left: 10px;
}

.booking-enquiry-content .section-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
}

.booking-enquiry-content h2 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--navy);
}

.booking-enquiry-content p {
    max-width: 410px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}


/* ---------------------------------------------------------
   FORM
--------------------------------------------------------- */

.booking-enquiry-form-wrap {
    width: 100%;
}

.booking-enquiry-form {
    width: 100%;
}


/* TOP ROW */

.booking-form-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}


/* BOTTOM ROW */

.booking-form-bottom {
    display: grid;
    grid-template-columns:
        1fr
        1fr
        0.8fr
        0.8fr
        1.2fr;
    gap: 8px;
    margin-bottom: 8px;
}


/* FORM GROUP */

.booking-enquiry-form .form-group {
    margin: 0;
}

.booking-enquiry-form input,
.booking-enquiry-form select,
.booking-enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--sans);
    font-size: 11px;
    outline: none;
    transition: var(--transition);
    box-shadow: none;
}

.booking-enquiry-form input,
.booking-enquiry-form select {
    height: 38px;
    padding: 0 12px;
}

.booking-enquiry-form textarea {
    height: 45px;
    min-height: 45px;
    padding: 11px 12px;
    resize: none;
}

.booking-enquiry-form input::placeholder,
.booking-enquiry-form textarea::placeholder {
    color: #9b9b9b;
}

.booking-enquiry-form select {
    cursor: pointer;
    color: #777;
}

.booking-enquiry-form input:focus,
.booking-enquiry-form select:focus,
.booking-enquiry-form textarea:focus {
    border-color: var(--gold);
}


/* MESSAGE + BUTTON */

.booking-form-message {
    display: grid;
    grid-template-columns: 1fr 125px;
    align-items: stretch;
    gap: 8px;
}

.booking-submit {
    min-width: 125px;
    height: 45px;
    padding: 0 15px;
    justify-content: center;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
}

.booking-submit:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.booking-submit i {
    margin-left: 7px;
    font-size: 12px;
}

/* =========================================================
   ABOUT PAGE
========================================================= */





/* ---------------------------------------------------------
   ABOUT INTRO
--------------------------------------------------------- */

.about-page-intro {
    background: var(--white);
}

.about-page-intro-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 75px;
}

.about-page-intro-content {
    padding-right: 15px;
}

.about-page-intro-content h2 {
    margin: 13px 0 17px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.about-page-intro-content h2 span {
    color: var(--gold);
}

.about-page-intro-content .section-divider {
    margin-bottom: 23px;
}

.about-page-intro-content p {
    max-width: 560px;
    margin: 0 0 17px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}

.about-page-intro-content .about-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy);
}


/* IMAGE */

.about-page-intro-image {
    position: relative;
}

.about-page-image-frame {
    position: relative;
    overflow: hidden;
    height: 475px;
}

.about-page-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 26, 44, 0.22),
            transparent 35%
        );

    pointer-events: none;
}

.about-page-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-page-image-note {
    position: absolute;
    right: -20px;
    bottom: -22px;

    min-width: 170px;
    padding: 17px 22px;

    background: var(--navy);
    color: var(--white);

    box-shadow: var(--shadow-md);
}

.about-page-image-note span {
    display: block;

    margin-bottom: 3px;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;

    color: var(--gold-light);
}

.about-page-image-note strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
}


/* ---------------------------------------------------------
   OUR APPROACH
--------------------------------------------------------- */

.about-page-approach {
    padding: 90px 0;

    background: var(--cream);
}

.about-page-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-page-approach-image {
    height: 500px;
    overflow: hidden;
}

.about-page-approach-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}

.about-page-approach-content h2 {
    margin: 13px 0 20px;

    font-family: var(--serif);
    font-size: 46px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.about-page-approach-content h2 span {
    display: block;
    color: var(--gold);
}

.about-page-approach-content > p {
    max-width: 570px;

    margin: 0 0 17px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}


/* VALUES */

.about-page-values {
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 17px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.about-value-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: var(--gold-light);

    font-size: 17px;
}

.about-value h3 {
    margin: 0 0 3px;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;

    color: var(--navy);
}

.about-value p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: var(--text-muted);
}


/* ---------------------------------------------------------
   BIR BILLING
--------------------------------------------------------- */

.about-page-bir {
    background: var(--white);
}

.about-page-bir-header {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-page-bir-header h2 {
    margin: 13px 0 16px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.about-page-bir-header h2 span {
    display: block;
    color: var(--gold);
}

.about-page-bir-header p {
    max-width: 590px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.8;

    color: var(--text-light);
}

.about-page-bir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    background: var(--border);
    border: 1px solid var(--border);
}

.about-bir-item {
    min-height: 230px;
    padding: 35px 32px;

    background: var(--white);
}

.about-bir-number {
    margin-bottom: 22px;

    font-family: var(--serif);
    font-size: 28px;

    color: var(--gold);
}

.about-bir-item h3 {
    margin: 0 0 10px;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;

    color: var(--navy);
}

.about-bir-item p {
    max-width: 300px;
    margin: 0;

    font-size: 13px;
    line-height: 1.75;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   STORY
--------------------------------------------------------- */

.about-page-story {
    padding: 90px 0;

    background: var(--cream);
}

.about-page-story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.about-page-story-content h2 {
    margin: 13px 0 18px;

    font-family: var(--serif);
    font-size: 46px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.about-page-story-content h2 span {
    display: block;
    color: var(--gold);
}

.about-page-story-content p {
    max-width: 440px;
    margin: 0 0 27px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}

.about-page-story-image {
    height: 370px;
    overflow: hidden;
}

.about-page-story-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}


/* ---------------------------------------------------------
   INNER PAGE CTA
--------------------------------------------------------- */

.inner-page-cta-content {
    max-width: 760px;
    margin: 0 auto;

    text-align: center;
}

.inner-page-cta-content .section-eyebrow {
    color: var(--gold-light);
}

.inner-page-cta-content h2 {
    margin: 13px 0 10px;

    font-family: var(--serif);
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--white);
}

.inner-page-cta-content p {
    margin: 0 0 25px;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   ROOMS PAGE
========================================================= */


/* ---------------------------------------------------------
   PAGE HERO
--------------------------------------------------------- */

.rooms-page-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/rooms/rooms-banner.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rooms-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.84) 0%,
            rgba(7, 26, 44, 0.58) 48%,
            rgba(7, 26, 44, 0.20) 100%
        );
}

.rooms-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 150px;

}

.rooms-page-hero-content {
    max-width: 620px;
    padding: 55px 0;
}

.rooms-page-hero-content .section-eyebrow {
    color: var(--gold-light);
}

.rooms-page-hero-content h1 {
    margin: 14px 0 16px;

    font-family: var(--serif);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;

    color: var(--white);
}

.rooms-page-hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.rooms-page-hero-content p {
    max-width: 530px;
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.84);
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.rooms-page-intro {
    background: var(--white);
}

.rooms-page-intro-content {
    max-width: 700px;
    margin: 0 auto;

    text-align: center;
}

.rooms-page-intro-content h2 {
    margin: 13px 0 17px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.rooms-page-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.rooms-page-intro-content .section-divider {
    margin: 0 auto 22px;
}

.rooms-page-intro-content p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   ROOM SECTIONS
--------------------------------------------------------- */

.rooms-page-item {
    padding: 85px 0;
}

.rooms-page-item-light {
    background: var(--white);
}

.rooms-page-item-cream {
    background: var(--cream);
}

.rooms-page-item-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 75px;
}

.rooms-page-item-reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.rooms-page-item-reverse .rooms-page-item-image {
    order: 2;
}

.rooms-page-item-reverse .rooms-page-item-content {
    order: 1;
}


/* IMAGE */

.rooms-page-item-image {
    position: relative;
    height: 455px;
    overflow: hidden;
}

.rooms-page-item-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.rooms-page-item:hover .rooms-page-item-image img {
    transform: scale(1.025);
}

.rooms-page-item-number {
    position: absolute;
    left: 0;
    bottom: 0;

    min-width: 68px;
    padding: 13px 18px;

    background: var(--navy);

    font-family: var(--serif);
    font-size: 25px;

    color: var(--gold-light);
}


/* CONTENT */

.rooms-page-item-content {
    max-width: 530px;
}

.rooms-page-item-content h2 {
    margin: 12px 0 17px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
    font-weight: 500;

    color: var(--navy);
}

.rooms-page-item-lead {
    font-family: var(--serif);
    font-size: 19px !important;
    line-height: 1.55 !important;

    color: var(--navy) !important;
}

.rooms-page-item-content > p {
    margin: 0 0 15px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}


/* FEATURES */

.rooms-page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 27px 0 30px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.rooms-page-features > div {
    display: flex;
    align-items: center;
    gap: 8px;

    min-height: 58px;
    padding: 8px 10px 8px 0;
}

.rooms-page-features > div + div {
    padding-left: 15px;
    border-left: 1px solid var(--border);
}

.rooms-page-features i {
    font-size: 15px;
    color: var(--gold);
}

.rooms-page-features span {
    font-size: 10px;
    line-height: 1.3;

    color: var(--text);
}


/* ---------------------------------------------------------
   ENQUIRY CTA
--------------------------------------------------------- */

.rooms-page-enquiry {
    padding: 58px 0;
    background: var(--navy);
}

.rooms-page-enquiry-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.rooms-page-enquiry .section-eyebrow {
    color: var(--gold-light);
}

.rooms-page-enquiry h2 {
    margin: 8px 0 5px;

    font-family: var(--serif);
    font-size: 37px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--white);
}

.rooms-page-enquiry p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}

.rooms-page-enquiry .btn-rana {
    flex-shrink: 0;

    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.rooms-page-enquiry .btn-rana:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* =========================================================
   FACILITIES PAGE
========================================================= */


/* ---------------------------------------------------------
   PAGE HERO
--------------------------------------------------------- */

.facilities-page-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/facilities/facilities-bg.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.facilities-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.84) 0%,
            rgba(7, 26, 44, 0.56) 48%,
            rgba(7, 26, 44, 0.18) 100%
        );
}

.facilities-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

.facilities-page-hero-content {
    max-width: 620px;
    padding: 55px 0;
}

.facilities-page-hero-content .section-eyebrow {
    color: var(--gold-light);
}

.facilities-page-hero-content h1 {
    margin: 14px 0 16px;

    font-family: var(--serif);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;

    color: var(--white);
}

.facilities-page-hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.facilities-page-hero-content p {
    max-width: 530px;
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.84);
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.facilities-page-intro {
    background: var(--white);
}

.facilities-page-intro-content {
    max-width: 720px;
    margin: 0 auto 50px;

    text-align: center;
}

.facilities-page-intro-content h2 {
    margin: 13px 0 17px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.facilities-page-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.facilities-page-intro-content .section-divider {
    margin: 0 auto 22px;
}

.facilities-page-intro-content p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   FACILITY GRID
--------------------------------------------------------- */

.facilities-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.facility-page-card {
    background: var(--cream);
    border: 1px solid var(--border-light);

    transition: var(--transition);
}

.facility-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


/* IMAGE */

.facility-page-image {
    position: relative;
    height: 310px;
    overflow: hidden;
}

.facility-page-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.facility-page-card:hover .facility-page-image img {
    transform: scale(1.035);
}

.facility-page-number {
    position: absolute;
    left: 0;
    bottom: 0;

    min-width: 62px;
    padding: 11px 16px;

    background: var(--navy);

    font-family: var(--serif);
    font-size: 23px;

    color: var(--gold-light);
}


/* CONTENT */

.facility-page-content {
    position: relative;
    padding: 27px 30px 30px;
}

.facility-page-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: var(--navy);
    color: var(--gold-light);

    font-size: 17px;
}

.facility-page-content h3 {
    margin: 0 0 9px;

    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.1;
    font-weight: 500;

    color: var(--navy);
}

.facility-page-content p {
    max-width: 520px;
    margin: 0;

    font-size: 13px;
    line-height: 1.8;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   SCENIC EXPERIENCE
--------------------------------------------------------- */

.facilities-page-experience {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/facilities/facilities-bg.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.facilities-page-experience-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.82),
            rgba(7, 26, 44, 0.45)
        );
}

.facilities-page-experience .container {
    position: relative;
    z-index: 2;
}

.facilities-page-experience-content {
    max-width: 620px;
}

.facilities-page-experience-content .section-eyebrow {
    color: var(--gold-light);
}

.facilities-page-experience-content h2 {
    margin: 13px 0 16px;

    font-family: var(--serif);
    font-size: 50px;
    line-height: 1.04;
    font-weight: 500;

    color: var(--white);
}

.facilities-page-experience-content h2 span {
    display: block;
    color: var(--gold-light);
}

.facilities-page-experience-content p {
    max-width: 530px;
    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}


/* ---------------------------------------------------------
   HIGHLIGHTS
--------------------------------------------------------- */

.facilities-page-highlights {
    background: var(--cream);
}

.facilities-page-highlights-header {
    max-width: 650px;
    margin-bottom: 45px;
}

.facilities-page-highlights-header h2 {
    margin: 13px 0 0;

    font-family: var(--serif);
    font-size: 46px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.facilities-page-highlights-header h2 span {
    display: block;
    color: var(--gold);
}


/* GRID */

.facilities-page-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.facility-highlight {
    min-height: 220px;
    padding: 32px 25px;

    border-right: 1px solid var(--border);
}

.facility-highlight:last-child {
    border-right: 0;
}

.facility-highlight-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--navy);
    color: var(--gold-light);

    font-size: 17px;
}

.facility-highlight h3 {
    margin: 0 0 9px;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;

    color: var(--navy);
}

.facility-highlight p {
    max-width: 210px;
    margin: 0;

    font-size: 12px;
    line-height: 1.75;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   INNER PAGE CTA
--------------------------------------------------------- */

.inner-page-cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.inner-page-cta-content .section-eyebrow {
    color: var(--gold-light);
}

.inner-page-cta-content h2 {
    margin: 13px 0 10px;

    font-family: var(--serif);
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--white);
}

.inner-page-cta-content p {
    margin: 0 0 25px;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   GALLERY PAGE
========================================================= */


/* ---------------------------------------------------------
   PAGE HERO
--------------------------------------------------------- */

.gallery-page-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/gallery/gallery-banner.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.84) 0%,
            rgba(7, 26, 44, 0.56) 48%,
            rgba(7, 26, 44, 0.18) 100%
        );
}

.gallery-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

.gallery-page-hero-content {
    max-width: 650px;
    padding: 55px 0;
}

.gallery-page-hero-content .section-eyebrow {
    color: var(--gold-light);
}

.gallery-page-hero-content h1 {
    margin: 14px 0 16px;

    font-family: var(--serif);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;

    color: var(--white);
}

.gallery-page-hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.gallery-page-hero-content p {
    max-width: 530px;
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.84);
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.gallery-page-intro {
    background: var(--white);
}

.gallery-page-intro-content {
    max-width: 720px;
    margin: 0 auto 48px;

    text-align: center;
}

.gallery-page-intro-content h2 {
    margin: 13px 0 17px;

    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--navy);
}

.gallery-page-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.gallery-page-intro-content .section-divider {
    margin: 0 auto 22px;
}

.gallery-page-intro-content p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text-light);
}


/* ---------------------------------------------------------
   GALLERY GRID
--------------------------------------------------------- */

.gallery-page-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr;

    grid-auto-rows: 245px;

    gap: 12px;
}

.gallery-page-item {
    position: relative;

    display: block;

    overflow: hidden;

    background: var(--cream);

    text-decoration: none;
}

.gallery-page-item-large {
    grid-row: span 2;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.045);
    filter: brightness(0.78);
}


/* ---------------------------------------------------------
   IMAGE OVERLAY
--------------------------------------------------------- */

.gallery-page-overlay {
    position: absolute;
    inset: auto 0 0 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 20px;

    background:
        linear-gradient(
            to top,
            rgba(7, 26, 44, 0.78),
            rgba(7, 26, 44, 0)
        );

    opacity: 0.95;

    transition: var(--transition);
}

.gallery-page-overlay span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;

    color: var(--white);
}

.gallery-page-overlay i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.5);

    color: var(--white);
    font-size: 12px;

    transition: var(--transition);
}

.gallery-page-item:hover .gallery-page-overlay i {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}


/* ---------------------------------------------------------
   LIGHTBOX
--------------------------------------------------------- */
.gallery-lightbox-close {
    top: -40px;
}

.gallery-lightbox .modal-dialog {
    max-width: 1100px;
}

.gallery-lightbox .modal-content {
    position: relative;

    overflow: hidden;

    border: 0;
    border-radius: 0;

    background: var(--navy-dark);
}

.gallery-lightbox-image-wrap {
    width: 100%;
    height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy-dark);
}

.gallery-lightbox-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.gallery-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(7, 26, 44, 0.7);

    color: var(--white);
    font-size: 14px;

    cursor: pointer;
}

.gallery-lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.gallery-lightbox-caption {
    padding: 13px 20px;

    background: var(--navy);

    text-align: center;
}

.gallery-lightbox-caption span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;

    color: var(--gold-light);
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   INNER CTA
--------------------------------------------------------- */

.inner-page-cta-content {
    max-width: 760px;
    margin: 0 auto;

    text-align: center;
}

.inner-page-cta-content .section-eyebrow {
    color: var(--gold-light);
}

.inner-page-cta-content h2 {
    margin: 13px 0 10px;

    font-family: var(--serif);
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;

    color: var(--white);
}

.inner-page-cta-content p {
    margin: 0 0 25px;

    font-size: 14px;

    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   SCROLL PERFORMANCE FIX
========================================================= */

/* Prevent unnecessary horizontal rendering */
html,
body {
    overflow-x: hidden;
}

/* GPU-friendly image rendering */
img {
    max-width: 100%;
    height: auto;
}

/* Avoid expensive background repainting */
.rana-hero,
.inner-page-hero,
.inner-page-cta,
.cta-home,
.facilities-home,
.facilities-page-experience {
    background-attachment: scroll !important;
}

/* Keep transforms limited to hover interactions */

/* Disable expensive hover transforms on touch devices */



/* Reduce animation workload when user prefers less motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */


/* ---------------------------------------------------------
   CONTACT HERO
--------------------------------------------------------- */

.contact-page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/contact-banner.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.contact-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 44, 0.84) 0%,
            rgba(7, 26, 44, 0.56) 48%,
            rgba(7, 26, 44, 0.18) 100%
        );
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

.contact-page-hero-content {
    max-width: 650px;

    padding: 55px 0;
}

.contact-page-hero-content .section-eyebrow {
    color: var(--gold-light);
}

.contact-page-hero-content h1 {
    margin: 14px 0 16px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 58px;
    font-weight: 500;

    line-height: 1.02;
}

.contact-page-hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.contact-page-hero-content p {
    max-width: 530px;

    margin: 0;

    color: rgba(255,255,255,0.84);

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   CONTACT INTRO
--------------------------------------------------------- */

.contact-page-intro {
    background: var(--white);
}

.contact-page-intro-content {
    max-width: 720px;

    margin: 0 auto 48px;

    text-align: center;
}

.contact-page-intro-content h2 {
    margin: 13px 0 17px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;

    line-height: 1.05;
}

.contact-page-intro-content h2 span {
    display: block;
    color: var(--gold);
}

.contact-page-intro-content .section-divider {
    margin: 0 auto 22px;
}

.contact-page-intro-content p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   CONTACT GRID
--------------------------------------------------------- */

.contact-page-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-page-card {
    min-height: 275px;

    padding: 28px 25px;

    background: var(--cream);

    border: 1px solid var(--border-light);

    transition: var(--transition);
}

.contact-page-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.contact-page-card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--navy);

    color: var(--gold-light);

    font-size: 17px;
}

.contact-page-card-content > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.contact-page-card-content h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;

    line-height: 1.15;
}

.contact-page-card-content p {
    margin: 0 0 17px;

    color: var(--text-light);

    font-size: 12px;
    line-height: 1.75;
}

.contact-page-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}

.contact-page-link i {
    transition: var(--transition);
}

.contact-page-link:hover {
    color: var(--navy);
}

.contact-page-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   CONTACT BOOKING SECTION
--------------------------------------------------------- */

.contact-booking-section {
    padding: 85px 0;

    background: var(--cream);
}

.contact-booking-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    align-items: center;

    gap: 70px;
}


/* CONTENT */

.contact-booking-content {
    max-width: 500px;
}

.contact-booking-content .section-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);
}

.contact-booking-content h2 {
    margin: 0 0 15px;

    color: var(--navy);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;

    line-height: 1.02;
}

.contact-booking-content > p {
    max-width: 450px;

    margin: 0 0 25px;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.85;
}


/* BOOKING NOTE */

.contact-booking-note {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 16px 17px;

    border-left: 2px solid var(--gold);

    background: var(--white);
}

.contact-booking-note i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--gold);

    font-size: 15px;
}

.contact-booking-note span {
    color: var(--text-light);

    font-size: 11px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CONTACT FORM
--------------------------------------------------------- */

.contact-booking-form-wrap {
    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.contact-booking-form {
    width: 100%;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.contact-form-group {
    margin-bottom: 15px;
}

.contact-form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 0;

    background: var(--white);

    color: var(--text);

    font-family: var(--sans);
    font-size: 12px;

    outline: none;

    box-shadow: none;

    transition: border-color 0.25s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 46px;

    padding: 0 13px;
}

.contact-form-group textarea {
    min-height: 115px;

    padding: 12px 13px;

    resize: vertical;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #a2a6a9;
}

.contact-form-group select {
    cursor: pointer;

    color: var(--text-light);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--gold);
}

.contact-submit {
    width: 100%;

    min-height: 48px;

    justify-content: center;

    margin-top: 3px;
}


/* ---------------------------------------------------------
   CONTACT CTA
--------------------------------------------------------- */

.contact-page-hero + .contact-page-intro {
    overflow: hidden;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .contact-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-booking-grid {
        gap: 50px;
    }

    .contact-booking-form-wrap {
        padding: 30px;
    }

}


@media (max-width: 991px) {

    .contact-page-hero {
        min-height: 400px;
    }

    .contact-page-hero-content h1 {
        font-size: 52px;
    }

    .contact-page-intro-content h2 {
        font-size: 44px;
    }

    .contact-booking-section {
        padding: 70px 0;
    }

    .contact-booking-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-booking-content {
        max-width: 700px;
    }

    .contact-booking-content h2 {
        font-size: 44px;
    }

}


@media (max-width: 767px) {

    .contact-page-hero {
        min-height: 390px;
    }

    .contact-page-hero-content {
        padding: 45px 0;
    }

    .contact-page-hero-content h1 {
        font-size: 46px;
    }

    .contact-page-hero-content p {
        font-size: 13px;
    }

    .contact-page-intro {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .contact-page-intro-content {
        margin-bottom: 35px;
    }

    .contact-page-intro-content h2 {
        font-size: 41px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .contact-page-card {
        min-height: auto;

        padding: 24px 22px;
    }

    .contact-booking-section {
        padding: 58px 0;
    }

    .contact-booking-content h2 {
        font-size: 41px;
    }

    .contact-booking-form-wrap {
        padding: 24px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


@media (max-width: 575px) {

    .contact-page-hero {
        min-height: 360px;
    }

    .contact-page-hero-content h1 {
        font-size: 41px;
    }

    .contact-page-hero-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .contact-page-intro {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .contact-page-intro-content h2 {
        font-size: 38px;
    }

    .contact-page-card {
        padding: 22px 19px;
    }

    .contact-page-card-content h3 {
        font-size: 22px;
    }

    .contact-booking-section {
        padding: 52px 0;
    }

    .contact-booking-content h2 {
        font-size: 38px;
    }

    .contact-booking-content > p {
        font-size: 12px;
    }

    .contact-booking-form-wrap {
        padding: 21px 16px;
    }

    .contact-form-group input,
    .contact-form-group select {
        height: 44px;
    }

}

/* =========================================================
   ROOM DETAILS PAGE
========================================================= */

.room-details-page {
    background: #ffffff;
}


/* =========================================================
   INNER PAGE BANNER
========================================================= */

.room-details-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(8, 22, 40, 0.84) 0%,
            rgba(8, 22, 40, 0.58) 48%,
            rgba(8, 22, 40, 0.28) 100%
        ),
        url("../images/rooms/family-deluxe/family-deluxe-main.jpg")
        center center / cover no-repeat;
}

.room-details-banner .inner-page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 85px 0;
}

.room-details-banner .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #d7b16a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.room-details-banner h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: .95;
}

.breadcrumb-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.breadcrumb-wrap a {
    color: #ffffff;
    text-decoration: none;
    transition: color .3s ease;
}

.breadcrumb-wrap a:hover {
    color: #d7b16a;
}

.breadcrumb-wrap span:not(:last-child) {
    color: rgba(255, 255, 255, .4);
}


/* =========================================================
   ROOM DETAILS INTRO
========================================================= */

.room-details-intro {
    background: #ffffff;
}

.room-details-main {
    width: 100%;
}

.room-details-image {
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #f1eee7;
}

.room-details-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.room-details-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   ROOM HEADING
========================================================= */

.room-details-heading {
    padding-top: 52px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #b18a4b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.room-details-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.02;
}

.room-details-heading h2 span {
    color: #b18a4b;
}

.room-details-lead {
    max-width: 700px;
    margin: 22px 0 0;
    color: #65707b;
    font-size: 17px;
    line-height: 1.8;
}

.room-details-description {
    max-width: 720px;
    margin-top: 30px;
}

.room-details-description p {
    margin: 0 0 17px;
    color: #68737e;
    font-size: 14px;
    line-height: 1.9;
}

.room-details-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PREMIUM ENQUIRY
========================================================= */

.room-enquiry-wrap {
    position: sticky;
    top: 105px;
}

.room-enquiry-card {
    position: relative;
    padding: 38px 34px 30px;
    background: #10243a;
    box-shadow: 0 20px 55px rgba(16, 36, 58, .15);
}

.room-enquiry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d7b16a;
}

.room-enquiry-top {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.room-enquiry-top .section-eyebrow {
    color: #d7b16a;
}

.room-enquiry-top h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
}

.room-enquiry-top h3 span {
    color: #d7b16a;
}

.room-enquiry-top p {
    margin: 15px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    line-height: 1.75;
}


/* ---------- Form ---------- */

.room-enquiry-form {
    padding-top: 25px;
}

.room-enquiry-form .form-group {
    margin-bottom: 17px;
}

.room-enquiry-form label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.86);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.room-enquiry-form input,
.room-enquiry-form select,
.room-enquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 0;
    outline: none;
    background: rgba(255,255,255,.045);
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    transition: border-color .3s ease, background .3s ease;
}

.room-enquiry-form input,
.room-enquiry-form select {
    height: 47px;
    padding: 0 13px;
}

.room-enquiry-form textarea {
    min-height: 100px;
    padding: 12px 13px;
    resize: vertical;
}

.room-enquiry-form input::placeholder,
.room-enquiry-form textarea::placeholder {
    color: rgba(255,255,255,.37);
}

.room-enquiry-form select {
    appearance: auto;
}

.room-enquiry-form select option {
    color: #10243a;
    background: #ffffff;
}

.room-enquiry-form input:focus,
.room-enquiry-form select:focus,
.room-enquiry-form textarea:focus {
    border-color: #d7b16a;
    background: rgba(255,255,255,.08);
}


/* ---------- Submit ---------- */

.room-enquiry-submit {
    width: 100%;
    min-height: 53px;
    margin-top: 4px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d7b16a;
    border-radius: 0;
    background: #d7b16a;
    color: #10243a;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

.room-enquiry-submit i {
    font-size: 15px;
}

.room-enquiry-submit:hover {
    background: transparent;
    color: #d7b16a;
}


/* ---------- Note ---------- */

.room-enquiry-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    color: rgba(255,255,255,.43);
    font-size: 10px;
    line-height: 1.6;
}

.room-enquiry-note i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #d7b16a;
}


/* ---------- Direct Contact ---------- */

.room-direct-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 13px;
    padding: 18px 20px;
    border: 1px solid #e4ded4;
    background: #fbfaf7;
}

.room-direct-contact-icon {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(177,138,75,.5);
    color: #b18a4b;
}

.room-direct-contact span {
    display: block;
    margin-bottom: 3px;
    color: #818891;
    font-size: 10px;
}

.room-direct-contact a {
    color: #10243a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.room-direct-contact a:hover {
    color: #b18a4b;
}


/* =========================================================
   FEATURES + GALLERY
   FULL WIDTH TWO COLUMNS
========================================================= */

.room-features-gallery-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 65px;
}


/* ---------- Common ---------- */

.room-features-gallery-row .room-features-block,
.room-features-gallery-row .room-gallery-block {
    width: 100%;
    margin: 0;
    padding-top: 42px;
    border-top: 1px solid #e8e2d8;
}

.room-section-heading {
    margin: 0;
}

.room-section-heading h3 {
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: 39px;
    font-weight: 500;
    line-height: 1.04;
}

.room-section-heading h3 span {
    color: #b18a4b;
}


/* =========================================================
   FEATURES
========================================================= */

.room-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid #e5dfd4;
    border-left: 1px solid #e5dfd4;
}

.room-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 105px;
    padding: 19px;
    border-right: 1px solid #e5dfd4;
    border-bottom: 1px solid #e5dfd4;
    background: #fbfaf7;
}

.room-feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(177,138,75,.48);
    color: #b18a4b;
    font-size: 16px;
}

.room-feature-item strong {
    display: block;
    margin-bottom: 5px;
    color: #172b41;
    font-size: 12px;
    font-weight: 600;
}

.room-feature-item span {
    display: block;
    color: #7a838b;
    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   GALLERY
========================================================= */

.room-gallery-block .room-section-heading {
    margin-bottom: 28px;
}

.room-gallery-block .row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
}

.room-gallery-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1eee7;
}

.room-gallery-large {
    height: 448px;
}

.room-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.room-gallery-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.room-experience-section {
    margin-top: 75px;
    background: #f6f3ed;
}

.room-experience-section .section-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.room-experience-section .section-heading h2 {
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.room-experience-section .section-heading h2 span {
    color: #b18a4b;
}

.room-experience-section .section-heading p {
    margin: 18px auto 0;
    color: #707983;
    font-size: 14px;
    line-height: 1.8;
}

.room-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #ddd6ca;
    border-left: 1px solid #ddd6ca;
}

.room-experience-item {
    min-height: 235px;
    padding: 32px 25px;
    border-right: 1px solid #ddd6ca;
    border-bottom: 1px solid #ddd6ca;
    background: rgba(255,255,255,.3);
    text-align: center;
    transition: background .3s ease;
}

.room-experience-item:hover {
    background: #ffffff;
}

.room-experience-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(177,138,75,.5);
    color: #b18a4b;
    font-size: 20px;
}

.room-experience-item h4 {
    margin: 0 0 10px;
    color: #172b41;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
}

.room-experience-item p {
    margin: 0;
    color: #78818a;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   RELATED ROOMS
========================================================= */

.related-rooms {
    background: #ffffff;
}

.related-rooms .section-heading {
    margin-bottom: 38px;
}

.related-rooms .section-heading h2 {
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 500;
    line-height: 1;
}

.related-rooms .section-heading h2 span {
    color: #b18a4b;
}

.related-room-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e7e1d7;
    background: #ffffff;
}

.related-room-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.related-room-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.related-room-card:hover .related-room-image img {
    transform: scale(1.04);
}

.related-room-content {
    padding: 27px 29px 29px;
}

.related-room-content > span {
    display: block;
    margin-bottom: 7px;
    color: #b18a4b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.related-room-content h3 {
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: 33px;
    font-weight: 500;
}

.related-room-content p {
    max-width: 450px;
    margin: 9px 0 19px;
    color: #737c85;
    font-size: 13px;
    line-height: 1.75;
}

.related-room-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #10243a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s ease;
}

.related-room-content a i {
    font-size: 13px;
    transition: transform .3s ease;
}

.related-room-content a:hover {
    color: #b18a4b;
}

.related-room-content a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.room-details-cta {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
        url("../images/cta/cta-bg.jpg")
        center center / cover no-repeat;
}

.room-details-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,22,40,.69);
}

.room-details-cta .container {
    position: relative;
    z-index: 2;
}

.room-details-cta-content {
    max-width: 680px;
    padding: 85px 0;
}

.room-details-cta-content .section-eyebrow {
    color: #d7b16a;
}

.room-details-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    font-weight: 500;
    line-height: .98;
}

.room-details-cta-content h2 span {
    color: #d7b16a;
}

.room-details-cta-content p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    line-height: 1.8;
}

.room-details-cta-content .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 51px;
    padding: 0 23px;
    border: 1px solid #d7b16a;
    background: #d7b16a;
    color: #10243a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}

.room-details-cta-content .btn-primary-custom:hover {
    background: transparent;
    color: #d7b16a;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .room-details-image {
        height: 500px;
    }

    .room-enquiry-card {
        padding: 32px 28px 27px;
    }

    .room-section-heading h3 {
        font-size: 35px;
    }

    .room-gallery-large {
        height: 400px;
    }

}


@media (max-width: 991px) {

    .room-details-banner {
        min-height: 360px;
    }

    .room-details-banner .inner-page-banner-content {
        padding: 70px 0;
    }

    .room-details-image {
        height: 500px;
    }

    .room-enquiry-wrap {
        position: relative;
        top: auto;
        margin-top: 10px;
    }

    .room-enquiry-card {
        padding: 35px 32px 29px;
    }

    .room-enquiry-top h3 {
        font-size: 41px;
    }

    .room-features-gallery-row {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .room-feature-grid {
        grid-template-columns: 1fr;
    }

    .room-feature-item {
        min-height: 92px;
    }

    .room-gallery-large {
        height: 330px;
    }

    .room-gallery-image {
        height: 160px;
    }

    .room-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .room-details-banner {
        min-height: 315px;
    }

    .room-details-banner .inner-page-banner-content {
        padding: 55px 0;
    }

    .room-details-banner h1 {
        font-size: 48px;
    }

    .room-details-image {
        height: 390px;
    }

    .room-details-heading {
        padding-top: 38px;
    }

    .room-details-heading h2 {
        font-size: 43px;
    }

    .room-details-lead {
        font-size: 15px;
    }

    .room-details-description p {
        font-size: 13px;
    }

    .room-features-gallery-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 50px;
    }

    .room-features-gallery-row .room-gallery-block {
        margin-top: 45px;
    }

    .room-section-heading h3 {
        font-size: 38px;
    }

    .room-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-gallery-large,
    .room-gallery-image {
        height: 250px;
    }

    .room-experience-section {
        margin-top: 55px;
    }

    .room-experience-grid {
        grid-template-columns: 1fr;
    }

    .related-room-image {
        height: 270px;
    }

    .room-details-cta {
        min-height: 410px;
    }

}


@media (max-width: 575px) {

    .room-details-banner {
        min-height: 285px;
    }

    .room-details-banner h1 {
        font-size: 42px;
    }

    .room-details-image {
        height: 320px;
    }

    .room-details-heading h2 {
        font-size: 39px;
    }

    .room-enquiry-card {
        padding: 28px 18px 23px;
    }

    .room-enquiry-top h3 {
        font-size: 36px;
    }

    .room-feature-grid {
        grid-template-columns: 1fr;
    }

    .room-gallery-large,
    .room-gallery-image {
        height: 225px;
    }

    .room-experience-section .section-heading h2 {
        font-size: 40px;
    }

    .related-rooms .section-heading h2 {
        font-size: 40px;
    }

    .related-room-image {
        height: 240px;
    }

    .room-details-cta-content {
        padding: 60px 0;
    }

    .room-details-cta-content h2 {
        font-size: 43px;
    }

}

/* =========================================================
   BOOKING SUCCESS POPUP
========================================================= */

.booking-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(8, 22, 40, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    animation: bookingOverlayIn .35s ease forwards;
}

.booking-success-modal {
    position: relative;
    width: 100%;
    max-width: 510px;
    padding: 48px 45px 42px;
    background: #ffffff;
    border-top: 4px solid #d7b16a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
    text-align: center;
    animation: bookingModalIn .45s ease forwards;
}

.booking-success-close {
    position: absolute;
    top: 17px;
    right: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4ded4;
    background: #ffffff;
    color: #6d747b;
    font-size: 12px;
    cursor: pointer;
    transition: all .3s ease;
}

.booking-success-close:hover {
    border-color: #d7b16a;
    background: #d7b16a;
    color: #10243a;
}


/* ---------- Success Icon ---------- */

.booking-success-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(177, 138, 75, .55);
    color: #b18a4b;
    font-size: 29px;
}

.booking-success-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #b18a4b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.booking-success-modal h2 {
    margin: 0;
    color: #10243a;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.booking-success-modal h2 span {
    display: block;
    color: #b18a4b;
}

.booking-success-modal > p {
    max-width: 410px;
    margin: 20px auto 0;
    color: #6f7881;
    font-size: 14px;
    line-height: 1.8;
}


/* ---------- Divider ---------- */

.booking-success-divider {
    width: 55px;
    height: 1px;
    margin: 27px auto;
    background: #d7b16a;
}


/* ---------- Contact ---------- */

.booking-success-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 28px;
    text-align: left;
}

.booking-success-contact > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(177, 138, 75, .45);
    color: #b18a4b;
}

.booking-success-contact span {
    display: block;
    margin-bottom: 3px;
    color: #8a9096;
    font-size: 10px;
}

.booking-success-contact a {
    color: #10243a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.booking-success-contact a:hover {
    color: #b18a4b;
}


/* ---------- Button ---------- */

.booking-success-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d7b16a;
    background: #10243a;
    color: #ffffff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

.booking-success-btn i {
    font-size: 15px;
}

.booking-success-btn:hover {
    background: #d7b16a;
    color: #10243a;
}


/* =========================================================
   POPUP ANIMATION
========================================================= */

@keyframes bookingOverlayIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes bookingModalIn {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* =========================================================
   POPUP MOBILE
========================================================= */

@media (max-width: 575px) {

    .booking-success-overlay {
        padding: 18px;
    }

    .booking-success-modal {
        padding: 42px 23px 28px;
    }

    .booking-success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        font-size: 25px;
    }

    .booking-success-modal h2 {
        font-size: 41px;
    }

    .booking-success-modal > p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* ---------------------------------------------------------
   LIGHTBOX NAVIGATION
--------------------------------------------------------- */

.gallery-lightbox-nav {
    position: absolute;

    top: 50%;
    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(7, 26, 44, 0.65);

    color: var(--white);

    font-size: 20px;

    cursor: pointer;

    transform: translateY(-50%);

    transition: var(--transition);
}

.gallery-lightbox-nav:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy-dark);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}


/* ---------------------------------------------------------
   MOBILE LIGHTBOX NAVIGATION
--------------------------------------------------------- */

@media (max-width: 767px) {

    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;

        font-size: 17px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

}

/* =========================================================
   GALLERY LIGHTBOX - FINAL Z-INDEX FIX
========================================================= */

/* Keep lightbox above header / navbar */
.gallery-lightbox {
    z-index: 9999 !important;
}

/* Keep backdrop below lightbox but above website */
.modal-backdrop {
    z-index: 9998 !important;
}


/* Lightbox content */
.gallery-lightbox .modal-dialog {
    position: relative;
    z-index: 10000;
}

.gallery-lightbox .modal-content {
    position: relative;
    z-index: 10001;
    overflow: visible;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gallery-lightbox-close {
    position: absolute !important;

    top: 18px !important;
    right: 18px !important;

    z-index: 10010 !important;

    width: 42px;
    height: 42px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(7, 26, 44, 0.75);

    color: #ffffff;

    font-size: 17px;

    cursor: pointer;

    opacity: 1 !important;

    visibility: visible !important;

    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: #c89b3c;
    border-color: #c89b3c;
    color: #071a2c;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.gallery-lightbox-nav {
    position: absolute !important;

    top: 50% !important;

    z-index: 10005 !important;

    width: 44px;
    height: 44px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(7, 26, 44, 0.75);

    color: #ffffff;

    font-size: 19px;

    cursor: pointer;

    transform: translateY(-50%);

    transition: all 0.3s ease;
}

.gallery-lightbox-nav:hover {
    background: #c89b3c;
    border-color: #c89b3c;
    color: #071a2c;
}

.gallery-lightbox-prev {
    left: 18px !important;
}

.gallery-lightbox-next {
    right: 18px !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gallery-lightbox-close {
        top: 10px !important;
        right: 10px !important;

        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .gallery-lightbox-nav {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .gallery-lightbox-prev {
        left: 8px !important;
    }

    .gallery-lightbox-next {
        right: 8px !important;
    }

}

/* =========================================================
   GALLERY LIGHTBOX - ABOVE FIXED HEADER
========================================================= */

#galleryLightbox {
    z-index: 100000 !important;
}

#galleryLightbox + .modal-backdrop,
.modal-backdrop.show {
    z-index: 99990 !important;
}


/* Modal dialog */
#galleryLightbox .modal-dialog {
    position: relative;
    z-index: 100001 !important;
}


/* Modal content */
#galleryLightbox .modal-content {
    position: relative;
    z-index: 100002 !important;
}


/* Close button */
#galleryLightbox .gallery-lightbox-close {
    position: absolute !important;

    top: 15px !important;
    right: 15px !important;

    z-index: 100010 !important;

    display: flex !important;

    visibility: visible !important;
    opacity: 1 !important;
}


/* Previous / Next */
#galleryLightbox .gallery-lightbox-nav {
    position: absolute !important;

    top: 50% !important;

    z-index: 100010 !important;
}


/* Previous */
#galleryLightbox .gallery-lightbox-prev {
    left: 18px !important;
}


/* Next */
#galleryLightbox .gallery-lightbox-next {
    right: 18px !important;
}


/*=========================================================
  FLOATING CALL + WHATSAPP BUTTONS
=========================================================*/

.call-btn,
.whatsapp-btn {

    position: fixed;

    right: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff !important;

    text-decoration: none;

    z-index: 9999;

    font-size: 24px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/*=========================================================
  WHATSAPP
=========================================================*/

.whatsapp-btn {

    bottom: 25px;

    background: #25D366;

}


/*=========================================================
  CALL
=========================================================*/

.call-btn {

    bottom: 98px;

    background: #0d6efd;

}


/*=========================================================
  ICON
=========================================================*/

.call-btn i,
.whatsapp-btn i {

    display: block;

    color: #fff !important;

    font-size: 24px;

    line-height: 1;

}


/*=========================================================
  PREMIUM BREATHING / PULSE
=========================================================*/

.whatsapp-btn {

    animation: whatsappBreathing 2.8s ease-out infinite;

}


.call-btn {

    animation: callBreathing 2.8s ease-out infinite;

    animation-delay: 1.4s;

}


/* WhatsApp pulse */

@keyframes whatsappBreathing {

    0% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 0 rgba(37, 211, 102, .50);

    }

    65% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 14px rgba(37, 211, 102, 0);

    }

    100% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 0 rgba(37, 211, 102, 0);

    }

}


/* Call pulse */

@keyframes callBreathing {

    0% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 0 rgba(13, 110, 253, .45);

    }

    65% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 14px rgba(13, 110, 253, 0);

    }

    100% {

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .18),
            0 0 0 0 rgba(13, 110, 253, 0);

    }

}


/*=========================================================
  HOVER
=========================================================*/

.call-btn:hover,
.whatsapp-btn:hover {

    color: #fff !important;

    transform: translateY(-3px) scale(1.05);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .25);

}


/*=========================================================
  MOBILE
=========================================================*/

@media (max-width: 768px) {

    .call-btn,
    .whatsapp-btn {

        right: 15px;

        width: 52px;
        height: 52px;

        font-size: 22px;

    }


    .call-btn i,
    .whatsapp-btn i {

        font-size: 22px;

    }


    .whatsapp-btn {

        bottom: 20px;

    }


    .call-btn {

        bottom: 87px;

    }

}