/* ======================================================
   GLOBAL SETTINGS
====================================================== */

:root {
    --primary-color: #aa8453;
    --primary-dark: #946f42;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #333;
    background: #ffffff;
}

/* Titles use luxury serif */
h1, h2, h3,
.hero-title,
.about-title,
.section-title {
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400;
    letter-spacing: .5px;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* ======================================================
   NAVBAR
====================================================== */

.main-header {
    background: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f1f1f1;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;
    position: relative;
    transition: color .3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width .3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.book-btn,
.btn-primary {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all .3s ease;
}

.book-btn:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ======================================================
   HERO FULLSCREEN
====================================================== */

.hero-slider {
    height: 100vh;
    position: relative;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Overlay */
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.carousel-caption h1 {
    font-family: 'Libre Caslon Display', serif;
    font-size: 64px;
    font-weight: 400;
}

.carousel-caption p {
    font-family: 'Libre Caslon Display', serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Custom arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: transparent !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    position: relative;
}

.carousel-control-prev-icon::after {
    content: "‹";
    font-size: 34px;
    color: white;
    position: absolute;
    left: 18px;
    top: 6px;
}

.carousel-control-next-icon::after {
    content: "›";
    font-size: 34px;
    color: white;
    position: absolute;
    left: 18px;
    top: 6px;
}

/* ======================================================
   ABOUT SECTION
====================================================== */

.about-section {
    background: #ffffff;
    padding: 110px 0;
}

.about-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.about-small {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.about-line {
    height: 1px;
    width: 110px;
    background: var(--primary-color);
}

.about-title {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    color:#9B261D;
}

.about-tagline {
    font-family: 'Libre Caslon Display', serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-content {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.about-image-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 18px;
    transition: transform .5s ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.05);
}

/* ======================================================
   ROOM CARDS
====================================================== */

.room-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    transition: transform .6s ease;
}

.room-card:hover img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .4s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

/* ======================================================
   MASONRY GALLERY
====================================================== */

.masonry {
    column-count: 3;
    column-gap: 15px;
}

.masonry img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: transform .4s ease;
}

.masonry img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .masonry {
        column-count: 1;
    }

    .carousel-caption h1 {
        font-size: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}/* =========================================
   FACILITIES SECTION
========================================= */

.facilities-section {
    background: #f6f2ed;
    padding: 120px 0;
}

.section-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-small {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-color);
}

.section-line {
    width: 120px;
    height: 1px;
    background: var(--primary-color);
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color:#9B261D;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* Cards */

.facility-card {
    background: #ffffff;
    padding: 45px;
    height: 100%;
    transition: all .4s ease;
    border-radius: 4px;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.facility-category {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.facility-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.facility-text {
    color: #666;
    line-height: 1.9;
}

.facility-arrow {
    margin-top: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .3s ease;
}

.facility-arrow:hover {
    background: var(--primary-dark);
}
/* ================================
   LUXURY CTA SECTION
================================ */

.cta-section-luxury {
    position: relative;
    padding: 120px 0;
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Glass Card */
.cta-card {
    position: relative;
    background: rgba(255,255,255,0.95);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Icon */
.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -100px auto 25px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Title */
.cta-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: #222;
}

/* Text */
.cta-text {
    font-family: 'Outfit', sans-serif;
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 40px;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all .3s ease;
}

.cta-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .cta-section-luxury {
        padding: 80px 20px;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-top: -70px;
    }
}

/* ===== FOOTER ===== */

.footer-section {
    background: #946F42;
    color: #ccc;
}

.footer-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: #aa8453;
    padding-left: 5px;
}

.footer-book-btn {
    background: #aa8453;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
    transition: all .3s ease;
}

.footer-book-btn:hover {
    background: #946f42;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    color: #aa8453;
    text-decoration: none;
}

.designer {
    color: #aa8453;
    font-weight: 500;
}
/* ================= HOME ROOMS SECTION ================= */

.home-rooms-section {
    /*background: #f8f6f3;*/
}

.section-small {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 600px;
    margin: auto;
    color: #666;
}

.room-card-home {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform .4s ease;
}

.room-card-home:hover {
    transform: translateY(-8px);
}

.room-home-img {
    height: 250px;
    object-fit: cover;
}


.room-home-content {
    padding: 25px;
}

.room-home-content h4 {
    font-family: 'Libre Caslon Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.room-home-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.home-rooms-section .carousel-indicators {
    bottom: 10px;
}

.home-rooms-section .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    opacity: 1;
}
/* ================= ROOM HERO ================= */

.room-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

.room-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.room-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.room-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.room-hero-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.room-hero-desc {
    font-size: 16px;
    max-width: 500px;
    line-height: 1.8;
}

/* Amenities */
.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Floating Slider */
.room-floating-slider {
    background: #fff;
    padding: 2px;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transform: translateY(30px);
}

.room-floating-slider img {
    border-radius: 8px;
}
/* NAVBAR */
.custom-navbar {
    background: #fff;
    padding: 15px 0;
    transition: all .3s ease;
}

/* Sticky shadow effect */
.custom-navbar.sticky-top {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Nav Links */
.navbar .nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 15px;
    color: #222;
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: var(--primary-color);
}

/* Book Button */
.book-btn {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 25px;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 2px;
}

.book-btn:hover {
    background: var(--primary-dark);
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* ===============================
   PAGE HERO
================================ */
.page-hero {
    padding: 120px 0 60px;
    background: #f9f7f4;
}

.page-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 48px;
    margin-top: 15px;
}

.page-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #666;
    margin-top: 10px;
}

/* ===============================
   GALLERY
================================ */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--primary-color);
    padding: 8px 20px;
}
/* ===============================
   FACILITIES PAGE
================================ */

.facilities-page {
    background: #f9f7f4;
}

/* Facility Card */
.facility-box {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    transition: all .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.facility-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.facility-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Category */
.facility-category {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

/* Title */
.facility-title {
    font-family: 'Libre Caslon Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Description */
.facility-desc {
    font-family: 'Outfit', sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
/* ===============================
   CONTACT PAGE
================================ */

.contact-section {
    background: #f9f7f4;
}

/* Contact Info Box */
.contact-info-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-heading {
    font-family: 'Libre Caslon Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item i {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-family: 'Outfit', sans-serif;
}

/* Contact Form */
.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 14px;
    font-family: 'Outfit', sans-serif;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Map */
.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
/* ==========================
   COOKIE CONSENT POPUP
========================== */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 20px 25px;
    display: none;
    z-index: 9999;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #555;
}

.cookie-consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: var(--primary-color);
    border: none;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
}

.btn-accept:hover {
    background: var(--primary-dark);
}

.btn-decline {
    background: #f1f1f1;
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
}

@media(max-width:768px){
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}
/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all .3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
/* =========================
   PLACES PAGE
========================= */

.places-section {
    background: #fff;
}

.place-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.place-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform .6s ease;
}

.place-card:hover img {
    transform: scale(1.1);
}

/* Vertical Title */
.place-title {
    position: absolute;
    left: 15px;
    bottom: 20px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Libre Caslon Display', serif;
    font-size: 26px;
    letter-spacing: 2px;
    background: rgba(170,132,83,0.9);
    color: #fff;
    padding: 12px 8px;
}

/* Hover Overlay */
.place-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
}

.place-overlay h4 {
    font-family: 'Libre Caslon Display', serif;
    margin-bottom: 15px;
}

.place-overlay p {
    font-size: 14px;
    line-height: 1.7;
}

.place-card:hover .place-overlay {
    opacity: 1;
}
/* =========================
   PLACES PAGE (HORIZONTAL)
========================= */

.places-section {
    background: #fff;
}

.place-card {
    position: relative;
    overflow: hidden;
}

.place-image {
    position: relative;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform .5s ease;
}

.place-card:hover img {
    transform: scale(1.05);
}

/* Bottom Title Bar */
.place-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    font-family: 'Libre Caslon Display', serif;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Overlay */
.place-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.place-card:hover .place-overlay {
    opacity: 1;
}

.place-overlay-content {
    color: #fff;
    text-align: center;
}

.place-overlay-content h4 {
    font-family: 'Libre Caslon Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.place-overlay-content p {
    font-size: 14px;
    line-height: 1.7;
}
/* ===== NAVBAR RESPONSIVE ===== */

.navbar {
    padding: 15px 0;
    transition: all .3s ease;
}

.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 55px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
    }

    .nav-menu a {
        padding: 10px 0;
        display: block;
    }
}
@media (max-width: 768px) {

    .hero-slider {
        height: 75vh;
    }

    .hero-image {
        height: 75vh;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}
@media (max-width: 991px) {

    .about-section .row {
        text-align: center;
    }

    .about-top {
        justify-content: center;
    }

    .about-title {
        font-size: 32px;
    }

    .about-image-wrapper {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {

    .facility-card {
        padding: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
    }
}
@media (max-width: 991px) {

    .home-rooms-section .row {
        flex-direction: column;
    }

    .home-rooms-section img {
        margin-bottom: 20px;
    }

    .room-hero-title {
        font-size: 28px;
    }

    .room-info {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 991px) {

    .room-floating-slider {
        margin-top: 30px;
    }

    .room-hero {
        padding: 60px 0;
    }
}
@media (max-width: 768px) {

    footer .row {
        text-align: center;
    }

    footer h5 {
        margin-top: 20px;
    }
}
.masonry {
    column-count: 3;
}

@media (max-width: 992px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
/* ================= ROOM DETAILS RESPONSIVE ================= */

@media (max-width: 992px) {

    .room-hero {
        height: auto;
        padding: 80px 0;
    }

    .room-hero-title {
        font-size: 32px;
    }

    .room-floating-slider {
        margin-top: 30px;
        transform: none;
    }

    .room-hero-bg {
        filter: brightness(0.4);
    }

    .room-amenities {
        gap: 15px;
    }

    .amenity-item {
        font-size: 13px;
    }

    .main-price {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .room-hero-title {
        font-size: 26px;
    }

    .room-hero-desc {
        font-size: 14px;
    }

    .room-info {
        flex-direction: column;
        gap: 10px;
    }

    .carousel-indicators {
        bottom: -5px;
    }
}
/* ==========================
   SCROLL TO TOP BUTTON
========================== */

.scroll-top-btn {
    position: fixed;
    bottom: 95px; /* above whatsapp */
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all .3s ease;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile alignment center */
@media (max-width: 768px) {
    .scroll-top-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 95px;
    }
}
