/* =========================================
           ROOT
        ========================================= */

:root {
    --gold: #c9a45c;
    --gold-light: #e3c887;
    --dark: #11100e;
    --dark-soft: #1a1814;
    --cream: #f7f3eb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(45px, 5vw, 65px) !important;
}

h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(45px, 5vw, 65px) !important;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

span {
    font-size: 14px !important;
}


p {
    font-size: 15px !important;
}

/* =========================================
           TOPBAR
        ========================================= */

.hotel-topbar {
    background: #fff;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(201,164,92,0.18);
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

    .topbar-item span {
        color: #11100e;
        font-weight: bold;
    }

    .topbar-item i {
        color: #11100e;
        font-size: 14px;
    }

.topbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-light);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .topbar-social a {
        color: rgba(255,255,255,0.65);
        font-size: 13px;
        transition: 0.3s ease;
    }

        .topbar-social a:hover {
            color: var(--gold-light);
            transform: translateY(-1px);
        }


/* =========================================
           MAIN HEADER
        ========================================= */

.hotel-header {
    position: absolute;
    width: 100%;
    top: 28px;
    left: 0;
    z-index: 1000;
    background: rgba(17,16,14,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    transition: 0.4s ease;
}

    /* When page scrolls */

    .hotel-header.scrolled {
        position: fixed;
        top: 0;
        background: rgba(17,16,14,0.96);
        box-shadow: 0 10px 35px rgba(0,0,0,0.20);
    }


/* =========================================
           NAVBAR
        ========================================= */

.hotel-navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
           LOGO
        ========================================= */

.hotel-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--white);
    min-width: 230px;
}

.logo-monogram {
    width: 43px;
    height: 43px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    color: var(--gold-light);
    position: relative;
}

    .logo-monogram::after {
        content: "";
        position: absolute;
        width: 31px;
        height: 31px;
        border: 1px solid rgba(201,164,92,0.35);
        border-radius: 50%;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px !important;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 8px !important;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
}


/* =========================================
           NAV LINKS
        ========================================= */

.hotel-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.hotel-nav-link {
    position: relative;
    padding: 10px 14px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    transition: 0.3s ease;
}

    .hotel-nav-link::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 14px;
        width: 0;
        height: 1px;
        background: var(--gold-light);
        transition: width 0.3s ease;
    }

    .hotel-nav-link:hover {
        color: var(--gold-light);
    }

        .hotel-nav-link:hover::after {
            width: calc(100% - 28px);
        }


/* =========================================
           RESERVE BUTTON
        ========================================= */

.reserve-btn {
    margin-left: 15px;
    padding: 13px 22px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--gold);
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

    .reserve-btn:hover {
        background: transparent;
        color: var(--gold-light);
    }

    .reserve-btn i {
        font-size: 13px;
    }


/* =========================================
           MOBILE BUTTON
        ========================================= */

.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201,164,92,0.45);
    background: transparent;
    color: var(--gold-light);
    align-items: center;
    justify-content: center;
    font-size: 22px;
}


/* =========================================
           DEMO HERO
           सिर्फ header देखने के लिए
        ========================================= */

/* =========================
   HOTEL HERO SLIDER
========================= */

.hotel-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #191815;
}


    /* Bootstrap Carousel */

    .hotel-slider .carousel,
    .hotel-slider .carousel-inner,
    .hotel-slider .carousel-item {
        width: 100%;
        height: 100%;
    }


/* =========================
   SLIDE
========================= */

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}


/* =========================
   DARK OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .48) 45%, rgba(0, 0, 0, .15) 100% );
    z-index: 1;
}


/* =========================
   CONTENT
========================= */

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}


.hero-content {
    max-width: 720px;
}


/* Small heading */

.hero-small {
    display: block;
    color: #d9aa45;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 22px;
}


/* Main heading */

.hero-content h1 {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 6vw, 90px);
    font-weight: 400;
    line-height: .95;
    margin: 0 0 28px;
}


    /* Highlight */

    .hero-content h1 span {
        color: #d9aa45;
        font-size: clamp(55px, 6vw, 90px) !important;
    }


/* Paragraph */

.hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
}


/* =========================
   BUTTON
========================= */

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: #d9aa45;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    transition: .3s ease;
}


    .hero-btn:hover {
        background: #fff;
        color: #191815;
        transform: translateY(-2px);
    }


/* =========================
   INDICATORS / DOTS
========================= */

.hotel-slider .carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    z-index: 5;
}


    .hotel-slider .carousel-indicators button {
        width: 9px;
        height: 9px;
        margin: 0;
        padding: 0;
        border: 1px solid #fff;
        border-radius: 50%;
        background: transparent;
        opacity: 1;
        transition: .3s ease;
    }


        .hotel-slider .carousel-indicators button.active {
            width: 30px;
            border-radius: 20px;
            background: #d9aa45;
            border-color: #d9aa45;
        }


/* =========================
   ARROWS
========================= */

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .3s ease;
}


    .slider-arrow:hover {
        background: #d9aa45;
        border-color: #d9aa45;
    }


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .hotel-slider {
        min-height: 600px;
    }

    .hero-content {
        max-width: 650px;
    }

        .hero-content h1 {
            font-size: clamp(52px, 8vw, 75px);
        }

        .hero-content p {
            font-size: 17px;
        }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .hotel-slider {
        height: 100svh;
        min-height: 560px;
    }


    .hero-slide {
        background-position: center center;
    }


    /* Mobile overlay */

    .hero-overlay {
        background: linear-gradient( 180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.78) 100% );
    }


    /* Bootstrap container */

    .hero-slide .container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .hero-content {
        max-width: 100%;
    }


    .hero-small {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }


    .hero-content h1 {
        font-size: clamp(43px, 13vw, 65px);
        line-height: .95;
        margin-bottom: 20px;
    }


    .hero-content p {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 24px;
    }


    .hero-btn {
        padding: 12px 19px;
        font-size: 13px;
    }


    /* Hide arrows on mobile */

    .hotel-slider .carousel-control-prev,
    .hotel-slider .carousel-control-next {
        display: none;
    }


    /* Center dots */

    .hotel-slider .carousel-indicators {
        bottom: 20px;
        gap: 7px;
    }


        .hotel-slider .carousel-indicators button {
            width: 7px;
            height: 7px;
        }


            .hotel-slider .carousel-indicators button.active {
                width: 23px;
            }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-small {
        font-size: 9px;
        letter-spacing: 2px;
    }
}

/* =========================================
           RESPONSIVE
        ========================================= */

@media (max-width: 1100px) {

    .hotel-nav-link {
        padding: 10px 9px;
        font-size: 10px;
    }

    .hotel-logo {
        min-width: 190px;
    }

    .reserve-btn {
        margin-left: 8px;
        padding: 12px 15px;
    }
}


@media (max-width: 991px) {

    .topbar-center {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-left {
        display: none;
    }

    .hotel-logo {
        min-width: auto;
    }

    .mobile-toggle {
        display: flex;
    }

    .hotel-navbar {
        min-height: 75px;
    }

    .hotel-nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
        background: rgba(17,16,14,0.98);
        border-top: 1px solid rgba(201,164,92,0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

        .hotel-nav-wrapper.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .hotel-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .hotel-nav-link {
        display: block;
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

        .hotel-nav-link::after {
            display: none;
        }

    .reserve-btn {
        margin: 12px 0 0;
        justify-content: center;
        padding: 15px;
    }

    .logo-main {
        font-size: 24px;
    }
}


@media (max-width: 575px) {

    .hotel-topbar {
        display: none;
    }

    .hotel-header {
        top: 0;
    }

    .logo-monogram {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .logo-main {
        font-size: 21px;
        letter-spacing: 1px;
    }

    .logo-sub {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .demo-hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-text {
        font-size: 13px;
    }
}


/* =========================================
   HOTEL SNAPSHOT
========================================= */

.hotel-snapshot {
    background: #f6f3ed;
    padding: 0 0 100px;
    position: relative;
}


/* =========================================
   BOOKING STRIP
========================================= */

.booking-strip {
    position: relative;
    z-index: 10;
    background: #171613;
    color: #fff;
    min-height: 105px;
    margin-top: -52px;
    display: flex;
    align-items: center;
    padding: 18px 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}


.booking-item {
    flex: 1;
    padding: 0 25px;
}


.booking-label {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: #b9a47b;
    margin-bottom: 9px;
}


.booking-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Cormorant Garamond",serif;
    font-size: 20px;
}


    .booking-value i {
        color: #c9a45c;
        font-size: 15px;
    }


.booking-divider {
    height: 45px;
    width: 1px;
    background: rgba(255,255,255,.12);
}


.check-btn {
    min-height: 65px;
    padding: 0 28px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #c9a45c;
    color: #171613;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: .3s ease;
}


    .check-btn:hover {
        background: #e0c27c;
        color: #171613;
    }


    .check-btn i {
        font-size: 14px;
    }


/* =========================================
   HEADING
========================================= */

.snapshot-heading {
    padding: 100px 0 45px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}


.snapshot-mini {
    color: #b08b48;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}


.snapshot-heading h2 {
    margin: 14px 0 0;
    color: #191815;
    font-family: "Cormorant Garamond",serif;
    font-size: clamp(42px,5vw,65px);
    line-height: .92;
    font-weight: 500;
}


    .snapshot-heading h2 em {
        color: #b08b48;
        font-style: italic;
    }


.snapshot-heading > p {
    max-width: 360px;
    margin: 0 0 5px;
    color: #77736b;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   SNAPSHOT CARDS
========================================= */

.snapshot-card {
    display: block;
    position: relative;
    min-height: 355px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e5e0d7;
    text-decoration: none;
    color: #191815;
    overflow: hidden;
    transition: .45s ease;
}


    .snapshot-card::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: #c9a45c;
        transform: scaleX(0);
        transform-origin: left;
        transition: .45s ease;
    }


    .snapshot-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(40,32,20,.10);
    }


        .snapshot-card:hover::before {
            transform: scaleX(1);
        }


/* Number */

.snapshot-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: "Cormorant Garamond",serif;
    font-size: 14px;
    color: #b9b1a3;
}


/* Icon */

.snapshot-icon {
    width: 55px;
    height: 55px;
    border: 1px solid #ded5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b08b48;
    font-size: 21px;
    transition: .4s ease;
}


.snapshot-card:hover .snapshot-icon {
    background: #191815;
    border-color: #191815;
    color: #e2c47e;
}


/* Content */

.snapshot-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}


    .snapshot-content h3 {
        font-family: "Cormorant Garamond",serif;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
    }


    .snapshot-content p {
        color: #77736b;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
        max-width: 230px;
    }


.explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #191815;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: .3s ease;
}


    .explore i {
        color: #b08b48;
        transition: .3s ease;
    }


.snapshot-card:hover .explore {
    color: #b08b48;
}


    .snapshot-card:hover .explore i {
        transform: translateX(5px);
    }


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

    .booking-strip {
        margin-top: -35px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .booking-item {
        flex: 1 1 30%;
        padding: 10px 15px;
    }

    .booking-divider {
        display: none;
    }

    .check-btn {
        width: 100%;
        margin: 5px 0 0;
    }

    .snapshot-heading {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 75px;
    }
}


@media(max-width:575px) {

    .hotel-snapshot {
        padding-bottom: 65px;
    }

    .booking-strip {
        margin-top: -25px;
        padding: 15px;
    }

    .booking-item {
        flex: 1 1 100%;
        padding: 8px 5px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .booking-value {
        font-size: 18px;
    }

    .snapshot-heading {
        padding: 60px 5px 35px;
    }

        .snapshot-heading h2 {
            font-size: 45px;
        }

    .snapshot-card {
        min-height: 320px;
    }
}



/* =========================================
   GRAND SIGNATURE SECTION
========================================= */

/* =====================================================
   GRAND SIGNATURE
===================================================== */


/* =========================================
   HOTEL SAI GRAND
   SIMPLE ABOUT SECTION
========================================= */

/* =========================================
   HOTEL SAI GRAND - ABOUT
   ONE SCREEN / NO SCROLL
========================================= */
/* ================================
   ABOUT CONTENT STATS
================================ */

.about-content-stats {
    display: flex;
    /* align-items: flex-start; */
    gap: 80px;
    margin-top: 15px;
    text-align: center;
}

.about-stat {
    position: relative;
    flex: 1;
}

    .about-stat h2 {
        margin: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(75px, 8vw, 125px);
        font-weight: 500;
        font-style: italic;
        line-height: .75;
        letter-spacing: -5px;
        color: #11100e !important;
    }

    .about-stat p {
        margin: 25px 0 0;
        padding-left: 5px;
        color: #11100e;
        font-family: "Cormorant Garamond", serif;
        font-size: 27px !important;
        font-weight: 500;
        white-space: nowrap;
    }

    .about-stat:first-child h2 {
        color: #8a8177;
    }

    .about-stat:last-child h2 {
        color: #81858a;
    }


    /* Vertical Divider */

    .about-stat + .about-stat::before {
        content: "";
        position: absolute;
        left: -40px;
        top: 5px;
        width: 1px;
        height: 115px;
        background: #ddd;
    }


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .about-content-stats {
        gap: 55px;
    }

    .about-stat h2 {
        font-size: 90px;
    }

    .about-stat p {
        font-size: 23px;
    }

    .about-stat + .about-stat::before {
        left: -28px;
    }
}


@media (max-width: 575px) {

    .about-content-stats {
        gap: 35px;
        margin-top: 25px;
    }

    .about-stat h2 {
        font-size: 65px;
        letter-spacing: -3px;
    }

    .about-stat p {
        margin-top: 18px;
        font-size: 18px;
        white-space: normal;
    }

    .about-stat + .about-stat::before {
        left: -18px;
        height: 80px;
    }
}

.about-sai {
    width: 100%;
    height: 100vh;
    height: 100svh;
    padding: 40px 4%;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
}


.about-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 20px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-content {
    padding-left: 10px;
    max-width: 650px;
}


.about-label {
    color: #c9a45c;
    /* font-size: 9px; */
    font-weight: 700;
    letter-spacing: 3px;
}


.about-content h2 {
    margin: 10px 0;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(45px, 5vw, 65px) !important;
    line-height: .85;
    font-weight: 500;
}


    .about-content h2 em {
        color: #b99042;
        font-style: normal;
    }


.about-tagline {
    margin: 18px 0 20px !important;
    color: #b99042 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}


.about-content p {
    /* max-width: 390px; */
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
    text-align: justify;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    padding: 9px 8px 9px 18px;
    border: 1px solid #173653;
    border-radius: 30px;
    /* background: #173653; */

    color: #11100e;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: .3s ease;
}


    .about-btn i {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #b99042;
        transition: .3s ease;
    }


    .about-btn:hover {
        background: transparent;
        color: #173653;
    }


        .about-btn:hover i {
            transform: rotate(45deg);
        }


/* =========================================
   RIGHT IMAGE AREA
========================================= */

.about-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
}


/* BACK IMAGE */

.about-image-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 73%;
    height: 88%;
    overflow: hidden;
    border-radius: 14px;
}


    .about-image-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .7s ease;
    }


/* FRONT IMAGE */

.about-image-front {
    position: absolute;
    left: 0;
    bottom: 3%;
    width: 55%;
    height: 67%;
    padding: 5px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
    overflow: hidden;
    z-index: 2;
}


    .about-image-front img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 10px;
        transition: .7s ease;
    }


/* IMAGE HOVER */

.about-images:hover .about-image-back img {
    transform: scale(1.04);
}


.about-images:hover .about-image-front img {
    transform: scale(1.05);
}


/* =========================================
   BADGE
========================================= */

.about-badge {
    position: absolute;
    right: 8%;
    bottom: 5%;
    width: 85px;
    height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b99042;
    color: #fff;
    text-align: center;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}


    .about-badge span {
        font-size: 6px;
        letter-spacing: 1.5px;
    }


    .about-badge strong {
        margin-top: 4px;
        font-family: "Cormorant Garamond", serif;
        font-size: 16px;
        font-weight: 500;
    }


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .about-sai {
        padding: 18px 3%;
    }

    .about-wrapper {
        grid-template-columns: 47% 53%;
        gap: 10px;
    }

    .about-content h2 {
        font-size: 43px;
    }

    .about-content p {
        font-size: 12px;
        line-height: 1.55;
    }

    .about-tagline {
        margin: 13px 0 15px !important;
    }

    .about-images {
        height: 90%;
    }
}


/* =========================================
   SMALL LAPTOP
========================================= */

@media (max-height: 700px) and (min-width: 701px) {

    .about-sai {
        padding: 12px 3%;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 9px;
    }

    .about-tagline {
        margin: 10px 0 12px !important;
    }

    .about-images {
        height: 92%;
    }

    .about-badge {
        width: 70px;
        height: 70px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .about-sai {
        height: auto;
        min-height: 100svh;
        padding: 40px 20px;
        overflow: visible;
    }

    .about-wrapper {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content {
        padding-left: 0;
    }

        .about-content h2 {
            font-size: 42px;
        }

        .about-content p {
            font-size: 14px;
            line-height: 1.7;
        }

    .about-images {
        height: 420px;
    }

    .about-image-back {
        width: 75%;
        height: 85%;
    }

    .about-image-front {
        width: 58%;
        height: 65%;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .about-images {
        height: 350px;
    }

    .about-content h2 {
        font-size: 36px;
    }
}

/* =========================================
   HOTEL SAI GRAND
   SIMPLE SERVICES
========================================= */

/* =====================================
   HOTEL SERVICES
===================================== */

.hotel-services {
    min-height: 100vh;
    padding: 35px 0 25px;
    background: #f8f7f3;
    display: flex;
    align-items: center;
}


/* =====================================
   HEADING
===================================== */

.services-heading {
    margin-bottom: 28px;
}

    .services-heading span {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 4px;
        color: #bd8b27;
        margin-bottom: 7px;
    }

    .services-heading h2 {
        font-weight: 500;
        line-height: 0.85;
        font-family: "Cormorant Garamond", serif !important;
        font-size: clamp(48px, 5vw, 70px) !important;
    }

        .services-heading h2 span {
            font-size: clamp(48px, 5vw, 70px) !important;
            font-weight: 500;
        }

    .services-heading p {
        margin: 8px 0 0;
        font-size: 14px;
        color: #666;
    }


/* =====================================
   GRID
===================================== */

.services-grid {
    border-top: 1px solid #dedbd3;
    border-left: 1px solid #dedbd3;
}


/* =====================================
   SERVICE BOX
===================================== */

.service-box {
    height: 205px;
    padding: 22px 35px;
    text-align: center;
    border-right: 1px solid #dedbd3;
    border-bottom: 1px solid #dedbd3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


/* =====================================
   ICON
===================================== */

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid #d4aa55;
    border-radius: 50%;
    color: #c8962d;
    font-size: 27px;
    transition: all 0.3s ease;
}


/* =====================================
   TITLE
===================================== */

.service-box h3 {
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    color: #282828;
}


/* =====================================
   DESCRIPTION
===================================== */

.service-box p {
    max-width: 390px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
}


/* =====================================
   HOVER
===================================== */

.service-box:hover {
    background: #ffffff;
}

    .service-box:hover .service-icon {
        background: #c8962d;
        color: #ffffff;
        transform: translateY(-4px);
    }


/* =====================================
   LAST ITEM
===================================== */

.service-last {
    min-height: 185px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .hotel-services {
        min-height: auto;
        padding: 45px 0;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .service-box {
        height: 190px;
        padding: 20px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 575px) {

    .hotel-services {
        padding: 35px 15px;
    }

    .services-heading {
        margin-bottom: 20px;
    }

        .services-heading h2 {
            font-size: 34px;
        }

        .services-heading p {
            font-size: 13px;
        }

    .service-box {
        height: auto;
        min-height: 180px;
        padding: 25px 18px;
    }

        .service-box h3 {
            font-size: 22px;
        }

        .service-box p {
            font-size: 13px;
        }
}

/* =========================================
   OUR HAPPY CLIENTS
========================================= */

/* =========================================
   SIMPLE TESTIMONIALS
========================================= */

.sg-testimonials {
    width: 100%;
    height: 80svh;
    min-height: 600px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #191815;
    font-family: "Inter", sans-serif;
}


.sg-testimonials-inner {
    width: min(900px, 90%);
    margin: auto;
    text-align: center;
}


/* =========================================
   HEADING
========================================= */

.sg-testimonials-heading span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c9a45c;
}


.sg-testimonials-heading h2 {
    margin: 10px 0 45px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;
    line-height: .85;
}


    .sg-testimonials-heading h2 em {
        color: #c9a45c;
        font-style: italic;
    }


/* =========================================
   SLIDER
========================================= */

.sg-testimonial-slider {
    width: 100%;
    overflow: hidden;
}

    .sg-testimonial-slider a {
        text-decoration: none !important;
    }

.sg-testimonial-track {
    display: flex;
    width: 300%;
    transition: transform .8s cubic-bezier(.65,0,.35,1);
}


.sg-testimonial-slide {
    width: 33.333333%;
    flex-shrink: 0;
    position: relative;
    padding: 20px 80px 35px;
    box-sizing: border-box;
}


/* =========================================
   QUOTE
========================================= */

.sg-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 75px;
    line-height: .5;
    color: #c9a45c;
    margin-bottom: 25px;
}


/* =========================================
   REVIEW
========================================= */

.sg-testimonial-slide p {
    max-width: 720px;
    margin: auto;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 2.2vw, 30px) !important;
    line-height: 1.45;
    color: #4e4b46;
}


/* =========================================
   GUEST
========================================= */

.sg-guest {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}


    .sg-guest > span {
        width: 35px;
        height: 1px;
        background: #c9a45c;
    }


    .sg-guest strong {
        display: block;
        font-size: 14px;
        letter-spacing: 1px;
        color: #11100e !important;
    }


    .sg-guest small {
        display: block;
        margin-top: 4px;
        color: #999;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


/* =========================================
   NUMBER
========================================= */

.sg-slide-number {
    position: absolute;
    right: 0;
    bottom: 20px;
    color: #aaa;
    font-size: 8px;
    letter-spacing: 2px;
}


/* =========================================
   DOTS
========================================= */

.sg-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}


    .sg-testimonial-dots span {
        width: 25px;
        height: 2px;
        background: #ddd;
        transition: .4s ease;
    }


        .sg-testimonial-dots span.active {
            width: 45px;
            background: #c9a45c;
        }


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .sg-testimonials {
        min-height: 100svh;
    }


    .sg-testimonials-heading h2 {
        margin-bottom: 35px;
    }


    .sg-testimonial-slide {
        padding: 15px 25px 35px;
    }


    .sg-quote {
        font-size: 60px;
        margin-bottom: 18px;
    }


    .sg-testimonial-slide p {
        font-size: 21px;
        line-height: 1.5;
    }


    .sg-slide-number {
        right: 15px;
    }
}


/* =========================================
   HOTEL SAI GRAND
   ROOM JOURNEY
========================================= */
/* =========================================
   HOTEL SAI GRAND
   OUR ROOMS
========================================= */





/* =========================================
   HOTEL SAI GRAND
   FINAL FOOTER CSS
========================================= */

.sg-footer {
    width: 100%;
    background: rgba(17, 16, 14, 0.96);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    border-top: 1px solid rgba(201, 164, 92, 0.25);
}


/* =========================================
   FOOTER CONTAINER
========================================= */

.sg-footer-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================
   FOOTER TOP
========================================= */

.sg-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 55px;
    padding: 55px 0 45px;
}


/* =========================================
   BRAND
========================================= */

.sg-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .sg-footer-brand a {
        color: #d0a95d;
    }

.sg-footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px !important;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
}


    .sg-footer-logo span {
        color: #c9a45c;
        font-size: 25px !important;
        /* font-style: italic; */
    }


.sg-footer-brand p {
    max-width: 280px;
    margin: 15px 0 22px;
    color: #fff;
    font-size: 11px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.sg-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}


    .sg-footer-social a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        transition: all .3s ease;
    }


        .sg-footer-social a:hover {
            background: #c9a45c;
            border-color: #c9a45c;
            color: #ffffff;
            transform: translateY(-3px);
        }


/* =========================================
   FOOTER COLUMNS
========================================= */

.sg-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}


    .sg-footer-column h4 {
        margin: 0 0 10px;
        color: #c9a45c;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 2.5px;
    }


    /* =========================================
   FOOTER LINKS
========================================= */

    .sg-footer-column ul {
        list-style-type: none;
    }

    .sg-footer-column li {
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        ;
        color: white !important;
    }

    .sg-footer-column > a {
        position: relative;
        margin-bottom: 10px;
        color: white !important;
        text-decoration: none !important;
        font-size: 14px;
        transition: all .3s ease;
    }


        .sg-footer-column > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: #c9a45c;
            transition: width .3s ease;
        }


        .sg-footer-column > a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }


            .sg-footer-column > a:hover::after {
                width: 100%;
            }


/* =========================================
   CONTACT
========================================= */

.sg-footer-contact {
    gap: 13px;
}


    .sg-footer-contact p {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        color: #fff;
        font-size: 10px;
        line-height: 1.6;
    }


    .sg-footer-contact i {
        flex-shrink: 0;
        color: #fff;
        font-size: 13px;
        margin-top: 1px;
    }


/* =========================================
   FOOTER BOTTOM
========================================= */

.sg-footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-size: 8px;
    letter-spacing: .3px;
}

    .sg-footer-bottom a {
        color: #fff !important;
    }

    .sg-footer-bottom > div {
        display: flex;
        align-items: center;
        gap: 25px;
    }


    .sg-footer-bottom a {
        color: #77736c;
        text-decoration: none;
        transition: color .3s ease;
        font-size: 14px;
    }


        .sg-footer-bottom a:hover {
            color: #c9a45c;
        }


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sg-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sg-footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 42px 0 32px;
    }


    .sg-footer-brand p {
        max-width: 100%;
    }


    .sg-footer-bottom {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.7;
    }


        .sg-footer-bottom > div {
            flex-wrap: wrap;
            gap: 15px;
        }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .sg-footer-logo {
        font-size: 22px;
    }


    .sg-footer-top {
        gap: 28px;
    }


    /* .sg-footer-column > a {

        font-size: 10px;

    } */

}





/* =========================================
  room
========================================= */

.hotel-showcase {
    width: 100%;
    height: 100vh;
    height: 100svh;
    padding: 65px 40px;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
}


/* MAIN GRID */

.showcase-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}


/* ALL CARDS */

.showcase-card {
    position: relative;
    overflow: hidden;
    background: #191815;
    cursor: pointer;
}


/* ROOMS */

.rooms-card {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* RESTAURANT */

.restaurant-card {
    grid-column: 2;
    grid-row: 1;
}


/* MARRIAGE */

.marriage-card {
    grid-column: 2;
    grid-row: 2;
}


/* IMAGE */

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}


/* OVERLAY */

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,.05) 20%, rgba(0,0,0,.78) 100% );
    z-index: 1;
    transition: .4s ease;
}


/* HOVER */

.showcase-card:hover img {
    transform: scale(1.06);
}

.showcase-card:hover .showcase-overlay {
    background: linear-gradient( to bottom, rgba(0,0,0,.15), rgba(0,0,0,.85) );
}


/* CONTENT */

.showcase-content {
    position: absolute;
    left: 35px;
    bottom: 30px;
    max-width: 390px;
    color: #fff;
    z-index: 2;
}


    /* NUMBER */

    .showcase-content span {
        display: block;
        margin-bottom: 8px;
        color: #d0a95d;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3px;
    }


    /* HEADING */

    .showcase-content h2 {
        margin: 0;
        color: #fff;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(45px, 5vw, 72px);
        font-weight: 400;
        line-height: .85;
    }


    /* DESCRIPTION */

    .showcase-content p {
        max-width: 280px;
        margin: 14px 0 0;
        color: rgba(255,255,255,.78);
        font-size: 10px;
        line-height: 1.7;
        letter-spacing: .3px;
    }


/* ARROW */

.showcase-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    z-index: 3;
    transition: all .35s ease;
}


/* ARROW HOVER */

.showcase-card:hover .showcase-arrow {
    background: #c9a45c;
    border-color: #c9a45c;
    transform: rotate(45deg);
}


/* =========================================
   RIGHT CARDS
========================================= */

.restaurant-card .showcase-content,
.marriage-card .showcase-content {
    left: 30px;
    bottom: 25px;
}


    .restaurant-card .showcase-content h2,
    .marriage-card .showcase-content h2 {
        font-size: clamp(38px, 4vw, 58px);
    }


    .restaurant-card .showcase-content p,
    .marriage-card .showcase-content p {
        margin-top: 9px;
        max-width: 250px;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hotel-showcase {
        padding: 8px 20px;
    }

    .showcase-grid {
        gap: 10px;
    }

    .showcase-content {
        left: 22px;
        bottom: 22px;
    }

        .showcase-content h2 {
            font-size: 52px;
        }

    .showcase-arrow {
        right: 18px;
        bottom: 18px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .hotel-showcase {
        height: auto;
        min-height: 100svh;
        padding: 12px;
        overflow: visible;
    }

    .showcase-grid {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 38vh 28vh 28vh;
        gap: 10px;
    }

    .rooms-card {
        grid-column: 1;
        grid-row: 1;
    }

    .restaurant-card {
        grid-column: 1;
        grid-row: 2;
    }

    .marriage-card {
        grid-column: 1;
        grid-row: 3;
    }

    .showcase-content {
        left: 18px;
        bottom: 18px;
    }

        .showcase-content h2 {
            font-size: 43px;
        }

        .showcase-content p {
            font-size: 9px;
            max-width: 220px;
        }

    .showcase-arrow {
        width: 35px;
        height: 35px;
        right: 15px;
        bottom: 15px;
    }
}




/* =========================
   VARANASI EXPERIENCES
========================= */

/* ==========================================
   ATTRACTIONS SECTION
========================================== */

.attractions-section {
    width: 100%;
    min-height: 100vh;
    padding: 45px 0;
    background: #fff;
    overflow: hidden;
}


    /* Bootstrap container ko control */

    .attractions-section .container {
        max-width: 1250px;
    }


/* ==========================================
   HEADING
========================================== */

.attractions-heading {
    text-align: center;
    margin-bottom: 35px;
}

.attractions-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #b88a32;
}



.attractions-heading h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(48px, 5vw, 70px) !important;
    font-weight: 500;
    line-height: .85;
}

    .attractions-heading h2 span {
        color: #b88a32;
        font-size: clamp(48px, 5vw, 70px) !important;
        font-weight: 500;
    }

.attractions-heading p {
    margin: 8px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #666;
}


/* ==========================================
   ATTRACTION ROW
========================================== */

.attraction-row {
    margin-bottom: 25px;
}


/* ==========================================
   IMAGE
========================================== */

/* .attraction-image {
    width: 100%;
   

    overflow: hidden;
    border-radius: 15px;
} */

.attraction-image img {
    width: 100%;
    /* height: 100%;

    display: block;

    object-fit: cover; */

    border-radius: 15px;
    transition: transform .6s ease;
}

.attraction-image:hover img {
    transform: scale(1.05);
}


/* ==========================================
   CONTENT
========================================== */

.attraction-content {
    padding: 0 55px;
}

.attraction-small {
    display: block;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b88a32;
}

.attraction-content h3 {
    margin: 0 0 8px;
    color: #11100e;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;
}

.attraction-content p {
    max-width: 500px;
    margin: 0 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #706d68;
}


/* ==========================================
   BUTTON
========================================== */

.attraction-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 9px 18px;
    border-radius: 30px;
    background: #b99042;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

    .attraction-btn span {
        font-size: 17px;
        line-height: 1;
        transition: transform .3s ease;
    }

    .attraction-btn:hover {
        background: #b88a32;
        color: #fff;
    }

        .attraction-btn:hover span {
            transform: translateX(5px);
        }


/* ==========================================
   LAPTOP - ONE SCREEN
========================================== */

@media (min-width: 992px) {

    .attractions-section {
        display: flex;
        align-items: center;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .attractions-section {
        padding: 45px 0;
    }

    .attraction-content {
        padding: 0 25px;
    }

        .attraction-content h3 {
            font-size: 32px;
        }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .attractions-section {
        min-height: auto;
        padding: 40px 0;
    }

    .attractions-heading {
        margin-bottom: 30px;
    }

    .attractions-label {
        gap: 9px;
        font-size: 9px;
        letter-spacing: 2.5px;
    }

        .attractions-label::before,
        .attractions-label::after {
            width: 28px;
        }

    .attractions-heading h2 {
        font-size: 40px;
    }

    .attractions-heading p {
        font-size: 13px;
    }


    /* Bootstrap columns full width */

    .attraction-row {
        margin-bottom: 35px;
    }

    .attraction-image {
        height: 220px;
        margin-bottom: 20px;
    }

    .attraction-content {
        padding: 0 5px;
    }

        .attraction-content h3 {
            font-size: 32px;
        }

        .attraction-content p {
            font-size: 13px;
            line-height: 1.6;
        }
}

/* =========================
   SCROLL UP BUTTON
========================= */

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #c99a3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        background: #191815;
        transform: translateY(-4px);
    }

/* Mobile */
@media (max-width: 576px) {
    .scroll-top-btn {
        width: 42px;
        height: 42px;
        right: 15px;
        bottom: 15px;
        font-size: 17px;
    }
}



/* start about page */



/* ==============================
   UNIQUE ABOUT BREADCRUMB
================================ */

.about-breadcrumb {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(17, 16, 14, 0.96), rgba(17, 16, 14, 0.82) ), url("images/about-banner.jpg") center/cover no-repeat;
}

    /* Decorative circle */
    .about-breadcrumb::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(201, 154, 61, 0.35);
        border-radius: 50%;
        right: -80px;
        top: -100px;
    }

    /* Small decorative line */
    .about-breadcrumb::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 1px;
        background: #c99a3d;
        left: 0;
        bottom: 45px;
    }

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-label {
    display: block;
    color: #c99a3d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 12px;
}

.breadcrumb-content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 400;
    line-height: 1;
}

.breadcrumb-line {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 9px 20px;
    border: 1px solid rgba(201, 154, 61, 0.45);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
}

    .breadcrumb-line a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb-line a:hover {
            color: #c99a3d;
        }

    .breadcrumb-line .dot {
        color: #c99a3d;
        font-size: 8px;
    }

    .breadcrumb-line span:last-child {
        color: #d9b76a;
    }


/* ==============================
   MOBILE
================================ */

@media (max-width: 576px) {

    .about-breadcrumb {
        min-height: 220px;
    }

    .breadcrumb-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .breadcrumb-content h1 {
        font-size: 48px;
    }

    .breadcrumb-line {
        padding: 8px 16px;
        font-size: 13px;
        gap: 10px;
    }

    .about-breadcrumb::before {
        width: 200px;
        height: 200px;
        right: -80px;
        top: -70px;
    }
}


/* ================================
   AMENITIES SECTION
================================ */

.amenities-section {
    background: #ffffff;
    padding: 70px 0;
    overflow: hidden;
}

/* Heading */
.amenities-heading {
    text-align: center;
    margin-bottom: 45px;
}

    .amenities-heading span {
        display: block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 4px;
        color: #c79a3b;
        margin-bottom: 8px;
    }

    .amenities-heading h2 {
        margin: 10px 0;
        font-family: "Cormorant Garamond", serif !important;
        font-size: clamp(45px, 5vw, 65px) !important;
        line-height: .85;
        font-weight: 500;
    }

    .amenities-heading p {
        margin: 10px auto 0;
        max-width: 550px;
        font-size: 15px;
        color: #666;
    }

/* Grid */
.amenities-row {
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

/* Item */
.amenity-item {
    min-height: 205px;
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    background: #fff;
}

    .amenity-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    }

/* Icon */
.amenity-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #faf7ef;
    color: #c79a3b;
    font-size: 27px;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    background: #c79a3b;
    color: #fff;
}

/* Title */
.amenity-item h3 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;
    color: #222;
}

/* Description */
.amenity-item p {
    margin: 0 auto;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .amenities-section {
        padding: 55px 0;
    }

    .amenities-heading h2 {
        font-size: 42px;
    }

    .amenity-item {
        min-height: 190px;
        padding: 30px 20px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

    .amenities-section {
        padding: 40px 0;
    }

    .amenities-heading {
        margin-bottom: 30px;
    }

        .amenities-heading span {
            font-size: 10px;
            letter-spacing: 3px;
        }

        .amenities-heading h2 {
            font-size: 36px;
        }

        .amenities-heading p {
            font-size: 13px;
            padding: 0 15px;
        }

    .amenity-item {
        min-height: 175px;
        padding: 25px 10px;
    }

    .amenity-icon {
        width: 45px;
        height: 45px;
        font-size: 21px;
        margin-bottom: 10px;
    }

    .amenity-item h3 {
        font-size: 18px;
    }

    .amenity-item p {
        font-size: 11px;
        line-height: 1.45;
    }
}


/* ================================
   OUR HOSPITALITY
================================ */

.hospitality-section {
    background: #f8f7f3;
    padding: 80px 0;
    overflow: hidden;
}

/* Heading */

.hospitality-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

    .hospitality-heading span {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 4px;
        color: #c99a3d;
        margin-bottom: 12px;
    }

    .hospitality-heading h2 {
        margin: 10px 0;
        font-family: "Cormorant Garamond", serif !important;
        font-size: clamp(45px, 5vw, 65px) !important;
        line-height: .85;
        font-weight: 500;
    }

    .hospitality-heading p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin: 0;
    }


/* Left Content */

.hospitality-intro {
    height: 100%;
    min-height: 390px;
    background: #11100e;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .hospitality-intro::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50%;
        right: -70px;
        bottom: -70px;
    }

.hospitality-number {
    font-size: 13px;
    letter-spacing: 3px;
    color: #d7aa4c;
    margin-bottom: 20px;
}

.hospitality-intro h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.hospitality-intro p {
    max-width: 440px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}


/* Button */

.hospitality-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #d7aa4c;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

    .hospitality-btn i {
        transition: 0.3s ease;
    }

    .hospitality-btn:hover {
        background: #d7aa4c;
        color: #fff;
    }

        .hospitality-btn:hover i {
            transform: translateX(5px);
        }


/* Service Cards */

.hospitality-card {
    height: 100%;
    min-height: 185px;
    background: #fff;
    border: 1px solid #e8e5df;
    padding: 28px;
    position: relative;
    transition: 0.3s ease;
}

    .hospitality-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    }

.hospitality-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f0df;
    color: #c99a3d;
    font-size: 21px;
    margin-bottom: 18px;
}

.hospitality-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
}

.hospitality-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    color: #11100e;
    margin-bottom: 8px;
}

.hospitality-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .hospitality-section {
        padding: 60px 0;
    }

    .hospitality-heading h2 {
        font-size: 40px;
    }

    .hospitality-intro {
        min-height: 330px;
    }

        .hospitality-intro h3 {
            font-size: 38px;
        }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .hospitality-section {
        padding: 45px 0;
    }

    .hospitality-heading {
        margin-bottom: 30px;
    }

        .hospitality-heading span {
            font-size: 10px;
            letter-spacing: 3px;
        }

        .hospitality-heading h2 {
            font-size: 34px;
        }

        .hospitality-heading p {
            font-size: 14px;
        }

    .hospitality-intro {
        min-height: 300px;
        padding: 30px;
    }

        .hospitality-intro h3 {
            font-size: 34px;
        }

        .hospitality-intro p {
            font-size: 14px;
        }

    .hospitality-card {
        min-height: 170px;
        padding: 22px;
    }

        .hospitality-card h4 {
            font-size: 23px;
        }
}

/* =====================================
   HOTEL CTA SECTION
===================================== */

.hotel-cta {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient( rgba(17, 16, 14, 0.78), rgba(17, 16, 14, 0.78) ), url("images/cta-hotel.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


    /* Decorative Circle */

    .hotel-cta::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50%;
        left: -150px;
        top: -120px;
    }

    .hotel-cta::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(215,170,76,0.25);
        border-radius: 50%;
        right: -100px;
        bottom: -100px;
    }


/* Content */

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-label {
    display: inline-block;
    color: #d7aa4c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.cta-content h2 {
    margin: 10px 0;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(45px, 5vw, 65px) !important;
    line-height: .85;
    font-weight: 500;
    color: white;
}

    .cta-content h2 span {
        color: #d7aa4c;
        font-size: clamp(45px, 5vw, 65px) !important;
        line-height: .85;
        font-weight: 500;
    }

.cta-content p {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.7;
}


/* Buttons */

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    background: #d7aa4c;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

    .cta-btn i {
        transition: 0.3s ease;
    }

    .cta-btn:hover {
        background: #fff;
        color: #102b50;
    }

        .cta-btn:hover i {
            transform: translateX(5px);
        }


.cta-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 4px;
    transition: 0.3s ease;
}

    .cta-link:hover {
        color: #d7aa4c;
        border-color: #d7aa4c;
    }


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .hotel-cta {
        min-height: 400px;
    }

    .cta-content h2 {
        font-size: 48px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .hotel-cta {
        min-height: 430px;
        padding: 50px 15px;
        background-position: center;
    }

    .cta-label {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .cta-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .cta-btn {
        padding: 12px 22px;
    }
}

/* start room page */

.rooms-section {
    background: #fff;
    padding: 65px 0;
    color: #102b50;
}


/* HEADING */

.rooms-heading {
    margin-bottom: 40px;
}

    .rooms-heading span {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 4px;
        color: #b08b48;
        margin-bottom: 8px;
    }

    .rooms-heading h2 {
        margin: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: 46px;
        font-weight: 500;
    }

        .rooms-heading h2 em {
            font-style: italic;
        }


/* ROOM BOX */

.room-box {
    width: 100%;
}


/* IMAGE */

.room-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .7s ease;
    }

.room-box:hover .room-image img {
    transform: scale(1.04);
}


/* IMAGE OVERLAY */

.room-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.35), transparent 50% );
    pointer-events: none;
}


/* IMAGE ARROW */

.room-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.8);
    text-decoration: none;
    z-index: 2;
    transition: all .3s ease;
}

    .room-arrow i {
        font-size: 19px;
    }

    .room-arrow:hover {
        background: #b08b48;
        border-color: #b08b48;
        color: #fff;
    }


/* ROOM CONTENT */

.room-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 7px;
    border-bottom: 1px solid #ddd;
}


/* LABEL */

.room-label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #b08b48;
    margin-bottom: 7px;
}


/* TITLE */

.room-content h3 {
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 37px;
    font-weight: 500;
    color: #11100e;
}


/* DESCRIPTION */

.room-content p {
    max-width: 500px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}


/* EXPLORE BUTTON */

.explore-room {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 7px;
    color: #11100e;
    font-family: "Inter", sans-serif;
    /* font-size: 13px; */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #b08b48;
    transition: .3s ease;
}

    .explore-room i {
        transition: .3s ease;
    }

    .explore-room:hover {
        color: #b08b48;
    }

        .explore-room:hover i {
            transform: translateX(5px);
        }


/* =========================
   AMENITIES
========================= */

.room-amenities {
    padding: 12px 7px 0;
}


/* BUTTON */

.amenities-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    background: transparent;
    border: 0;
    color: #11100e;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}


    /* ARROW */

    .amenities-btn i {
        color: #b08b48;
        font-size: 16px;
        transition: transform .3s ease;
    }


    /* ACTIVE ARROW */

    .amenities-btn.active i {
        transform: rotate(180deg);
    }


/* AMENITIES CONTENT */

.amenities-content {
    display: none;
    padding-top: 12px;
}


    /* OPEN */

    .amenities-content.show {
        display: block;
    }


    /* LIST */

    .amenities-content ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 15px;
    }


    /* LIST ITEM */

    .amenities-content li {
        position: relative;
        padding-left: 15px;
        font-family: "Inter", sans-serif;
        font-size: 12px;
        color: #666;
    }


        /* GOLD DOT */

        .amenities-content li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: -1px;
            color: #b08b48;
            font-size: 17px;
        }


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .rooms-section {
        padding: 55px 0;
    }

    .room-image {
        height: 300px;
    }

    .room-content h3 {
        font-size: 32px;
    }

    .room-content p {
        font-size: 13px;
    }

    .amenities-content ul {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .rooms-section {
        padding: 45px 0;
    }

    .rooms-heading {
        margin-bottom: 30px;
    }

        .rooms-heading h2 {
            font-size: 36px;
        }

    .room-image {
        height: 260px;
    }

    .room-arrow {
        width: 48px;
        height: 48px;
        right: 15px;
        bottom: 15px;
    }

    .room-content {
        display: block;
        padding: 18px 5px;
    }

        .room-content h3 {
            font-size: 32px;
        }

        .room-content p {
            margin-bottom: 15px;
        }

    .explore-room {
        font-size: 12px;
    }

    .room-amenities {
        padding-left: 5px;
        padding-right: 5px;
    }

    .amenities-content ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px 8px;
    }

    .amenities-content li {
        font-size: 11px;
    }
}

/* start delux room page */

.deluxe-room-section {
    width: 100%;
    /* height: 100svh; */
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 35px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}


/* IMAGE */

.deluxe-room-image {
    position: relative;
    width: 100%;
    height: calc(100svh - 70px);
    max-height: 650px;
    overflow: hidden;
}

    .deluxe-room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1s ease;
    }

    .deluxe-room-image:hover img {
        transform: scale(1.04);
    }


/* IMAGE LABEL */

.image-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .image-label span:first-child {
        font-size: 12px;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,.7);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


/* CONTENT */

.deluxe-room-content {
    padding: 25px 0 25px 50px;
}


/* EYEBROW */

.room-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #b08b48;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}


/* HEADING */

.deluxe-room-content h2 {
    margin: 0;
    color: #11100e;
    font-family: "Cormorant Garamond", serif;
    font-size: 46px !important;
    font-weight: 500;
    line-height: .78;
}

    .deluxe-room-content h2 span {
        display: block;
        /* font-style: italic; */
        font-size: clamp(55px, 5vw, 76px) !important;
        font-weight: 400;
    }


/* LINE */

.room-line {
    width: 55px;
    height: 1px;
    background: #b08b48;
    margin: 22px 0;
}


/* DESCRIPTION */

.room-description {
    max-width: 430px;
    margin: 0 0 22px;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}


/* DETAILS */

.room-details {
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
    margin-bottom: 18px;
}

    .room-details > div {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-size: 11px;
    }

        .room-details > div + div {
            border-left: 1px solid #ddd;
            padding-left: 15px;
        }

    .room-details i {
        color: #b08b48;
        font-size: 15px;
    }


/* AMENITIES */

.deluxe-amenities {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 22px;
}

.deluxe-amenities-btn {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 10px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #11100e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

    .deluxe-amenities-btn i {
        color: #b08b48;
        font-size: 13px;
        transition: .3s ease;
    }

    .deluxe-amenities-btn.active i {
        transform: rotate(45deg);
    }


/* AMENITIES LIST */

.deluxe-amenities-list {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding: 0 0 15px;
}

    .deluxe-amenities-list.show {
        display: grid;
    }

    .deluxe-amenities-list span {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #777;
        font-size: 10px;
    }

    .deluxe-amenities-list i {
        color: #b08b48;
    }


/* BOOK BUTTON */

.deluxe-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-width: 175px;
    padding: 13px 17px;
    background: #11100e;
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s ease;
}

    .deluxe-book-btn i {
        transition: .3s ease;
    }

    .deluxe-book-btn:hover {
        background: #b08b48;
        color: #ffffff;
    }

        .deluxe-book-btn:hover i {
            transform: translate(3px,-3px);
        }


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .deluxe-room-section {
        height: auto;
        min-height: 100svh;
        padding: 30px 0;
    }

    .deluxe-room-image {
        height: 65vh;
        min-height: 450px;
    }

    .deluxe-room-content {
        padding: 30px 0 20px 30px;
    }

        .deluxe-room-content h2 {
            font-size: 58px;
        }
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .deluxe-room-section {
        height: auto;
        min-height: auto;
        padding: 20px 0 35px;
    }

    .deluxe-room-image {
        height: 48vh;
        min-height: 330px;
        max-height: 450px;
    }

    .deluxe-room-content {
        padding: 28px 5px 0;
    }

    .room-eyebrow {
        margin-bottom: 12px;
    }

    .deluxe-room-content h2 {
        font-size: 55px;
    }

    .room-line {
        margin: 18px 0;
    }

    .room-description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .room-details {
        padding: 12px 0;
    }

        .room-details > div {
            font-size: 9px;
        }

            .room-details > div + div {
                padding-left: 8px;
            }

        .room-details i {
            font-size: 13px;
        }

    .deluxe-amenities-list {
        grid-template-columns: 1fr 1fr;
    }

    .deluxe-book-btn {
        width: 100%;
        justify-content: space-between;
    }
}


/* start banquet hall page */

.sg-banquet-section {
    width: 100%;
    min-height: 100vh;
    padding: 110px 0 80px;
    background: #ffffff;
    color: #102b50;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}


/* INTRO */

.banquet-intro {
    margin-bottom: 45px;
}

.banquet-eyebrow {
    display: block;
    margin-bottom: 20px;
    color: #b08b48;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.banquet-intro h1 {
    margin: 0;
    font-weight: 500;
    line-height: .9;
    color: #11100e;
}

    .banquet-intro h1 span {
        font-weight: 500;
        font-family: "Cormorant Garamond", serif !important;
        font-size: clamp(45px, 5vw, 65px) !important;
        color: #d0a95d;
    }


.banquet-intro-text {
    max-width: 430px;
    margin: 0 0 25px;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.banquet-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    color: #11100e;
    border-bottom: 1px solid #b08b48;
    padding-bottom: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s ease;
}

    .banquet-outline-btn i {
        color: #b08b48;
        transition: .3s ease;
    }

    .banquet-outline-btn:hover {
        color: #b08b48;
    }

        .banquet-outline-btn:hover i {
            transform: translate(4px,-4px);
        }


/* HERO IMAGE */

.banquet-hero-row {
    align-items: stretch;
    margin-bottom: 45px;
}

.banquet-main-image {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

    .banquet-main-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(10, 22, 35, .75), transparent 55% );
    }

    .banquet-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1.2s ease;
    }

    .banquet-main-image:hover img {
        transform: scale(1.05);
    }

.banquet-image-overlay {
    position: absolute;
    z-index: 2;
    left: 35px;
    bottom: 30px;
    color: #ffffff;
}

    .banquet-image-overlay span {
        display: block;
        margin-bottom: 10px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .banquet-image-overlay strong {
        font-family: "Cormorant Garamond", serif;
        font-size: 42px;
        font-weight: 400;
        line-height: .9;
    }


/* SIDE CONTENT */

.banquet-side-content {
    height: 100%;
    min-height: 440px;
    padding: 38px 30px;
    border: 1px solid #e4e0d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banquet-number {
    color: #b08b48;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.banquet-side-content h3 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: .9;
    font-weight: 500;
    color: #11100e !important;
}

    .banquet-side-content h3 em {
        display: block;
        font-style: italic;
        font-weight: 400;
    }

.banquet-side-content p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

.banquet-mini-line {
    width: 45px;
    height: 1px;
    background: #b08b48;
    margin: 28px 0;
}

.banquet-feature-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .banquet-feature-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #444;
        font-size: 11px;
    }

    .banquet-feature-list i {
        color: #b08b48;
        font-size: 16px;
    }


/* EVENT TYPES */

.banquet-events-row {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    margin-bottom: 55px;
}

.event-type {
    position: relative;
    min-height: 175px;
    padding: 28px 30px 25px 0;
    transition: .3s ease;
}

.banquet-events-row .col-lg-4 + .col-lg-4 .event-type {
    border-left: 1px solid #dedede;
    padding-left: 30px;
}

.event-type span {
    display: block;
    color: #b08b48;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.event-type h4 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    color: #11100e;
    font-size: 27px;
    font-weight: 500;
}

.event-type p {
    max-width: 270px;
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}

.event-type > i {
    position: absolute;
    top: 30px;
    right: 0;
    color: #b08b48;
    font-size: 18px;
    transition: .3s ease;
}

.event-type:hover > i {
    transform: translate(5px,-5px);
}


/* BOTTOM CTA */

.banquet-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    background: #11100e;
    color: #ffffff;
}

    .banquet-bottom-cta span {
        display: block;
        margin-bottom: 10px;
        color: #c9a45c;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 2.5px;
    }

    .banquet-bottom-cta h2 {
        margin: 0;
        font-family: "Cormorant Garamond", serif;
        font-size: 38px;
        font-weight: 400;
        line-height: .95;
    }

        .banquet-bottom-cta h2 em {
            font-style: italic;
        }
/* BANQUET SLIDER */

.banquet-main-image {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

    .banquet-main-image .carousel,
    .banquet-main-image .carousel-inner,
    .banquet-main-image .carousel-item {
        width: 100%;
        height: 100%;
    }

        .banquet-main-image .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


    /* DARK OVERLAY */

    .banquet-main-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(10, 22, 35, .78), rgba(10, 22, 35, .05) 65% );
        z-index: 1;
        pointer-events: none;
    }


/* TEXT */

.banquet-image-overlay {
    position: absolute;
    z-index: 3;
    left: 35px;
    bottom: 30px;
    color: #ffffff;
}

    .banquet-image-overlay span {
        display: block;
        margin-bottom: 10px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .banquet-image-overlay strong {
        font-family: "Cormorant Garamond", serif;
        font-size: 42px;
        font-weight: 400;
        line-height: .9;
    }


/* ARROWS */

.banquet-main-image .carousel-control-prev,
.banquet-main-image .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 4;
    background: rgba(255,255,255,.15);
    transition: .3s ease;
}

.banquet-main-image:hover .carousel-control-prev,
.banquet-main-image:hover .carousel-control-next {
    opacity: 1;
}

.banquet-main-image .carousel-control-prev {
    left: 18px;
}

.banquet-main-image .carousel-control-next {
    right: 18px;
}

    .banquet-main-image .carousel-control-prev:hover,
    .banquet-main-image .carousel-control-next:hover {
        background: #b08b48;
    }

    .banquet-main-image .carousel-control-prev i,
    .banquet-main-image .carousel-control-next i {
        font-size: 18px;
    }


/* DOTS */

.banquet-main-image .carousel-indicators {
    z-index: 4;
    margin-bottom: 20px;
    gap: 7px;
}

    .banquet-main-image .carousel-indicators button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: 1px solid #ffffff;
        background: transparent;
        opacity: .7;
    }

        .banquet-main-image .carousel-indicators button.active {
            background: #c9a45c;
            border-color: #c9a45c;
            opacity: 1;
        }


/* MOBILE */

@media (max-width: 767px) {

    .banquet-main-image {
        height: 300px;
    }

    .banquet-image-overlay {
        left: 22px;
        bottom: 22px;
    }

        .banquet-image-overlay strong {
            font-size: 34px;
        }

    .banquet-main-image .carousel-control-prev,
    .banquet-main-image .carousel-control-next {
        opacity: 1;
        width: 35px;
        height: 35px;
    }
}

.banquet-gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 14px 22px;
    background: #c9a45c;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .3s ease;
}

    .banquet-gold-btn:hover {
        background: #ffffff;
        color: #102b50;
    }

    .banquet-gold-btn i {
        transition: .3s ease;
    }

    .banquet-gold-btn:hover i {
        transform: translateX(5px);
    }


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .sg-banquet-section {
        padding: 80px 0 60px;
    }

    .banquet-intro {
        margin-bottom: 35px;
    }

    .banquet-intro-text {
        margin-top: 25px;
    }

    .banquet-main-image {
        height: 400px;
    }

    .banquet-side-content {
        min-height: 400px;
        padding: 30px 25px;
    }

        .banquet-side-content h3 {
            font-size: 36px;
        }

    .event-type {
        padding-right: 20px;
    }

    .banquet-events-row .col-lg-4 + .col-lg-4 .event-type {
        padding-left: 20px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .sg-banquet-section {
        padding: 70px 0 40px;
    }

    .banquet-intro h1 {
        font-size: 55px;
    }

    .banquet-intro-text {
        font-size: 12px;
        line-height: 1.7;
    }

    .banquet-main-image {
        height: 300px;
    }

    .banquet-image-overlay {
        left: 22px;
        bottom: 22px;
    }

        .banquet-image-overlay strong {
            font-size: 34px;
        }

    .banquet-side-content {
        min-height: auto;
        margin-top: 15px;
        padding: 30px 22px;
    }

        .banquet-side-content h3 {
            font-size: 38px;
        }

    .banquet-events-row {
        margin-top: 15px;
        margin-bottom: 35px;
    }

    .event-type {
        min-height: auto;
        padding: 25px 0;
    }

    .banquet-events-row .col-lg-4 + .col-lg-4 .event-type {
        border-left: 0;
        border-top: 1px solid #dedede;
        padding-left: 0;
    }

    .event-type > i {
        right: 5px;
        top: 28px;
    }

    .banquet-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 22px;
    }

        .banquet-bottom-cta h2 {
            font-size: 32px;
        }

    .banquet-gold-btn {
        width: 100%;
        justify-content: space-between;
    }
}


.sg-faq-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    color: #102b50;
}


/* LEFT CONTENT */

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-eyebrow {
    display: block;
    margin-bottom: 22px;
    color: #b08b48;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.faq-intro h2 {
    margin: 0 0 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 4vw, 62px);
    font-weight: 500;
    line-height: .9;
    color: #11100e !important;
}

    .faq-intro h2 span {
        display: block;
        font-size: clamp(45px, 4vw, 62px) !important;
        font-style: italic;
        /* color: #d0a95d; */
        font-weight: 400;
    }

.faq-intro p {
    max-width: 340px;
    margin: 0 0 28px;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}


/* CONTACT BUTTON */

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 9px;
    border-bottom: 1px solid #b08b48;
    color: #11100e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s ease;
}

    .faq-contact-btn i {
        color: #b08b48;
        transition: .3s ease;
    }

    .faq-contact-btn:hover {
        color: #b08b48;
    }

        .faq-contact-btn:hover i {
            transform: translate(4px,-4px);
        }


/* FAQ LIST */

.faq-list {
    border-top: 1px solid #dedede;
}

.faq-item {
    border-bottom: 1px solid #dedede;
}

.faq-question {
    width: 100%;
    padding: 24px 5px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #11100e;
    text-align: left;
    cursor: pointer;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px !important;
    font-weight: 500;
    transition: .3s ease;
}

    .faq-question span {
        font-size: 24px !important;
    }

    .faq-question:hover {
        color: #b08b48;
    }

    .faq-question i {
        flex-shrink: 0;
        color: #b08b48;
        font-size: 15px;
        transition: transform .3s ease;
    }

    .faq-question.active i {
        transform: rotate(45deg);
    }


/* ANSWER */

.faq-answer {
    display: none;
    padding: 0 45px 22px 5px;
}

    .faq-answer.show {
        display: block;
    }

    .faq-answer p {
        margin: 0;
        max-width: 650px;
        color: #777;
        font-family: "Inter", sans-serif;
        font-size: 12px;
        line-height: 1.8;
    }


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .sg-faq-section {
        padding: 70px 0;
    }

    .faq-intro {
        position: static;
    }

        .faq-intro p {
            max-width: 500px;
        }
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .sg-faq-section {
        padding: 55px 0;
    }

    .faq-intro h2 {
        font-size: 48px;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 21px;
    }

    .faq-answer {
        padding: 0 20px 20px 0;
    }

        .faq-answer p {
            font-size: 11px;
        }
}

/* start Restaurant page */

/* ================================
   RESTAURANT PAGE
================================ */

.sg-restaurant-page {
    font-family: "Inter", sans-serif;
    color: #102b50;
    background: #ffffff;
    overflow: hidden;
}

    .sg-restaurant-page h1,
    .sg-restaurant-page h2,
    .sg-restaurant-page h3,
    .sg-restaurant-page h5 {
        font-family: "Cormorant Garamond", serif;
    }


/* HERO */

.restaurant-hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(17, 16, 14, 0.78), rgba(17, 16, 14, 0.78)), url("../img/Resturant.jpeg") center/cover no-repeat;
    color: #fff;
}

.restaurant-hero-content {
    max-width: 650px;
}

.restaurant-tag,
.section-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.restaurant-tag {
    margin-bottom: 25px;
    color: #d0ad6a;
}

.restaurant-hero h1 {
    font-size: clamp(55px, 7vw, 100px);
    line-height: .82;
    font-weight: 400;
    margin-bottom: 35px;
}

    .restaurant-hero h1 em,
    .restaurant-intro h2 em,
    .restaurant-heading h2 em,
    .restaurant-quote h2 em,
    .restaurant-cta h2 em {
        font-style: italic;
        font-weight: 400;
    }

.restaurant-hero p {
    max-width: 460px;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255,255,255,.78);
    margin-bottom: 35px;
}

.restaurant-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #d0ad6a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .35s ease;
}

    .restaurant-btn i {
        color: #d0ad6a;
        transition: .35s ease;
    }

    .restaurant-btn:hover {
        color: #d0ad6a;
    }

        .restaurant-btn:hover i {
            transform: translate(5px, -5px);
        }

.restaurant-hero-note {
    border-left: 1px solid rgba(255,255,255,.45);
    padding-left: 28px;
    max-width: 260px;
    margin-left: auto;
}

    .restaurant-hero-note span {
        display: block;
        color: #d0ad6a;
        font-family: "Cormorant Garamond", serif;
        font-size: 40px;
        line-height: 1;
        margin-bottom: 12px;
    }

    .restaurant-hero-note p {
        font-size: 11px;
        line-height: 1.8;
        color: rgba(255,255,255,.7);
        margin: 0;
    }


/* INTRO */

.restaurant-intro {
    padding: 110px 0;
    background: #fff;
}

.restaurant-intro-image {
    position: relative;
    height: 560px;
    overflow: hidden;
}

    .restaurant-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1s ease;
    }

    .restaurant-intro-image:hover img {
        transform: scale(1.06);
    }

.restaurant-image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.584);
    color: #fff;
}

    .restaurant-image-label span {
        display: block;
        font-size: 9px;
        letter-spacing: 2px;
        color: #d0ad6a;
        margin-bottom: 8px;
    }

    .restaurant-image-label strong {
        font-family: "Cormorant Garamond", serif;
        font-size: 24px;
        font-weight: 400;
        line-height: .95;
    }

.restaurant-intro-content {
    padding-left: 35px;
}

.section-label {
    color: #b08b48;
    margin-bottom: 22px;
}

.restaurant-intro h2,
.restaurant-heading h2 {
    font-size: clamp(48px, 5vw, 70px);
    line-height: .88;
    font-weight: 500;
    margin-bottom: 30px;
    color: #11100e;
}

.restaurant-intro-content > p {
    max-width: 520px;
    color: #777;
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.restaurant-features {
    display: flex;
    gap: 25px;
    border-top: 1px solid #dedede;
    margin-top: 35px;
    padding-top: 25px;
}

    .restaurant-features > div {
        flex: 1;
    }

    .restaurant-features span {
        color: #b08b48;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .restaurant-features h5 {
        font-size: 20px;
        font-weight: 500;
        margin: 12px 0 7px;
        color: #11100e;
    }

    .restaurant-features p {
        font-size: 10px;
        line-height: 1.6;
        color: #888;
        margin: 0;
    }


/* DINING CARDS */

.restaurant-dining {
    padding: 100px 0;
    background: #f8f7f4;
}

.restaurant-heading {
    max-width: 600px;
    margin: 0 auto 55px;
}

    .restaurant-heading p {
        color: #777;
        font-size: 12px;
        line-height: 1.8;
    }

.dining-card {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #102b50;
}

    .dining-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .8s ease;
    }

    .dining-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(5, 15, 25, .2), rgba(5, 15, 25, .05) 65% );
    }

    .dining-card:hover img {
        transform: scale(1.08);
    }

.dining-card-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
}

    .dining-card-overlay span {
        font-size: 9px;
        letter-spacing: 2px;
        color: #d0ad6a;
    }

    .dining-card-overlay h3 {
        font-size: 38px;
        font-weight: 400;
        margin: 8px 0;
    }

    .dining-card-overlay p {
        max-width: 250px;
        color: rgba(255,255,255,.75);
        font-size: 11px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .dining-card-overlay a {
        color: #fff;
        text-decoration: none;
        font-size: 9px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

        .dining-card-overlay a i {
            color: #d0ad6a;
            margin-left: 8px;
            transition: .3s ease;
        }

        .dining-card-overlay a:hover i {
            transform: translate(4px, -4px);
        }


/* QUOTE */

.restaurant-quote {
    padding: 120px 0;
    background: #102b50;
    color: #fff;
    text-align: center;
}

.quote-inner {
    max-width: 850px;
    margin: auto;
}

.restaurant-quote .section-label {
    color: #d0ad6a;
}

.restaurant-quote h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: .95;
    font-weight: 400;
    margin: 25px 0;
}

.restaurant-quote p {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.65);
}


/* CTA */

.restaurant-cta {
    padding: 90px 0;
    background: #fff;
}

    .restaurant-cta h2 {
        font-size: clamp(45px, 5vw, 68px);
        line-height: .9;
        font-weight: 500;
        margin: 0;
    }

.dark-btn {
    color: #102b50;
}

    .dark-btn:hover {
        color: #b08b48;
    }


/* RESPONSIVE */

@media (max-width: 991px) {

    .restaurant-hero {
        min-height: 75vh;
        padding: 110px 0 60px;
    }

    .restaurant-hero-note {
        margin: 50px 0 0;
    }

    .restaurant-intro {
        padding: 75px 0;
    }

    .restaurant-intro-image {
        height: 450px;
    }

    .restaurant-intro-content {
        padding-left: 0;
    }

    .restaurant-features {
        flex-wrap: wrap;
    }

        .restaurant-features > div {
            flex: 0 0 calc(33.333% - 18px);
        }

    .restaurant-dining {
        padding: 75px 0;
    }

    .restaurant-quote {
        padding: 85px 0;
    }

    .restaurant-cta {
        padding: 70px 0;
    }

        .restaurant-cta .restaurant-btn {
            margin-top: 30px;
        }
}


@media (max-width: 767px) {

    .restaurant-hero {
        min-height: 90svh;
        padding: 100px 0 45px;
    }

        .restaurant-hero h1 {
            font-size: 58px;
        }

        .restaurant-hero p {
            font-size: 11px;
        }

    .restaurant-hero-note {
        margin-top: 55px;
        padding-left: 18px;
    }

    .restaurant-intro {
        padding: 55px 0;
    }

    .restaurant-intro-image {
        height: 350px;
    }

    .restaurant-intro h2,
    .restaurant-heading h2 {
        font-size: 48px;
    }

    .restaurant-features {
        gap: 20px;
        flex-direction: column;
    }

        .restaurant-features > div {
            flex: 100%;
        }

    .restaurant-dining {
        padding: 60px 0;
    }

    .restaurant-heading {
        margin-bottom: 35px;
    }

    .dining-card {
        height: 360px;
    }

    .restaurant-quote {
        padding: 70px 20px;
    }

        .restaurant-quote h2 {
            font-size: 42px;
        }

    .restaurant-cta {
        padding: 55px 0;
    }

        .restaurant-cta h2 {
            font-size: 48px;
        }
}


/* ===================================
   HOTEL SAI GRAND CONTACT PAGE
   ONE SCREEN DESIGN
=================================== */

.sg-contact-page {
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    background: #ffffff;
    color: #11100e;
    font-family: "Inter", sans-serif;
}

    .sg-contact-page h1,
    .sg-contact-page h2,
    .sg-contact-page h3,
    .sg-contact-page h4,
    .sg-contact-page h5,
    .sg-contact-page h6 {
        font-family: "Cormorant Garamond", serif;
        color: #11100e;
    }


/* ================================
   CONTACT INTRO / HERO
================================ */

.contact-intro {
    min-height: 27vh;
    display: flex;
    align-items: flex-end;
    padding: 65px 0 28px;
    background: linear-gradient( 90deg, rgba(10, 22, 35, .90), rgba(10, 22, 35, .65) ), url("../img/contact-banner.jpg") center/cover no-repeat;
    color: #fff;
}

.contact-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #d0ad6a;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.contact-intro h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .80;
    font-weight: 400;
}

    .contact-intro h1 em {
        font-style: italic;
        color: #fff;
    }

.contact-intro-text {
    max-width: 300px;
    margin: 0 0 3px auto;
    color: rgba(255,255,255,.75);
    font-size: 10px;
    line-height: 1.7;
}


/* ================================
   MAIN CONTACT AREA
================================ */

.contact-main {
    padding: 38px 0 35px;
    background: #fff;
}


/* ================================
   CONTACT INFORMATION
================================ */

.contact-info {
    padding-right: 25px;
}

.contact-label {
    display: block;
    margin-bottom: 10px;
    color: #b08b48;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info h2,
.form-heading h2 {
    margin-bottom: 14px;
    color: #11100e;
    font-size: 40px !important;
    line-height: .85;
    font-weight: 500;
}

    .contact-info h2 span,
    .form-heading h2 span {
        color: #d0a95d;
        font-size: 40px !important;
        line-height: .85;
        font-weight: 500;
    }


.contact-description {
    max-width: 290px;
    margin-bottom: 22px;
    color: #777;
    font-size: 10px;
    line-height: 1.7;
}


/* ================================
   CONTACT ITEMS
================================ */

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7bd8b;
    border-radius: 50%;
    color: #b08b48;
    font-size: 13px;
}

.contact-info-item span {
    display: block;
    margin-bottom: 4px;
    color: #11100e;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: #777;
    font-size: 14px !important;
    line-height: 1.5;
    text-decoration: none;
}

    .contact-info-item a:hover {
        color: #b08b48;
    }


/* ================================
   SOCIAL MEDIA
================================ */

.contact-social {
    margin-top: 18px;
}

    .contact-social > span {
        display: block;
        margin-bottom: 9px;
        color: #999;
        font-size: 8px;
        font-weight: 600;
        letter-spacing: 1.5px;
    }

.social-links {
    display: flex;
    gap: 8px;
}

    .social-links a {
        width: 29px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ddd;
        border-radius: 50%;
        color: #11100e;
        font-size: 10px;
        text-decoration: none;
        transition: .3s ease;
    }

        .social-links a:hover {
            border-color: #b08b48;
            background: #b08b48;
            color: #fff;
            transform: translateY(-3px);
        }


/* ================================
   CONTACT FORM
================================ */

.contact-form-wrapper {
    padding-left: 30px;
    border-left: 1px solid #e2e2e2;
}

.form-heading {
    margin-bottom: 20px;
}

    .form-heading p {
        margin: 0;
        color: #777;
        font-size: 10px;
        line-height: 1.6;
    }


/* FORM GROUP */

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #11100e;
    font-size: 14px;
    font-weight: 500;
}

    .form-group label sup {
        color: #b08b48;
    }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d5d9dd;
    border-radius: 0;
    outline: none;
    padding: 9px 12px;
    background: #fff;
    color: #11100e;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: .3s ease;
}

.form-group input,
.form-group select {
    height: 37px;
}

.form-group textarea {
    height: 72px;
    min-height: 72px;
    resize: none;
}

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #aaa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #b08b48;
        box-shadow: 0 0 0 2px rgba(176,139,72,.08);
    }


/* VALIDATION */

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #198754;
}

.error-message {
    display: block;
    min-height: 12px;
    margin-top: 3px;
    color: #dc3545;
    font-size: 8px;
}


/* FORM BOTTOM */

.form-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 3px;
    text-align: center;
}

    .form-bottom p {
        margin: 0;
        color: #999;
        font-size: 8px;
    }

        .form-bottom p i {
            color: #b08b48;
            margin-right: 3px;
        }

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 11px 18px;
    border: 1px solid #11100e;
    background: #11100e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease;
}

    .contact-submit i {
        color: #d0ad6a;
    }

    .contact-submit:hover {
        background: #b08b48;
        border-color: #b08b48;
    }


/* SUCCESS MESSAGE */

.form-success {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    border-left: 3px solid #198754;
    background: #f1faf5;
    color: #198754;
    font-size: 9px;
}

    .form-success.show {
        display: block;
    }


/* ================================
   BOTTOM CONTACT STRIP
================================ */

.contact-bottom-strip {
    padding: 22px 0;
    background: #f7f6f2;
}

    .contact-bottom-strip span {
        display: block;
        margin-bottom: 4px;
        color: #b08b48;
        font-size: 7px;
        font-weight: 600;
        letter-spacing: 1.5px;
    }

    .contact-bottom-strip h3 {
        margin: 0;
        color: #11100e;
        font-size: 25px;
        font-weight: 400;
    }

    .contact-bottom-strip a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #11100e;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
    }

        .contact-bottom-strip a i {
            color: #b08b48;
        }


/* ================================
   LAPTOP ONE-SCREEN ADJUSTMENT
================================ */

@media (min-width: 992px) and (max-height: 800px) {

    .contact-intro {
        min-height: 23vh;
        padding: 48px 0 22px;
    }

    .contact-main {
        padding: 25px 0;
    }

    .contact-info h2,
    .form-heading h2 {
        font-size: 38px;
    }

    .contact-description {
        margin-bottom: 15px;
    }

    .contact-info-item {
        margin-bottom: 9px;
        padding-bottom: 8px;
    }

    .form-heading {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select {
        height: 32px;
        padding: 6px 10px;
    }

    .form-group textarea {
        height: 55px;
        min-height: 55px;
    }

    .form-group label {
        margin-bottom: 3px;
    }

    .contact-bottom-strip {
        padding: 15px 0;
    }

        .contact-bottom-strip h3 {
            font-size: 22px;
        }
}


/* ================================
   TABLET RESPONSIVE
================================ */

@media (max-width: 991px) {

    .sg-contact-page {
        overflow: visible;
    }

    .contact-intro {
        min-height: 48vh;
        padding: 90px 0 45px;
    }

    .contact-intro-text {
        margin: 25px 0 0;
    }

    .contact-main {
        padding: 55px 0;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-wrapper {
        padding-left: 0;
        padding-top: 45px;
        border-left: none;
        border-top: 1px solid #e2e2e2;
    }

    .contact-bottom-strip {
        padding: 35px 0;
    }

        .contact-bottom-strip a {
            margin-top: 20px;
        }
}


/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 767px) {

    .contact-intro {
        min-height: 65svh;
        padding: 90px 0 40px;
    }

        .contact-intro h1 {
            font-size: 52px;
        }

    .contact-main {
        padding: 45px 0;
    }

    .contact-info h2,
    .form-heading h2 {
        font-size: 44px;
    }

    .form-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-bottom-strip h3 {
        font-size: 30px;
    }
}

/* ===================================
   HOTEL SAI GRAND GALLERY PAGE
=================================== */

.sg-gallery-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #11100e;
    font-family: "Inter", sans-serif;
}

    .sg-gallery-page h1,
    .sg-gallery-page h2,
    .sg-gallery-page h3 {
        font-family: "Cormorant Garamond", serif;
    }


/* ===================================
   GALLERY INTRO
=================================== */

.gallery-intro {
    min-height: 48vh;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 60px;
    background: linear-gradient( 90deg, rgba(10, 22, 35, .88), rgba(10, 22, 35, .55) ), url("../img/gallery-banner.jpg") center/cover no-repeat;
    color: #fff;
}

.gallery-eyebrow {
    display: block;
    margin-bottom: 22px;
    color: #d0ad6a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.gallery-intro h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 400;
    line-height: .82;
}

    .gallery-intro h1 em {
        color: #fff;
        font-style: italic;
        font-weight: 400;
    }

.gallery-intro-text {
    max-width: 320px;
    margin: 0 0 5px auto;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    line-height: 1.9;
}


/* ===================================
   GALLERY MAIN
=================================== */

.gallery-main {
    padding: 75px 0 100px;
    background: #fff;
}


/* ===================================
   FILTER BUTTONS
=================================== */

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.gallery-filter {
    padding: 10px 22px;
    border: 1px solid #dedede;
    background: transparent;
    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease;
}

    .gallery-filter:hover,
    .gallery-filter.active {
        border-color: #11100e;
        background: #11100e;
        color: #fff;
    }


/* ===================================
   GALLERY GRID
=================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .gallery-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(10,22,35,.72), rgba(10,22,35,.05) 65% );
        opacity: 0;
        transition: .4s ease;
    }

    .gallery-image:hover img {
        transform: scale(1.08);
    }

    .gallery-image:hover::after {
        opacity: 1;
    }


/* ===================================
   IMAGE OVERLAY
=================================== */

.gallery-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: .4s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}

.gallery-overlay i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}


/* ===================================
   FILTER ANIMATION
=================================== */

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: galleryReveal .5s ease;
}

@keyframes galleryReveal {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ===================================
   LIGHTBOX
=================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(10, 15, 20, .96);
    backdrop-filter: blur(8px);
}

    .gallery-lightbox.active {
        display: flex;
        animation: lightboxFade .3s ease;
    }

@keyframes lightboxFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* LIGHTBOX IMAGE */

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    text-align: center;
}

    .lightbox-content img {
        max-width: 90vw;
        max-height: 80vh;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
        box-shadow: 0 20px 70px rgba(0,0,0,.35);
    }

.lightbox-caption {
    margin-top: 18px;
    color: #d0ad6a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* CLOSE BUTTON */

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .3s ease;
}

    .lightbox-close:hover {
        background: #b08b48;
        border-color: #b08b48;
    }


/* PREVIOUS / NEXT */

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

.lightbox-prev {
    left: 35px;
}

.lightbox-next {
    right: 35px;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        border-color: #b08b48;
        background: #b08b48;
    }


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .gallery-intro {
        min-height: 48vh;
        padding: 90px 0 50px;
    }

    .gallery-intro-text {
        margin: 30px 0 0;
    }

    .gallery-main {
        padding: 60px 0 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}


@media (max-width: 767px) {

    .gallery-intro {
        min-height: 65svh;
        padding: 90px 0 40px;
    }

        .gallery-intro h1 {
            font-size: 55px;
        }

    .gallery-intro-text {
        font-size: 11px;
    }

    .gallery-main {
        padding: 45px 0 60px;
    }

    .gallery-filters {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 30px;
    }

    .gallery-filter {
        padding: 8px 13px;
        font-size: 8px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 12px;
    }

    .gallery-large,
    .gallery-wide,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-image::after {
        opacity: 1;
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .lightbox-content img {
        max-width: 85vw;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* start blog page */

.blog {
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}


/* ===================================
   CONTACT GOOGLE MAP
=================================== */

.sg-contact-map {
    width: 100%;
    background: #fff;
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

    .contact-map-wrapper iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
        filter: grayscale(20%);
    }


/* Mobile */

@media (max-width: 767px) {

    .contact-map-wrapper {
        height: 300px;
    }
}
