:root {
    /* Coastal Marine Palette - 2026 Refinement */
    /* Core Brand Colors */
    --primary-color: #0F2C59;
    /* President Blue - Deep, Elegant, Premium */
    --primary-light: #1E40AF;
    /* Royal Blue for interaction/hover */
    --accent-color: #f59e0b;
    /* Golden Hour Sun - Warmth */

    /* Backgrounds & Surfaces */
    --bg-color: #faf9f6;
    /* Warm Sand / Off-White - airy contrast */
    --surface-color: #ffffff;
    --surface-alt: #f0f9ff;
    /* Very faint blue tint for subtle distinction */

    /* Text Colors */
    --text-color: #334155;
    /* Soft Charcoal - Readable but not harsh */
    --text-muted: #64748b;
    /* Slate Gray */
    --text-light: #94a3b8;
    /* Light Slate */

    --white: #ffffff;

    /* Semantic */
    --success: #10b981;
    /* Emerald/Sea Green */
    --error: #ef4444;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    /* Shadows - Softer, diffused light */
    --shadow-sm: 0 4px 6px -1px rgba(2, 132, 199, 0.05);
    /* Blue-tinted shadow */
    --shadow-md: 0 10px 15px -3px rgba(2, 132, 199, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(2, 132, 199, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(2, 132, 199, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --backdrop-blur: blur(16px);

    /* Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1.5rem;
    --radius-lg: 2rem;
    /* Super round for modern feel */
    --radius-full: 9999px;

    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Snappy but smooth */
    --section-padding: 6rem 2rem;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--bg-color);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 17px;
    /* Modern standard */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.01em;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color) !important;
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #f0f9ff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* Uniform Glass */
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    z-index: 1000;
    padding: 16px 0;
    /* Compact padding by default */
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}



.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    /* Dark by default */
    letter-spacing: 0.02em;
}

.header.scrolled .logo {
    color: var(--text-color);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-weight: 600;
    color: var(--text-muted);
    /* Dark/Muted by default */
    font-size: 0.95rem;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--primary-color);
    /* Brand color by default */
    text-shadow: none;
}

.header.scrolled .nav-list a {
    color: var(--text-muted);
}

.header.scrolled .nav-list a.active,
.header.scrolled .nav-list a:hover {
    color: var(--primary-color);
    text-shadow: none;
}

.menu-toggle {
    display: none;
    /* Mobile handling later if check needed */
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    /* Dark by default */
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background-color: var(--text-color);
}

/* Hero Section for Home */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 100%;
    /* Left Bottom as requested */
    animation: zoomOut 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 44, 89, 0.3), rgba(15, 44, 89, 0.6));
    /* Marine Blue Tint */
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 60px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeUp 1s ease-out;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeUp 1s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeUp 1s ease-out 0.6s backwards;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.page-header {
    background: var(--primary-color);
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-bottom: 0;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 44, 89, 0.7), rgba(15, 44, 89, 0.9));
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.8s ease-out;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 80px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }


}

/* Bento Grid System */
.section {
    padding: 4rem 0 2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns Default */
    gap: 24px;
    margin-bottom: 4rem;
    /* Auto rows handling */
}

.bento-grid:last-child {
    margin-bottom: 0;
}

/* Card Common */
.room-card-vertical {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    /* Delicate start shadow */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.room-card-vertical:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: var(--shadow-xl);
}

/* Image handling */
.room-card-image-wrapper {
    width: 100%;
    height: 280px;
    /* Balanced height */
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin: 16px 16px 0 16px;
    /* Floating image look */
    width: calc(100% - 32px);
}

.room-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    border-radius: var(--radius-sm);
}

.room-card-vertical:hover .room-card-image-wrapper img {
    transform: scale(1.08);
}

/* Content Area */
.room-card-content {
    padding: 24px 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.room-h-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.room-h-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.08);
    /* Brand clear tint */
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.room-h-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Icons Row */
.room-icons-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    /* Ensure they wrap nicely on small screens */
    width: 100%;
}

.room-icon-item {
    background: transparent;
    padding: 6px 14px;
    border-radius: 50px;
    /* Full pill shape */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid rgba(15, 44, 89, 0.15);
    /* Subtle primary border */
    transition: var(--transition);
}

.room-icon-item:hover {
    border-color: var(--primary-color);
    background: rgba(15, 44, 89, 0.03);
    transform: translateY(-1px);
}

.room-icon-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    stroke-width: 1.5;
    /* Ensure clarity */
}

.room-footer {
    margin-top: auto;
}

.btn-full {
    width: 100%;
}

/* Grid Spans */
.span-2-col {
    grid-column: span 2;
}

.span-3-col {
    grid-column: span 3;
}

@media (max-width: 1024px) {
    .span-3-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .span-3-col {
        grid-column: span 1;
    }
}

.span-row-2 {
    grid-row: span 2;
}

/* Featured / King Room Special Styles */
.room-card-vertical.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    /* Dark theme card */
    color: var(--white);
}

.room-card-vertical.featured .room-h-title {
    color: var(--white);
}

.room-card-vertical.featured .room-h-desc {
    color: rgba(255, 255, 255, 0.8);
}

.room-card-vertical.featured .room-icon-item {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.room-card-vertical.featured .room-icon-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.room-card-vertical.featured .room-icon-item svg {
    color: var(--white);
}

.room-card-vertical.featured .room-h-price {
    background: var(--white);
    color: var(--text-color);
}

/* Pricing Disclaimer Card */
.pricing-disclaimer-card {
    margin-top: 1rem;
    text-align: center;
    background: var(--primary-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pricing-disclaimer-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-disclaimer-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pricing-disclaimer-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Staggered Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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



/* ... (middle content) ... */

/* Footer Premium */
.footer-premium {
    background: linear-gradient(to right, #0F2C59, #0a1e3f);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {

    /* 3-Column Balanced Layout: Logo (Left) | Nav (Center) | Address (Right) */
    .footer-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 1.5rem;
        gap: 2rem;
    }

    /* Column 1: Logo (Left) */
    .footer-brand-col {
        flex: 1;
        align-items: flex-start;
        width: auto;
    }

    /* Column 2: Nav (Center) */
    .footer-nav {
        flex: 2;
        display: flex;
        justify-content: center;
    }

    .footer-nav ul {
        justify-content: center;
        width: 100%;
    }

    /* Column 3: Address (Right) */
    .footer-address {
        flex: 1;
        text-align: right;
        margin: 0;
    }
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Minimalist Nav */
.footer-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright p {
    margin: 0;
}

@media (max-width: 768px) {

    /* Keep footer nav in row as requested (or wrap if needed but row preferred) */
    .footer-nav ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

.footer-content {
    gap: 0.8rem;
    /* Tighter gap for desktop by default since layout is shared */
}

.footer-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-2-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .span-2-col {
        grid-column: span 1;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .nav {
        position: fixed;
        top: 72px;
        /* Matches header height (16+40+16) */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        display: block;
        opacity: 0;
        pointer-events: none;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-list a {
        color: var(--text-color);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .nav-list a.active {
        color: var(--primary-color);
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Room Card Fix */
    .room-card-horizontal {
        flex-direction: column;
    }

    .room-card-horizontal .room-card-image-wrapper {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 250px;
    }

    .room-card-horizontal .room-card-image-wrapper img {
        border-radius: 0;
    }

    .room-card-content {
        padding: 24px;
    }

    .room-icons-row {
        flex-wrap: wrap;
    }

    .room-h-title {
        font-size: 1.5rem;
    }

    .pricing-disclaimer-card {
        padding: 2rem 1.5rem;
    }
}

/* Contact Section Styles */
.contact-layout-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width: 768px) {
    .contact-layout-v2 {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.map-container-large {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Horizontal Room Layout System */
.room-list-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.room-card-horizontal {
    display: flex;
    flex-direction: row;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 350px;
}

.room-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.room-card-horizontal .room-card-image-wrapper {
    width: 60%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

.room-card-horizontal .room-card-content {
    width: 40%;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Zig-Zag Pattern REMOVED */
/* .room-list-grid .room-card-horizontal:nth-child(even) {
    flex-direction: row-reverse;
} */

/* Featured Horizontal Override */
.room-card-horizontal.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: var(--white);
}

.room-card-horizontal.featured .room-h-title {
    color: var(--white);
}

.room-card-horizontal.featured .room-h-desc {
    color: rgba(255, 255, 255, 0.8);
}

.room-card-horizontal.featured .room-icon-item {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.room-card-horizontal.featured .room-h-price {
    background: var(--white);
    color: var(--text-color);
}

/* Responsive Horizontal */
@media (max-width: 850px) {

    .room-card-horizontal {
        flex-direction: column;
        height: auto;
        min-height: auto;
        /* Allow auto height */
    }

    /* Reset potential row-reverse from desktop if any (though currently removed) */
    .room-list-grid .room-card-horizontal:nth-child(even) {
        flex-direction: column;
    }

    .room-card-horizontal .room-card-image-wrapper {
        width: 100%;
        height: 250px;
        /* Reduced height for mobile */
        border-radius: 0;
    }

    .room-card-horizontal .room-card-image-wrapper img {
        border-radius: 0;
    }

    .room-card-horizontal .room-card-content {
        width: 100%;
        padding: 24px;
        flex: 1;
        /* Ensure content fills space */
        justify-content: flex-start;
        /* Align top */
    }
}