/* --- Modern Premium Variables --- */
:root {
    --gradient-primary: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    --color-primary: #064e3b;
    --color-gold: #d97706; 
    --color-gold-light: #f59e0b;
    --bg-body: #f8fafc; 
    --bg-white: #ffffff;
    --text-dark: #0f172a; 
    --text-muted: #64748b; 
    --border-soft: #e2e8f0;
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* এই অংশটুকু আপডেট করুন */
html, body {
    overflow-x: hidden; /* ডানে-বামে স্ক্রল বন্ধ করার জন্য */
    width: 100%;
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px; /* App-like smaller padding on mobile */
}

/* --- Clean White Header --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px; /* Compact padding for app-feel */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem; /* Smaller for mobile */
    font-weight: 700;
    text-decoration: none;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-gold);
    font-weight: 400;
}

.mobile-menu-btn {
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--color-primary);
    display: block;
}

/* --- Sidebar Overlay (Mobile) --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- App-Like Sidebar Mobile Menu --- */
.navbar {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.navbar.active {
    right: 0; /* Slide in */
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 10px;
}

.close-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--color-primary);
}

.navbar a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
    transition: color 0.3s;
}

.navbar a:hover, .navbar a.active {
    color: var(--color-primary);
}

.navbar a.btn-login {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-bottom: none;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
    padding: 12px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1542314831-c6a4d14d8379?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    min-height: 70vh; /* Slightly shorter on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(2, 44, 34, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--bg-white);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* App-like smaller heading */
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 0.95rem; /* Smaller text */
    margin-bottom: 30px;
    font-weight: 400;
    color: #e2e8f0;
}

/* Light Glassmorphism Search Form */
.light-glass {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 15px; /* Compact padding */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    color: var(--text-muted);
    font-size: 0.75rem; /* Very app-like label */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.input-group input, .input-group select {
    padding: 10px 12px; /* Smaller inputs */
    background: var(--bg-body);
    border: 1px solid var(--border-soft);
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 0.9rem; /* Smaller input text */
    font-family: var(--font-body);
    outline: none;
    font-weight: 500;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.btn-search {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    transition: transform 0.3s;
}

.btn-search:hover {
    transform: translateY(-2px);
}

/* --- Clean Featured Rooms --- */
.featured-rooms {
    padding: 50px 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header .subtitle {
    color: var(--color-gold);
    font-size: 0.75rem; /* App-like subtitle */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.section-header .section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Smaller section title */
    color: var(--text-dark);
    font-weight: 700;
}

.heading-line {
    height: 3px;
    width: 40px;
    background: var(--color-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Mobile First Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px; /* Reduced gap for mobile */
}

.room-card {
    background: var(--bg-white);
    border-radius: 12px; /* App-like softer radius */
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(6, 78, 59, 0.2);
}

.card-image {
    position: relative;
    height: 180px; /* Shorter image height on mobile */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .card-image img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 4px 10px; /* Smaller badge */
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.card-content {
    padding: 15px; /* Compact padding inside card */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rating {
    color: var(--color-gold-light);
    font-size: 0.75rem; /* Smaller stars */
    margin-bottom: 5px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem; /* App-like title size */
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.card-content .price {
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.card-content .price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.amenities-list {
    list-style: none;
    margin-bottom: 15px;
    flex-grow: 1;
    padding-top: 10px;
    border-top: 1px solid var(--border-soft);
}

.amenities-list li {
    font-size: 0.85rem; /* App-like amenities text */
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.amenities-list li i {
    color: var(--color-primary);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.btn-outline {
    display: block;
    text-align: center;
    background: var(--bg-body);
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px; /* Smaller button height */
    border-radius: 6px;
    font-size: 0.9rem; /* Smaller button text */
    font-weight: 700;
    border: 1px solid var(--border-soft);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: transparent;
}

/* --- Footer --- */
.footer {
    background: var(--color-primary);
    color: var(--bg-white);
    padding: 25px 0;
    margin-top: 20px;
}

.text-center { 
    text-align: center; 
    font-size: 0.85rem;
}

/* =========================================
   TABLET & DESKTOP ADJUSTMENTS (Scaling UP)
   ========================================= */
@media (min-width: 768px) {
    /* Hide Mobile specific elements on PC */
    .mobile-menu-btn, .sidebar-header, .nav-overlay { 
        display: none !important; 
    }
    
    .nav-container { padding: 18px 20px; }
    .logo { font-size: 1.8rem; }
    
    /* Reset Navbar for PC View */
    .navbar {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        align-items: center;
        gap: 10px;
        overflow-y: visible;
    }

    .navbar a { 
        padding: 8px 15px; 
        font-size: 0.95rem;
        border-bottom: none;
    }
    
    .navbar a.btn-login {
        margin: 0 0 0 15px;
        padding: 10px 24px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(6, 78, 59, 0.2);
    }

    .hero { min-height: 85vh; padding: 60px 20px; }
    .hero h1 { font-size: 3.5rem; margin-bottom: 15px; }
    .hero p { font-size: 1.15rem; margin-bottom: 45px; }

    .light-glass {
        flex-direction: row;
        align-items: flex-end;
        padding: 20px;
        border-radius: 12px;
        gap: 15px;
    }

    .input-group label { font-size: 0.8rem; }
    .input-group input, .input-group select { padding: 14px; font-size: 1rem; }
    .input-group { flex: 1; }
    
    .btn-search { 
        flex: 1; 
        margin-top: 0;
        height: 52px; 
        font-size: 1.1rem;
    }

    .section-header { margin-bottom: 50px; }
    .section-header .subtitle { font-size: 0.9rem; }
    .section-header .section-title { font-size: 2.5rem; }
    
    .featured-rooms { padding: 90px 20px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    .card-image { height: 240px; }
    .card-content { padding: 25px; }
    .card-content h3 { font-size: 1.4rem; }
    .card-content .price { font-size: 1.4rem; }
    .amenities-list li { font-size: 0.95rem; margin-bottom: 10px; }
    .btn-outline { padding: 14px; font-size: 1rem; }
}

@media (min-width: 1024px) {
    /* Desktop: 4 Cards per row */
    .rooms-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 4rem; }
}


/* =========================================
   ROOM DETAILS PAGE SPECIFIC STYLES
   ========================================= */

.room-details-page {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* --- Gallery Carousel --- */
.room-gallery {
    position: relative;
    width: 100%;
    height: 250px; /* Mobile height */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    color: var(--color-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--bg-white);
    color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--bg-white);
    transform: scale(1.3);
}

/* --- Layout Grid --- */
.room-layout {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 30px;
}

.room-info {
    flex: 1;
}

/* --- Header Info --- */
.room-header-info {
    margin-bottom: 25px;
    position: relative;
}

.room-header-info .badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-header-info .rating {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-gold-light);
}

.room-header-info .rating span {
    color: var(--text-muted);
    margin-left: 5px;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.room-location {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Section Boxes --- */
.section-box {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    margin-bottom: 20px;
}

.section-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-soft);
}

.room-description p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Amenities Grid --- */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.amenity-item i {
    color: var(--color-primary);
    background: rgba(6, 78, 59, 0.08);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Rules List --- */
.rules-list {
    list-style: none;
}

.rules-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-list li i {
    color: var(--color-gold);
}

/* --- Booking Sidebar (Right Side) --- */
.booking-sidebar {
    width: 100%;
}

.booking-card {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    position: sticky; /* Make it sticky */
    top: 90px; /* Offset from header */
}

.booking-price {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-soft);
}

.booking-price h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2rem;
}

.booking-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.details-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FIX: Desktop Form Overflow */
.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-row .input-group {
    flex: 1;
    min-width: 0; /* Prevents input from expanding beyond flex container */
}

.details-booking-form .input-group input,
.details-booking-form .input-group select {
    background: var(--bg-body);
    width: 100%;
    box-sizing: border-box; /* Ensures padding stays inside width limit */
}

/* --- Price Breakdown --- */
.price-breakdown {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-item.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-soft);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.btn-book-now {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(6, 78, 59, 0.2);
}

/* =========================================
   ROOM DETAILS: TABLET & DESKTOP ADJUSTMENTS 
   ========================================= */
@media (min-width: 768px) {
    .room-details-page { padding-top: 40px; }
    
    .room-gallery { height: 450px; border-radius: 20px; }
    
    .room-title { font-size: 2.8rem; }
    
    .section-box { padding: 30px; }
    .section-box h3 { font-size: 1.5rem; margin-bottom: 20px; }
    .room-description p { font-size: 1.05rem; }
    
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    
    /* Layout: 2 Columns on PC */
    .room-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .room-info {
        flex: 1; /* Takes up remaining space */
    }

    .booking-sidebar {
        width: 380px; /* Fixed width for sidebar */
        flex-shrink: 0; /* Prevent shrinking */
    }
}


/* =========================================
   BOOKING / CHECKOUT PAGE STYLES
   ========================================= */

.booking-page {
    padding-top: 30px;
    padding-bottom: 50px;
}

.page-title-section {
    margin-bottom: 25px;
}

.back-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--color-gold);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
}

/* --- Layout Grid --- */
.booking-layout {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 30px;
}

.booking-form-section {
    flex: 1;
}

/* Checkout Form Adjustments */
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-body);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    resize: vertical;
    box-sizing: border-box;
}

.checkout-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.checkout-form .input-group {
    margin-bottom: 15px;
}

.checkout-form .form-row {
    margin-bottom: 0; /* Reset row margin as input-group handles it */
}

/* --- Payment Options --- */
.payment-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-card {
    cursor: pointer;
    position: relative;
}

.payment-card input[type="radio"] {
    display: none; /* Hide default radio button */
}

.payment-card-content {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: var(--bg-body);
    transition: all 0.3s;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.payment-info h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 3px;
}

.payment-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Checked State for Payment Card */
.payment-card input[type="radio"]:checked + .payment-card-content {
    border-color: var(--color-primary);
    background: rgba(6, 78, 59, 0.05);
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.1);
}

.payment-card input[type="radio"]:checked + .payment-card-content .payment-icon {
    color: var(--color-primary);
    background: var(--gradient-primary);
    color: var(--bg-white);
}

/* --- Booking Summary Section --- */
.summary-card {
    top: 90px;
}

.summary-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-soft);
}

.summary-room-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-room-info img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.summary-room-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.summary-room-details p {
    font-size: 0.85rem;
    color: var(--color-gold-light);
}

.summary-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-body);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-soft);
}

.date-box {
    display: flex;
    flex-direction: column;
}

.date-box span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-box strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin: 3px 0;
}

.date-box small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.date-divider {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.summary-guests {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}

.summary-guests i {
    color: var(--color-primary);
    margin-right: 8px;
}

.price-item.discount {
    color: #10b981; /* Green color for discount */
}

.final-btn {
    margin-top: 25px;
    font-size: 1.2rem;
    padding: 18px;
}

.secure-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.secure-text i {
    color: var(--color-gold);
    margin-right: 5px;
}

/* =========================================
   TABLET & DESKTOP ADJUSTMENTS 
   ========================================= */
@media (min-width: 768px) {
    .booking-page { padding-top: 40px; }
    .page-title { font-size: 2.5rem; }
    
    .booking-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .booking-form-section {
        flex: 1; /* Takes up remaining space */
    }

    .booking-summary-section {
        width: 400px; /* Fixed width for sidebar */
        flex-shrink: 0;
    }
}

/* =========================================
   ROOMS LISTING PAGE STYLES
   ========================================= */

/* --- Page Banner --- */
.page-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1551882547-ff40c0d13c05?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    height: 250px; /* Mobile height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(2, 44, 34, 0.95) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
    color: var(--bg-white);
}

.banner-content h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.banner-content p {
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* --- Filter Bar --- */
.rooms-page-content {
    background-color: var(--bg-body);
    padding-bottom: 60px;
}

.filter-bar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-30px); /* Pulls it up over the banner */
    position: relative;
    z-index: 20;
    border: 1px solid var(--border-soft);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.filter-group select {
    padding: 12px 15px;
    background: var(--bg-body);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    transition: border 0.3s;
}

.filter-group select:focus {
    border-color: var(--color-primary);
}

.filter-btn-group {
    justify-content: flex-end;
}

.btn-filter {
    background: var(--color-gold);
    color: var(--bg-white);
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    height: 100%; /* Matches select height on desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-filter:hover {
    transform: translateY(-2px);
    background: var(--color-gold-light);
}

/* --- All Rooms Section --- */
.all-rooms-container {
    margin-top: 10px;
}

.section-header.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.section-header.text-left .section-title {
    font-size: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.section-header.text-left .section-title span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-soft);
    transition: all 0.3s;
}

.page-btn:hover {
    background: var(--bg-body);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.page-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(6, 78, 59, 0.2);
}

/* =========================================
   TABLET & DESKTOP ADJUSTMENTS 
   ========================================= */
@media (min-width: 768px) {
    .page-banner { height: 350px; }
    .banner-content h1 { font-size: 3.5rem; margin-bottom: 10px; }
    .banner-content p { font-size: 1.15rem; }

    .filter-bar {
        transform: translateY(-40px);
        padding: 25px 30px;
    }

    /* Grid layout for filters on PC */
    .filter-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: end; /* Aligns button with inputs */
    }

    .section-header.text-left .section-title { font-size: 2rem; }
    
    /* Grid is already handled in main CSS (2 cols for tablet, 4 for desktop) */
}


/* =========================================
   EXCLUSIVE FACILITIES PAGE STYLES (f- prefix)
   ========================================= */
.facilities-wrapper {
    background: #ffffff;
    overflow-x: hidden;
}

.f-hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.f-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(6, 78, 59, 0.7));
}

.f-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.f-sub-title {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    color: #c5a47e; /* Gold color */
    display: block;
    margin-bottom: 20px;
}

.f-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
}

.f-hero-content h1 span {
    font-style: italic;
    font-weight: 400;
}

/* Scroll Indicator */
.f-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.f-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.f-mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: #c5a47e;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: f-wheel 2s infinite;
}

@keyframes f-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Content Sections */
.f-main-content {
    padding: 100px 0;
}

.f-exp-block {
    margin-bottom: 120px;
}

.f-exp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.f-reverse .f-exp-grid {
    grid-template-columns: 1fr 1.2fr;
}

.f-img-wrapper {
    position: relative;
}

.f-img-main {
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.f-img-main img {
    width: 100%; height: 100%; object-fit: cover;
}

.f-img-sub {
    position: absolute;
    width: 200px;
    height: 260px;
    bottom: -40px;
    right: -40px;
    border: 8px solid white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 5;
}

.f-reverse .f-img-sub {
    right: auto;
    left: -40px;
}

.f-img-sub img {
    width: 100%; height: 100%; object-fit: cover;
}

.f-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #064e3b;
    margin-bottom: 20px;
}

.f-info h2 span {
    display: block;
    color: #c5a47e;
    font-style: italic;
    font-weight: 400;
}

.f-number {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(6, 78, 59, 0.05);
    font-weight: 700;
    display: block;
    margin-bottom: -35px;
}

.f-floating { animation: f-float 4s ease-in-out infinite; }
.f-floating-rev { animation: f-float 4s ease-in-out infinite reverse; }

@keyframes f-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Fix */
@media (max-width: 991px) {
    .f-exp-grid, .f-reverse .f-exp-grid { grid-template-columns: 1fr; gap: 50px; }
    .f-reverse { display: flex; flex-direction: column-reverse; }
    .f-img-sub { width: 140px; height: 180px; right: 0; bottom: -20px; }
    .f-info h2 { font-size: 2.2rem; }
}


/* =========================================
   HOME PAGE ADDITIONAL SECTIONS
   ========================================= */

/* --- Welcome / About Section --- */
.welcome-section {
    padding: 80px 15px;
}

.welcome-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.text-left { text-align: left; margin-bottom: 10px; }
.left-align { margin: 10px 0 20px 0; }

.welcome-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-images {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.welcome-images .img-large {
    width: 90%;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.welcome-images .img-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border: 8px solid var(--bg-body);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

/* --- Amenities Quick View --- */
.quick-amenities {
    background: var(--color-primary); /* Deep Green Background */
    color: var(--bg-white);
    padding: 60px 0;
    margin: 40px 0;
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.amenity-box {
    padding: 20px;
}

.amenity-box .icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: transform 0.4s;
}

.amenity-box:hover .icon-circle {
    transform: translateY(-10px);
    background: var(--color-gold);
    color: var(--bg-white);
}

.amenity-box h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.amenity-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Guest Reviews / Testimonials --- */
.testimonials-section {
    padding: 60px 15px 100px 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(217, 119, 6, 0.2); /* Faded Gold */
    position: absolute;
    top: 25px;
    right: 30px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-soft);
    padding-top: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.reviewer-info .rating {
    font-size: 0.8rem;
}

/* =========================================
   TABLET & DESKTOP ADJUSTMENTS 
   ========================================= */
@media (min-width: 768px) {
    .welcome-section { padding: 100px 20px; }
    
    .welcome-layout {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .welcome-text, .welcome-images {
        flex: 1;
    }

    .amenities-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =========================================
   MINIMAL LOGIN & REGISTRATION STYLES
   ========================================= */

.minimal-auth-page {
    background-color: var(--bg-body); /* Soft gray background */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.minimal-auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-soft);
}

.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.auth-header .logo {
    font-size: 1.5rem;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.back-link:hover { color: var(--color-primary); }

/* Form Tabs */
.auth-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-soft);
}

.auth-tab {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    flex: 1;
    text-align: center;
}

.auth-tab.active { color: var(--color-primary); }

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px 3px 0 0;
}

/* Form Content */
.auth-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-form.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-form .input-group { margin-bottom: 20px; }

.auth-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i:first-child {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    outline: none;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.show-pass {
    position: absolute;
    right: 15px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
}

.show-pass:hover { color: var(--color-primary); }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.forgot-pass {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.forgot-pass:hover { text-decoration: underline; }

.btn-auth {
    width: 100%;
    background: var(--color-primary); /* Deep Green */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-auth:hover {
    background: var(--color-gold); /* Dark Golden on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(217, 119, 6, 0.3); /* Golden shadow effect */
}

@media (max-width: 480px) {
    .auth-card { padding: 30px 20px; }
}


/* --- Hero Search Form Ultimate Fix --- */

/* 1. Mobile First Design (Default) */
.light-glass {
    display: flex;
    flex-direction: column; /* মোবাইলে সব নিচে নিচে থাকবে */
    gap: 15px;
}

.light-glass .btn-search {
    white-space: nowrap !important; /* টেক্সট কখনোই ২ লাইনে যাবে না */
}

.light-glass .form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.light-glass .form-row .input-group {
    flex: 1; /* মোবাইলে Check-in ও Check-out সমান অর্ধেক (50%) জায়গা নিবে */
    width: 100%;
}

.light-glass > .input-group, 
.light-glass .btn-search {
    width: 100%; /* মোবাইলে Guests এবং Button ফুল স্ক্রিন থাকবে */
}


/* 2. Desktop View Fix (pc screen) */
@media (min-width: 768px) {
    .light-glass {
        flex-direction: row !important; /* ডেস্কটপে সব এক লাইনে চলে আসবে */
        align-items: flex-end; /* নিচ থেকে সমান থাকবে */
        flex-wrap: nowrap !important; /* কোনোভাবেই নিচে নামবে না */
    }
    
    .light-glass .form-row {
        flex: 2; /* Check-in & Out ডাবল জায়গা নিবে */
        margin-bottom: 0;
    }
    
    .light-glass > .input-group {
        flex: 1; /* Guests সিঙ্গেল জায়গা নিবে */
    }
    
    .light-glass .btn-search {
        flex: 0 0 auto !important; /* ম্যাজিক: ডেস্কটপে বাটনকে কোনোভাবেই চাপানো (shrink) যাবে না */
        width: 220px !important; /* বাটনের ফিক্সড সাইজ */
        height: 52px; /* ইনপুট বক্সের সমান উচ্চতা */
        margin-top: 0;
        padding: 0 20px;
    }
}