@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Cabin:wght@400;500;600;700&display=swap');

:root {
    --primary-gold: #f2a900; /* Bright gold */
    --dark-gold: #d48e00;
    --gold-gradient: linear-gradient(135deg, #f2a900 0%, #d48e00 100%);
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --body-bg: #ffffff;
    --text-main: #19191a;
    --text-light: #707079;
    --border-color: #ebebeb;
    --shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0px 10px 40px rgba(197, 160, 89, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Cabin', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Lora', serif;
}

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

/* Navbar */
header {
    background-color: var(--white);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}
.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: #777;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.nav-links li a.active {
    color: var(--primary-gold) !important;
    font-weight: 700;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #996515 0%, #D4AF37 100%);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

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

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
}

/* Mobile Menu */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    height: auto;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-family: 'Cabin', sans-serif;
}

.hero-btns {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
section {
    padding: 6rem 5%;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 3rem;
    position: relative;
}

/* Room Cards */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.15);
}

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

.img-container {
    overflow: hidden;
    position: relative;
}

.room-info {
    padding: 2rem;
    text-align: center;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.room-title a {
    transition: var(--transition);
}
.room-title a:hover {
    color: var(--primary-gold);
}

.room-price {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.room-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Cabin', sans-serif;
}

.room-amenities {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.room-amenities i {
    color: var(--primary-gold);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 5px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: left;
}
.faq-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Reviews */
.review-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: left;
}
.review-card .stars {
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

/* Vertical Cart Layout */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cart-item-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    gap: 1.5rem;
    position: relative;
    border: 1px solid #eee;
}
.cart-item-image {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.cart-item-details {
    flex: 1;
}
.cart-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 150px;
    text-align: right;
}
.cart-item-card .remove-btn {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    margin-left: 1rem;
}
.cart-item-card .remove-btn:hover {
    background: #cc0000;
}

/* Cart Page */
.cart-container {
    min-height: 70vh;
    padding-top: 50px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border-color);
}

.cart-table th, .cart-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background-color: var(--light-bg);
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Lora', serif;
}

.remove-btn {
    color: var(--primary-gold);
    cursor: pointer;
    font-size: 1.2rem;
    background: none;
    border: none;
    transition: var(--transition);
}
.remove-btn:hover { color: red; transform: scale(1.1); }

.cart-summary {
    background: var(--light-bg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
    text-align: right;
}

.cart-total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'Lora', serif;
}

/* Login Form */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 5%;
    background: var(--light-bg);
}

.auth-box {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 450px;
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
    font-family: 'Cabin', sans-serif;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    border-color: var(--primary-gold);
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-switch a {
    color: var(--primary-gold);
    font-weight: 600;
    cursor: pointer;
}

/* User Badge */
#user-badge {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0.5rem 1rem;
}

/* Footer */
footer {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 4rem 5%;
}

footer p {
    color: #888888;
    margin-bottom: 0.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Room Details Page */
.room-details-container { padding: 4rem 5%; }
.room-details-header { margin-bottom: 2rem; }
.room-details-title { font-size: 2.5rem; color: var(--text-main); font-family: 'Lora', serif; }
.room-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.gallery-main-img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px 0 0 12px; }
.gallery-sub-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.gallery-sub-img { width: 100%; height: calc(225px - 0.5rem); object-fit: cover; }
.gallery-sub-img:first-child { border-radius: 0 12px 0 0; }
.gallery-sub-img:last-child { border-radius: 0 0 12px 0; }

.room-details-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.room-description h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-gold); }
.room-description p { color: var(--text-light); margin-bottom: 1.5rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.amenities-list li { list-style: none; display: flex; align-items: center; gap: 0.5rem; color: var(--text-main); font-weight: 500; }
.amenities-list li i { color: var(--primary-gold); width: 20px; font-size: 1.2rem; }

.booking-sidebar { position: sticky; top: 20px; background: var(--white); border-radius: 12px; padding: 2rem; box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid var(--border-color); }
.booking-price { font-size: 2rem; color: var(--text-main); font-family: 'Lora', serif; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
.booking-price span { font-size: 1rem; color: var(--text-light); font-weight: 400; font-family: 'Cabin', sans-serif; }

@media (max-width: 768px) {
    .room-gallery { 
        grid-template-columns: 1fr !important; 
        gap: 1rem !important;
    }
    .gallery-main-img { 
        border-radius: 12px !important; 
        height: 280px !important; 
    }
    .gallery-sub-imgs { 
        grid-template-columns: 1fr 1fr !important; 
        grid-template-rows: auto !important; 
        gap: 1rem !important;
    }
    .gallery-sub-img { 
        height: 130px !important; 
        border-radius: 8px !important;
    }
    .gallery-sub-img:first-child { 
        border-radius: 8px !important; 
    }
    .gallery-sub-img:last-child { 
        border-radius: 8px !important; 
    }
    .room-details-layout { 
        grid-template-columns: 1fr !important; 
        gap: 2.5rem !important; 
    }
    .amenities-list { 
        grid-template-columns: 1fr !important; 
    }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    justify-content: space-around;
    padding: 0.5rem 0;
    /* padding-bottom: env(safe-area-inset-bottom); */
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 4px;
}
.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
}
.mobile-bottom-nav .nav-item:active,
.mobile-bottom-nav .nav-item.active {
    color: var(--primary-gold) !important;
    font-weight: 700;
}
.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: 15px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}

/* Improved Cart Badge */
.cart-count {
    background: var(--primary-gold) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    position: absolute !important;
    top: -8px !important;
    right: -12px !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 5% !important;
    }
    .logo img {
        height: 48px !important;
    }
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
        gap: 1.2rem;
    }
    .nav-links {
        display: none !important;
    }
    .menu-btn {
        display: none !important;
    }
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 60px !important; /* Space for mobile nav only */
    }
    .login-image-side {
        display: none !important;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero > div { flex-direction: column; }
    
    /* Mobile Cart Cards */
    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
    }
    .cart-item-image {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    .cart-item-price {
        text-align: left;
        margin-top: 0.5rem;
    }
    .cart-item-card .remove-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin-left: 0;
        background: rgba(255,0,0,0.1);
        color: #ff4d4d;
    }
    .cart-item-card .remove-btn:hover {
        background: #ff4d4d;
        color: #fff;
    }
    .whatsapp-float {
        bottom: 75px !important;
    }
}

/* WhatsApp Float Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 1999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Trust Badges Section */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}
.trust-badge-item {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}
.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.trust-badge-item i {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
}
.trust-badge-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-family: 'Lora', serif;
}
.trust-badge-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Interactive FAQ Accordion */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}
.faq-accordion-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.faq-accordion-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    background-color: #fff;
    user-select: none;
    transition: all 0.3s ease;
}
.faq-accordion-question:hover {
    color: var(--primary-gold);
}
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #fdfdfd;
}
.faq-accordion-answer-content {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
}
.faq-accordion-item.active .faq-accordion-answer {
    max-height: 350px; /* Safe upper bound */
}
.faq-accordion-question i {
    transition: transform 0.3s ease;
    color: var(--primary-gold);
    font-size: 1rem;
}
.faq-accordion-item.active .faq-accordion-question i {
    transform: rotate(180deg);
}

/* Google Reviews Grid */
.rating-summary {
    text-align: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    max-width: 500px;
    margin: 0 auto 3.5rem auto;
}
.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
}
.rating-stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.rating-source {
    font-size: 0.9rem;
    color: var(--text-light);
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.google-review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.1);
}
.google-reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
}
.google-reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.google-reviewer-info h4 {
    font-size: 1rem;
    margin: 0 0 2px 0;
    color: var(--text-main);
    font-family: 'Cabin', sans-serif;
}
.google-review-stars {
    color: #ffc107;
    font-size: 0.8rem;
}
.google-review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Nearby Places Layout */
.nearby-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.nearby-place-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}
.nearby-place-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.nearby-place-header {
    background: var(--light-bg);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}
.nearby-place-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-main);
    font-family: 'Lora', serif;
}
.nearby-place-header i {
    font-size: 1.4rem;
    color: var(--primary-gold);
}
.nearby-place-list {
    list-style: none;
    padding: 0.5rem 1.5rem;
}
.nearby-place-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.nearby-place-list li:last-child {
    border-bottom: none;
}
.nearby-item-name {
    color: var(--text-main);
    font-weight: 500;
}
.nearby-item-distance {
    color: var(--primary-gold);
    font-weight: 600;
    background: rgba(197, 160, 89, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 100px 5% 80px 5%;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
}
.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
}
.page-banner p {
    font-size: 1.15rem;
    color: #ddd;
}

/* Breadcrumbs Styling */
.breadcrumbs {
    background: var(--light-bg);
    padding: 1rem 5%;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}
.breadcrumbs a {
    color: var(--primary-gold);
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--dark-gold);
}
.breadcrumbs span {
    margin: 0 8px;
    color: #ccc;
}

/* Enhanced Gallery Grid for dedicated gallery.php */
.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.hotel-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    aspect-ratio: 1/1 !important;
    border: 1px solid var(--border-color);
    background-color: #fafafa;
}
.room-card .img-container {
    aspect-ratio: 1/1 !important;
}
.room-card .room-img {
    height: 100% !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
}
.hotel-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.hotel-gallery-card:hover img {
    transform: scale(1.08);
}
.hotel-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hotel-gallery-card:hover .hotel-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}
.hotel-gallery-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    font-family: 'Lora', serif;
}
.hotel-gallery-overlay p {
    margin: 0;
    font-size: 0.85rem;
    color: #ddd;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
}
.mobile-action-icon {
    font-size: 1.4rem;
    color: var(--text-main);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.mobile-action-icon:hover, .mobile-action-icon.active {
    color: var(--primary-gold);
}

