/* ----------------------------------------------------------------
   Mount Crest - Ella CSS Design System
   Aesthetics: Premium, Modern Luxury, Misty Mountain Forest Theme
-----------------------------------------------------------------*/

:root {
    /* Color System (Light Mode Defaults) */
    --primary-h: 160;
    --primary-s: 58%;
    --primary-l: 14%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 22%);
    --primary-ultra-light: hsl(var(--primary-h), 20%, 94%);
    
    --accent-h: 33;
    --accent-s: 52%;
    --accent-l: 64%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-dark: hsl(var(--accent-h), var(--accent-s), 45%);
    
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* Layout Backgrounds */
    --bg: hsl(33, 20%, 97%);
    --surface: hsl(0, 0%, 100%);
    --surface-alt: hsl(160, 15%, 94%);
    --text: hsl(160, 40%, 10%);
    --text-muted: hsl(160, 12%, 40%);
    --border: hsl(160, 12%, 88%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(15, 56, 42, 0.06);
    
    /* Box Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 56, 42, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(15, 56, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 56, 42, 0.12);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Containers */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --bg: hsl(160, 30%, 6%);
    --surface: hsl(160, 24%, 10%);
    --surface-alt: hsl(160, 20%, 14%);
    --text: hsl(33, 10%, 94%);
    --text-muted: hsl(160, 10%, 70%);
    --border: hsl(160, 15%, 18%);
    
    --primary-ultra-light: hsl(var(--primary-h), 25%, 14%);
    
    --glass-bg: rgba(15, 30, 24, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 35px -10px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 45px -15px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------------------------------
   Reset & Base Styles
-----------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none !important;
}

/* ----------------------------------------------------------------
   Reusable UI Elements & Buttons
-----------------------------------------------------------------*/
.divider {
    height: 3px;
    width: 60px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: var(--radius-full);
}

.divider.text-left {
    margin-left: 0;
}

.sub-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    margin-bottom: 8px;
    display: block;
}

[data-theme="dark"] .sub-title {
    color: var(--accent);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--surface);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    border: 1px solid var(--border);
}

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

.btn-whatsapp-booking {
    background-color: var(--whatsapp-green);
    color: white;
    width: 100%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-booking:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge-charge {
    background-color: var(--accent-dark);
    color: white;
    margin-left: 8px;
}

[data-theme="dark"] .badge-charge {
    background-color: var(--accent);
    color: var(--primary);
}

/* ----------------------------------------------------------------
   Site Header & Navigation
-----------------------------------------------------------------*/
.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text small {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-top: 2px;
}

[data-theme="dark"] .logo-text {
    color: var(--surface);
}

[data-theme="dark"] .logo-text small {
    color: var(--accent);
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-inquiry {
    background-color: var(--primary);
    color: var(--surface) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.btn-nav-inquiry:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-nav-inquiry::after {
    display: none;
}

/* Actions: Theme Toggle & WhatsApp & Mobile Menu */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--border);
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

.whatsapp-direct-btn {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-direct-btn:hover {
    background-color: var(--whatsapp-dark);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   Hero Section
-----------------------------------------------------------------*/
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background-image: url('assets/hero-view.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    padding-top: var(--header-height);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 56, 42, 0.85) 0%, rgba(15, 56, 42, 0.4) 60%, rgba(15, 56, 42, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    margin-bottom: auto;
    padding-top: 80px;
}

.hero-badge {
    background-color: rgba(212, 163, 115, 0.25);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: white;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Quick Info Cards */
.hero-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-quick-info .info-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.hero-quick-info .info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.hero-quick-info .info-card i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(212, 163, 115, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-quick-info .info-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-quick-info .info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ----------------------------------------------------------------
   About Section & General Layouts
-----------------------------------------------------------------*/
.about-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-info h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-info p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

[data-theme="dark"] .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    display: block;
}

/* Feature cards in About Grid */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background-color: var(--primary-ultra-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Rooms & Accommodation Section
-----------------------------------------------------------------*/
.rooms-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.room-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-dark);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

[data-theme="dark"] .room-badge {
    background-color: var(--accent);
    color: var(--primary);
}

.room-badge.badge-budget {
    background-color: var(--primary);
    color: var(--accent);
}

.room-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.room-features-summary {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

.room-features-summary li {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-ultra-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.room-price .price-amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

[data-theme="dark"] .room-price .price-amount {
    color: var(--accent);
}

.room-price .price-unit {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Amenities Directory Section
-----------------------------------------------------------------*/
.amenities-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.amenity-directory {
    margin-top: 40px;
}

.directory-toolbar {
    background-color: var(--bg);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text);
    box-shadow: inset 0 2px 4px rgba(15, 56, 42, 0.02);
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px var(--primary-ultra-light);
}

/* Tabs */
.tabs-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.tabs-wrapper::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.amenity-tabs {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: var(--primary-ultra-light);
    border-color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--surface);
    border-color: var(--primary);
}

/* Amenity Results Grid */
.amenity-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.amenity-item {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-3px);
    background-color: var(--primary-ultra-light);
    border-color: var(--primary);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--surface);
    color: var(--primary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .amenity-icon {
    background-color: var(--surface-alt);
}

.amenity-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.amenity-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Breakfast Highlight Section
-----------------------------------------------------------------*/
.breakfast-section {
    padding: 120px 0;
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.breakfast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 163, 115, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.breakfast-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.breakfast-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, 0.1);
}

.breakfast-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.breakfast-content h2 {
    color: white;
    font-size: 2.25rem;
    font-weight: 800;
}

.breakfast-content .sub-title {
    color: var(--accent);
}

.breakfast-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.breakfast-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakfast-highlights li {
    display: flex;
    gap: 16px;
}

.breakfast-highlights li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.breakfast-highlights li strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.breakfast-highlights li p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   Experiences & Attractions
-----------------------------------------------------------------*/
.experiences-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.experiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.activities-panel h3, .location-guide-panel h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.activities-panel .desc, .location-guide-panel .desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.activity-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.activity-list-item {
    display: flex;
    gap: 20px;
    background-color: var(--surface);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.activity-list-item .activity-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-list-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.activity-list-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Infographic map visual */
.infographic-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 480px;
}

.infographic-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.attraction-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.attraction-node {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: inline-block;
    align-self: flex-start;
    box-shadow: var(--shadow-md);
    max-width: 260px;
}

.attraction-node:nth-child(even) {
    align-self: flex-end;
}

.attraction-time {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

[data-theme="dark"] .attraction-time {
    color: var(--primary);
}

.attraction-node h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

/* ----------------------------------------------------------------
   Photo Gallery
-----------------------------------------------------------------*/
.gallery-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 56, 42, 0.9) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Grid sizes variation */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-medium {
    grid-column: span 2;
}

.gallery-tip {
    margin-top: 40px;
}

.gallery-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--bg);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

/* New Gallery: Filter Bar */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.gallery-tab:hover {
    background-color: var(--border);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .gallery-tab {
    color: var(--text);
}

[data-theme="dark"] .gallery-tab.active {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* New Gallery: Masonry Grid */
.gallery-grid-new {
    columns: 4;
    column-gap: 18px;
    margin-top: 10px;
}

.gallery-item-new {
    break-inside: avoid;
    margin-bottom: 18px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item-new img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-new .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 56, 42, 0.92) 0%, transparent 100%);
    padding: 18px 14px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-item-new:hover img {
    transform: scale(1.06);
}

.gallery-item-new:hover .gallery-overlay {
    opacity: 1;
}

/* Hidden state for filter */
.gallery-item-new.hidden-filter {
    display: none;
}

/* Gallery item fade-in animation */
@keyframes galleryFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.gallery-item-new.animate-in {
    animation: galleryFadeIn 0.35s ease forwards;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-image-wrap img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.12);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close:hover {
    background-color: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-nav:hover {
    background-color: rgba(255,255,255,0.25);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

@media (max-width: 1200px) {
    .gallery-grid-new { columns: 3; }
}

@media (max-width: 768px) {
    .gallery-grid-new { columns: 2; }
    .gallery-filter-bar { gap: 8px; }
    .gallery-tab { padding: 8px 14px; font-size: 0.8rem; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
}

@media (max-width: 480px) {
    .gallery-grid-new { columns: 1; }
}

/* ----------------------------------------------------------------
   Guest Reviews Section
-----------------------------------------------------------------*/
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    transition: var(--transition-slow);
}

.review-card {
    min-width: 100%;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: none; /* Toggled in JS */
    flex-direction: column;
    gap: 20px;
}

.review-card.active {
    display: flex;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    width: 20px;
    height: 20px;
    color: var(--border);
}

.review-stars i.filled {
    color: var(--accent);
    fill: var(--accent);
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.author-details h5 {
    font-size: 1rem;
    font-weight: 700;
}

.author-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.control-btn:hover {
    background-color: var(--primary);
    color: var(--surface);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    background-color: var(--accent-dark);
}

[data-theme="dark"] .dot.active {
    background-color: var(--accent);
}

.add-review-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed var(--border);
}

.add-review-section h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.add-review-section p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ----------------------------------------------------------------
   Booking Section & Price Calculator
-----------------------------------------------------------------*/
.booking-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.booking-calculator-panel {
    padding: 40px;
}

.calculator-header {
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.calculator-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.input-icon-wrapper input, .input-icon-wrapper select, .calculator-form textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text);
    transition: var(--transition);
}

.calculator-form textarea {
    padding-left: 16px;
    resize: none;
}

.input-icon-wrapper input:focus, .input-icon-wrapper select:focus, .calculator-form textarea:focus {
    border-color: var(--accent-dark);
}

/* Optional checkboxes add-on */
.addons-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addons-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.addon-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--surface);
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.addon-checkbox-label:hover {
    border-color: var(--primary);
    background-color: var(--primary-ultra-light);
}

.addon-checkbox {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    display: block;
}

.addon-checkbox:checked + .checkbox-custom {
    border-color: var(--primary);
    background-color: var(--primary);
}

.addon-checkbox:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price Receipt Panel */
.booking-receipt-panel {
    background-color: var(--primary);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.receipt-header h4 {
    color: white;
    font-size: 1.35rem;
    font-weight: 800;
}

.receipt-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

.receipt-breakdown {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.receipt-breakdown li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.receipt-breakdown li .label {
    color: rgba(255, 255, 255, 0.85);
}

.receipt-breakdown li .value {
    font-weight: 600;
}

.receipt-breakdown .receipt-total-row {
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
    padding-top: 20px;
    margin-top: 4px;
}

.receipt-breakdown .receipt-total-row .label {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.receipt-breakdown .receipt-total-row .value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent);
}

.receipt-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-item i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

.guarantee-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.receipt-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.receipt-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.receipt-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.receipt-note {
    margin-top: 20px;
}

.receipt-note p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.receipt-note p i {
    width: 14px;
    height: 14px;
    margin-top: 2px;
}

/* ----------------------------------------------------------------
   Policy Section
-----------------------------------------------------------------*/
.policy-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.policy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

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

.policy-card:hover {
    transform: translateY(-3px);
}

.policy-card i {
    color: var(--accent-dark);
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
}

[data-theme="dark"] .policy-card i {
    color: var(--accent);
}

.policy-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-card .time {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

[data-theme="dark"] .policy-card .time {
    color: var(--accent);
}

.policy-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Footer
-----------------------------------------------------------------*/
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-icon {
    background-color: white;
    color: var(--primary);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-text small {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact ul li {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact ul li i {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    background-color: hsl(var(--primary-h), var(--primary-s), 10%);
}

.footer-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.designed-by {
    color: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------------------------
   Floating WhatsApp Widget
-----------------------------------------------------------------*/
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-badge-trigger {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 10;
    transition: var(--transition-slow);
}

.whatsapp-badge-trigger:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-badge-trigger .pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

.whatsapp-badge-trigger .trigger-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Popup Bubble */
.whatsapp-popup {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 360px;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: none; /* JS toggle */
    flex-direction: column;
    overflow: hidden;
    z-index: 11;
    animation: popup-fade-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-popup.active {
    display: flex;
}

.popup-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.host-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.host-profile .avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.host-profile .avatar i {
    width: 20px;
    height: 20px;
}

.host-profile .avatar .active-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--whatsapp-green);
    border: 2px solid var(--primary);
}

.profile-info h5 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.profile-info .status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.popup-close {
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.popup-close:hover {
    opacity: 1;
}

.popup-body {
    background-color: var(--bg);
    padding: 24px;
    min-height: 160px;
    display: flex;
    align-items: flex-start;
}

.chat-bubble.received {
    background-color: var(--surface);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    max-width: 90%;
    position: relative;
}

.chat-bubble.received p {
    font-size: 0.85rem;
    color: var(--text);
}

.chat-bubble.received .time {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    display: block;
    margin-top: 6px;
}

.popup-footer {
    padding: 16px;
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--border);
    background-color: var(--surface);
}

.popup-footer input {
    flex-grow: 1;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: var(--bg);
    font-size: 0.85rem;
}

.popup-footer button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--whatsapp-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.popup-footer button:hover {
    background-color: var(--whatsapp-dark);
}

/* ----------------------------------------------------------------
   Modals
-----------------------------------------------------------------*/
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 56, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none; /* Toggled in JS */
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fade-in 0.3s ease;
}

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

.modal-container {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 640px;
    position: relative;
    overflow: hidden;
    animation: scale-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-modal-container {
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--border);
}

.modal-body {
    padding: 40px;
}

/* Room Details Modal Specific styles */
.modal-room-header {
    margin-bottom: 24px;
}

.modal-room-header img {
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.modal-room-header h3 {
    font-size: 1.85rem;
    font-weight: 800;
}

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

.modal-room-amenities h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-amenities-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.modal-amenities-list li i {
    color: var(--accent-dark);
    width: 16px;
    height: 16px;
}

[data-theme="dark"] .modal-amenities-list li i {
    color: var(--accent);
}

.modal-room-policies {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Review Form specific modal styling */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.rating-stars-input {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 2rem;
    color: var(--border);
}

.rating-stars-input i {
    width: 32px;
    height: 32px;
}

.rating-stars-input i.active {
    color: var(--accent);
    fill: var(--accent);
}

.review-form input, .review-form select, .review-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--bg);
}

/* ----------------------------------------------------------------
   Intersection Observer Animations (Fade-in on scroll)
-----------------------------------------------------------------*/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Keyframes */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-up {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header animation on entry */
.animate-fade-in {
    animation: fade-in 1s ease both;
}

.animate-slide-up {
    animation: scale-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-slide-up-delayed {
    animation: scale-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.animate-fade-in-delayed {
    animation: fade-in 1s ease 0.4s both;
}

/* ----------------------------------------------------------------
   Responsive Breakpoints
-----------------------------------------------------------------*/
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.85rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .breakfast-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle logic */
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--surface);
        padding: 40px;
        transform: translateX(-100%);
        transition: var(--transition-slow);
        box-shadow: var(--shadow-lg);
        z-index: 100;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    /* Hero */
    .hero-section {
        height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-quick-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    
    .item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .item-medium {
        grid-column: span 2;
    }
    
    /* Booking form row */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-calculator-panel {
        padding: 30px 20px;
    }
    
    .booking-receipt-panel {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-popup {
        width: 310px;
        right: -10px;
    }
    
    .modal-amenities-list {
        grid-template-columns: 1fr;
    }
}
