:root {
    --theme-dark: #2D3E33; /* Dark earthy color instead of bright green */
    --primary-green:  #264430; /* Keeping this for buttons only */
    --secondary-green: #4E6E5D;
    --earth-brown: #5D4037;
    --sand-beige: #FAF3E0;
    --luxury-white: #FFFFFF;
    --soft-gray: #F8F9FA;
    --dark-forest:  #264430;
    --accent-gold: #C5A059;
    
    --heading-font: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --cursive-font: 'Dancing Script', cursive;
    
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Force global font */
html, body, div, p, span, a, h1, h2, h3, h4, h5, h6, input, select, textarea, button {
    font-family: var(--body-font) !important;
}

/* Maintain cursive where explicitly used */
.swiper-content h3, .cursive {
    font-family: var(--cursive-font) !important;
}

/* Global Styles */
html, body, div, p, span, a, h1, h2, h3, h4, h5, h6, input, select, textarea, button, li {
    font-family: 'DM Sans', sans-serif !important;
}

/* Specific Cursive Override */
.swiper-content h3, .cursive, h3.ani-move-up {
    font-family: 'Dancing Script', cursive !important;
}

body {
    color: var(--dark-forest);
    line-height: 1.6;
    background-color: var(--luxury-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.about-redesign, .rooms-section, .experiences-section, .gallery-section, .testimonials-section, .booking-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.global-subheading {
    display: block !important;
    color: var(--accent-gold) !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    font-family: var(--cursive-font) !important;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--theme-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}



/* Hero Section - Reverting padding for original slider */
.banner {
    position: relative;
    padding: 0 !important;
    z-index: 10; /* Increased to ensure it's above other elements if needed */
    background: #000;
    min-height: 400px;
}

/* Room Section Redesign - 3D Light Aesthetic with Gold Borders */
.rooms-section {
    background: #f8f9f7; /* Light base */
    position: relative;
    padding: 120px 0 !important;
    overflow: hidden;
    z-index: 1;
}

/* 3D Floating Particles Background */
.rooms-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(var(--accent-gold) 1px, transparent 1px),
        radial-gradient(var(--dark-forest) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
    animation: floatBackground 10s linear infinite;
    z-index: -1;
}

@keyframes floatBackground {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

.rooms-section .section-title h2 {
    color: var(--dark-forest) !important;
    font-size: 4rem !important;
    margin-bottom: 10px !important;
    font-weight: 800;
}

.rooms-section .section-title p {
    color: #666 !important;
    font-size: 1.4rem !important;
    margin-bottom: 5px;
}

.rooms-section .subtitle-cursive {
    font-family: var(--cursive-font) !important;
    color: var(--accent-gold) !important;
    font-size: 1.6rem !important;
}

/* Framed Light Room Card */
/* Room Section Redesign - Offset Dual Gold Frame Aesthetic */
.room-card-premium {
    background: #ffffff;
    border-radius: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    display: flex;
    flex-direction: column;
    margin: 30px 20px; /* Space for the offset borders */
    z-index: 1; /* Establish stacking context */
}

/* Offset Borders */
.room-card-premium::before,
.room-card-premium::after {
    content: '';
    position: absolute;
    border: 2px solid var(--accent-gold);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.room-card-premium::before {
    top: -20px;
    left: -20px;
    right: 30px;
    bottom: 30px;
}

.room-card-premium::after {
    top: 30px;
    left: 30px;
    right: -20px;
    bottom: -20px;
}

.room-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.room-card-premium:hover::before {
    top: -25px;
    left: -25px;
}

.room-card-premium:hover::after {
    top: 35px;
    left: 35px;
}

.room-card-premium .room-top-header {
    background: #ffffff;
    padding: 20px 15px 10px;
    text-align: left;
    padding-left: 25px;
}

.room-card-premium .room-top-header h4 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--dark-forest);
    font-weight: 800;
}

/* Swiper Container for Room Card */
.room-card-premium .room-slider-mini {
    height: 350px !important;
    position: relative;
    padding: 10px 15px;
    display: block !important;
}

.room-card-premium .room-slider-mini .swiper-container,
.room-card-premium .room-slider-mini .swiper {
    height: 100% !important;
    width: 100% !important;
    border-radius: 15px;
    overflow: hidden;
    display: block !important;
    z-index: 5;
}

.room-card-premium .room-slider-mini .swiper-slide {
    display: block !important;
    height: 100% !important;
}

.room-card-premium .room-slider-mini .swiper-slide img {
    border-radius: 15px;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Navigation Arrows Styling */
.room-card-premium .swiper-button-next,
.room-card-premium .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
}

.room-card-premium .swiper-button-next::after,
.room-card-premium .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

.room-card-premium .swiper-button-next:hover,
.room-card-premium .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Pagination Dots */
.room-card-premium .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.room-card-premium .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* Price/Offer Badge */
.room-badge-top {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fe8c26; /* Orange from image */
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 10;
}

.room-card-premium .room-info-section {
    padding: 20px 25px;
    background: #ffffff;
}

.room-card-premium .room-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.room-card-premium .room-features-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.room-card-premium .room-features-list li i {
    color: var(--accent-gold);
    width: 30px;
    font-size: 16px;
}

.room-card-premium .btn-full-width {
    background: #3e4431;
    color: #fff;
    border: none;
    padding: 18px;
    width: 100%;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    margin-top: auto;
}

.room-card-premium .btn-full-width:hover {
    background: var(--dark-forest);
    letter-spacing: 3px;
}

/* Amenities V2 Styling - Horizontal Row Fix */
.lined-title {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--dark-forest);
    margin-bottom: 40px;
    width: 100%;
}

.lined-title::before, .lined-title::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.lined-title:not(:empty)::before { margin-right: 25px; }
.lined-title:not(:empty)::after { margin-left: 25px; }

.amenities-row-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping to prevent scrollbar */
    gap: 30px;
    padding: 20px 0;
}

.amenities-summary-premium {
    margin-top: 50px;
    padding: 20px 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.amenity-item-mini-v2 {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    width: 160px;
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-bottom: 3px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.amenity-item-mini-v2:hover { 
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--dark-forest);
}

.amenity-item-mini-v2 i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.amenity-item-mini-v2 span {
    font-size: 12px;
    color: var(--dark-forest);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Simple CSS Fading Slider for Room Cards */
.room-card-premium .room-slider-mini {
    height: 280px;
    position: relative;
    padding: 0;
    margin: 15px;
    overflow: hidden;
    background: #f0f0f0;
}

.room-card-premium .room-slider-mini .simple-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: simpleFade 12s infinite; /* 3 images * 4s each */
}

/* Delay animations for each image */
.room-card-premium .room-slider-mini .simple-slide:nth-child(1) {
    animation-delay: 0s;
}
.room-card-premium .room-slider-mini .simple-slide:nth-child(2) {
    animation-delay: 4s;
}
.room-card-premium .room-slider-mini .simple-slide:nth-child(3) {
    animation-delay: 8s;
}

@keyframes simpleFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

.room-card-premium .room-slider-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-primary-luxury {
    background-color: var(--primary-green);
    color: white;
}

.btn-primary-luxury:hover {
    background-color: var(--dark-forest);
    color: white;
    transform: translateY(-5px);
}

.btn-outline-luxury {
    border: 2px solid white;
    color: white;
    margin-left: 20px;
}

.btn-outline-luxury:hover {
    background-color: white;
    color: var(--dark-forest);
    transform: translateY(-5px);
}
.slider-highlights-mini span{
    color:white;
    font-size: 14px;
}
.slider-description {
    font-size: 17px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section Premium Styles */
.about-redesign {
    background: #ffffff;
    padding-top: 200px !important; /* Increased padding to clear the overflowing banner form */
    padding-bottom: 80px !important;
    margin-top: 0 !important;
    position: relative;
    z-index: 5;
}

.about-slider-wrap {
    position: relative;
    display: block !important;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-swiper-unique {
    width: 100%;
    height: 700px !important;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: #fff; /* Clean white background */
}

.about-swiper-unique .swiper-wrapper {
    height: 100%;
}

.about-swiper-unique .swiper-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.about-slide-img-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important; /* Changed from contain to PURI FILL */
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: block !important;
}

/* Remove Dark Overlay from About Slider */
.about-swiper-unique .swiper-slide:after {
    display: none !important;
    content: none !important;
}

/* Slider Directional Animations - Refined */
@keyframes slideFromLeft { 
    0% { transform: translate3d(-100%, 0, 0); opacity: 0; } 
    100% { transform: translate3d(0, 0, 0); opacity: 1; } 
}
@keyframes slideFromBottom { 
    0% { transform: translate3d(0, 100%, 0); opacity: 0; } 
    100% { transform: translate3d(0, 0, 0); opacity: 1; } 
}
@keyframes slideFromRight { 
    0% { transform: translate3d(100%, 0, 0); opacity: 0; } 
    100% { transform: translate3d(0, 0, 0); opacity: 1; } 
}
@keyframes slideFromTop { 
    0% { transform: translate3d(0, -100%, 0); opacity: 0; } 
    100% { transform: translate3d(0, 0, 0); opacity: 1; } 
}

.swiper-slide-active .ani-left { animation: slideFromLeft 1s ease-out forwards; }
.swiper-slide-active .ani-bottom { animation: slideFromBottom 1s ease-out forwards; }
.swiper-slide-active .ani-right { animation: slideFromRight 1s ease-out forwards; }
.swiper-slide-active .ani-top { animation: slideFromTop 1s ease-out forwards; }

.about-next, .about-prev {
    color: #fff !important;
    background: rgba(0,0,0,0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about-next:after, .about-prev:after {
    font-size: 16px !important;
}

.about-next { right: 15px; }
.about-prev { left: 15px; }

.about-pagination-unique {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    z-index: 20;
    position: absolute !important;
}

.about-pagination-unique .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.5) !important;
    opacity: 1;
    margin: 0 5px !important;
    display: inline-block !important;
}

.about-pagination-unique .swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    width: 30px;
    border-radius: 10px;
}

.about-content-premium h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.feature-small .icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--sand-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-luxury-fill {
    background: var(--primary-green);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,128,0,0.2);
    display: inline-block;
}

.btn-luxury-fill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,128,0,0.3);
}

/* Delay Utilities for Load Animations */
.delay-200 { transition-delay: 0.2s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-600 { transition-delay: 0.6s !important; }
.delay-800 { transition-delay: 0.8s !important; }
.delay-900 { transition-delay: 0.9s !important; }
.delay-1000 { transition-delay: 1s !important; }

@media (max-width: 991px) {
    .about-swiper { height: 350px; }
    .about-content-premium h2 { font-size: 2.2rem; }
    .about-content-premium { text-align: center; }
    .about-features-mini { justify-content: center; }
}

/* Multi-directional Reveal Classes */
.reveal-element {
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

/* SLIDE UP (element starts at bottom, moves up) */
.reveal-element.reveal-bottom, .reveal-element.reveal-up { transform: translateY(50px); }

/* SLIDE LEFT (element starts at right, moves left) */
.reveal-element.reveal-left { transform: translateX(50px); }

/* SLIDE RIGHT (element starts at left, moves right) */
.reveal-element.reveal-right { transform: translateX(-50px); }

.reveal-element.revealed,
.no-js .reveal-element {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Room Cards */
.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.room-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-img img {
    transform: scale(1.1);
}

.room-info {
    padding: 30px;
}

.room-info h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.room-price {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.room-features i {
    color: var(--secondary-green);
}

/* Experiences */
.experience-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.experience-item:hover .experience-overlay {
    transform: translateY(0);
}

.experience-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-item {
    text-align: center;
    padding: 40px;
    background: var(--soft-gray);
    border-radius: 20px;
    margin: 20px;
}

.testimonial-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Premium Play Button */
.play-btn-premium {
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 5;
}

.play-btn-premium i {
    font-size: 30px;
    position: relative;
    left: 4px;
}

.play-btn-premium:hover {
    transform: scale(1.1);
    background: #fff;
}

.play-btn-premium:hover i {
    color: var(--accent-gold);
}

.play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 50%;
    z-index: -1;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Luxury Info Cards */
.luxury-card {
    background: #fff;
    padding: 50px 30px !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-bottom: 5px solid transparent;
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-bottom: 5px solid var(--accent-gold);
}

.luxury-card i {
    transition: all 0.5s ease;
}

.luxury-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Stats Styling */
.stat-item h4 {
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Reviews */
.slider-item-premium {
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
}

.slider-item-premium p.italic {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
    font-style: italic;
}

/* Features Bar (Separated) */
.features-bar-separated {
    background: white;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: -30px; /* Slight overlap for a modern look */
}

.feature-item-sep {
    text-align: center;
    padding: 20px;
}

.feature-item-sep i {
    font-size: 2.5rem;
    color: var(--accent-gold); /* Icons changed from green to gold */
    margin-bottom: 15px;
    display: block;
}

.feature-item-sep span {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-forest);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Room Cards Refinement */
.room-card .btn-luxury {
    border-radius: 0;
    transition: var(--transition-smooth);
}

.room-card:hover .btn-luxury {
    background-color: var(--accent-gold);
}

/* Experiences Grid */
.experiences-section .experience-item {
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* Gallery Hover */
.gallery-section img {
    transition: var(--transition-smooth);
    cursor: zoom-in;
}

.gallery-section img:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Booking Animation */
.booking-section {
    background: linear-gradient(135deg, var(--sand-beige) 0%, #fff 100%);
}

.booking-actions .btn-luxury {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title h2 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .about-text { padding-left: 0; margin-top: 50px; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 2.5rem; }
    .btn-outline-luxury { margin-left: 0; margin-top: 15px; }
    
    .features-bar .row div {
        border: none !important;
        margin-bottom: 10px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
    }
    
    .nav.navbar-nav > li > a {
        color: var(--dark-forest) !important;
        padding: 10px 0 !important;
    }
}

/* Slider Video Background */
.slider-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important; /* Force full viewport height */
    min-height: 700px !important;
}

/* Precise image placement for your specific images */
.swiper-wrapper .swiper-slide:nth-child(1) { background-position: center bottom !important; } /* Focus on the lower part (bed/floor) for Attic Room */
.swiper-wrapper .swiper-slide:nth-child(2) { background-position: center 35% !important; }    /* Catch the headboard and view for Deluxe Room */
.swiper-wrapper .swiper-slide:nth-child(3) { background-position: center center !important; } /* Center for Outdoor Landscape */

/* Advanced Slider Animations */
.swiper-slide-active .ani-move-up {
    animation: fadeInUpCustom 1s ease-out both;
}

.swiper-slide-active .ani-delay-1 { animation-delay: 0.2s; }
.swiper-slide-active .ani-delay-2 { animation-delay: 0.5s; }
.swiper-slide-active .ani-delay-3 { animation-delay: 0.8s; }
.swiper-slide-active .ani-delay-4 { animation-delay: 1.1s; }
.swiper-slide-active .ani-delay-5 { animation-delay: 1.4s; }
.swiper-slide-active .ani-delay-6 { animation-delay: 1.7s; }

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-features-top {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.slider-features-top .feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slider-features-top .feat-item i {
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
    font-size: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-features-top .feat-item:hover i {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.slider-info-bar {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.3);
    padding: 10px 25px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.swiper-content {
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    text-align: center;
    pointer-events: auto !important;
}

.swiper-content .ani-move-up, 
.swiper-content a {
    position: relative;
    z-index: 200 !important;
    pointer-events: auto !important;
}

.swiper-content h3 {
    font-family: 'Dancing Script', cursive !important;
    font-size: 3.2rem !important;
    color: var(--accent-gold) !important;
    text-transform: none !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px !important;
}

.swiper-content h1 {
    font-size: 5.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important; /* Title now purely white */
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
    margin: 10px 0px !important;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Larger titles for 2nd and 3rd slide if needed */
.slide-title-large {
    font-size: 6rem !important;
}

.slider-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 750px;
    margin: 0 auto 15px; /* Pull highlights closer */
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slider-highlights-mini {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff; /* Highlights now white as requested */
    font-size: 0.9rem;
}

.slider-highlights-mini span:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: rgba(255,255,255,0.5);
}

/* Typewriter Animation Classes */
.swiper-slide-active .type-writer {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--accent-gold);
    white-space: nowrap;
    margin: 0 auto;
    animation: 
        typing 3s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-gold); }
}

.slider-btn {
    padding: 15px 35px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 0;
}

.btn-outline-wt {
    background: transparent;
    border: 2px solid white !important;
    color: white !important;
}

.btn-outline-wt:hover {
    background: white !important;
    color: var(--dark-forest) !important;
}

.banner .overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

/* Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Menu Centering */
.navbar-collapse {
    text-align: center;
}

#responsive-menu {
    float: none !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto !important;
    padding: 10px 0; /* Vertical centering/padding */
}

#responsive-menu > li {
    float: none !important;
    display: inline-block !important;
    margin: 0 20px !important; /* Increased gap further for better readability */
}

#responsive-menu > li > a {
    padding: 10px 0 !important;
    position: relative;
    font-weight: 500;
}

@media (min-width: 992px) {
    .header_menu .navbar-default .navbar-collapse {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #responsive-menu {
        display: inline-flex !important;
    }
}

.nav-btn {
    float: none !important;
    margin-left: 35px; /* More gap between menu and contact button */
    margin-top: 0 !important;
}

/* Hide the old highlights bar from index-slider if it exists */
.features-bar-separated {
    display: none;
}

@media (max-width: 991px) {
    #responsive-menu {
        display: block !important;
    }
}

/* Slider Directional Animations */
@keyframes slideFromLeft { 
    0% { transform: translateX(-100%); opacity: 0; } 
    100% { transform: translateX(0); opacity: 1; } 
}
@keyframes slideFromBottom { 
    0% { transform: translateY(100%); opacity: 0; } 
    100% { transform: translateY(0); opacity: 1; } 
}
@keyframes slideFromRight { 
    0% { transform: translateX(100%); opacity: 0; } 
    100% { transform: translateX(0); opacity: 1; } 
}
@keyframes slideFromTop { 
    0% { transform: translateY(-100%); opacity: 0; } 
    100% { transform: translateY(0); opacity: 1; } 
}

.swiper-slide-active .ani-left { animation: slideFromLeft 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) both; }
.swiper-slide-active .ani-bottom { animation: slideFromBottom 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) both; }
.swiper-slide-active .ani-right { animation: slideFromRight 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) both; }
.swiper-slide-active .ani-top { animation: slideFromTop 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) both; }

.about-slide-img-unique {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block !important;
}

/* Force Banner Form Visibility */
.banner, .banner-form, .form-style-3 {
    z-index: 99 !important;
}

.about-redesign {
    z-index: 1 !important;
}

/* Ensure Header is always on top */
.main_header_area {
    z-index: 1001 !important;
}

/* --- Premium Interactive Experiences Accordion --- */
.experiences-section-premium {
    background-color: #f6f5f0;
    position: relative;
    overflow: hidden;
}

.experience-subtext {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.experience-accordion {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    gap: 15px;
}

.exp-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.exp-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

/* Base Gradient Overlay */
.exp-panel::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(14, 27, 21, 0.95) 0%, rgba(14, 27, 21, 0) 100%);
    z-index: 1;
    transition: height 0.6s ease;
}

.exp-panel:hover {
    flex: 4;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.exp-panel:hover img {
    opacity: 1;
}

.exp-panel:hover::before {
    height: 80%;
}

.exp-panel-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.exp-panel:hover .exp-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: rotate(360deg);
}

.exp-text {
    width: 100%;
    overflow: hidden;
}
.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}
.exp-text h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    transition: transform 0.5s ease;
}

.exp-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin: 10px 0 0 0;
    opacity: 0;
    max-height: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
    padding-top: 10px;
}

.exp-panel:hover .exp-text p {
    opacity: 1;
    max-height: 100px;
}

/* Responsive Handling for Accordion */
@media (max-width: 991px) {
    .experience-accordion {
        flex-direction: column;
        height: 800px;
    }
    
    .exp-panel:hover {
        flex: 3;
    }
}

/* --- PIXEL PERFECT IMAGE MOCKUP MATCH --- */
.image-mockup-section {
    padding: 20px 0 100px 0;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
}

.mock-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: #ad8b63;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.mock-title {
    font-size: 3rem;
    font-weight: 700;
}

/* --- PIXEL-PERFECT ROOM STYLE MATCH --- */
.room-match-experience-section {
    background: #fff;
    overflow: hidden;
}

.room-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: #ad8b63;
    font-size: 13px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.room-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #000;
}

.room-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.room-match-swiper {
    padding: 60px 0 !important;
    overflow: visible !important;
}

.room-match-slide {
    width: 700px !important; /* Width from image */
    height: 580px !important;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
    opacity: 0.45;
    filter: blur(2px);
    z-index: 1;
}

.swiper-slide-active.room-match-slide {
    transform: scale(1.02);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.room-match-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 50px 50px 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    color: #fff;
    text-align: left;
    transition: all 0.5s ease;
}

.room-slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.room-slide-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 85%;
}

/* Nav Arrows exactly as per image */
.room-match-nav {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255,255,255,0.7) !important;
    border-radius: 50% !important;
    color: #000 !important;
    top: 55% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    transition: all 0.3s ease;
}

.room-match-nav:after {
    font-size: 18px !important;
    font-weight: 900;
}

.room-prev { left: 16% !important; }
.room-next { right: 16% !important; }

.room-match-nav:hover {
    background: #fff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Bottom Right View All Link */
.room-view-link {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.room-view-link:hover {
    color: #ad8b63;
    border-color: #ad8b63;
}

@media (max-width: 1024px) {
    .room-match-slide { width: 90% !important; height: 450px !important; }
    .room-main-title { font-size: 36px; }
    .room-prev { left: 5% !important; }
    .room-next { right: 5% !important; }
}

/* Reference-inspired Overlapping Room Layout */
.luxe-room-row {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Consistent alignment */
}

.room-img-frame {
    width: 60%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px; /* Requested border radius */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.room-img-frame img {
    width: 100%;
    height: 500px; /* Taller height */
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.room-content-card {
    width: 48%;
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 5;
    margin-left: -10%; /* Overlap */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border-radius: 5px; /* Subtle radius for card */
    min-height: 300px; /* Ensure it stays shorter than image */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-row-reverse .room-content-card {
    margin-left: 0;
    margin-right: -10%; /* Overlap for reversed rows */
}

.room-title-luxe {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.room-price-luxe {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.room-desc-luxe {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-book-now {
    background: #947644;
    color: #fff !important;
    padding: 14px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #947644;
    margin-right: 10px;
}

.btn-view-room {
    background: transparent;
    color: #222 !important;
    padding: 14px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.btn-book-now:hover { background: #333; border-color: #333; color: #fff !important; }
.btn-view-room:hover { background: #222; color: #fff !important; }

.room-btns-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Animations Fix */
.reveal-left-custom, 
.reveal-right-custom {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left-custom { transform: translateX(-60px); }
.reveal-right-custom { transform: translateX(60px); }

/* When parent (.revealed) is triggered, show children */
.revealed .reveal-left-custom,
.revealed .reveal-right-custom,
.revealed.reveal-left-custom,
.revealed.reveal-right-custom {
    opacity: 1;
    transform: translateX(0);
}

/* Fail-safe: If JS hasn't loaded or for the first section */
.luxe-room-row:first-child .reveal-left-custom,
.luxe-room-row:first-child .reveal-right-custom {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 991px) {
    .luxe-room-row { flex-direction: column !important; align-items: stretch; margin-bottom: 80px; }
    .room-img-frame { width: 100%; }
    .room-content-card { width: 100%; margin-left: 0 !important; margin-right: 0 !important; margin-top: -50px; padding: 40px 30px; }
    .room-img-frame img { height: 350px; }
    .room-title-luxe { font-size: 2.2rem; }
}

/* Gallery Studio Framed Experience Slider - Floral Animated Version */
.experience-slider-wrap {
    padding: 120px 0;
    background: #b9ab912b; /* Soft cream/botanical background */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Botanical Corner Graphics */
.exp-bot-corner {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.exp-bot-tl { top: -20px; left: -20px; width: 250px; height: 300px;
    animation: expSwayTL 12s ease-in-out infinite; transform-origin: top left; }
.exp-bot-br { bottom: -20px; right: -20px; width: 220px; height: 280px;
    animation: expSwayBR 15s ease-in-out infinite; transform-origin: bottom right; }

@keyframes expSwayTL {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}
@keyframes expSwayBR {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
}

/* Background Particle Animation (Updated to match index) */
.exp-space-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.exp-dot-group {
    position: absolute;
    border-radius: 50%;
    background: #a58c6c33;
}

.edg-1 { width: 3px; height: 3px; animation: edFloat1 40s infinite linear; }
.edg-2 { width: 5px; height: 5px; animation: edFloat2 30s infinite linear; opacity: 0.4; }

@keyframes edFloat1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}
@keyframes edFloat2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(360deg); }
}

.exp-slider-container {
    position: relative;
    z-index: 5;
}

.exp-slider-card {
    padding: 40px 15px 80px;
    outline: none;
}

/* STUDIO GALLERY FRAME (Modern Boutique Style) */
.exp-frame-card {
    position: relative;
    height: 540px;
    background: #fff;
    padding: 15px; 
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.exp-frame-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--accent-gold);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.exp-card-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.exp-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

/* POPPING TITLE BOX (Reference Style) */
.exp-title-box-ref {
    position: absolute;
    bottom: -35px;
    left: 25px;
    right: 25px;
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exp-title-box-ref h4 {
    color: #111;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Hover States */
.exp-slider-card:hover .exp-frame-card {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.exp-slider-card:hover .exp-frame-card::before {
    inset: 5px;
    opacity: 0.3;
}

.exp-slider-card:hover .exp-card-img-wrap img {
    transform: scale(1.1);
}

.exp-slider-card:hover .exp-title-box-ref {
    bottom: -25px;
    border-color: var(--accent-gold);
}

/* Arrow Restyling for Light Theme */
.experience-slider-wrap .slick-arrow {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    z-index: 10;
}

.experience-slider-wrap .slick-arrow:hover {
    background: var(--accent-gold);
    color: #fff;
}

@media (max-width: 767px) {
    .exp-frame-card { height: 420px; }
    .exp-title-box-ref { bottom: -20px; padding: 15px 10px; }
    .exp-title-box-ref h4 { font-size: 1.1rem; }
    .exp-bot-corner { display: none; }
}
