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

:root {
    --primary-color: #FEDB04; /* Premium Gold/Yellow */
    --primary-dark: #EAB308;
    --secondary-color: #FFFFFF; /* True White for Headers */
    --bg-white: #0B1120; /* Deep Slate Background */
    --bg-light: #1E293B; /* Surface Color */
    --text-main: #F8FAFC; /* Off-white for main text */
    --text-muted: #94A3B8; /* Muted slate for secondary info */
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-green: #10B981;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --container-max: 1280px;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Dark Mode Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    /* No overflow:hidden here to allow sticky children */
}

/* Header */
header {
    height: var(--header-height);
    background: radial-gradient(circle at 50% 0%, rgba(51, 65, 85, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover > a {
    color: var(--primary-color);
    background: rgba(254, 219, 4, 0.05);
}

.nav-menu li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-top: 2px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 13px;
    justify-content: space-between;
}

.dropdown-menu a:hover {
    background: rgba(254, 219, 4, 0.1) !important;
}

/* Nested Dropdown */
.nested-dropdown {
    position: relative;
}

.nested-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-left: 2px solid var(--primary-color);
    border-radius: 0 12px 12px 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nested-dropdown:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-dropdown:hover > a i {
    transform: rotate(-90deg);
}

/* Book Now Button */
.btn-book-now {
    background: var(--primary-color);
    color: #000 !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(254, 219, 4, 0.2);
}

.btn-book-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 219, 4, 0.4);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.mobile-only {
    display: none;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .nav-container {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #0f172a;
        transition: 0.4s ease;
        overflow-y: auto;
        padding: 20px;
        z-index: 1000;
    }

    .nav-container.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid var(--glass-border);
    }

    .dropdown-menu, .nested-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-left: 2px solid var(--primary-color);
        border-radius: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
    }

    .dropdown.active > .dropdown-menu,
    .nested-dropdown.active > .nested-menu {
        max-height: 1000px;
        padding: 10px 0;
    }

    .nav-menu li.active > a i {
        transform: rotate(180deg);
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .nav-menu .mobile-only a {
        background: var(--primary-color);
        color: #000 !important;
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        border-radius: 12px;
        border: none;
    }
}

/* Main Footer Premium Styles */
.main-footer {
    background: #0f172a; /* Deep elegant dark blue-black */
    color: rgba(15, 23, 42, 0.9);
    padding: 80px 0 0;
    margin-top: 100px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--primary-color);
}

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
    color: #fbbf24; /* Star Gold */
}

.hotel-stars span {
    color: #94a3b8;
    font-size: 13px;
    margin-left: 8px;
    font-weight: 600;
}

.footer-tagline {
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 32px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
}

.main-footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-item div span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item div a {
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item div a:hover {
    color: var(--primary-color);
}

.address-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.address-box i {
    font-size: 20px;
    color: #ef4444; /* Alert Red for Location */
    margin-top: 4px;
}

.address-box p {
    line-height: 1.6;
    color: #cbd5e1;
}

.btn-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.btn-map-link i {
    transition: var(--transition);
}

.btn-map-link:hover i {
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 80px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

.breadcrumbs {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 12px !important;
    height: 420px !important;
    /* Forcefully compact height */
    max-width: 1100px !important;
    /* Forcefully cap width */
    margin: 0 auto 30px !important;
    /* Center it */
    overflow: hidden !important;
    border-radius: 16px !important;
}

@media (max-width: 1024px) {
    .gallery-grid {
        height: 450px !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        height: auto !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .gallery-side {
        display: none !important;
    }
}

.hero-main-image:hover img,
.side-image-item:hover img {
    transform: scale(1.08);
}

.hero-main-image,
.side-image-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* NEW Class-based Hero Gallery Styles */
.hero-gallery-container {
    display: flex;
    gap: 15px;
    height: 540px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 30px;
    overflow: hidden;
    padding: 0 10px;
}

.hero-main-image {
    flex: 0 0 65%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f0f0f0;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-side-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.side-image-item {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    background: #e0e0e0;
    position: relative;
}

.side-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-trigger-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #FFDB04;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 50;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-trigger-icon:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.gallery-trigger-icon img {
    width: 24px !important;
    height: 24px !important;
    filter: brightness(0);
}

.property-header {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.description-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-title h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.property-location {
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-location i {
    color: var(--primary-dark);
}

.property-rating {
    background: var(--accent-green);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); /* Glow */
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 80px;
    align-items: start;
    /* Critical for position: sticky to work */
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--primary-color); /* Title Glow */
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.amenity-item i {
    font-size: 28px;
    color: var(--primary-color) !important; /* Icons should pop */
}

.amenity-item span {
    font-size: 13px;
    font-weight: 600;
}

/* Section Theming - Dark Mode Glassmorphism */
.amenities, 
.rooms-section, 
.highlights, 
.location-section, 
.info-section, 
.policies-section, 
.reviews {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    padding: 48px 32px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.room-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

/* Shine Effect for Room Cards */
.room-card::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.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.room-card:hover::after {
    left: 150%;
}

.review-card {
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

/* Remove old multi-colored icon classes if they exist in index.html, 
   we handle it via global selector above now */

/* Force Sticky Sidebar */
.booking-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
    height: fit-content !important;
    z-index: 100 !important;
    display: block !important;
}

/* Ensure ALL parents allow sticky behavior */
main.container,
.main-layout,
.left-content {
    overflow: visible !important;
    contain: none !important;
}

.booking-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-strong);
}

.price-row {
    margin-bottom: 32px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.btn-book-large {
    width: 100%;
    background: var(--primary-color);
    padding: 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 18px;
    color: #000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(254, 219, 4, 0.3);
}

.btn-book-large:hover {
    rgba(255, 255, 255, 0.05);
    color: #000;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Pulsing Shine Animation for Main CTA */
@keyframes pulse-shine {
    0% { box-shadow: 0 0 0 0 rgba(254, 219, 4, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(254, 219, 4, 0); }
    100% { box-shadow: 0 0 0 0 rgba(254, 219, 4, 0); }
}

.btn-book-large {
    animation: pulse-shine 2s infinite;
}

/* Mobile Booking Bar */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: transparent;
    padding: 0;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-btn-book {
    background: var(--primary-color);
    color: #000;
    width: 100%;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(254, 219, 4, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        display: none;
    }

    .mobile-booking-bar {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Fixed Hero Gallery for Mobile - ONLY Main Image */
    .hero-gallery-container {
        display: block !important;
        /* Stack or just show one */
        height: auto !important;
        padding: 0 10px !important;
    }

    .hero-main-image {
        flex: none !important;
        width: 100% !important;
        height: 300px !important;
        /* Fixed height for mobile */
        border-radius: 15px !important;
    }

    .hero-side-images {
        display: none !important;
        /* COMPLETELY REMOVE side images on mobile */
    }

    .gallery-grid {
        height: auto;
        grid-template-columns: 1fr;
        width: 100% !important;
        margin: 0;
    }

    .main-layout {
        display: block !important;
        width: 100% !important;
        margin-top: 0 !important; 
    }

    .hero {
        padding-bottom: 0 !important; 
    }

    section.description {
        margin-top: 0 !important; /* Only targeting description section */
        padding-top: 2px !important; /* Very tiny space as requested */
    }

    .property-header {
        flex-direction: row !important;
        /* Button back to the side */
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-top: 12px !important;
    }

    .property-title h1 {
        font-size: 22px !important;
        /* Slightly smaller for side-by-side fit */
        margin-bottom: 2px !important;
    }

    .property-location {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-top: 2px !important;
        color: var(--text-muted) !important;
    }

    .property-rating {
        padding: 5px 10px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }

    .content-area {
        width: 100% !important;
    }

    section {
        width: 100% !important;
        margin: 32px 0 !important;
        padding: 24px 16px !important;
        box-sizing: border-box;
    }

    .room-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .room-img-container {
        width: 100% !important;
        height: 230px !important; /* Forces all images to the same height on mobile */
        min-height: 230px !important;
        overflow: hidden;
    }

    .timings-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        /* Force 3 columns on small screens */
        gap: 12px;
        padding: 20px 10px;
    }

    .timing-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timing-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .timing-text div:first-child {
        font-size: 10px;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
        gap: 8px !important;
    }

    .amenity-item {
        padding: 12px 6px !important;
        gap: 6px !important;
    }

    .amenity-item i {
        font-size: 20px !important;
    }

    .amenity-item span {
        font-size: 11px !important;
    }

    #google-reviews-container {
        grid-template-columns: 1fr !important;
        /* Stack reviews on mobile */
        gap: 16px !important;
    }

    .review-card {
        padding: 16px 10px !important;
    }

    .review-card div[style*="height: 48px"] {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
    }

    .review-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .review-card div[style*="font-weight: 700"] {
        font-size: 11px !important;
    }

    .review-card .fa-google {
        font-size: 14px !important;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .highlight-card {
        padding: 20px 16px !important;
    }

    .highlight-card h3 {
        font-size: 16px !important;
    }

    .highlight-card p {
        font-size: 12px !important;
    }

    .highlight-card div[style*="width:54px"] {
        width: 40px !important;
        height: 40px !important;
    }

    .highlight-card i {
        font-size: 18px !important;
    }

    .nav-links {
        display: none;
    }

    header {
        height: 70px;
    }

    .logo img {
        height: 36px;
    }

    .room-card {
        grid-template-columns: 1fr !important;
    }

    .room-img {
        height: 200px;
    }

    .main-layout {
        gap: 32px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* House Rules Grid */
.rules-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.rule-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rule-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.rule-value {
    font-size: 16px;
    font-weight: 700;
}

/* Room Card & Carousel Styles */
.room-card {
    display: flex; 
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(30, 41, 59, 0.4);
    transition: var(--transition);
    margin-bottom: 24px;
}

.room-img-container {
    width: 350px; /* Wider for better landscape view */
    height: 300px; /* Taller to match right-side content better */
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.room-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    background: #000;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    cursor: zoom-in;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.room-gallery-trigger {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.room-gallery-trigger:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Ensure images are also clickable */
.carousel-track img {
    cursor: zoom-in;
}

.room-gallery-trigger i {
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

/* Lightbox Animation */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Room Details Enhancements */
.room-amenities-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.amenity-tag {
    font-size: 11px;
    padding: 6px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.amenity-tag:hover {
    border-color: var(--primary-color);
    color: var(--secondary-color);
    background: var(--bg-white);
}

.amenity-tag i {
    color: var(--primary-color);
}

.room-price-info {
    text-align: right;
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-deal {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-taxes {
    font-size: 11px;
    color: var(--text-muted);
}

/* Coupon & Login Modal Styles */
.coupon-unlock-container {
    margin-top: 12px;
}

.coupon-locked {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px dashed var(--primary-dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 219, 4, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(254, 219, 4, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 219, 4, 0);
    }
}

.coupon-locked:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.coupon-unlocked {
    background: #ecfdf5;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12px;
}

.coupon-code {
    background: var(--accent-green);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--bg-white);
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    /* Prevents card from going out of screen */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* To handle internal scroll for room details */
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(3, 209, 209, 0.1);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.phone-input-wrapper span {
    padding: 0 16px;
    background: var(--bg-light);
    border-right: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
}

.phone-input-wrapper input {
    border: none;
    height: 48px;
}

.error-msg {
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.btn-submit-login {
    background: var(--secondary-color);
    color: white;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-submit-login:hover {
    background: #000;
    transform: translateY(-2px);
}

.modal-footer-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 24px;
}

.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header .chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion.open .accordion-header {
    background: var(--bg-light);
}

.accordion.open .accordion-header .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-white);
}

.accordion.open .accordion-content {
    max-height: 2000px;
    transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
}

.accordion-body {
    padding: 32px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Timings Grid in Accordion */
.timings-banner {
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    cursor: pointer;
}

.timings-banner h3 {
    font-size: 18px;
    font-weight: 800;
}

.timings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for desktop to reduce gaps */
    gap: 32px;
    padding: 40px 32px;
}

.timing-item {
    display: flex;
    flex-direction: row;
    /* Horizontal for desktop space-filling */
    align-items: center;
    gap: 16px;
}

.timing-icon {
    width: 48px;
    height: 48px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4B5563;
}

.timing-text div:first-child {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.timing-text div:last-child {
    font-weight: 700;
    font-size: 14px;
}

/* Location Layout */
.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.map-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 400px;
    position: relative;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.open-maps-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #4285F4;
    transition: var(--transition);
    z-index: 10;
}

.open-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .location-inner {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 300px;
    }
}

/* UI Enhancements */
.copy-coupon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--accent-green);
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
    margin-left: 8px;
}

.copy-coupon-btn:hover {
    background: var(--accent-green);
    color: white;
}

.or-divider {
    text-align: center;
    position: relative;
    margin-top: 20px;
    margin-bottom: 24px;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.or-divider span {
    position: relative;
    background: var(--bg-white);
    padding: 0 16px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.modal-step {
    transition: opacity 0.3s ease;
}

/* User preview in modal */
.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color);
}

.user-email {
    font-size: 12px;
    color: var(--text-muted);
}

/* Header User Profile & Dropdown */
#header-user-area {
    position: relative;
    display: flex;
    align-items: center;
}

.user-profile-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.user-profile-icon:hover {
    border-color: var(--secondary-color);
}

.user-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-strong);
    padding: 12px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: fadeIn 0.2s ease;
}

.user-dropdown.active {
    display: flex;
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-dropdown-info .user-name {
    font-size: 14px;
    font-weight: 700;
}

.user-dropdown-info .user-email {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.user-dropdown-item:hover {
    background: var(--bg-light);
    color: #ef4444;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Room Card Enhancement Styles */
.check-reviews-link {
    text-decoration: none;
    transition: var(--transition);
}

.review-badge-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    rgba(255, 255, 255, 0.05)9E6;
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #FFE58F;
    color: #856404;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

/* Lightbox Image Animation */
.modal-overlay.active #lightbox-img {
    transform: scale(1) !important;
}

.lightbox-close:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.review-badge-highlight i {
    color: #FBBC05 !important;
}

.check-reviews-link:hover .review-badge-highlight {
    background: #FFE58F;
    transform: translateX(5px);
}

.btn-book-premium {
    background: linear-gradient(135deg, #FFCE00 0%, #FF9500 100%);
    color: var(--secondary-color);
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(255, 149, 0, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-book-premium:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 149, 0, 0.4);
    background: linear-gradient(135deg, #FFD633 0%, #FFAA33 100%);
}

.btn-book-premium:active {
    transform: translateY(0) scale(0.98);
}


/* Landscape Room Card Highlights */
.landscape-card {
    max-width: 1000px;
    margin: 0 auto;
}

.room-img-container-landscape {
    overflow: hidden;
}

.room-img-container-landscape:hover img {
    transform: scale(1.05);
}

.room-img-container-landscape img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-preview-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.landscape-amenities-grid .amenity-tag {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--glass-border);
    padding: 8px 12px;
    color: #475569;
}

/* Full Gallery Modal */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 4000;
    overflow-y: auto;
}

.gallery-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.gallery-modal-card {
    background: rgba(255, 255, 255, 0.05);
    width: 95%;
    max-width: 1000px;
    height: 85vh; /* Safe height for mobile browser bars */
    max-height: 800px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@media (max-width: 768px) {
    .gallery-modal-card {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.gallery-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
}

.gallery-modal-close {
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.gallery-category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-tab-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-img-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-img-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Split Layout Room Card */
.split-layout-card {
    max-width: 1000px;
    margin: 0 auto;
}

.room-img-wrapper {
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-badge-simple {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(2px);
}

.room-top-right-info {
    rgba(255, 255, 255, 0.05);
}

.price-section-box {
    padding: 16px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .room-card-top {
        grid-template-columns: 1fr !important;
    }

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

    .room-card-bottom div {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}


/* Room Details Modal */
.room-details-card {
    max-width: 800px;
    padding: 0;
}

.room-details-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.details-section h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.details-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.details-section ul li {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-section ul li i {
    color: #22c55e;
    font-size: 10px;
}

.view-details-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-details-btn:hover {
    background: var(--secondary-color);
    color: white;
}

@media (max-width: 600px) {
    .room-details-body {
        grid-template-columns: 1fr;
    }
}


/* Final Modal Polish to prevent cutting */
.room-details-card {
    max-width: 850px !important;
    max-height: 95vh !important;
}

.room-details-card .modal-header {
    padding: 32px 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.room-details-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 40px 40px;
}

.details-section {
    padding-top: 20px;
}

.modal-header {
    flex-shrink: 0;
    /* Prevents header from shrinking */
}

.room-details-footer {
    flex-shrink: 0;
    /* Prevents footer from shrinking */
}

/* Mobile Optimization for Modals */
@media (max-width: 600px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-card {
        padding: 20px;
        width: 100%;
        max-height: 95vh;
    }

    .room-details-card .modal-header {
        padding: 20px 15px 15px !important;
    }

    .room-details-body {
        padding: 10px 15px 30px !important;
    }

    .details-section {
        padding-top: 15px;
    }

    .room-details-footer {
        padding: 12px 15px !important;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
}

/* Categorized Gallery Modal */
.gallery-modal-card {
    max-width: 1000px !important;
    max-height: 90vh !important;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.gallery-filters {
    display: flex;
    gap: 12px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
    rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--glass-border);
}

.filter-btn.active {
    background: #ff7f50 !important;
    /* Premium orange from screenshot */
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.gallery-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    rgba(255, 255, 255, 0.05);
}

.gallery-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .gallery-content {
        padding: 15px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
