/* -----------------------------------------------------------
   1. CORE THEME & VARIABLES
----------------------------------------------------------- */
:root {
    /* Palette: Deep Walnut & Warm Amber */
    --wood-dark: #2E1A16;      /* Deepest Walnut */
    --wood-medium: #4E342E;    /* Medium Oak */
    --wood-light: #8D6E63;     /* Light Wood accent */
    
    --amber-main: #FFB300;     /* Primary Accent */
    --amber-glow: #FFCA28;     /* Lighter Amber for hover */
    
    --bg-cream: #FFF8E7;       /* Parchment/Cream Background */
    --bg-white: #FFFFFF;
    
    --text-dark: #2E1A16;
    --text-muted: #5D4037;

    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(46, 26, 22, 0.08);
    --shadow-md: 0 15px 35px rgba(46, 26, 22, 0.12);
    --shadow-lg: 0 25px 50px rgba(46, 26, 22, 0.25);
    
    /* Animations */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1); /* smooth pop */
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* -----------------------------------------------------------
   2. RESET & BASE TYPOGRAPHY
----------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--wood-dark);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--wood-light); border-radius: 3px; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Typography Helpers */
.font-serif { font-family: 'Playfair Display', serif; }
.font-sans { font-family: 'Lato', sans-serif; }
.text-center { text-align: center; }

/* -----------------------------------------------------------
   3. UTILITIES & ANIMATIONS
----------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; }

/* Animation Helpers */
.hidden { opacity: 0; filter: blur(5px); transform: translateY(30px); transition: all 1s var(--ease-out); }
.show { opacity: 1; filter: blur(0); transform: translateY(0); }

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpFade { from { opacity: 0; transform: translate(-50%, 50px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
@keyframes shine { 100% { left: 200%; } }

.card-enter { opacity: 0; animation: fadeUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.skeleton-loader {
    background: linear-gradient(to right, #f1f5f9 4%, #e2e8f0 25%, #f1f5f9 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* -----------------------------------------------------------
   4. TAILWIND & THEME MAPPINGS
----------------------------------------------------------- */
.bg-dark-900 { background-color: var(--wood-dark) !important; }
.text-dark-900 { color: var(--wood-dark) !important; }

.text-gold-400, .text-gold-500, .text-gold { color: var(--amber-main) !important; }
.bg-gold-500 { background-color: var(--amber-main) !important; }
.bg-gold-400 { background-color: var(--amber-glow) !important; }
.bg-gold-50 { background-color: rgba(255, 179, 0, 0.1) !important; }
.border-gold-500 { border-color: var(--amber-main) !important; }

.hover\:bg-gold-500:hover { background-color: var(--amber-main) !important; color: var(--wood-dark) !important; }
.hover\:text-gold-500:hover { color: var(--amber-main) !important; }

/* -----------------------------------------------------------
   5. UI COMPONENTS (Buttons, Inputs, Common)
----------------------------------------------------------- */
/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease;
    border-radius: 4px;
}

.btn-gold {
    border-color: var(--amber-main);
    color: var(--wood-dark);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--amber-main);
    z-index: -1;
    transition: transform 0.4s var(--ease-in-out);
    transform-origin: right;
}
.btn-gold:hover { color: #000; } 
.btn-gold:hover::before { transform: scaleX(0); transform-origin: left; }

.btn-outline {
    border-color: #fff;
    color: #fff;
}
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: #fff;
    z-index: -1;
    transition: width 0.4s var(--ease-in-out);
}
.btn-outline:hover { color: #000; }
.btn-outline:hover::before { width: 100%; }

.btn-dark {
    background: var(--wood-dark);
    color: var(--amber-main);
    border-color: var(--wood-dark);
}
.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 26, 22, 0.3);
    color: #fff;
}

/* Section Titles */
.section-header {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}
.subtitle {
    display: block;
    color: var(--amber-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.section-title {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: var(--amber-main);
    margin: 15px auto 0;
    transition: width 0.8s var(--ease-out);
}
.section-header.show .section-title::after { width: 80px; }

/* Forms */
input[type=range]::-webkit-slider-thumb { background: var(--amber-main) !important; }
.form-group { margin-bottom: 25px; position: relative; }
.form-control {
    width: 100%; padding: 15px 10px; border: none; border-bottom: 2px solid #ddd;
    background: transparent; font-family: 'Lato', sans-serif; font-size: 1rem; transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-bottom-color: var(--amber-main); }
.form-label { position: absolute; top: 15px; left: 10px; color: #999; pointer-events: none; transition: 0.3s ease; }
.form-control:focus ~ .form-label, .form-control:valid ~ .form-label { top: -10px; font-size: 0.8rem; color: var(--amber-main); font-weight: 700; }

/* -----------------------------------------------------------
   6. NAVBAR & HEADER
----------------------------------------------------------- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}
header.scrolled {
    padding: 15px 0;
    background: rgba(46, 26, 22, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    text-decoration: none;
    padding: 0;
}
.logo-img {
    margin-left: 15px;
    height: 77px;
    width: auto;
    object-fit: contain;
    display: block;
}
.brand-text {
    font-family: serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.025em;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-family: playfair display, serif;
}
.nav-links a.active, .nav-links a:hover { color: var(--amber-main); }
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--amber-main);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }
.hamburger { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* -----------------------------------------------------------
   7. HERO SECTIONS
----------------------------------------------------------- */
/* Main Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(46, 26, 22, 0.75), rgba(46, 26, 22, 0.6)),
                url('https://d27sv2b2vdznvn.cloudfront.net/cbefe1f7-a3fe-44b4-b2ab-6a723710d823/IMG_7773.jpg') center/cover;
    z-index: -2;
    animation: kenBurns 20s infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}
.hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.hero h1 span { color: var(--amber-main); font-style: italic; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; color: rgba(255,255,255,0.95); }
.hero-btns { display: flex; gap: 20px; justify-content: center; }

/* Hero Slider Variant */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; 
    transform: scale(1.1); 
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-content span { color: var(--amber-glow); }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; }

/* Sub-page Hero */
.sub-hero {
    height: 50vh;
    background: linear-gradient(rgba(46, 26, 22, 0.85), rgba(46, 26, 22, 0.8)),
                url('https://images.unsplash.com/photo-1554995207-c18c203602cb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

/* -----------------------------------------------------------
   8. MAIN CONTENT SECTIONS
----------------------------------------------------------- */

/* --- ABOUT SECTION --- */
.about { padding-top: 140px; } 
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.02); }
/* Decorative Box */
.about-img::before {
    content: ''; position: absolute; top: -20px; left: -20px;
    width: 50%; height: 80%;
    border: 2px solid var(--amber-main);
    z-index: 1; transition: all 0.5s ease;
}
.about-img:hover::before { top: -30px; left: -30px; }
.about-img::after {
    content: ''; position: absolute; bottom: -30px; right: -30px;
    width: 70%; height: 70%;
    background: var(--wood-dark);
    z-index: 1;
}
.stat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    margin-top: 40px; border-top: 1px solid rgba(46, 26, 22, 0.1);
    padding-top: 30px;
}
.stat-item h3 { font-size: 2.5rem; color: var(--wood-dark); margin-bottom: 5px; }
.stat-item p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--amber-main); font-weight: 700; }

/* --- PROCESS STEPS --- */
.process-step { 
    text-align: center; 
    padding: 40px 25px; 
    position: relative;
    border: 1px solid rgba(46, 26, 22, 0.1); 
    border-radius: 12px;
    background: #fff; 
    transition: all 0.3s ease;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--amber-main); 
}
.step-icon {
    width: 80px; height: 80px; background: #fff; border: 2px solid var(--amber-main);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 2rem; color: var(--wood-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: 0.3s;
}
.process-step:hover .step-icon { background: var(--amber-main); color: #fff; transform: scale(1.1); }
.step-number { 
    position: absolute; top: 0; right: 0; background: var(--wood-dark); color: #fff;
    width: 25px; height: 25px; border-radius: 50%; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center; font-weight: 700; 
}

/* --- AMENITIES --- */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }
.amenity-card {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px; border-radius: 12px; transition: all 0.4s ease;
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    align-items: flex-start; text-align: left;
}
.amenity-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
    background: var(--amber-main); transition: height 0.4s ease;
}
.amenity-card:hover {
    transform: translateY(-8px); background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 179, 0, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.amenity-card:hover::before { height: 100%; }
.icon-box {
    width: 60px; height: 60px; background: rgba(255, 179, 0, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s ease;
}
.amenity-card i { font-size: 1.5rem; color: var(--amber-main); transition: color 0.4s ease; }
.amenity-card:hover .icon-box { background: var(--amber-main); transform: rotate(10deg); }
.amenity-card:hover i { color: var(--wood-dark); }
.amenity-card h4 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
.amenity-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.6; }

/* --- FEATURED ROOMS (Visual Match) --- */

.featured-rooms-section {
    background-color: #4E342E; /* Dark Slate Blue background */
    padding: 5rem 1.5rem;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}

/* --- Section Headers --- */
.section-label {
    color: #D4AF37; /* Gold */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    font-weight: 400;
}

.view-all-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #D4AF37;
}
/* Horizontal Scroll Layout */

/* --- Horizontal Scroll Layout --- */
.rooms-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px 40px 5px; /* Bottom padding for hover effects */
    scroll-snap-type: x mandatory;
    
    /* Hide Scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.rooms-scroll-container::-webkit-scrollbar { display: none; }

/* --- Card Styles --- */
.room-card {
    /* Fixed Dimensions for "Even Size" */
    flex: 0 0 320px;
    height: 480px;
    
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    background: #000;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .room-card {
        flex: 0 0 380px; /* Wider on desktop */
        height: 520px;   /* Taller on desktop */
    }
}

.room-card:hover {
    transform: translateY(-5px);
}

/* Background Image */
.room-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-bg-img {
    transform: scale(1.05);
}

/* Dark Gradient Overlay (Bottom Up) */
.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; /* Only covers bottom half */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.5) 60%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* --- Tags --- */
.room-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    margin-bottom: 12px;
    border-radius: 2px;
}

/* Specific Tag Colors */
.tag-gold {
    background-color: #D4AF37; /* Gold Bg */
    color: #1a1a1a;            /* Dark Text */
}

.tag-white {
    background-color: #ffffff;
    color: #1a1a1a;
}

.tag-blue {
    background-color: #3B82F6; /* Blue */
    color: #ffffff;
}

/* --- Typography --- */
.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 400;
}

.room-subtitle {
    font-size: 0.9rem;
    color: #d1d5db; /* Light gray */
    margin: 0 0 20px 0;
    font-weight: 300;
}

/* --- Footer (Price & Arrow) --- */
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
}

.room-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.room-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 4px;
}

.room-arrow-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.room-arrow-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

/* --- TEXTURED CARD (Premium Variant) --- */

/* ============================================= */
/* PROPERTY DETAILS PAGE STYLING */
/* ============================================= */

        /* rooms Section */

         /* --- TEXTURE & GEOMETRY STYLES --- */
        .bg-geometric {
            background-color: #f8fafc;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 12.878 57.986 10 50 10c-7.644 0-16.641 2.512-25.371 7.072a146.995 146.995 0 0 0-8.233 2.928h4.788zM50 5c-7.986 0-15.888 2.878-23.829 6.052C16.51 15.195 9.939 18 0 18v2c9.939 0 16.51-2.805 26.171-6.948C34.112 9.878 42.014 7 50 7c7.986 0 15.888 2.878 23.829 6.052C83.49 17.195 90.061 20 100 20v-2c-9.939 0-16.51-2.805-26.171-6.948C65.888 7.878 57.986 5 50 5zm0-5C42.014 0 34.112 2.878 26.171 6.052 16.51 10.195 9.939 13 0 13v2c9.939 0 16.51-2.805 26.171-6.948C34.112 4.878 42.014 2 50 2c7.986 0 15.888 2.878 23.829 6.052C83.49 12.195 90.061 15 100 15v-2c-9.939 0-16.51-2.805-26.171-6.948C65.888 2.878 57.986 0 50 0z' fill='%23D4AF37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .premium-textured-card {
            background-color: #fdfbf7;
            background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
            border: 1px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .premium-textured-card::before {
            content: "";
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .card-watermark {
            position: absolute;
            bottom: -30px; right: -30px; width: 180px; height: 180px;
            background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 20 L180 80 L180 180 L20 180 L20 80 Z' fill='none' stroke='%23D4AF37' stroke-width='2' opacity='0.1'/%3E%3Cpath d='M100 40 L160 85 L160 160 L40 160 L40 85 Z' fill='none' stroke='%23D4AF37' stroke-width='1.5' opacity='0.15'/%3E%3Cpath d='M100 60 L140 90 L140 140 L60 140 L60 90 Z' fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.2'/%3E%3Cline x1='100' y1='20' x2='100' y2='180' stroke='%23D4AF37' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-size: contain;
            opacity: 0.6; transform: rotate(-10deg); pointer-events: none; z-index: 0;
            transition: transform 0.5s ease, opacity 0.3s ease;
        }
        
        .premium-textured-card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 0 15px rgba(212, 175, 55, 0.15);
            border-color: #D4AF37;
        }
        
        .premium-textured-card:hover .card-watermark {
            transform: rotate(0deg) scale(1.1);
            opacity: 0.8;
        }

        .premium-textured-card .property-image { transition: transform 0.8s ease; }
        .premium-textured-card:hover .property-image { transform: scale(1.1); }

        .glass-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        
        input[type=range]::-webkit-slider-thumb { background: #D4AF37; }
        
        .shine-effect { position: relative; overflow: hidden; }
        .shine-effect::after {
            content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg); z-index: 20; pointer-events: none;
        }
        .premium-textured-card:hover .shine-effect::after { animation: shine 0.85s ease-in-out; }
        @keyframes shine { 100% { left: 200%; } }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .card-enter { opacity: 0; animation: fadeUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

        .skeleton-loader {
            animation: shimmer 2s infinite linear;
            background: linear-gradient(to right, #f1f5f9 4%, #e2e8f0 25%, #f1f5f9 36%);
            background-size: 1000px 100%;
        }
        @keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }

        #filters-sidebar { transition: all 0.3s ease-in-out; }
        #main-content { transition: width 0.3s ease-in-out; }
        
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }


/* Smooth page reveal */
#property-detail-container.active {
    opacity: 1 !important;
}

/* Hero image slight zoom effect */
#page-image {
    transition: transform 0.8s ease;
}

#page-image:hover {
    transform: scale(1.03);
}

/* Gradient overlay enhancement */
.bg-gradient-to-t {
    backdrop-filter: blur(1px);
}

/* Badge glow */
#page-badge {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Overview Info Cards Hover */
.bg-white.rounded-xl:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

/* Amenity items styling */
#page-amenities div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: 0.2s ease;
}

#page-amenities div i {
    color: #D4AF37;
}

#page-amenities div:hover {
    transform: translateX(5px);
}

/* Sticky sidebar smooth animation */
.sticky {
    transition: transform 0.3s ease;
}

/* Pricing emphasis */
#page-price {
    letter-spacing: -1px;
}

/* Button animations */
#page-visit-btn {
    transition: all 0.3s ease;
}

#page-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#page-enquire-btn {
    transition: all 0.3s ease;
}

#page-enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

/* Modal animation polish */
#schedule-modal,
#enquire-modal,
#success-modal {
    backdrop-filter: blur(5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {

    #page-name {
        font-size: 2rem;
    }

    #page-price {
        font-size: 2rem;
    }

    .sticky {
        position: static;
    }

}
/* --- WHY CHOOSE US --- */
.why-choose-card {
    background: transparent; border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px; text-align: center; border-radius: 8px;
    transition: all 0.4s ease; position: relative; overflow: hidden; z-index: 1;
}
.why-choose-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
    background: #fff; z-index: -1; transition: height 0.4s ease;
}
.why-choose-card:hover {
    border-color: #fff; transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.why-choose-card:hover::after { height: 100%; }
.why-choose-card .wc-icon {
    font-size: 2.5rem; color: var(--amber-main); margin-bottom: 25px;
    display: inline-block; transition: 0.4s;
}
.why-choose-card:hover .wc-icon { color: var(--wood-dark); transform: scale(1.1); }
.why-choose-card h4 {
    color: #fff; font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; transition: 0.4s;
}
.why-choose-card:hover h4 { color: var(--wood-dark); }
.why-choose-card p {
    color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.6; transition: 0.4s;
}
.why-choose-card:hover p { color: #555; }
/* Split Layout */
.why-choose-layout {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.why-choose-info { position: sticky; top: 120px; }
.why-choose-info .section-title { text-align: left; }
.why-choose-info .section-title::after { margin: 15px 0 0 0; }
.why-choose-grid-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (min-width: 993px) {
    .why-choose-grid-flow .why-choose-card:nth-child(even) { margin-top: 60px; }
}

/* --- PROMISE / TRUST SECTION --- */
.promise-section {
    background: #FFF8E7; position: relative; overflow: hidden; padding: 80px 0;
}
.promise-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px;
}
.promise-card {
    background: #fff; padding: 40px 25px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(46, 26, 22, 0.05); text-align: center;
    position: relative; overflow: hidden; transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column;
    justify-content: center; min-height: 180px;
}
.promise-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(46, 26, 22, 0.1);
    border-color: var(--amber-main);
}
.promise-card h3 {
    font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; line-height: 1;
    color: var(--wood-dark); font-family: 'Playfair Display', serif; position: relative; z-index: 2;
}
.promise-card p {
    font-size: 1rem; color: #555; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; margin: 0; position: relative; z-index: 2;
}
.promise-card .icon-bg {
    position: absolute; bottom: -15px; right: -15px; font-size: 7rem;
    color: var(--amber-main); opacity: 0.08; transform: rotate(-15deg);
    transition: 0.5s ease; z-index: 1;
}
.promise-card:hover .icon-bg { transform: rotate(0deg) scale(1.1); opacity: 0.15; bottom: 0; }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; height: 300px; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 615px; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(46, 26, 22, 0.4); display: flex; justify-content: center;
    align-items: center; opacity: 0; transition: all 0.4s ease;
}
.gallery-overlay i { 
    font-size: 2rem; color: #fff; transform: scale(0); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* --- MARQUEE BANNER --- */
.marquee-container {
    background-color: var(--wood-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; padding: 1.5rem 0; position: relative; z-index: 5;
}
.marquee-track {
    display: flex; align-items: center; white-space: nowrap;
    width: fit-content; animation: marqueeScroll 30s linear infinite;
}
.marquee-container:hover .marquee-track { animation-play-state: paused; }
.marquee-gold {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.35rem; color: var(--amber-main);
}
.marquee-white {
    font-family: 'Lato', sans-serif; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: #ffffff; font-weight: 700;
}
.marquee-sep { margin: 0 2rem; color: rgba(255, 255, 255, 0.3); font-size: 1rem; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CONTACT SECTION (Enhanced) --- */
.contact-wrapper { 
    display: grid; grid-template-columns: 1fr 1.5fr; 
    box-shadow: var(--shadow-lg); background: #fff; 
    border-radius: 12px; overflow: hidden;
}
.contact-info { 
    background: var(--wood-dark); padding: 60px 40px; color: #fff; 
    position: relative; overflow: hidden; 
}
.contact-info::after {
    content: ''; position: absolute; top: -50%; left: -50%; 
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}
.contact-item {
    display: flex; align-items: flex-start; margin-bottom: 35px;
    position: relative; z-index: 1;
}
.contact-item i {
    font-size: 1.4rem; color: var(--amber-main); margin-right: 20px;
    margin-top: 5px; width: 30px; text-align: center;
}
.contact-item h5 {
    color: #fff; margin: 0 0 5px 0; font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}
.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0;
    line-height: 1.5; text-decoration: none; transition: 0.3s;
}
.contact-item a:hover { color: var(--amber-main); }
.contact-socials { margin-top: 50px; position: relative; z-index: 1; }
.contact-socials h5 { color: #fff; margin-bottom: 20px; font-size: 1rem; }
.contact-socials a {
    display: inline-flex; width: 40px; height: 40px;
    background: rgba(255,255,255,0.1); color: #fff;
    justify-content: center; align-items: center; border-radius: 50%;
    margin-right: 10px; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-socials a:hover {
    background: var(--amber-main); color: var(--wood-dark);
    transform: translateY(-3px); border-color: var(--amber-main);
}
.contact-form { padding: 60px; }

/* Home Contact Form */
.home-contact-section { background: var(--wood-dark); color: #fff; }
.home-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hc-text h2 { color: #fff; margin-bottom: 15px; }
.hc-text p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.hc-form { background: #fff; padding: 40px; border-radius: 12px; color: var(--text-dark); }

/* --- FILTERS DASHBOARD --- */
.filter-bar {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; padding: 15px 20px; border-radius: 8px;
    margin-bottom: 30px; box-shadow: var(--shadow-sm); flex-wrap: wrap; gap: 15px;
}
.filter-dashboard {
    background: #fff; border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); padding: 20px 30px;
    margin-bottom: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 30px;
}
.filter-header { border-right: 1px solid #eee; padding-right: 20px; min-width: 120px; }
.filter-header h3 { font-size: 1.5rem; margin: 0; color: var(--wood-dark); font-family: 'Playfair Display', serif; }
.reset-link {
    font-size: 0.8rem; color: #666; text-transform: uppercase;
    cursor: pointer; font-weight: 700; transition: 0.3s;
}
.reset-link:hover { color: var(--amber-main); }
.filter-body { display: flex; flex: 1; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 25px; }
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-group label {
    font-size: 0.75rem; color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.price-group { min-width: 200px; }
.range-slider input[type=range] {
    appearance: none; -webkit-appearance: none; width: 100%; height: 6px;
    background: #e0e0e0; border-radius: 5px; outline: none;
}
.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: #2E8B57; cursor: pointer; transition: 0.2s;
}
.radio-options { display: flex; gap: 15px; }
.radio-container {
    display: flex; align-items: center; cursor: pointer;
    font-size: 0.9rem; color: var(--text-dark);
}
.radio-container input { display: none; }
.checkmark {
    width: 16px; height: 16px; border: 2px solid #ccc;
    border-radius: 50%; margin-right: 8px; position: relative;
}
.radio-container input:checked ~ .checkmark { border-color: #2E8B57; }
.radio-container input:checked ~ .checkmark::after {
    content: ''; position: absolute; top: 3px; left: 3px; width: 6px; height: 6px;
    border-radius: 50%; background: #2E8B57;
}
.type-buttons { display: flex; gap: 10px; }
.type-btn {
    padding: 6px 15px; border: 1px solid #ddd; background: #fff;
    border-radius: 20px; font-size: 0.85rem; cursor: pointer;
    transition: 0.3s; color: #666;
}
.type-btn:hover { border-color: #2E8B57; color: #2E8B57; }
.type-btn.active { background: #2E8B57; color: #fff; border-color: #2E8B57; }

/* --- FAQ SECTION --- */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.faq-question {
    padding: 20px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 700; color: var(--wood-dark);
    background: #fff; border-radius: 8px; transition: 0.3s;
}
.faq-question:hover { color: var(--amber-main); background: #fafafa; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    padding: 0 20px; color: #666; line-height: 1.6;
}
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
.faq-toggle i { transition: 0.3s; }
.faq-item.active .faq-toggle i { transform: rotate(180deg); }

/* --- MODALS --- */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(46, 26, 22, 0.98); justify-content: center; align-items: center; animation: fadeIn 0.3s;
}
.modal-content {
    max-width: 90%; max-height: 90vh; border: 5px solid #fff;
    box-shadow: 0 0 50px rgba(0,0,0,0.5); animation: zoomIn 0.3s;
}
.close-modal {
    position: absolute; top: 30px; right: 40px; color: var(--amber-main);
    font-size: 40px; cursor: pointer; transition: 0.3s; z-index: 10;
}
.close-modal:hover { transform: rotate(90deg); color: #fff; }

/* Room Modal */
.room-modal-content {
    width: 950px; max-width: 95%; background: #fff; padding: 0; border: none;
    border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); position: relative;
    border: 1px solid var(--amber-main);
}
.room-modal-grid { display: grid; grid-template-columns: 45% 55%; height: auto; min-height: 500px; max-height: 85vh; }
.room-modal-img { height: 100%; position: relative; overflow: hidden; }
.room-modal-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-modal-info { padding: 40px; overflow-y: auto; position: relative; display: flex; flex-direction: column; }
.room-modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px; margin-bottom: 20px;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-title-group h3 { font-size: 2.2rem; color: var(--wood-dark); margin: 0; line-height: 1; }
.modal-title-group span { font-size: 0.9rem; color: var(--amber-main); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.modal-price-tag {
    background: var(--bg-cream); color: var(--wood-dark); padding: 10px 20px;
    border-radius: 8px; font-weight: 700; font-size: 1.2rem;
    border: 1px solid var(--amber-main); white-space: nowrap;
}
.modal-desc { color: #666; font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
.modal-amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
.amenity-pill {
    display: flex; align-items: center; padding: 12px; background: #FAFAFA;
    border-radius: 8px; border: 1px solid #eee; transition: all 0.3s ease;
}
.amenity-pill:hover { background: var(--bg-cream); border-color: var(--amber-main); transform: translateY(-2px); }
.amenity-pill i { color: var(--amber-main); font-size: 1.2rem; margin-right: 15px; width: 25px; text-align: center; }
.close-room-enhanced {
    position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.9);
    width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; cursor: pointer; z-index: 10; font-size: 24px;
    color: var(--wood-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s;
}
.close-room-enhanced:hover { background: var(--amber-main); color: #fff; transform: rotate(90deg); }

/* -----------------------------------------------------------
   9. FOOTER & FLOATING
----------------------------------------------------------- */
/* Main Footer */
footer { background: #1a100e; color: rgba(255,255,255,0.7); padding: 80px 0 30px; font-size: 0.95rem; }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px;
    margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px;
}
.footer-brand h2 { color: #fff; margin-bottom: 20px; font-size: 1.8rem; }
.footer-brand span { color: var(--amber-main); }
.footer-links h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a:hover { color: var(--amber-main); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 15px; }
.footer-contact i { color: var(--amber-main); margin-top: 5px; }
.newsletter input {
    width: 100%; padding: 12px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 4px; margin-bottom: 10px;
}
.newsletter button {
    width: 100%; padding: 12px; background: var(--amber-main);
    color: var(--wood-dark); border: none; font-weight: 700; border-radius: 4px;
    cursor: pointer; transition: 0.3s;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.social-icons a {
    width: 35px; height: 35px; background: rgba(255,255,255,0.1);
    display: inline-flex; justify-content: center; align-items: center;
    border-radius: 50%; margin-left: 10px; color: #fff; transition: 0.3s;
}
.social-icons a:hover { background: var(--amber-main); color: var(--wood-dark); transform: translateY(-3px); }

/* Floating Contact */
.floating-contact-wrapper {
    position: fixed; bottom: 2rem; right: 2rem;
    display: flex; flex-direction: column-reverse; gap: 10px; z-index: 50; align-items: flex-end;
}
.contact-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 12px rgba(46, 26, 22, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chat-toggle-btn { background: var(--wood-dark); color: var(--amber-main); font-size: 24px; z-index: 52; border: 2px solid var(--amber-main); }
.sub-btn { width: 48px; height: 48px; opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none; color: white; }
.whatsapp-btn { background: #25D366; color: #fff; }
.call-btn { background: var(--amber-main); color: var(--wood-dark); }
.floating-contact-wrapper.active .sub-btn { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-contact-wrapper.active .chat-toggle-btn { transform: rotate(180deg); background: var(--amber-main); color: var(--wood-dark); }
.icon-close { display: none; }
.floating-contact-wrapper.active .icon-open { display: none; }
.floating-contact-wrapper.active .icon-close { display: block; }

/* -----------------------------------------------------------
   10. MEDIA QUERIES (CONSOLIDATED)
----------------------------------------------------------- */
@media (max-width: 992px) {
    /* Filters */
    .filter-dashboard { flex-direction: column; align-items: flex-start; }
    .filter-header { border-right: none; padding-bottom: 15px; border-bottom: 1px solid #eee; width: 100%; margin-bottom: 15px; }
    .filter-body { width: 100%; flex-direction: column; align-items: flex-start; }
    
    /* Why Choose Us */
    .why-choose-layout { grid-template-columns: 1fr; }
    .why-choose-info { position: static; margin-bottom: 40px; text-align: center; }
    .why-choose-info .section-title { text-align: center; }
    .why-choose-info .section-title::after { margin: 15px auto 0; }
    .why-choose-grid-flow { grid-template-columns: 1fr; }
    
    /* Promise Grid */
    .promise-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    /* General Padding */
    .section-padding { padding: 60px 0; }
    
    /* Hero */
    .hero h1 { font-size: 2.8rem; }
    
    /* Grids to Single Column */
    .about-grid, 
    .home-contact-grid,
    .room-modal-grid,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .amenities-grid, .promise-grid { grid-template-columns: 1fr !important; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    /* Misc */
    .room-modal-img { height: 250px; order: -1; }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    /* Navbar Mobile */
    .hamburger { 
        display: block; 
        z-index: 1002; 
        position: relative; 
        cursor: pointer;
    }
    
    .nav-links {
        padding: 10% !important;
        position: fixed; 
        top: 0; 
        right: -100%;
        width: 80%; 
        max-width: 320px; /* Prevents it from being too wide on landscape phones */
        height: 100vh; 
        background: var(--wood-dark);
        flex-direction: column; 
        justify-content: center;
        align-items: center; /* FIX: This centers the links horizontally */
        gap: 30px; /* Tighter gap for better vertical rhythm on small screens */
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother sliding animation */
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active { 
        right: 0; 
    }

    .nav-links a {
        font-size: 1.2rem; /* Larger font size for better touch targets */
        width: 100%;
        text-align: center;
    }
    /* Marquee */
    .marquee-track { animation-duration: 20s; }
    .marquee-gold { font-size: 1.1rem; }
    .marquee-white { font-size: 0.75rem; }
    .marquee-sep { margin: 0 1rem; }

    /* Room Cards Mobile */
    .room-card { flex: 0 0 280px; height: 420px; }

    /* Modals */
    .modal-content { max-width: 95%; width: 95%; margin: 0 10px; }
    .room-modal-content { width: 95%; height: auto; max-height: 85vh; overflow-y: scroll; }
    
    /* Sticky Mobile Footer */
    body { padding-bottom: 70px; } /* Space for sticky footer */
    .mobile-sticky-footer {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        display: flex; z-index: 9999; padding: 10px 20px;
        justify-content: space-between; gap: 15px;
    }
    
    /* Property Detail Page Specifics */
    #page-name { font-size: 2rem; }
    #page-price { font-size: 2rem; }
    .sticky { position: static; }
}



/* -----------------------------------------------------------
   11. aminities toggle and gallery  ----------------------------------------------------------- */

   /* =========================================================
   AMENITIES TOGGLE & PHOTOS TAB
========================================================= */

/* --- Toggle Switch --- */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: -30px auto 40px auto;
    position: relative;
    z-index: 10;
}

.toggle-container {
    background: var(--bg-white);
    border: 2px solid var(--amber-main);
    border-radius: 50px;
    display: inline-flex;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.toggle-btn {
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    color: var(--wood-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Lato', sans-serif;
}

.toggle-btn.active {
    background: var(--amber-main);
    color: #fff;
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 179, 0, 0.1);
}

/* CONFLICT FIX: Your style.css uses '.hidden' for blur animations. 
  Use '.tab-hidden' instead to properly hide the inactive tabs without visual bugs.
*/
.tab-hidden {
    display: none !important;
}

/* --- Simple Gallery Grid --- */
/* Renamed to avoid conflict with your masonry .gallery-grid */
.simple-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.simple-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.simple-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.simple-gallery-item:hover img {
    transform: scale(1.1);
}

.simple-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 26, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}

.simple-gallery-item:hover .simple-gallery-overlay {
    opacity: 1;
}

/* --- Modal Display Override --- */
.modal-show {
    display: flex !important; 
}

.img-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}


/* =========================================================
   PROPERTY DETAILS PAGE STYLES (prop.css)
   Isolated to prevent conflicts with global style.css
========================================================= */

/* Glass effect for the sticky pricing sidebar */
.prop-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 26, 22, 0.08);
    box-shadow: 0 15px 35px rgba(46, 26, 22, 0.08);
}

/* Occupancy Selection Cards 
   (Renamed from .room-card to prevent conflict with featured horizontal scrolling cards) 
*/
.prop-occupancy-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 26, 22, 0.1);
    background: #fff;
    cursor: pointer;
}

.prop-occupancy-card:hover, 
.prop-occupancy-card.active {
    border-color: #FFB300; /* Amber Main */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 26, 22, 0.08);
}

.prop-occupancy-card.active {
    background-color: #fffbf0; /* Light amber tint */
}

.prop-occupancy-card .check-circle {
    transition: all 0.3s;
    opacity: 0.3;
    color: #ccc;
}

.prop-occupancy-card.active .check-circle {
    opacity: 1;
    color: #FFB300;
    transform: scale(1.1);
}

/* Small square stat cards in the Overview section */
.prop-stat-card {
    background: #fff;
    border: 1px solid rgba(46, 26, 22, 0.08);
    transition: all 0.3s ease;
}

.prop-stat-card:hover {
    border-color: #FFB300;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 26, 22, 0.06);
}

/* Staggered load-in animation */
.prop-fade-in-up { 
    animation: propFadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; 
    opacity: 0; 
}

@keyframes propFadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}