/* /Components/CustomDropdown.razor.rz.scp.css */
.custom-dropdown[b-2b9rztpah7] {
    position: relative;
    width: 100%;
    outline: none;
    font-family: inherit;
    /* Add a generic class to encapsulate all fonts and colors to match the app */
}

.custom-dropdown-toggle[b-2b9rztpah7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.625rem 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem; /* Match a generic rounded-lg */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.custom-dropdown-toggle:hover[b-2b9rztpah7] {
    border-color: #cbd5e1;
}

.custom-dropdown:focus .custom-dropdown-toggle[b-2b9rztpah7],
.custom-dropdown-toggle.open[b-2b9rztpah7] {
    border-color: #3b82f6; /* Blue border on focus */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); /* Soft blue glow */
}

.custom-dropdown-text[b-2b9rztpah7] {
    font-size: 0.95rem;
    color: #1e293b; /* slate-800 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.custom-dropdown-icon[b-2b9rztpah7] {
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    color: #64748b;
}

.custom-dropdown-toggle.open .custom-dropdown-icon[b-2b9rztpah7] {
    transform: rotate(180deg);
}

.custom-dropdown-menu[b-2b9rztpah7] {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    z-index: 50;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.5rem;
}

.custom-dropdown-menu.show[b-2b9rztpah7] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Webkit Scrollbar */
.custom-dropdown-menu[b-2b9rztpah7]::-webkit-scrollbar {
    width: 6px;
}
.custom-dropdown-menu[b-2b9rztpah7]::-webkit-scrollbar-track {
    background: transparent;
}
.custom-dropdown-menu[b-2b9rztpah7]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.custom-dropdown-menu[b-2b9rztpah7]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.custom-dropdown-item[b-2b9rztpah7] {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    cursor: pointer;
    border-radius: 0.5rem;
    color: #475569;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.custom-dropdown-item:hover[b-2b9rztpah7] {
    background-color: #f1f5f9;
    color: #0f172a;
}

.custom-dropdown-item.selected[b-2b9rztpah7] {
    background-color: #eff6ff; /* Light blue bg */
    color: #1d4ed8; /* Darker blue text */
    font-weight: 600;
}

.check-icon[b-2b9rztpah7] {
    flex-shrink: 0;
    margin-right: 0.5rem;
}
/* /Components/EmojiPicker.razor.rz.scp.css */
/* Emoji Component */
.emoji-picker-wrapper[b-jqdctc5f36] {
    position: relative;
}

.emoji-toggle[b-jqdctc5f36] {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: transparent; color: #9ca3af; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.emoji-toggle svg[b-jqdctc5f36] { width: 22px; height: 22px; }
.emoji-toggle:hover[b-jqdctc5f36] { color: #f59e0b; background: rgba(245,158,11,.08); }

.emoji-overlay[b-jqdctc5f36] {
    position: fixed; inset: 0; z-index: 90; cursor: default;
}

.emoji-panel[b-jqdctc5f36] {
    position: absolute; bottom: 50px; right: 0; left: auto;
    width: 320px; max-height: 360px;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem;
    box-shadow: 0 20px 40px -8px rgba(0,0,0,.12);
    z-index: 100; overflow: hidden;
    display: flex; flex-direction: column;
    animation: emojiSlideUp-b-jqdctc5f36 .15s ease-out;
}

@keyframes emojiSlideUp-b-jqdctc5f36 {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.emoji-tabs[b-jqdctc5f36] {
    display: flex; gap: 2px; padding: 8px 8px 4px;
    border-bottom: 1px solid #f3f4f6;
    overflow-x: auto;
}

.emoji-tab[b-jqdctc5f36] {
    padding: 6px 8px; border-radius: 8px; border: none;
    background: transparent; font-size: 1.15rem; cursor: pointer;
    transition: background .15s; flex-shrink: 0;
}
.emoji-tab:hover[b-jqdctc5f36] { background: #f3f4f6; }
.emoji-tab.active[b-jqdctc5f36] { background: #ecfdf5; }

.emoji-grid[b-jqdctc5f36] {
    display: grid; grid-template-columns: repeat(8, 1fr);
    gap: 2px; padding: 8px 4px; /* Reduced side padding to accommodate scrollbar */
    overflow-y: auto; overflow-x: hidden; max-height: 280px;
    scrollbar-width: thin;
}

.emoji-item[b-jqdctc5f36] {
    width: 34px; height: 34px; border: none; background: transparent;
    border-radius: 8px; font-size: 1.25rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .12s;
}
.emoji-item:hover[b-jqdctc5f36] { background: #f3f4f6; transform: scale(1.2); }

@media (max-width: 480px) {
    .emoji-panel[b-jqdctc5f36] { width: 280px; right: 0; }
    .emoji-grid[b-jqdctc5f36] { grid-template-columns: repeat(7, 1fr); }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   Site Header
   ============================================ */
.site-header[b-u24xqvpf5x] {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    height: var(--header-height);
}

.site-header.scrolled[b-u24xqvpf5x] {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.header-logo[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-icon[b-u24xqvpf5x] {
    font-size: 1.75rem;
}

.header-logo-text[b-u24xqvpf5x] {
    font-size: 1.375rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Nav */
.header-nav[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link[b-u24xqvpf5x] {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover[b-u24xqvpf5x] {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-link.active[b-u24xqvpf5x] {
    color: var(--primary-600);
    font-weight: 600;
}

/* Header Actions */
.header-actions[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* User Menu */
.user-menu[b-u24xqvpf5x] {
    position: relative;
    cursor: pointer;
}

.user-avatar[b-u24xqvpf5x] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.user-avatar:hover[b-u24xqvpf5x] {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.user-dropdown[b-u24xqvpf5x] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    animation: scaleIn 0.15s ease;
    z-index: var(--z-dropdown);
}

.dropdown-header[b-u24xqvpf5x] {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dropdown-divider[b-u24xqvpf5x] {
    height: 1px;
    background: var(--gray-100);
}

.dropdown-item[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: background var(--transition-fast);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.dropdown-item:hover[b-u24xqvpf5x] {
    background: var(--gray-50);
}

.dropdown-item-danger[b-u24xqvpf5x] {
    color: var(--danger);
}

.dropdown-item-danger:hover[b-u24xqvpf5x] {
    background: #fef2f2;
}

/* Mobile Menu */
.mobile-menu-btn[b-u24xqvpf5x] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.hamburger[b-u24xqvpf5x] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span[b-u24xqvpf5x] {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.hamburger.open span:nth-child(1)[b-u24xqvpf5x] {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2)[b-u24xqvpf5x] {
    opacity: 0;
}

.hamburger.open span:nth-child(3)[b-u24xqvpf5x] {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay[b-u24xqvpf5x] {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    animation: fadeIn 0.2s ease;
}

.mobile-menu[b-u24xqvpf5x] {
    background: #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.mobile-nav-link[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    text-decoration: none;
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-nav-link:hover[b-u24xqvpf5x] {
    background: var(--gray-50);
}

.mobile-logout[b-u24xqvpf5x] {
    color: var(--danger);
}

.mobile-divider[b-u24xqvpf5x] {
    height: 1px;
    background: var(--gray-100);
    margin: 0.5rem 0;
}

/* ============================================
   Site Main
   ============================================ */
.site-main[b-u24xqvpf5x] {
    min-height: calc(100vh - var(--header-height));
}

/* ============================================
   Site Footer
   ============================================ */
.site-footer[b-u24xqvpf5x] {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-grid[b-u24xqvpf5x] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid[b-u24xqvpf5x] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-grid[b-u24xqvpf5x] {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand[b-u24xqvpf5x] {
    max-width: 320px;
}

.footer-logo[b-u24xqvpf5x] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo-text[b-u24xqvpf5x] {
    font-weight: 800;
    color: #fff;
}

.footer-desc[b-u24xqvpf5x] {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-col h4[b-u24xqvpf5x] {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col a[b-u24xqvpf5x],
.footer-col p[b-u24xqvpf5x] {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.625rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover[b-u24xqvpf5x] {
    color: var(--primary-400);
}

.footer-bottom[b-u24xqvpf5x] {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.8125rem;
}
/* /Pages/About.razor.rz.scp.css */
/* Modern About Page Styles */
.about-page[b-lccvctc9o6] {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800, #1f2937);
    overflow-x: hidden;
}

.text-gradient[b-lccvctc9o6] {
    background: linear-gradient(135deg, var(--emerald-600, #059669) 0%, var(--teal-500, #14b8a6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title[b-lccvctc9o6] {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle[b-lccvctc9o6] {
    font-size: 1.125rem;
    color: var(--gray-500, #6b7280);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero[b-lccvctc9o6] {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    background-color: #f8fafc;
    overflow: hidden;
}

.hero-background[b-lccvctc9o6] {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob[b-lccvctc9o6] {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-b-lccvctc9o6 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.blob-1[b-lccvctc9o6] {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(16, 185, 129, 0.15); /* Emerald */
    animation-delay: 0s;
}

.blob-2[b-lccvctc9o6] {
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(14, 165, 233, 0.15); /* Sky blue */
    animation-delay: -5s;
}

.blob-3[b-lccvctc9o6] {
    top: 20%; right: 20%;
    width: 400px; height: 400px;
    background: rgba(245, 158, 11, 0.1); /* Amber */
    animation-delay: -10s;
}

@keyframes float-b-lccvctc9o6 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -50px) scale(1.1); }
}

.hero-container[b-lccvctc9o6] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge[b-lccvctc9o6] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.badge-dot[b-lccvctc9o6] {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--emerald-500, #10b981);
    box-shadow: 0 0 8px var(--emerald-400, #34d399);
}

.hero-title[b-lccvctc9o6] {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--gray-900, #111827);
}

.hero-subtitle[b-lccvctc9o6] {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-600, #4b5563);
    max-width: 700px;
    line-height: 1.7;
    margin: 0 auto;
}

/* Bento Stats Box */
.about-stats[b-lccvctc9o6] {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.bento-grid[b-lccvctc9o6] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid[b-lccvctc9o6] {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }
}

.bento-card[b-lccvctc9o6] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover[b-lccvctc9o6] {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-card-main[b-lccvctc9o6] {
    grid-column: span 2;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-value[b-lccvctc9o6] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gray-900, #111827);
    margin-bottom: 0.25rem;
}

.stat-label[b-lccvctc9o6] {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500, #6b7280);
}

.stat-decoration[b-lccvctc9o6] {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    width: 120px;
    height: 120px;
    opacity: 0.05;
    color: var(--gray-900, #111827);
}

.stat-decoration svg[b-lccvctc9o6] {
    width: 100%; height: 100%;
}

.highlight-card[b-lccvctc9o6] {
    background: linear-gradient(135deg, var(--gray-900, #111827), var(--gray-800, #1f2937));
    color: white;
    border: none;
    grid-column: span 2;
}

@media (min-width: 768px) {
    .highlight-card[b-lccvctc9o6] { grid-column: auto; }
}

.rating-box[b-lccvctc9o6] {
    margin-bottom: 0.5rem;
}

.rating-value[b-lccvctc9o6] {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
}

.rating-stars[b-lccvctc9o6] {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.rating-stars .half[b-lccvctc9o6] {
    opacity: 0.5;
}

.text-white[b-lccvctc9o6] { color: rgba(255,255,255,0.8); }

/* The Story */
.about-story[b-lccvctc9o6] {
    padding: 8rem 0;
}

.story-wrapper[b-lccvctc9o6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-wrapper[b-lccvctc9o6] {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.story-images[b-lccvctc9o6] {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4;
}

.story-img-main[b-lccvctc9o6] {
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-img-secondary[b-lccvctc9o6] {
    position: absolute;
    bottom: 0; right: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 8px solid white;
}

.bg-blur[b-lccvctc9o6] {
    /* Optional experimental effect */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.story-paragraphs p[b-lccvctc9o6] {
    font-size: 1.0625rem;
    color: var(--gray-600, #4b5563);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-paragraphs p:last-child[b-lccvctc9o6] {
    margin-bottom: 0;
}

/* Core Values */
.about-values[b-lccvctc9o6] {
    padding: 6rem 0;
    background: #ffffff;
}

.values-grid[b-lccvctc9o6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .values-grid[b-lccvctc9o6] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item[b-lccvctc9o6] {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.value-item:hover[b-lccvctc9o6] {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: rgba(226, 232, 240, 1);
}

.value-icon-box[b-lccvctc9o6] {
    width: 64px; height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon-box svg[b-lccvctc9o6] {
    width: 32px; height: 32px;
}

.value-icon-box.blue[b-lccvctc9o6] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.value-icon-box.emerald[b-lccvctc9o6] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.value-icon-box.amber[b-lccvctc9o6] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.value-title[b-lccvctc9o6] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin-bottom: 0.75rem;
}

.value-desc[b-lccvctc9o6] {
    color: var(--gray-600, #4b5563);
    line-height: 1.6;
}

/* CTA Section */
.about-cta[b-lccvctc9o6] {
    padding: 4rem 0 8rem;
}

.cta-box[b-lccvctc9o6] {
    background: linear-gradient(135deg, var(--gray-900, #111827) 0%, #000000 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-box[b-lccvctc9o6]::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 60%);
    z-index: 1;
}

.cta-content[b-lccvctc9o6] {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content h2[b-lccvctc9o6] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p[b-lccvctc9o6] {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

.cta-action[b-lccvctc9o6] {
    position: relative;
    z-index: 2;
}

.btn-primary-large[b-lccvctc9o6] {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--emerald-600, #059669);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.4);
}

.btn-primary-large:hover[b-lccvctc9o6] {
    background: var(--emerald-500, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -4px rgba(5, 150, 105, 0.5);
}
/* /Pages/Booking.razor.rz.scp.css */
/* Booking Page */
.booking-page[b-4x60rogj05] {
    padding: 2rem 0 4rem;
}

.booking-header[b-4x60rogj05] {
    margin-bottom: 2rem;
}

.booking-header h1[b-4x60rogj05] {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.75rem;
    color: var(--gray-900);
}

.booking-layout[b-4x60rogj05] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .booking-layout[b-4x60rogj05] {
        flex-direction: row;
    }
}

.booking-form-section[b-4x60rogj05] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card[b-4x60rogj05] {
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0,0,0, 0.05);
}

.booking-card-title[b-4x60rogj05] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.form-row[b-4x60rogj05] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row[b-4x60rogj05] {
        grid-template-columns: 1fr 1fr;
    }
}

/* Payment Options */
.payment-options[b-4x60rogj05] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option[b-4x60rogj05] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 2px solid var(--gray-100);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.payment-option:hover[b-4x60rogj05] {
    border-color: var(--primary-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.payment-option.selected[b-4x60rogj05] {
    border-color: var(--primary-500);
    background: linear-gradient(145deg, var(--primary-50), #ffffff);
}

.payment-option input[type="radio"][b-4x60rogj05] {
    margin-top: 0.25rem;
    accent-color: var(--primary-500);
}

.payment-option-content[b-4x60rogj05] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-icon[b-4x60rogj05] {
    font-size: 1.5rem;
}

.payment-option-content strong[b-4x60rogj05] {
    display: block;
    font-size: 0.9375rem;
}

.payment-option-content p[b-4x60rogj05] {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

/* Summary Sidebar */
.booking-sidebar[b-4x60rogj05] {
    width: 100%;
}

@media (min-width: 1024px) {
    .booking-sidebar[b-4x60rogj05] {
        width: 360px;
        flex-shrink: 0;
    }
}

.summary-card[b-4x60rogj05] {
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0, 0.1);
}

.sticky-sidebar[b-4x60rogj05] {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.summary-card h3[b-4x60rogj05] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.summary-hotel[b-4x60rogj05] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.summary-hotel-thumb[b-4x60rogj05] {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.summary-hotel-info[b-4x60rogj05] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-hotel-stars[b-4x60rogj05] {
    display: flex;
    gap: 1px;
}

.summary-hotel-stars .star[b-4x60rogj05] {
    font-size: 0.75rem;
}

.summary-divider[b-4x60rogj05] {
    height: 1px;
    background: var(--gray-100);
    margin: 1rem 0;
}

.summary-details[b-4x60rogj05] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.summary-row[b-4x60rogj05] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.summary-total[b-4x60rogj05] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 0;
}

.price-large[b-4x60rogj05] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
}

.summary-card .btn-primary[b-4x60rogj05] {
    font-weight: 700;
    padding: 0.875rem 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.summary-note[b-4x60rogj05] {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.5;
}

.summary-note a[b-4x60rogj05] {
    color: var(--primary-600);
}

/* Booking Success */
.booking-success[b-4x60rogj05] {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon[b-4x60rogj05] {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.booking-success h4[b-4x60rogj05] {
    color: var(--primary-600);
    margin-bottom: 0.5rem;
}

.booking-success p[b-4x60rogj05] {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Auth Error (reused) */
.auth-error[b-4x60rogj05] {
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    color: #b91c1c;
    font-size: 0.875rem;
}

.btn-loading[b-4x60rogj05] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
/* /Pages/Contact.razor.rz.scp.css */
/* Contact / Chat Page */
.contact-page[b-ohlethsbxo] {
    min-height: calc(100vh - 200px);
}

.chat-loading-page[b-ohlethsbxo] {
    display: flex; align-items: center; justify-content: center;
    min-height: calc(100vh - 200px);
}

/* ====== HERO (Guest) ====== */
.contact-hero[b-ohlethsbxo] {
    position: relative;
    padding: 8rem 0 5rem;
    text-align: center;
    overflow: hidden;
    background: #f8fafc;
}

.hero-bg[b-ohlethsbxo] {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}

.blob[b-ohlethsbxo] { position: absolute; filter: blur(80px); border-radius: 50%; opacity: 0.5; }
.b1[b-ohlethsbxo] { top: -15%; left: -10%; width: 500px; height: 500px; background: rgba(16,185,129,.15); animation: bfloat-b-ohlethsbxo 18s infinite alternate ease-in-out; }
.b2[b-ohlethsbxo] { bottom: -20%; right: -5%; width: 550px; height: 550px; background: rgba(59,130,246,.12); animation: bfloat-b-ohlethsbxo 22s infinite alternate-reverse ease-in-out; }

@keyframes bfloat-b-ohlethsbxo { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(25px,-40px) scale(1.08); } }

.hero-inner[b-ohlethsbxo] { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.hero-badge[b-ohlethsbxo] {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
    border: 1px solid rgba(226,232,240,.8); border-radius: 9999px;
    font-size: .875rem; font-weight: 600; color: #374151;
}

.dot[b-ohlethsbxo] { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #34d399; }

.contact-hero h1[b-ohlethsbxo] {
    font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1;
    letter-spacing: -.03em; color: #111827;
}

.gradient[b-ohlethsbxo] {
    background: linear-gradient(135deg, #059669, #14b8a6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub[b-ohlethsbxo] {
    font-size: clamp(1rem, 2vw, 1.2rem); color: #6b7280;
    max-width: 550px; line-height: 1.7; margin: 0 auto;
}

.btn-cta[b-ohlethsbxo] {
    display: inline-flex; align-items: center; padding: 1rem 2.5rem;
    font-size: 1.1rem; font-weight: 600; background: #059669; color: #fff;
    border-radius: 999px; text-decoration: none; transition: all .2s;
    box-shadow: 0 10px 15px -3px rgba(5,150,105,.35);
}
.btn-cta:hover[b-ohlethsbxo] { background: #10b981; transform: translateY(-2px); box-shadow: 0 15px 25px -4px rgba(5,150,105,.45); }

/* ====== INFO CARDS (Guest) ====== */
.contact-cards[b-ohlethsbxo] { padding: 4rem 0 6rem; }

.cards-grid[b-ohlethsbxo] {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .cards-grid[b-ohlethsbxo] { grid-template-columns: repeat(3, 1fr); } }

.info-card[b-ohlethsbxo] {
    background: #fff; border: 1px solid #f1f5f9; border-radius: 1.5rem;
    padding: 2rem; text-align: center; transition: all .25s;
}
.info-card:hover[b-ohlethsbxo] { box-shadow: 0 20px 40px -12px rgba(0,0,0,.06); transform: translateY(-4px); border-color: #e2e8f0; }

.card-icon[b-ohlethsbxo] {
    width: 56px; height: 56px; border-radius: 1rem; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
}
.card-icon svg[b-ohlethsbxo] { width: 28px; height: 28px; }
.card-icon.blue[b-ohlethsbxo] { background: rgba(59,130,246,.1); color: #3b82f6; }
.card-icon.emerald[b-ohlethsbxo] { background: rgba(16,185,129,.1); color: #10b981; }
.card-icon.amber[b-ohlethsbxo] { background: rgba(245,158,11,.1); color: #f59e0b; }

.info-card h3[b-ohlethsbxo] { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: .5rem; }
.info-card p[b-ohlethsbxo] { color: #6b7280; font-size: .95rem; }

/* ====== LIVE CHAT (Authenticated) ====== */
.chat-container[b-ohlethsbxo] {
    max-width: 800px; margin: 2rem auto; border-radius: 1.5rem;
    border: 1px solid #e5e7eb; overflow: hidden; background: #fff;
    display: flex; flex-direction: column; height: calc(100vh - 180px);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,.08);
}

.chat-header[b-ohlethsbxo] {
    padding: 1rem 1.5rem; background: #fff; border-bottom: 1px solid #f1f5f9;
    display: flex; align-items: center;
}

.chat-header-info[b-ohlethsbxo] { display: flex; align-items: center; gap: .75rem; }

.avatar-admin[b-ohlethsbxo] {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #10b981, #059669);
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.avatar-admin svg[b-ohlethsbxo] { width: 24px; height: 24px; }

.chat-header-info h3[b-ohlethsbxo] { font-size: 1rem; font-weight: 700; color: #111827; margin: 0; }
.status-online[b-ohlethsbxo] { font-size: .8rem; color: #10b981; font-weight: 500; }

/* Messages */
.chat-messages[b-ohlethsbxo] {
    flex: 1; overflow-y: auto; padding: 1.5rem;
    display: flex; flex-direction: column; gap: .75rem;
    background: #fafbfc;
}

.chat-loading[b-ohlethsbxo], .chat-empty[b-ohlethsbxo] {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex: 1; gap: .75rem; color: #9ca3af;
}

.empty-icon[b-ohlethsbxo] { font-size: 3rem; }
.chat-empty h3[b-ohlethsbxo] { font-size: 1.1rem; color: #6b7280; font-weight: 600; }
.chat-empty p[b-ohlethsbxo] { font-size: .9rem; color: #9ca3af; max-width: 300px; text-align: center; }

/* Typing indicator */
.typing-indicator[b-ohlethsbxo] { display: flex; gap: 4px; }
.typing-indicator span[b-ohlethsbxo] {
    width: 8px; height: 8px; border-radius: 50%; background: #d1d5db;
    animation: blink-b-ohlethsbxo 1.4s infinite both;
}
.typing-indicator span:nth-child(2)[b-ohlethsbxo] { animation-delay: .2s; }
.typing-indicator span:nth-child(3)[b-ohlethsbxo] { animation-delay: .4s; }
@keyframes blink-b-ohlethsbxo { 0%,80%,100% { opacity: .3; transform: scale(.8); } 40% { opacity: 1; transform: scale(1); } }

/* Message bubbles */
.msg[b-ohlethsbxo] { display: flex; gap: .5rem; align-items: flex-end; max-width: 80%; }
.msg-user[b-ohlethsbxo] { align-self: flex-end; flex-direction: row-reverse; }
.msg-admin[b-ohlethsbxo] { align-self: flex-start; }

.msg-avatar[b-ohlethsbxo] {
    width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #10b981, #059669);
    color: #fff; font-size: .8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.msg-bubble[b-ohlethsbxo] {
    padding: .75rem 1rem; border-radius: 1.25rem; position: relative;
    font-size: .9375rem; line-height: 1.5; word-break: break-word;
}

.msg-user .msg-bubble[b-ohlethsbxo] {
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    border-bottom-right-radius: .25rem;
}

.msg-admin .msg-bubble[b-ohlethsbxo] {
    background: #fff; color: #374151; border: 1px solid #e5e7eb;
    border-bottom-left-radius: .25rem;
}

.msg-bubble p[b-ohlethsbxo] { margin: 0; white-space: pre-wrap; }

.msg-time[b-ohlethsbxo] {
    display: block; font-size: .7rem; margin-top: .25rem; opacity: .6;
}

.msg-user .msg-time[b-ohlethsbxo] { text-align: right; }

/* Input area */
.chat-input-area[b-ohlethsbxo] {
    padding: 1rem 1.5rem; border-top: 1px solid #f1f5f9; background: #fff;
    display: flex; gap: .75rem; align-items: center;
}

.chat-input[b-ohlethsbxo] {
    flex: 1; padding: .75rem 1rem; border: 1px solid #e5e7eb; border-radius: 999px;
    font-size: .9375rem; outline: none; transition: border-color .2s;
    font-family: inherit; background: #f9fafb;
}
.chat-input:focus[b-ohlethsbxo] { border-color: #10b981; background: #fff; box-shadow: 0 0 0 3px rgba(16,185,129,.1); }

.chat-send-btn[b-ohlethsbxo] {
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.chat-send-btn svg[b-ohlethsbxo] { width: 20px; height: 20px; }
.chat-send-btn:hover:not(:disabled)[b-ohlethsbxo] { transform: scale(1.05); box-shadow: 0 4px 12px rgba(5,150,105,.3); }
.chat-send-btn:disabled[b-ohlethsbxo] { opacity: .5; cursor: not-allowed; }

.chat-upload-btn[b-ohlethsbxo] {
    width: 40px; height: 40px; border-radius: 50%;
    color: #9ca3af; cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin: 0;
}
.chat-upload-btn svg[b-ohlethsbxo] { width: 24px; height: 24px; }
.chat-upload-btn:hover[b-ohlethsbxo] { color: #10b981; background: rgba(16,185,129,.08); }

/* Responsive */
@media (max-width: 768px) {
    .chat-container[b-ohlethsbxo] { margin: 0; border-radius: 0; height: calc(100vh - 140px); border: none; }
}

/* Lightbox */
.lightbox-overlay[b-ohlethsbxo] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.lightbox-close-btn[b-ohlethsbxo] {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%; border: none;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.lightbox-close-btn:hover[b-ohlethsbxo] { background-color: rgba(0, 0, 0, 0.7); }
.lightbox-close-btn svg[b-ohlethsbxo] { width: 24px; height: 24px; }

.lightbox-image[b-ohlethsbxo] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    cursor: default;
}
/* /Pages/Faq.razor.rz.scp.css */
/* Static Pages Shared Styles */
.static-page[b-j8yq2c4bdj] {
    padding-bottom: 2rem;
}

.static-hero[b-j8yq2c4bdj] {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, #eff6ff 50%, var(--accent-50) 100%);
    margin-bottom: 2rem;
}

.static-hero h1[b-j8yq2c4bdj] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.static-hero p[b-j8yq2c4bdj] {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.static-section[b-j8yq2c4bdj] {
    padding: 3rem 0;
}

/* Story Grid */
.story-grid[b-j8yq2c4bdj] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid[b-j8yq2c4bdj] {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content h2[b-j8yq2c4bdj] {
    margin-bottom: 1rem;
}

.story-content p[b-j8yq2c4bdj] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image[b-j8yq2c4bdj] {
    display: flex;
    justify-content: center;
}

.story-placeholder[b-j8yq2c4bdj] {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Stats */
.stats-grid[b-j8yq2c4bdj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid[b-j8yq2c4bdj] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card[b-j8yq2c4bdj] {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.stat-number[b-j8yq2c4bdj] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-label[b-j8yq2c4bdj] {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Values */
.value-card[b-j8yq2c4bdj] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

.value-card:hover[b-j8yq2c4bdj] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon[b-j8yq2c4bdj] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3[b-j8yq2c4bdj] {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.value-card p[b-j8yq2c4bdj] {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Contact Form */
.contact-grid[b-j8yq2c4bdj] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid[b-j8yq2c4bdj] {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-list[b-j8yq2c4bdj] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item[b-j8yq2c4bdj] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon[b-j8yq2c4bdj] {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-item h4[b-j8yq2c4bdj] {
    margin-bottom: 0.125rem;
}

.contact-info-item p[b-j8yq2c4bdj] {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.contact-form-card[b-j8yq2c4bdj] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-card h3[b-j8yq2c4bdj] {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-list[b-j8yq2c4bdj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item[b-j8yq2c4bdj] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question[b-j8yq2c4bdj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.faq-question:hover[b-j8yq2c4bdj] {
    color: var(--primary-600);
}

.faq-toggle[b-j8yq2c4bdj] {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-toggle.open[b-j8yq2c4bdj] {
    transform: rotate(45deg);
}

.faq-answer[b-j8yq2c4bdj] {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Content Page */
.content-page[b-j8yq2c4bdj] {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.content-page h1[b-j8yq2c4bdj] {
    text-align: center;
    margin-bottom: 2rem;
}

.content-page h2[b-j8yq2c4bdj] {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.content-page p[b-j8yq2c4bdj] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page ul[b-j8yq2c4bdj] {
    padding-left: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page li[b-j8yq2c4bdj] {
    margin-bottom: 0.5rem;
}
/* /Pages/Home.razor.rz.scp.css */
/* ============================================
   ANIMATIONS & PERFORMANCE
   ============================================ */
.fade-in-up[b-b711c64l42] {
    animation: fadeInUp-b-b711c64l42 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.delay-1[b-b711c64l42] { animation-delay: 0.1s; }
.delay-2[b-b711c64l42] { animation-delay: 0.2s; }
.delay-3[b-b711c64l42] { animation-delay: 0.3s; }

@keyframes fadeInUp-b-b711c64l42 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ripple[b-b711c64l42] {
    position: relative;
    overflow: hidden;
}
.ripple[b-b711c64l42]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s, opacity 0.6s;
    opacity: 0;
}
.ripple:active[b-b711c64l42]::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* ============================================
   HERO SECTION (2026 Most Modern)
   ============================================ */
.hero[b-b711c64l42] {
    position: relative;
    padding: 6rem 0 7rem;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-color: #fafafa;
}

.hero-bg[b-b711c64l42] {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0%, rgba(200, 235, 245, 0.45) 90%);
}

.glow-orb[b-b711c64l42] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: float-b-b711c64l42 20s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1[b-b711c64l42] {
    width: 600px;
    height: 600px;
    background: var(--primary-200);
    top: -200px;
    right: -100px;
}

.orb-2[b-b711c64l42] {
    width: 500px;
    height: 500px;
    background: #e0e7ff;
    bottom: -200px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3[b-b711c64l42] {
    width: 400px;
    height: 400px;
    background: #fdf4ff;
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float-b-b711c64l42 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

.hero-content[b-b711c64l42] {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-wrap[b-b711c64l42] {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-pill[b-b711c64l42] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title[b-b711c64l42] {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.hero-highlight[b-b711c64l42] {
    background: linear-gradient(135deg, var(--primary-500), #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle[b-b711c64l42] {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   GLASSMORPHISM SEARCH BOX
   ============================================ */
.hero-search[b-b711c64l42] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1.25rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .hero-search[b-b711c64l42] {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 0.75rem 1rem;
        border-radius: 99px; /* Pill shape on desktop */
    }
}

.search-group[b-b711c64l42] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    position: relative;
}

.search-label[b-b711c64l42] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.search-input-wrapper[b-b711c64l42] {
    position: relative;
}

.search-input[b-b711c64l42] {
    width: 100%;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    transition: color 0.2s;
}

.search-input:focus[b-b711c64l42] {
    color: var(--primary-700);
}

.search-input[b-b711c64l42]::placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

.search-divider[b-b711c64l42] {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
    margin: 0 0.5rem;
}

.search-btn[b-b711c64l42] {
    border-radius: 99px !important;
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3) !important;
    flex-shrink: 0;
    margin-top: 1rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .search-btn[b-b711c64l42] {
        margin-top: 0;
        margin-left: 0.5rem;
    }
}

/* Hide on mobile utility specific for search */
@media (max-width: 767px) {
    .hide-mobile[b-b711c64l42] {
        display: none !important;
    }
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats[b-b711c64l42] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-stat[b-b711c64l42] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat strong[b-b711c64l42] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.hero-stat span[b-b711c64l42] {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-stat-divider[b-b711c64l42] {
    width: 1px;
    height: 32px;
    background: var(--gray-300);
}

/* ============================================
   MODERN COMPONENT STYLES
   ============================================ */
.modern-card[b-b711c64l42] {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}
.modern-card:hover[b-b711c64l42] {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
}

.hotel-card-img-wrap[b-b711c64l42] {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.lazy-img[b-b711c64l42] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.modern-card:hover .lazy-img[b-b711c64l42] {
    transform: scale(1.08);
}

.glass-badge[b-b711c64l42] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-700);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    z-index: 10;
}

.pulse-dot[b-b711c64l42] {
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse-b-b711c64l42 2s infinite;
}
@keyframes pulse-b-b711c64l42 {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hotel-card-stars[b-b711c64l42] {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hotel-card-name[b-b711c64l42] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-card-location[b-b711c64l42] {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.hotel-card-footer[b-b711c64l42] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.hotel-card-rating[b-b711c64l42] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-badge[b-b711c64l42] {
    background: var(--primary-500);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.rating-count[b-b711c64l42] {
    color: var(--gray-500);
    font-size: 0.8125rem;
    font-weight: 500;
}

.view-btn[b-b711c64l42] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}
.modern-card:hover .view-btn[b-b711c64l42] {
    color: var(--primary-700);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section-feature[b-b711c64l42] {
    background-color: #ffffff;
    padding: 6rem 0;
}

.container-narrow[b-b711c64l42] {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box[b-b711c64l42] {
    text-align: left;
    padding: 2.5rem 2rem;
    background: #fafafa;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hover-lift:hover[b-b711c64l42] {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}

.feature-icon-wrapper[b-b711c64l42] {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.blue-gradient[b-b711c64l42] { background: linear-gradient(135deg, #3b82f6, #06b6d4); box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4); }
.purple-gradient[b-b711c64l42] { background: linear-gradient(135deg, #8b5cf6, #d946ef); box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.4); }
.orange-gradient[b-b711c64l42] { background: linear-gradient(135deg, #f97316, #f59e0b); box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4); }

.feature-box h3[b-b711c64l42] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-box p[b-b711c64l42] {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destination-grid[b-b711c64l42] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .destination-grid[b-b711c64l42] {
        grid-template-columns: 3fr 2fr;
        height: 480px;
    }
}

.destination-col[b-b711c64l42] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.destination-card[b-b711c64l42] {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    text-decoration: none;
    min-height: 220px;
}

.large-span[b-b711c64l42] {
    height: 100%;
}

.destination-bg[b-b711c64l42] {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bg-hcm[b-b711c64l42] { background-image: url('https://images.unsplash.com/photo-1583417319070-4a69db38a482?auto=format&fit=crop&q=80&w=1000'); }
.bg-hn[b-b711c64l42] { background-image: url('https://images.unsplash.com/photo-1588668214407-6ea9a6d8c272?auto=format&fit=crop&q=80&w=1000'); background-position: top; }
.bg-dn[b-b711c64l42] { background-image: url('https://images.unsplash.com/photo-1559592413-7cec4d0cae2b?auto=format&fit=crop&q=80&w=1000'); }

.destination-overlay[b-b711c64l42] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    transition: opacity 0.3s;
}

.destination-card:hover .destination-bg[b-b711c64l42] {
    transform: scale(1.05);
}

.destination-content[b-b711c64l42] {
    position: relative;
    z-index: 10;
    color: white;
}

.destination-tag[b-b711c64l42] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.destination-content h3[b-b711c64l42] {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.destination-content p[b-b711c64l42] {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section[b-b711c64l42] {
    padding: 5rem 0 8rem;
}

.cta-banner[b-b711c64l42] {
    position: relative;
    background: linear-gradient(135deg, var(--primary-600), #0891b2);
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

.cta-bg-shape[b-b711c64l42] {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.cta-content[b-b711c64l42] {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2[b-b711c64l42] {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p[b-b711c64l42] {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-white[b-b711c64l42] {
    background: white;
    color: var(--primary-700);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    font-weight: 700;
}
.btn-white:hover[b-b711c64l42] {
    background: #f8fafc;
    color: var(--primary-800);
}

/* Group & utilities for complex hover */
.group:hover .group-hover\:-translate-y-1[b-b711c64l42] { transform: translateY(-0.25rem); }
.group:hover .group-hover\:opacity-100[b-b711c64l42] { opacity: 1; }
.transition-transform[b-b711c64l42] { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.transition-opacity[b-b711c64l42] { transition: opacity 0.3s ease; }
.opacity-0[b-b711c64l42] { opacity: 0; }
.opacity-100[b-b711c64l42] { opacity: 1; }
.ml-2[b-b711c64l42] { margin-left: 0.5rem; }
.mt-3[b-b711c64l42] { margin-top: 0.75rem; }
/* /Pages/HotelDetail.razor.rz.scp.css */
/* Hotel Detail Page */
.detail-page[b-cfphfu5l7k] {
    padding-bottom: 4rem;
}

/* Gallery */
.gallery-section[b-cfphfu5l7k] {
    padding: 1.5rem 0;
}

.gallery-grid[b-cfphfu5l7k] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid[b-cfphfu5l7k] {
        grid-template-columns: 2fr 1fr;
        max-height: 480px;
        gap: 0.75rem;
    }
}

.gallery-main[b-cfphfu5l7k] {
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.gallery-img[b-cfphfu5l7k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    max-height: 480px;
    transition: transform 0.4s ease-in-out;
}

.gallery-main:hover .gallery-img[b-cfphfu5l7k] {
    transform: scale(1.05);
}

.gallery-placeholder[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gray-100);
    min-height: 300px;
    border-radius: 1rem;
}

.gallery-side[b-cfphfu5l7k] {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-side[b-cfphfu5l7k] {
        display: grid;
    }
}

.gallery-thumb[b-cfphfu5l7k] {
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

.gallery-thumb img[b-cfphfu5l7k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img[b-cfphfu5l7k] {
    transform: scale(1.08);
}

/* Detail Layout */
.detail-layout[b-cfphfu5l7k] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .detail-layout[b-cfphfu5l7k] {
        flex-direction: row;
    }
}

.detail-content[b-cfphfu5l7k] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card[b-cfphfu5l7k] {
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0,0,0, 0.05);
}

.detail-card-title[b-cfphfu5l7k] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.detail-card-header[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

/* Hotel Info */
.hotel-stars[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hotel-stars .star[b-cfphfu5l7k] {
    font-size: 1rem;
}

.hotel-name[b-cfphfu5l7k] {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.hotel-address[b-cfphfu5l7k] {
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.hotel-rating-summary[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, var(--primary-50), #ffffff);
    border-radius: 1rem;
    border: 1px solid var(--primary-100);
}

.rating-badge-lg[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-500);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 800;
}

.hotel-description[b-cfphfu5l7k] {
    line-height: 1.8;
    color: var(--gray-600);
    white-space: pre-line;
}

/* Amenities */
.amenities-grid[b-cfphfu5l7k] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .amenities-grid[b-cfphfu5l7k] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.amenity-item[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-50);
}

.amenity-icon[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Room Types */
.room-types-list[b-cfphfu5l7k] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-type-card[b-cfphfu5l7k] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--gray-100);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0, 0.02);
}

.room-type-card:hover[b-cfphfu5l7k] {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0, 0.08);
    border-color: var(--gray-200);
}

@media (min-width: 768px) {
    .room-type-card[b-cfphfu5l7k] {
        flex-direction: row;
    }
}

.room-type-img[b-cfphfu5l7k] {
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .room-type-img[b-cfphfu5l7k] {
        width: 200px;
        flex-shrink: 0;
    }
}

.room-type-img img[b-cfphfu5l7k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
}

.room-type-placeholder[b-cfphfu5l7k] {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gray-100);
}

.room-type-info[b-cfphfu5l7k] {
    flex: 1;
    padding: 1rem;
}

.room-title-link[b-cfphfu5l7k] {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.room-title-link:hover h3[b-cfphfu5l7k] {
    color: var(--primary-600);
}

.room-type-info h3[b-cfphfu5l7k] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    transition: color 0.2s;
}

.room-type-specs[b-cfphfu5l7k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.room-type-amenities[b-cfphfu5l7k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin: 0.5rem 0;
}

.room-type-desc[b-cfphfu5l7k] {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-top: 0.5rem;
}

.room-type-action[b-cfphfu5l7k] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.75rem;
    min-width: 220px;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .room-type-action[b-cfphfu5l7k] {
        border-top: none;
        border-left: 1px solid var(--gray-100);
    }
}

.price-display[b-cfphfu5l7k] {
    text-align: right;
}

.price-large[b-cfphfu5l7k] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-600);
}

.price-unit[b-cfphfu5l7k] {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.room-type-action .btn-primary[b-cfphfu5l7k] {
    font-weight: 700;
    padding: 0.75rem 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

/* Reviews */
.reviews-list[b-cfphfu5l7k] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item[b-cfphfu5l7k] {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 10px rgba(0,0,0, 0.02);
}

.review-header[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar[b-cfphfu5l7k] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-100);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.review-meta[b-cfphfu5l7k] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-rating[b-cfphfu5l7k] {
    display: flex;
    gap: 1px;
}

.review-rating .star[b-cfphfu5l7k] {
    font-size: 0.875rem;
}

.review-title[b-cfphfu5l7k] {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.review-content[b-cfphfu5l7k] {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.review-pros[b-cfphfu5l7k] {
    font-size: 0.875rem;
    color: #15803d;
    margin-top: 0.5rem;
}

.review-cons[b-cfphfu5l7k] {
    font-size: 0.875rem;
    color: #b91c1c;
    margin-top: 0.25rem;
}

.review-reply[b-cfphfu5l7k] {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-400);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.review-reply strong[b-cfphfu5l7k] {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    color: var(--gray-700);
}

/* Sidebar */
.detail-sidebar[b-cfphfu5l7k] {
    width: 100%;
}

@media (min-width: 1024px) {
    .detail-sidebar[b-cfphfu5l7k] {
        width: 320px;
        flex-shrink: 0;
    }
}

.sidebar-card[b-cfphfu5l7k] {
    background: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0, 0.1);
}

.sticky-sidebar[b-cfphfu5l7k] {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-card h3[b-cfphfu5l7k] {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.contact-info[b-cfphfu5l7k] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item[b-cfphfu5l7k] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.sidebar-divider[b-cfphfu5l7k] {
    height: 1px;
    background: var(--gray-100);
    margin: 1.25rem 0;
}

/* Gallery More Overlay */
.gallery-more-overlay[b-cfphfu5l7k] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    pointer-events: none;
    transition: background 0.3s ease;
}
.gallery-thumb:hover .gallery-more-overlay[b-cfphfu5l7k] {
    background: rgba(0,0,0,0.5);
}

/* Lightbox */
.lightbox-overlay[b-cfphfu5l7k] {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-content[b-cfphfu5l7k] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image[b-cfphfu5l7k] {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-counter[b-cfphfu5l7k] {
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.lightbox-nav[b-cfphfu5l7k] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10000;
}

.lightbox-nav:hover[b-cfphfu5l7k] {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev[b-cfphfu5l7k] {
    left: 2rem;
}

.lightbox-nav.next[b-cfphfu5l7k] {
    right: 2rem;
}

.lightbox-close[b-cfphfu5l7k] {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.2s;
}

.lightbox-close:hover[b-cfphfu5l7k] {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .lightbox-nav[b-cfphfu5l7k] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .lightbox-nav.prev[b-cfphfu5l7k] { left: 0.5rem; }
    .lightbox-nav.next[b-cfphfu5l7k] { right: 0.5rem; }
    .lightbox-close[b-cfphfu5l7k] { top: 1rem; right: 1rem; }
}
/* /Pages/Hotels.razor.rz.scp.css */
/* Hotels Page Modern UI Refactor */
.hotels-page[b-4p9v10v1v7] {
    padding: 2.5rem 0 5rem;
    min-height: 100vh;
}

.page-header[b-4p9v10v1v7] {
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-header h1[b-4p9v10v1v7] {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.page-header p[b-4p9v10v1v7] {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.hotels-layout[b-4p9v10v1v7] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

@media (min-width: 1024px) {
    .hotels-layout[b-4p9v10v1v7] {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Mobile Filter Button */
.mobile-filter-btn[b-4p9v10v1v7] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    transition: background 0.2s;
}

.mobile-filter-btn:hover[b-4p9v10v1v7] {
    background: #f8fafc;
}

@media (min-width: 1024px) {
    .mobile-filter-btn[b-4p9v10v1v7] {
        display: none;
    }
}

/* Filters Sidebar */
.filters-sidebar[b-4p9v10v1v7] {
    width: 100%;
    display: none; /* Hidden on mobile by default */
}

.filters-sidebar.show[b-4p9v10v1v7] {
    display: block;
    animation: fadeIn-b-4p9v10v1v7 0.3s ease;
}

@media (min-width: 1024px) {
    .filters-sidebar[b-4p9v10v1v7] {
        display: block !important;
        width: 300px;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--header-height, 80px) + 2rem);
    }
}

.filter-card[b-4p9v10v1v7] {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.filter-title[b-4p9v10v1v7] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group[b-4p9v10v1v7] {
    margin-bottom: 1.5rem;
}

.form-label[b-4p9v10v1v7] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.star-filter[b-4p9v10v1v7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.star-filter-btn[b-4p9v10v1v7] {
    flex: 1 1 calc(33.333% - 0.5rem);
    padding: 0.625rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.star-filter-btn:hover[b-4p9v10v1v7] {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.star-filter-btn.active[b-4p9v10v1v7] {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.filter-actions[b-4p9v10v1v7] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* Hotels Content */
.hotels-content[b-4p9v10v1v7] {
    flex: 1;
    min-width: 0;
}

.results-header[b-4p9v10v1v7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count[b-4p9v10v1v7] {
    font-size: 1rem;
    color: #475569;
}
.results-count strong[b-4p9v10v1v7] {
    color: #0f172a;
    font-weight: 700;
}

/* Hotel List Cards Mode */
.hotels-list[b-4p9v10v1v7] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-list-card[b-4p9v10v1v7] {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.hotel-list-card:hover[b-4p9v10v1v7] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

@media (min-width: 640px) {
    .hotel-list-card[b-4p9v10v1v7] {
        flex-direction: row;
        align-items: stretch;
        min-height: 260px; /* Allow expansion if content is long to prevent cutoff */
    }
}

.hotel-list-img[b-4p9v10v1v7] {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hotel-list-img[b-4p9v10v1v7] {
        width: 320px;
        aspect-ratio: unset;
        flex-shrink: 0;
        align-self: stretch;
    }
}

.hotel-list-img img[b-4p9v10v1v7] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-list-card:hover .hotel-list-img img[b-4p9v10v1v7] {
    transform: scale(1.08);
}

.hotel-list-img .img-placeholder[b-4p9v10v1v7] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
}

.featured-badge[b-4p9v10v1v7] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: #ea580c; /* Orange */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}

.hotel-list-info[b-4p9v10v1v7] {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.hotel-list-stars[b-4p9v10v1v7] {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.hotel-list-stars .star[b-4p9v10v1v7] {
    font-size: 0.875rem;
}

.hotel-list-name[b-4p9v10v1v7] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.hotel-list-location[b-4p9v10v1v7] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-list-desc[b-4p9v10v1v7] {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-list-amenities[b-4p9v10v1v7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.amenity-tag[b-4p9v10v1v7] {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.hotel-list-footer[b-4p9v10v1v7] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.hotel-list-rating[b-4p9v10v1v7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-badge[b-4p9v10v1v7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
    font-weight: 800;
    background: #2563eb;
    color: #ffffff;
    border-radius: 0.5rem;
    border-bottom-left-radius: 2px;
}

.rating-badge.no-rating[b-4p9v10v1v7] {
    background: #e2e8f0;
    color: #64748b;
    border-bottom-left-radius: 0.5rem;
}

.rating-text[b-4p9v10v1v7] {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn-b-4p9v10v1v7 {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.skeleton[b-4p9v10v1v7] {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading-b-4p9v10v1v7 1.5s infinite;
}

@keyframes loading-b-4p9v10v1v7 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty State Modern */
.empty-state[b-4p9v10v1v7] {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px dashed #cbd5e1;
}
.empty-state-icon[b-4p9v10v1v7] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}
.empty-state h3[b-4p9v10v1v7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.empty-state p[b-4p9v10v1v7] {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Modern Pagination */
.pagination[b-4p9v10v1v7] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.pagination-btn[b-4p9v10v1v7] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pagination-btn:hover:not(:disabled)[b-4p9v10v1v7] {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.pagination-btn.active[b-4p9v10v1v7] {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}
.pagination-btn:disabled[b-4p9v10v1v7] {
    opacity: 0.5;
    cursor: not-allowed;
}
.pagination-ellipsis[b-4p9v10v1v7] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 1rem;
    user-select: none;
}
/* /Pages/Login.razor.rz.scp.css */
/* Auth Pages Shared CSS */
.auth-page[b-fne7xu8q5h] {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--gray-50);
}

.auth-container[b-fne7xu8q5h] {
    display: flex;
    width: 100%;
    max-width: 960px;
    min-height: 560px;
    background: #fff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* Branding Side */
.auth-branding[b-fne7xu8q5h] {
    display: none;
    width: 45%;
    background: linear-gradient(135deg, var(--primary-600), #0891b2);
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.auth-branding[b-fne7xu8q5h]::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.auth-branding[b-fne7xu8q5h]::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .auth-branding[b-fne7xu8q5h] {
        display: flex;
        align-items: center;
    }
}

.auth-brand-content[b-fne7xu8q5h] {
    position: relative;
    z-index: 1;
}

.auth-brand-icon[b-fne7xu8q5h] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.auth-brand-content h2[b-fne7xu8q5h] {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.auth-brand-content p[b-fne7xu8q5h] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.auth-brand-features[b-fne7xu8q5h] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-feature[b-fne7xu8q5h] {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Form Side */
.auth-form-wrap[b-fne7xu8q5h] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .auth-form-wrap[b-fne7xu8q5h] {
        padding: 3rem;
    }
}

.auth-form-inner[b-fne7xu8q5h] {
    width: 100%;
    max-width: 400px;
}

.auth-title[b-fne7xu8q5h] {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.auth-subtitle[b-fne7xu8q5h] {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.auth-error[b-fne7xu8q5h] {
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    color: #b91c1c;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

/* Password Input */
.password-input-wrap[b-fne7xu8q5h] {
    position: relative;
}

.password-input-wrap .form-input[b-fne7xu8q5h] {
    padding-right: 3rem;
}

.password-toggle[b-fne7xu8q5h] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.25rem;
}

/* Loading button */
.btn-loading[b-fne7xu8q5h] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Footer */
.auth-footer[b-fne7xu8q5h] {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.auth-footer a[b-fne7xu8q5h] {
    color: var(--primary-600);
    font-weight: 600;
}
/* /Pages/MyBookings.razor.rz.scp.css */
/* Animations & Glassmorphism Basics */
.fade-in[b-cptth5uyhj] { animation: fadeIn-b-cptth5uyhj 0.4s ease-out forwards; }
@keyframes fadeIn-b-cptth5uyhj { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.glass-panel[b-cptth5uyhj] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
}

.glass-inner[b-cptth5uyhj] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
}

.glass-modal[b-cptth5uyhj] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Account Page Layout */
.account-page[b-cptth5uyhj] { padding: 2.5rem 0 5rem; }
.account-layout[b-cptth5uyhj] { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .account-layout[b-cptth5uyhj] { flex-direction: row; } }

/* Sidebar */
.account-sidebar[b-cptth5uyhj] { width: 100%; }
@media (min-width: 768px) {
    .account-sidebar[b-cptth5uyhj] { width: 260px; flex-shrink: 0; }
}

.sidebar-menu[b-cptth5uyhj] {
    display: flex; flex-direction: row; gap: 0.5rem; overflow-x: auto;
    padding: 0.75rem; scrollbar-width: none;
}
.sidebar-menu[b-cptth5uyhj]::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .sidebar-menu[b-cptth5uyhj] {
        flex-direction: column; position: sticky; top: calc(var(--header-height) + 1.5rem);
    }
}

.menu-item[b-cptth5uyhj] {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1.25rem; font-size: 0.9375rem; font-weight: 500;
    color: var(--gray-600); border-radius: var(--radius-lg);
    text-decoration: none; white-space: nowrap;
}
.menu-item:hover[b-cptth5uyhj] {
    background: rgba(243, 244, 246, 0.8); color: var(--gray-900);
}
.menu-item.active[b-cptth5uyhj] {
    background: var(--primary-50); color: var(--primary-600);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1); font-weight: 600;
}
.menu-item svg[b-cptth5uyhj] { color: inherit; }

/* Main */
.account-main[b-cptth5uyhj] { flex: 1; min-width: 0; }
.account-header[b-cptth5uyhj] { margin-bottom: 2rem; }
.account-header h1[b-cptth5uyhj] { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.025em; color: var(--gray-900); }

/* Tabs */
.status-tabs-wrapper[b-cptth5uyhj] {
    position: relative; margin-bottom: 2rem;
}
.status-tabs-wrapper[b-cptth5uyhj]::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40px;
    background: linear-gradient(to left, var(--bg-body, #f9fafb), transparent); pointer-events: none;
}
.status-tabs[b-cptth5uyhj] {
    display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.25rem;
    scrollbar-width: none; background: rgba(243, 244, 246, 0.5);
    border-radius: var(--radius-full); width: max-content; max-width: 100%;
}
.status-tabs[b-cptth5uyhj]::-webkit-scrollbar { display: none; }
.status-tab[b-cptth5uyhj] {
    padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 500;
    color: var(--gray-600); background: transparent; border: 1px solid transparent;
    border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap; font-family: inherit;
}
.status-tab:hover[b-cptth5uyhj] { color: var(--primary-600); background: rgba(16, 185, 129, 0.05); }
.status-tab.active[b-cptth5uyhj] {
    background: var(--primary-600); color: white; border-color: var(--primary-500);
    box-shadow: 0 4px 14px -4px rgba(16, 185, 129, 0.6); font-weight: 600;
}

/* Bookings List */
.bookings-list[b-cptth5uyhj] { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-item[b-cptth5uyhj] {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1); border-radius: var(--radius-2xl);
    overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.booking-item:hover[b-cptth5uyhj] {
    transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-100);
}
.booking-item-main[b-cptth5uyhj] { padding: 1.5rem; }
.booking-item-header[b-cptth5uyhj] {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 1.25rem; flex-wrap: wrap; gap: 1rem;
}
.booking-icon-wrap[b-cptth5uyhj] {
    width: 48px; height: 48px; border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    color: var(--primary-600); display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}
.booking-code[b-cptth5uyhj] { font-weight: 700; font-size: 1.125rem; color: var(--gray-900); letter-spacing: 0.025em; }

.status-dot[b-cptth5uyhj] {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background-color: currentColor; margin-right: 0.375rem; opacity: 0.8;
}

.badge-soft[b-cptth5uyhj] {
    border: 1px solid currentColor; background-color: transparent; font-weight: 600;
}
.badge-warning.badge-soft[b-cptth5uyhj] { color: #d97706; background-color: rgba(252, 211, 77, 0.1); border-color: rgba(252, 211, 77, 0.3); }
.badge-info.badge-soft[b-cptth5uyhj] { color: #0284c7; background-color: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.3); }
.badge-primary.badge-soft[b-cptth5uyhj] { color: var(--primary-600); background-color: var(--primary-50); border-color: var(--primary-200); }
.badge-success.badge-soft[b-cptth5uyhj] { color: #059669; background-color: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); }
.badge-danger.badge-soft[b-cptth5uyhj] { color: #dc2626; background-color: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); }
.badge-gray.badge-soft[b-cptth5uyhj] { color: var(--gray-600); background-color: var(--gray-50); border-color: var(--gray-200); }

/* Grid Details */
.booking-item-details[b-cptth5uyhj] {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1.5rem; padding: 1.25rem; position: relative;
}
@media (min-width: 640px) {
    .booking-item-details[b-cptth5uyhj] { grid-template-columns: repeat(4, 1fr); padding: 1.5rem; }
}

.booking-detail[b-cptth5uyhj] { display: flex; flex-direction: column; gap: 0.25rem; }
.detail-label[b-cptth5uyhj] {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.75rem; color: var(--gray-500); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.detail-label svg[b-cptth5uyhj] { width: 14px; height: 14px; color: var(--primary-400); }
.detail-value[b-cptth5uyhj] { font-size: 0.9375rem; font-weight: 600; color: var(--gray-800); }

/* Footer */
.booking-item-footer[b-cptth5uyhj] {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.payment-info[b-cptth5uyhj] { display: flex; align-items: center; gap: 0.75rem; }
.booking-item-price[b-cptth5uyhj] { text-align: right; }
.bg-gradient-primary[b-cptth5uyhj] {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}

.booking-actions[b-cptth5uyhj] {
    margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px dashed var(--gray-200);
    display: flex; justify-content: flex-end; gap: 0.75rem;
}

/* Base Styles Extends */
.btn-pill[b-cptth5uyhj] { border-radius: var(--radius-full); padding-left: 1.5rem; padding-right: 1.5rem; }
.shadow-primary[b-cptth5uyhj] { box-shadow: 0 8px 20px -6px rgba(16, 185, 129, 0.4); }

/* Empty State */
.empty-state[b-cptth5uyhj] {
    text-align: center; padding: 4rem 2rem; margin-top: 1rem;
    border: 1px dashed var(--gray-300);
}
.animate-float[b-cptth5uyhj] { animation: float-b-cptth5uyhj 3s ease-in-out infinite; }
@keyframes float-b-cptth5uyhj { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Form styles for modal */
.form-textarea[b-cptth5uyhj] { width: 100%; padding: 0.875rem; line-height: 1.5; resize: vertical; }

.modal-header[b-cptth5uyhj] { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.modal-header h3[b-cptth5uyhj] { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); margin: 0; }
.modal-body[b-cptth5uyhj] { padding: 1.5rem; }
.modal-footer[b-cptth5uyhj] { padding: 1rem 1.5rem; }
.slide-up[b-cptth5uyhj] { animation: slideUp-b-cptth5uyhj 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideUp-b-cptth5uyhj { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
/* /Pages/NotFound.razor.rz.scp.css */
.not-found-page[b-nixirj6h9w] {
    min-height: calc(100vh - var(--header-height) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.not-found-content[b-nixirj6h9w] {
    text-align: center;
    max-width: 500px;
}

.not-found-code[b-nixirj6h9w] {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.not-found-content h1[b-nixirj6h9w] {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.not-found-content p[b-nixirj6h9w] {
    color: var(--gray-500);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.not-found-actions[b-nixirj6h9w] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* /Pages/PaymentResult.razor.rz.scp.css */
/* Payment Result Page */
.payment-result-page[b-s59l62r5vk] { padding: 3rem 0 5rem; }
.payment-result-wrapper[b-s59l62r5vk] { max-width: 580px; margin: 0 auto; }

.fade-in[b-s59l62r5vk] { animation: fadeIn-b-s59l62r5vk 0.4s ease-out forwards; }
@keyframes fadeIn-b-s59l62r5vk { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.payment-result-card[b-s59l62r5vk] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.payment-result-card[b-s59l62r5vk]::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.payment-result-card.success[b-s59l62r5vk]::before { background: linear-gradient(to right, var(--primary-400), var(--primary-600)); }
.payment-result-card.error[b-s59l62r5vk]::before { background: linear-gradient(to right, #ef4444, #dc2626); }
.payment-result-card.pending[b-s59l62r5vk]::before { background: linear-gradient(to right, #f59e0b, #d97706); }

.payment-result-card h2[b-s59l62r5vk] {
    font-size: 1.625rem; font-weight: 700; letter-spacing: -0.025em;
    color: var(--gray-900); margin: 1.25rem 0 0.5rem;
}

/* Icon wrappers */
.result-icon-wrap[b-s59l62r5vk] {
    width: 96px; height: 96px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 0.5rem;
}
.success-glow[b-s59l62r5vk] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: var(--primary-600);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.06);
    animation: successPulse-b-s59l62r5vk 2s ease-in-out infinite;
}
@keyframes successPulse-b-s59l62r5vk {
    0%, 100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.06); }
    50% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0.03); }
}

.error-glow[b-s59l62r5vk] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #dc2626;
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.06);
}

.pending-glow[b-s59l62r5vk] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #d97706;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.06);
    animation: pendingPulse-b-s59l62r5vk 1.5s ease-in-out infinite;
}
@keyframes pendingPulse-b-s59l62r5vk {
    0%, 100% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.06); transform: scale(1); }
    50% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0.02); transform: scale(1.03); }
}

.loading-pulse[b-s59l62r5vk] {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    animation: spin-b-s59l62r5vk 1.5s linear infinite;
}
@keyframes spin-b-s59l62r5vk { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Polling indicator */
.polling-indicator[b-s59l62r5vk] {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-top: 1.5rem; padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-full);
}

.polling-dot[b-s59l62r5vk] {
    width: 10px; height: 10px; border-radius: 50%;
    background: #f59e0b;
    animation: pollingBlink-b-s59l62r5vk 1s ease-in-out infinite;
}
@keyframes pollingBlink-b-s59l62r5vk {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.polling-text[b-s59l62r5vk] { font-size: 0.8125rem; color: #92400e; font-weight: 600; }

/* Status badge */
.status-badge[b-s59l62r5vk] {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700;
}
.status-badge.success[b-s59l62r5vk] { background: rgba(16, 185, 129, 0.1); color: #059669; }

/* Details */
.glass-inner[b-s59l62r5vk] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xl);
}

.result-details[b-s59l62r5vk] {
    text-align: left; padding: 1.5rem; margin-top: 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
}

.detail-row[b-s59l62r5vk] {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 0.75rem; border-bottom: 1px dashed var(--gray-200);
}
.detail-row:last-child[b-s59l62r5vk] { border-bottom: none; padding-bottom: 0; }

.detail-label[b-s59l62r5vk] { font-size: 0.8125rem; color: var(--gray-500); font-weight: 500; }
.detail-value[b-s59l62r5vk] { font-size: 0.9375rem; color: var(--gray-800); }

.text-primary[b-s59l62r5vk] { color: var(--primary-600); }
.text-danger[b-s59l62r5vk] { color: #dc2626; }

/* Actions */
.result-actions[b-s59l62r5vk] {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-pill[b-s59l62r5vk] { border-radius: var(--radius-full); padding: 0.75rem 1.75rem; font-weight: 600; }
.btn-outline[b-s59l62r5vk] {
    border: 1.5px solid var(--gray-300); color: var(--gray-700); background: transparent;
}
.btn-outline:hover[b-s59l62r5vk] { border-color: var(--gray-400); background: var(--gray-50); }
.shadow-primary[b-s59l62r5vk] { box-shadow: 0 4px 14px -4px rgba(16, 185, 129, 0.6); }

@media (max-width: 640px) {
    .payment-result-card[b-s59l62r5vk] { padding: 2rem 1.5rem; }
    .result-actions[b-s59l62r5vk] { flex-direction: column; }
    .result-actions .btn[b-s59l62r5vk] { width: 100%; text-align: center; }
}
/* /Pages/Privacy.razor.rz.scp.css */
/* Static Pages Shared Styles */
.static-page[b-1wpevbq0jm] {
    padding-bottom: 2rem;
}

.static-hero[b-1wpevbq0jm] {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, #eff6ff 50%, var(--accent-50) 100%);
    margin-bottom: 2rem;
}

.static-hero h1[b-1wpevbq0jm] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.static-hero p[b-1wpevbq0jm] {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.static-section[b-1wpevbq0jm] {
    padding: 3rem 0;
}

/* Story Grid */
.story-grid[b-1wpevbq0jm] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid[b-1wpevbq0jm] {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content h2[b-1wpevbq0jm] {
    margin-bottom: 1rem;
}

.story-content p[b-1wpevbq0jm] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image[b-1wpevbq0jm] {
    display: flex;
    justify-content: center;
}

.story-placeholder[b-1wpevbq0jm] {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Stats */
.stats-grid[b-1wpevbq0jm] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid[b-1wpevbq0jm] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card[b-1wpevbq0jm] {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.stat-number[b-1wpevbq0jm] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-label[b-1wpevbq0jm] {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Values */
.value-card[b-1wpevbq0jm] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

.value-card:hover[b-1wpevbq0jm] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon[b-1wpevbq0jm] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3[b-1wpevbq0jm] {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.value-card p[b-1wpevbq0jm] {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Contact Form */
.contact-grid[b-1wpevbq0jm] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid[b-1wpevbq0jm] {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-list[b-1wpevbq0jm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item[b-1wpevbq0jm] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon[b-1wpevbq0jm] {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-item h4[b-1wpevbq0jm] {
    margin-bottom: 0.125rem;
}

.contact-info-item p[b-1wpevbq0jm] {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.contact-form-card[b-1wpevbq0jm] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-card h3[b-1wpevbq0jm] {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-list[b-1wpevbq0jm] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item[b-1wpevbq0jm] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question[b-1wpevbq0jm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.faq-question:hover[b-1wpevbq0jm] {
    color: var(--primary-600);
}

.faq-toggle[b-1wpevbq0jm] {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-toggle.open[b-1wpevbq0jm] {
    transform: rotate(45deg);
}

.faq-answer[b-1wpevbq0jm] {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Content Page */
.content-page[b-1wpevbq0jm] {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.content-page h1[b-1wpevbq0jm] {
    text-align: center;
    margin-bottom: 2rem;
}

.content-page h2[b-1wpevbq0jm] {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.content-page p[b-1wpevbq0jm] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page ul[b-1wpevbq0jm] {
    padding-left: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page li[b-1wpevbq0jm] {
    margin-bottom: 0.5rem;
}
/* /Pages/Profile.razor.rz.scp.css */
/* Animations & Glassmorphism Basics */
.fade-in[b-xtrcfas9m0] { animation: fadeIn-b-xtrcfas9m0 0.4s ease-out forwards; }
@keyframes fadeIn-b-xtrcfas9m0 { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.slide-down[b-xtrcfas9m0] { animation: slideDown-b-xtrcfas9m0 0.3s ease-out forwards; }
@keyframes slideDown-b-xtrcfas9m0 { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.animate-pulse-slow[b-xtrcfas9m0] { animation: pulseSlow-b-xtrcfas9m0 3s infinite cubic-bezier(0.4, 0, 0.6, 1); }
@keyframes pulseSlow-b-xtrcfas9m0 { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

.glass-panel[b-xtrcfas9m0] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, 0.05);
}

.glass-inner[b-xtrcfas9m0] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

/* Base Layout Config */
.account-page[b-xtrcfas9m0] { padding: 2.5rem 0 5rem; }
.account-layout[b-xtrcfas9m0] { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .account-layout[b-xtrcfas9m0] { flex-direction: row; } }

/* Sidebar matches MyBookings */
.account-sidebar[b-xtrcfas9m0] { width: 100%; }
@media (min-width: 768px) {
    .account-sidebar[b-xtrcfas9m0] { width: 260px; flex-shrink: 0; }
}

.sidebar-menu[b-xtrcfas9m0] {
    display: flex; flex-direction: row; gap: 0.5rem; overflow-x: auto;
    padding: 0.75rem; scrollbar-width: none;
}
.sidebar-menu[b-xtrcfas9m0]::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
    .sidebar-menu[b-xtrcfas9m0] {
        flex-direction: column; position: sticky; top: calc(var(--header-height) + 1.5rem);
    }
}

.menu-item[b-xtrcfas9m0] {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1.25rem; font-size: 0.9375rem; font-weight: 500;
    color: var(--gray-600); border-radius: var(--radius-lg);
    text-decoration: none; white-space: nowrap;
}
.menu-item:hover[b-xtrcfas9m0] {
    background: rgba(243, 244, 246, 0.8); color: var(--gray-900);
}
.menu-item.active[b-xtrcfas9m0] {
    background: var(--primary-50); color: var(--primary-600);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1); font-weight: 600;
}
.menu-item svg[b-xtrcfas9m0] { color: inherit; }

/* Main Area */
.account-main[b-xtrcfas9m0] { flex: 1; min-width: 0; }
.account-header[b-xtrcfas9m0] { margin-bottom: 2rem; }
.account-header h1[b-xtrcfas9m0] { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.025em; color: var(--gray-900); }

/* Profile Specific */
.profile-card[b-xtrcfas9m0] {
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Hero Avatar Card */
.profile-card-hero[b-xtrcfas9m0] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.profile-card-hero[b-xtrcfas9m0]::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to right, var(--primary-100), var(--primary-50), transparent);
    opacity: 0.5; z-index: 0;
}

.profile-header[b-xtrcfas9m0] {
    position: relative;
    z-index: 10;
}

/* ======================================= */
/* Avatar Upload Wrapper                    */
/* ======================================= */

.avatar-upload-wrapper[b-xtrcfas9m0] {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-upload-wrapper:hover[b-xtrcfas9m0] {
    transform: scale(1.05);
}

.avatar-upload-wrapper:hover .avatar-overlay[b-xtrcfas9m0] {
    opacity: 1;
}

.profile-avatar-lg[b-xtrcfas9m0] {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800; flex-shrink: 0;
    border: 4px solid #fff;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.profile-avatar-lg.uploading[b-xtrcfas9m0] {
    opacity: 0.6;
    filter: blur(1px);
}

.avatar-image[b-xtrcfas9m0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-overlay[b-xtrcfas9m0] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    gap: 0.2rem;
    pointer-events: none;
    z-index: 20;
}

.avatar-overlay i[b-xtrcfas9m0] {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

/* Avatar Upload Spinner */
.avatar-spinner[b-xtrcfas9m0] {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: avatarSpin-b-xtrcfas9m0 0.7s linear infinite;
}

@keyframes avatarSpin-b-xtrcfas9m0 {
    to { transform: rotate(360deg); }
}

.group-hover:hover .profile-avatar-lg[b-xtrcfas9m0] {
    transform: scale(1.05) rotate(-5deg);
}

.shadow-primary-sm[b-xtrcfas9m0] { box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.3); }
.text-gradient[b-xtrcfas9m0] {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-600) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 700; font-size: 1.5rem; letter-spacing: -0.025em;
}

.status-dot[b-xtrcfas9m0] {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background-color: currentColor;
}
.badge-soft[b-xtrcfas9m0] {
    border: 1px solid currentColor; background-color: transparent; font-weight: 600;
}
.badge-primary.badge-soft[b-xtrcfas9m0] { color: var(--primary-600); background-color: var(--primary-50); border-color: var(--primary-200); }

/* Form Component */
.form-card[b-xtrcfas9m0] { padding: 2rem; }
.profile-card-title[b-xtrcfas9m0] {
    font-size: 1.125rem; font-weight: 600; color: var(--gray-900);
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px dashed var(--gray-200);
}

.form-label[b-xtrcfas9m0] { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-input[b-xtrcfas9m0] { 
    width: 100%; padding: 0.875rem 1rem; 
    background-color: #fff; box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.form-input:disabled[b-xtrcfas9m0] { opacity: 0.7; cursor: not-allowed; }

/* Alerts */
.alert[b-xtrcfas9m0] { padding: 1rem 1.25rem; border-radius: var(--radius-xl); font-size: 0.9375rem; font-weight: 500; display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.alert-success[b-xtrcfas9m0] { background: rgba(236, 253, 245, 0.8); border: 1px solid #10b981; color: #065f46; }
.alert-success svg[b-xtrcfas9m0] { color: #10b981; }
.alert-danger[b-xtrcfas9m0] { background: rgba(254, 242, 242, 0.8); border: 1px solid #ef4444; color: #991b1b; }
.alert-danger svg[b-xtrcfas9m0] { color: #ef4444; }

/* Buttons */
.btn-pill[b-xtrcfas9m0] { border-radius: var(--radius-full); padding: 0.75rem 2rem; font-weight: 600; transition: all 0.3s ease; }
.btn-pill:hover:not(:disabled)[b-xtrcfas9m0] { transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4); }
.shadow-primary[b-xtrcfas9m0] { box-shadow: 0 4px 14px -4px rgba(16, 185, 129, 0.6); }

/* Empty state */
.empty-state[b-xtrcfas9m0] { border: 1px dashed var(--gray-300); }
.animate-float[b-xtrcfas9m0] { animation: float-b-xtrcfas9m0 3s ease-in-out infinite; }
@keyframes float-b-xtrcfas9m0 { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); }  }
/* /Pages/Register.razor.rz.scp.css */
/* Auth Pages Shared CSS */
.auth-page[b-9i14vsjajo] {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--gray-50);
}

.auth-container[b-9i14vsjajo] {
    display: flex;
    width: 100%;
    max-width: 960px;
    min-height: 560px;
    background: #fff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* Branding Side */
.auth-branding[b-9i14vsjajo] {
    display: none;
    width: 45%;
    background: linear-gradient(135deg, var(--primary-600), #0891b2);
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.auth-branding[b-9i14vsjajo]::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.auth-branding[b-9i14vsjajo]::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .auth-branding[b-9i14vsjajo] {
        display: flex;
        align-items: center;
    }
}

.auth-brand-content[b-9i14vsjajo] {
    position: relative;
    z-index: 1;
}

.auth-brand-icon[b-9i14vsjajo] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.auth-brand-content h2[b-9i14vsjajo] {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.auth-brand-content p[b-9i14vsjajo] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.auth-brand-features[b-9i14vsjajo] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-feature[b-9i14vsjajo] {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Form Side */
.auth-form-wrap[b-9i14vsjajo] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .auth-form-wrap[b-9i14vsjajo] {
        padding: 3rem;
    }
}

.auth-form-inner[b-9i14vsjajo] {
    width: 100%;
    max-width: 400px;
}

.auth-title[b-9i14vsjajo] {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.auth-subtitle[b-9i14vsjajo] {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.auth-error[b-9i14vsjajo] {
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    color: #b91c1c;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

/* Password Input */
.password-input-wrap[b-9i14vsjajo] {
    position: relative;
}

.password-input-wrap .form-input[b-9i14vsjajo] {
    padding-right: 3rem;
}

.password-toggle[b-9i14vsjajo] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.25rem;
}

/* Loading button */
.btn-loading[b-9i14vsjajo] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Footer */
.auth-footer[b-9i14vsjajo] {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.auth-footer a[b-9i14vsjajo] {
    color: var(--primary-600);
    font-weight: 600;
}
/* /Pages/RoomDetail.razor.rz.scp.css */
/* Room Detail Page */
.detail-page[b-ojc45s79lr] { padding-bottom: 4rem; }

/* Breadcrumb */
.breadcrumb-nav[b-ojc45s79lr] {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.breadcrumb-nav a[b-ojc45s79lr] {
    color: var(--primary-600);
    text-decoration: none;
}
.breadcrumb-nav a:hover[b-ojc45s79lr] { text-decoration: underline; }
.breadcrumb-nav .divider[b-ojc45s79lr] { margin: 0 0.5rem; color: var(--gray-300); }
.breadcrumb-nav .current[b-ojc45s79lr] { color: var(--gray-800); font-weight: 500; }

/* Room Name & Specs */
.room-name[b-ojc45s79lr] {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.room-highlights[b-ojc45s79lr] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.highlight-item[b-ojc45s79lr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
    color: var(--gray-800);
    font-weight: 500;
}
.highlight-item .icon[b-ojc45s79lr] { font-size: 1.5rem; }

/* Amenities */
.room-amenities[b-ojc45s79lr] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.amenity-pill[b-ojc45s79lr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 2rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    transition: all 0.2s ease;
}
.amenity-pill:hover[b-ojc45s79lr] {
    border-color: var(--primary-400);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.amenity-pill .amenity-icon[b-ojc45s79lr] {
    color: var(--primary-500);
    font-weight: 700;
}

/* Room Description */
.room-description[b-ojc45s79lr] {
    line-height: 1.8;
    color: var(--gray-600);
    font-size: 1.0625rem;
    white-space: pre-line;
}

/* Sidebar Pricing */
.price-display-room[b-ojc45s79lr] {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.price-display-room .price-val[b-ojc45s79lr] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
}
.price-display-room .price-unit[b-ojc45s79lr] {
    color: var(--gray-500);
    font-weight: 500;
}
.availability-status[b-ojc45s79lr] {
    color: #b91c1c;
    background: #fef2f2;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Hotel Preview Sidebar */
.hotel-preview[b-ojc45s79lr] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 1rem;
}
.hotel-mini-thumb[b-ojc45s79lr] {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
}
.hotel-mini-info[b-ojc45s79lr] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Gallery and Layout Reuse (similar to HotelDetail for consistency) */
.gallery-section[b-ojc45s79lr] { padding: 1.5rem 0; }
.gallery-grid[b-ojc45s79lr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .gallery-grid[b-ojc45s79lr] {
        grid-template-columns: 2fr 1fr;
        max-height: 480px;
    }
}
.gallery-main[b-ojc45s79lr] {
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}
.gallery-img[b-ojc45s79lr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    max-height: 480px;
    transition: transform 0.4s ease-in-out;
}
.gallery-main:hover .gallery-img[b-ojc45s79lr] { transform: scale(1.05); }

.gallery-side[b-ojc45s79lr] {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-side[b-ojc45s79lr] { display: grid; } }

.gallery-thumb[b-ojc45s79lr] { overflow: hidden; position: relative; border-radius: 1rem; }
.gallery-thumb img[b-ojc45s79lr] { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-thumb:hover img[b-ojc45s79lr] { transform: scale(1.08); }

.detail-layout[b-ojc45s79lr] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}
@media (min-width: 1024px) { .detail-layout[b-ojc45s79lr] { flex-direction: row; } }
.detail-content[b-ojc45s79lr] { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2rem; }
.detail-card[b-ojc45s79lr] {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0,0,0, 0.05);
}
.detail-card-title[b-ojc45s79lr] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.detail-sidebar[b-ojc45s79lr] { width: 100%; }
@media (min-width: 1024px) { .detail-sidebar[b-ojc45s79lr] { width: 340px; flex-shrink: 0; } }
.sidebar-card[b-ojc45s79lr] {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0, 0.1);
}
.sticky-sidebar[b-ojc45s79lr] { position: sticky; top: calc(var(--header-height) + 2rem); }
.sidebar-divider[b-ojc45s79lr] { height: 1px; background: var(--gray-100); margin: 1.5rem 0; }

.gallery-more-overlay[b-ojc45s79lr] {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; font-weight: 700; pointer-events: none;
    transition: background 0.3s ease;
}
.gallery-thumb:hover .gallery-more-overlay[b-ojc45s79lr] { background: rgba(0,0,0,0.5); }

/* Lightbox overlay reusing existing CSS */
.lightbox-overlay[b-ojc45s79lr] { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.lightbox-content[b-ojc45s79lr] { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-image[b-ojc45s79lr] { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.lightbox-counter[b-ojc45s79lr] { color: white; margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.lightbox-nav[b-ojc45s79lr] { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; width: 60px; height: 60px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; z-index: 10000; }
.lightbox-nav:hover[b-ojc45s79lr] { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.lightbox-nav.prev[b-ojc45s79lr] { left: 2rem; }
.lightbox-nav.next[b-ojc45s79lr] { right: 2rem; }
.lightbox-close[b-ojc45s79lr] { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; z-index: 10000; transition: transform 0.2s; }
.lightbox-close:hover[b-ojc45s79lr] { transform: scale(1.2); }
@media (max-width: 768px) {
    .lightbox-nav[b-ojc45s79lr] { width: 40px; height: 40px; font-size: 1.25rem; }
    .lightbox-nav.prev[b-ojc45s79lr] { left: 0.5rem; }
    .lightbox-nav.next[b-ojc45s79lr] { right: 0.5rem; }
    .lightbox-close[b-ojc45s79lr] { top: 1rem; right: 1rem; }
}
/* /Pages/Terms.razor.rz.scp.css */
/* Static Pages Shared Styles */
.static-page[b-utvku1q78g] {
    padding-bottom: 2rem;
}

.static-hero[b-utvku1q78g] {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, #eff6ff 50%, var(--accent-50) 100%);
    margin-bottom: 2rem;
}

.static-hero h1[b-utvku1q78g] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.static-hero p[b-utvku1q78g] {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.static-section[b-utvku1q78g] {
    padding: 3rem 0;
}

/* Story Grid */
.story-grid[b-utvku1q78g] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid[b-utvku1q78g] {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content h2[b-utvku1q78g] {
    margin-bottom: 1rem;
}

.story-content p[b-utvku1q78g] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image[b-utvku1q78g] {
    display: flex;
    justify-content: center;
}

.story-placeholder[b-utvku1q78g] {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Stats */
.stats-grid[b-utvku1q78g] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid[b-utvku1q78g] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card[b-utvku1q78g] {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.stat-number[b-utvku1q78g] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-label[b-utvku1q78g] {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Values */
.value-card[b-utvku1q78g] {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

.value-card:hover[b-utvku1q78g] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon[b-utvku1q78g] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3[b-utvku1q78g] {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.value-card p[b-utvku1q78g] {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Contact Form */
.contact-grid[b-utvku1q78g] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid[b-utvku1q78g] {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-list[b-utvku1q78g] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item[b-utvku1q78g] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon[b-utvku1q78g] {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-item h4[b-utvku1q78g] {
    margin-bottom: 0.125rem;
}

.contact-info-item p[b-utvku1q78g] {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.contact-form-card[b-utvku1q78g] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-card h3[b-utvku1q78g] {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-list[b-utvku1q78g] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item[b-utvku1q78g] {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question[b-utvku1q78g] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.faq-question:hover[b-utvku1q78g] {
    color: var(--primary-600);
}

.faq-toggle[b-utvku1q78g] {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-toggle.open[b-utvku1q78g] {
    transform: rotate(45deg);
}

.faq-answer[b-utvku1q78g] {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Content Page */
.content-page[b-utvku1q78g] {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.content-page h1[b-utvku1q78g] {
    text-align: center;
    margin-bottom: 2rem;
}

.content-page h2[b-utvku1q78g] {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.content-page p[b-utvku1q78g] {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page ul[b-utvku1q78g] {
    padding-left: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page li[b-utvku1q78g] {
    margin-bottom: 0.5rem;
}
