/* ==========================================================================
   V9 THE GALLERY MASTER DESIGN (BOLDER, CLEANER, PERFECT)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --v9-gold: #c5a059;
    --v9-dark: #121212;
    --v9-light: #fdfdfd;
    --v9-text: #333;
    --v9-muted: #777;
    --v9-border: #f0f0f0;
}



.v9-gallery-master {
    background: var(--v9-light);
    font-family: 'Inter', sans-serif;
    color: var(--v9-text);
    overflow-x: hidden;
}

.serif {
    font-family: 'Tenor Sans', serif;
}

/* 1. EPIC HERO GALLERY */
.v9-hero-wrap {
    height: 90vh;
    background: #000;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Indicated that clicking changes the slide */
}

/* Reset cursor for interactive components */
.v9-hero-thumbs,
.v9-nav-arrows {
    cursor: default;
}

.v9-view-all,
.v9-arrow,
.v9-thumb-card {
    cursor: pointer;
}

.v9-hero-swiper {
    width: 100%;
    height: 100%;
}

.v9-hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.v9-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 10s ease-out;
}

.swiper-slide-active .v9-hero-slide img {
    transform: scale(1.05);
    /* Subtle, elegant zoom - not "absurdly large" */
}

.v9-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Hero Navigation UI */
.v9-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    pointer-events: none;
}

.v9-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v9-arrow:hover {
    background: var(--v9-gold);
    border-color: var(--v9-gold);
}

/* Hero Titles (Bottom Left) */
.v9-hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 110;
    color: #fff;
    max-width: 700px;
    pointer-events: none;
}

.v9-category {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--v9-gold);
    margin-bottom: 20px;
}

.v9-hero-content h1 {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.v9-quick-specs {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.v9-quick-specs i {
    color: var(--v9-gold);
    margin-right: 8px;
}

.v9-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* INTERACTIVE THUMBNAILS (Bottom Right) */
.v9-hero-thumbs {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 120;
    width: 440px;
}

.v9-thumbs-swiper {
    margin-bottom: 15px;
}

.v9-thumb-card {
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.v9-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.swiper-slide-thumb-active .v9-thumb-card {
    border-color: var(--v9-gold);
    transform: translateY(-5px);
}

.swiper-slide-thumb-active .thumb-mask {
    opacity: 0;
}

.v9-view-all {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.v9-view-all:hover {
    background: #fff;
    color: #000;
}

/* 2. BODY CONTENT SECTION */
.v9-body-section {
    padding: 80px 0;
    background: #fff;
}

.v9-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
}

.v9-story {
    text-align: center;
}

.v9-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.v9-divider-line {
    width: 60px;
    height: 2px;
    background: var(--v9-gold);
    margin: 0 auto 40px;
}

.v9-description {
    font-size: 18px;
    line-height: 2.1;
    color: #444;
    margin-bottom: 80px;
}

.v9-amenities-section {
    text-align: center;
}

.v9-amenities-section h3 {
    font-size: 26px;
    margin-bottom: 40px;
}

.v9-amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.v9-am-box {
    background: #fff;
    padding: 20px 15px;
    border: 1px solid var(--v9-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: 0.3s;
    border-radius: 6px;
}

.v9-am-box:hover {
    border-color: var(--v9-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transform: translateY(-5px);
}

.v9-am-box i {
    font-size: 24px;
    color: var(--v9-gold);
}

.v9-am-box span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* PREMIUM STICKY SIDEBAR */
.v9-sidebar-col {
    position: relative;
}

.v9-action-card {
    position: sticky;
    top: 120px;
    background: var(--v9-dark);
    color: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.v9-card-header .serif:first-child {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--v9-gold);
    display: block;
    margin-bottom: 20px;
}

.v9-card-header h4 {
    font-size: 26px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.v9-card-body p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.v9-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v9-btn {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.4s;
    border-radius: 4px;
}

.v9-btn.gold {
    background: var(--v9-gold);
    color: #fff;
}

.v9-btn.gold:hover {
    background: #fff;
    color: #000;
}

.v9-btn.whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.v9-btn.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.v9-card-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.v9-card-footer span {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v9-card-footer i {
    color: var(--v9-gold);
}

/* FULLSCREEN LIGHTBOX */
.v9-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.v9-lightbox.active {
    display: flex;
}

.v9-lb-swiper {
    width: 90%;
    height: 85vh;
}

.v9-lb-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v9-lb-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.v9-lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
    transition: 0.3s;
}

.v9-lb-btn:hover {
    color: var(--v9-gold);
}

.v9-lb-prev {
    left: 30px;
}

.v9-lb-next {
    right: 30px;
}

/* REVEAL ON SCROLL */
.reveal-effect {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.v9-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 991px) {
    .v9-hero-wrap {
        height: 70vh;
        min-height: 500px;
    }

    .v9-body-section {
        padding: 60px 0;
    }

    .v9-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v9-sidebar-col {
        order: -1;
    }

    .v9-action-card {
        position: static;
        padding: 30px 25px;
    }

    .v9-hero-thumbs {
        width: 300px;
        right: 20px;
        bottom: 30px;
    }

    .v9-hero-content {
        left: 30px;
        bottom: 40px;
    }

    .v9-nav-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .v9-hero-wrap {
        height: 55vh;
        min-height: 400px;
    }

    .v9-hero-thumbs {
        width: auto;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .v9-hero-content {
        bottom: 180px;
        left: 15px;
        width: calc(100% - 30px);
        text-align: left;
    }

    .v9-hero-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .v9-category {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .v9-quick-specs {
        font-size: 9px;
        gap: 10px;
    }

    .v9-story h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .v9-description {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .v9-amenities-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .v9-amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .v9-am-box {
        padding: 20px 10px;
    }

    .v9-am-box i {
        font-size: 20px;
    }

    .v9-am-box span {
        font-size: 11px;
    }
}

/* -------------------------------------------------------------------------- */
/* 3. V9 ROOMS LISTING SHOWCASE (THE STUDIO DESIGN)                          */
/* -------------------------------------------------------------------------- */
.rl9-section {
    padding: 140px 0 80px;
    background: #fff;
}

.rl9-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.rl9-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rl9-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rl9-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

/* Left Side: Slider */
.rl9-visual {
    position: relative;
    height: 500px;
    cursor: pointer;
    overflow: hidden;
}

.rl9-swiper {
    width: 100%;
    height: 100%;
}

.rl9-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s;
}

.rl9-card:hover .rl9-swiper .swiper-slide img {
    transform: scale(1.05);
}

.rl9-view-gal {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.rl9-card:hover .rl9-view-gal {
    background: #fff;
    transform: translateX(-50%) translateY(-5px);
}

.rl9-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: 0.3s;
}

.rl9-card:hover .rl9-nav {
    opacity: 1;
}

.rl9-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.rl9-arrow:hover {
    background: var(--v9-gold);
}

.rl9-price-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Right Side: Info */
.rl9-info {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.rl9-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--v9-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.rl9-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.rl9-info .v9-divider-line {
    margin: 0 0 25px 0;
    width: 60px;
    height: 1px;
    background: var(--v9-gold);
}

.rl9-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.rl9-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rl9-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rl9-spec-item i {
    font-size: 14px;
    color: var(--v9-gold);
}

.rl9-spec-item span {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

.rl9-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rl9-btn {
    flex: 1;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    /* Premium Pill Shape */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 30px;
    white-space: nowrap;
}

.rl9-btn.primary {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.rl9-btn.primary:hover {
    background: var(--v9-gold);
    border-color: var(--v9-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rl9-btn.outline {
    border: 1px solid var(--v9-gold);
    color: var(--v9-gold);
    background: transparent;
}

.rl9-btn.outline:hover {
    background: var(--v9-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* MOBILE */
@media (max-width: 991px) {
    .rl9-card {
        grid-template-columns: 1fr;
    }

    .rl9-visual {
        height: 400px;
    }

    .rl9-info {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .rl9-container {
        padding: 0 15px;
    }

    .rl9-section {
        padding: 120px 0 50px !important;
        /* Safe padding for mobile */
    }

    .rl9-section .section-title {
        margin-bottom: 30px !important;
    }

    .rl9-category {
        font-size: 10px !important;
        letter-spacing: 3px !important;
        display: block !important;
        margin-bottom: 15px !important;
        color: var(--v9-gold) !important;
    }

    .rl9-section h1 {
        font-size: 28px !important;
        /* Proper mobile size */
        line-height: 1.2 !important;
    }

    .rl9-info h2 {
        font-size: 28px;
    }

    .rl9-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rl9-actions {
        flex-direction: column;
        gap: 12px;
    }

    .rl9-btn {
        width: 100%;
        height: 60px;
        /* Increased from 52px */
        font-size: 11px;
        letter-spacing: 2px;
        font-weight: 800;
        /* Bolder font for more impact */
    }

    .rl9-view-gal {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 10px;
    }
}

/* Hide Junk */
.rooms-hero,
.section-white .rooms-showcase {
    display: none !important;
}

.rl9-visible {
    display: block !important;
}

/* --- Global Header Adjustments (Desktop & Mobile) --- */
header#mainHeader.scrolled {
    background: #fff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
}

header#mainHeader.scrolled .nav-links li a,
header#mainHeader.scrolled .logo a {
    color: #fff !important;
}

/* DESKTOP RESET */
@media (min-width: 992px) {
    #menuToggle {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
    }

    .rl9-section {
        padding: 140px 0 80px;
    }
}

/* MOBILE SPECIFIC FIXES (<=991px) */
@media (max-width: 991px) {
    .rl9-section {
        padding: 140px 0 60px !important;
    }

    .nav-links {
        padding-top: 100px !important;
    }

    /* Mobile Call Button Visibility Fix */
    #phoneBtn.mobile-only-btn {
        display: flex !important;
        background: var(--primary) !important;
        color: #fff !important;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 18px;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    #phoneBtn.mobile-only-btn i {
        animation: phone-ring 4s ease-in-out infinite;
        display: inline-block;
    }

    header#mainHeader.scrolled #phoneBtn.mobile-only-btn {
        color: #fff;
        background: var(--primary);
    }

    @keyframes phone-ring {

        0%,
        85% {
            transform: rotate(0) scale(1);
        }

        87% {
            transform: rotate(-15deg) scale(1.1);
        }

        89% {
            transform: rotate(15deg) scale(1.1);
        }

        91% {
            transform: rotate(-15deg) scale(1.1);
        }

        93% {
            transform: rotate(15deg) scale(1.1);
        }

        95% {
            transform: rotate(-15deg) scale(1.1);
        }

        100% {
            transform: rotate(0) scale(1);
        }
    }

    header#mainHeader #menuToggle {
        display: flex !important;
        background: rgba(197, 160, 89, 0.2) !important;
        color: #fff !important;
    }

    header#mainHeader.scrolled #menuToggle {
        color: #1a1a1a !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }
}


/* ==========================================================================
   V10 CINEMATIC ROYAL SLIDER (ELITE EXPERIENCE)
   ========================================================================== */
.v10-hero {
    height: 100vh;
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.v10-main-swiper {
    width: 100%;
    height: 100%;
}

.v10-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.v10-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v10-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.swiper-slide-active .v10-visuals img {
    animation: v10kb 20s linear infinite alternate;
}

@keyframes v10kb {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.v10-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 2;
}

.v10-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* Removed padding-top to achieve perfect vertical center */
}

.v10-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transform: translateY(40px);
    opacity: 0;
    transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.v10-meta span {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #c5a059;
    font-weight: 700;
}

.v10-meta .v10-line {
    width: 60px;
    height: 1px;
    background: rgba(197, 160, 89, 0.5);
}

.v10-content-wrap h2 {
    font-size: clamp(40px, 7.5vw, 90px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 45px;
    transform: translateY(60px);
    opacity: 0;
    transition: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: -1px;
}

.v10-btn-wrap {
    transform: translateY(40px);
    opacity: 0;
    transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
}

.swiper-slide-active .v10-meta,
.swiper-slide-active .v10-content-wrap h2,
.swiper-slide-active .v10-btn-wrap {
    transform: translateY(0);
    opacity: 1;
}

.v10-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 55px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.2);
}

.v10-btn-premium:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.v10-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 100px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.v10-nav-tools {
    display: flex;
    align-items: center;
    gap: 40px;
}

.v10-numbers {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #fff;
}

#v10-curr {
    font-size: 40px;
    font-weight: 700;
    color: #c5a059;
}

#v10-total {
    font-size: 16px;
    opacity: 0.4;
    font-weight: 500;
}

.v10-arrows {
    display: flex;
    gap: 10px;
}

.v10-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.v10-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.v10-vert-text {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%) rotate(90deg);
    color: rgba(255, 255, 255, 0.05);
    font-size: 140px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

@media (max-width: 991px) {
    .v10-content-wrap {
        padding-left: 40px;
    }

    .v10-ui {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .v10-content-wrap {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center !important;
        margin-top: 0;
        padding-top: 0;
    }

    .v10-content-wrap h2 {
        font-size: 38px !important;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .v10-meta {
        justify-content: center !important;
        margin-bottom: 20px;
    }

    .v10-ui {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .v10-numbers {
        transform: scale(0.8);
    }
}

/* ==========================================================================
   ADVANCED SLIDER VISUALS (VIDEO & OVERLAY)
   ========================================================================== */
.slide-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-video-wrap iframe,
.slide-video-wrap video {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

.slide-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Ensure cinematic model works with global visual classes */
.v10-visuals .slide-visual {
    z-index: 1;
    transition: 10s linear;
}

.swiper-slide-active .v10-visuals .slide-visual {
    transform: scale(1.15);
}

/* ==========================================================================
   V11 SPLIT SCREEN DESIGN
   ========================================================================== */
.v11-hero {
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.v11-swiper {
    height: 100%;
}

.v11-slide {
    height: 100%;
}

.v11-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.v11-content {
    display: flex;
    align-items: center;
    padding: 100px;
    background: #fafafa;
    position: relative;
    z-index: 10;
}

.v11-visual {
    position: relative;
    overflow: hidden;
}

.v11-sub {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    color: #c5a059;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.v11-content h2 {
    font-size: clamp(30px, 5vw, 65px);
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 40px;
}

.v11-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: 0.4s;
}

.v11-btn:hover {
    background: #c5a059;
    transform: translateY(-5px);
}

.v11-nav {
    position: absolute;
    bottom: 50px;
    left: 100px;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.v11-prev,
.v11-next {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #1a1a1a;
    transition: 0.3s;
}

.v11-prev:hover,
.v11-next:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* ==========================================================================
   V12 MINIMALIST GLASS DESIGN
   ========================================================================== */
.v12-hero {
    position: relative;
    background: #000;
    overflow: hidden;
}

.v12-swiper {
    height: 100%;
}

.v12-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v12-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.v12-box {
    padding: 80px;
    text-align: center;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
}

.v12-box.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.v12-tag {
    display: block;
    color: #c5a059;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
}

.v12-box h2 {
    font-size: clamp(35px, 6vw, 85px);
    color: #fff;
    margin-bottom: 50px;
    line-height: 1;
}

.v12-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 2px solid #c5a059;
    padding-bottom: 10px;
    transition: 0.3s;
}

.v12-link:hover {
    color: #c5a059;
}

.v12-pagination {
    bottom: 40px !important;
}

.v12-pagination .swiper-pagination-bullet {
    background: #fff !important;
    width: 12px;
    height: 12px;
    opacity: 0.3;
}

.v12-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #c5a059 !important;
}

/* ==========================================================================
   PREMIUM SWIPER NAVIGATION STYLE
   ========================================================================== */
.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(197, 160, 89, 0.1) !important;
    z-index: 100 !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3) !important;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #fff !important;
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
        display: none !important;
    }
}

.swiper-pagination-bullet {
    background: rgba(197, 160, 89, 0.2) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 4px !important;
    border-radius: 2px !important;
    transition: 0.3s !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 30px !important;
}

/* --- Responsive Grids --- */
.rooms-grid-standard,
.testimonials-grid-standard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.stats-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

@media (max-width: 768px) {

    .rooms-grid-standard,
    .luxury-services-grid,
    .testimonials-grid-standard {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .stats-flex-container {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .room-info {
        padding: 25px 15px !important;
        text-align: center !important;
    }

    .room-img-wrapper {
        height: 250px !important;
    }

    .room-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .room-features-mini {
        justify-content: center !important;
        gap: 15px !important;
        padding-bottom: 20px !important;
        margin-bottom: 25px !important;
    }

    .section-title.centered-mobile {
        text-align: center !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }
}

/* --- End of File --- */