:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #172033;
    --muted: #6b7280;
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --border: #e5e7eb;
    --sidebar: #0f172a;
    --sidebar-2: #1e293b;
    --shadow: 0 10px 30px rgba(2,6,23,.08);
    --radius: 18px;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

.public-shell {
    background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.public-navbar {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0,0,0,.03);
}

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

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .brand-copy small {
        color: var(--muted);
    }

.hero-section,
.booking-hero,
.auth-page {
    padding: 48px 0 64px;
}

.hero-card,
.search-panel,
.auth-card,
.feature-card,
.panel-card,
.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 32px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 24px;
}

    .hero-metrics > div {
        background: #f8fafc;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
    }

    .hero-metrics strong {
        display: block;
        margin-bottom: 6px;
    }

    .hero-metrics span {
        color: var(--muted);
        font-size: 13px;
    }

.dashboard-mock {
    min-height: 320px;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 16px;
}

.mock-topbar {
    height: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    margin-bottom: 14px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
}

.mock-card {
    height: 100px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
}

    .mock-card.tall {
        height: 220px;
    }

    .mock-card.wide {
        grid-column: span 2;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 28px;
}

.feature-card {
    padding: 22px;
}

    .feature-card h5 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .feature-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.booking-shell {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.booking-copy {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

    .booking-copy p {
        color: #d1d5db;
    }

.search-panel {
    padding: 24px;
}

.auth-wrap {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 28px;
    align-items: center;
    min-height: 70vh;
}

.auth-copy p {
    color: var(--muted);
    max-width: 560px;
}

.auth-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

    .auth-points div {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px 16px;
        box-shadow: var(--shadow);
    }

.auth-card {
    padding: 28px;
}

.public-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 20px;
}

    .stat-card span {
        display: block;
        color: var(--muted);
        font-size: 13px;
    }

    .stat-card strong {
        display: block;
        font-size: 28px;
        margin: 8px 0;
    }

    .stat-card small {
        color: var(--muted);
    }

.panel-card {
    padding: 22px;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.quick-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modern-list {
    padding-left: 18px;
    margin: 0;
}

    .modern-list li {
        margin-bottom: 8px;
        color: var(--muted);
    }

.table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .2rem rgba(79,70,229,.12);
    }

.btn {
    border-radius: 12px;
    font-weight: 600;
}



.admin-shell {
    background: #f5f7fb;
}

.admin-app {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    width: 270px;
    min-width: 270px;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #fff;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000;
}

    .sidebar.hotel-theme {
        background: linear-gradient(180deg, #0f172a, #164e63);
    }

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.sidebar-nav {
    display: grid;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

    .sidebar-nav a {
        display: block;
        color: #e5e7eb;
        padding: 12px 14px;
        border-radius: 12px;
        font-weight: 500;
        position: relative;
        z-index: 1002;
        pointer-events: auto;
    }

        .sidebar-nav a:hover {
            background: rgba(255,255,255,.08);
            color: #fff;
        }

.sidebar-footer {
    margin-top: auto;
    position: relative;
    z-index: 1002;
}

.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-wrap {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.user-pill {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
}

@media (max-width: 991px) {
    .hero-metrics,
    .feature-grid,
    .booking-shell,
    .auth-wrap,
    .dashboard-grid,
    .admin-app {
        grid-template-columns: 1fr;
    }
}
.booking-meta-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.meta-box, .add-on-card, .summary-box, .commission-panel {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
}

    .meta-box span, .summary-box span {
        display: block;
        color: #6b7280;
        font-size: 12px;
        margin-bottom: 4px;
    }

.add-on-list {
    display: grid;
    gap: 12px;
}

.mini-breakdown {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
}

.payment-summary-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
}

.form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .form-control:focus {
        border-color: #6366f1;
        box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
    }

.form-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.btn-primary {
    border-radius: 12px;
    padding: 10px 18px 20px;
    font-weight: 600;
    background: linear-gradient(135deg,var(--brand-primary),var(--brand-secondary));
}

.btn-secondary {
    border-radius: 12px;
    padding: 10px 18px 20px;
}

.btn-primary:hover {
    opacity: .92;
}

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-muted: #f8fafc;
    --text: #172033;
    --text-soft: #667085;
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #0284c7;
    --border: #e6ebf2;
    --shadow-sm: 0 6px 18px rgba(15,23,42,.05);
    --shadow-md: 0 16px 40px rgba(15,23,42,.08);
    --shadow-lg: 0 24px 60px rgba(15,23,42,.12);
    --radius-md: 18px;
    --radius-lg: 24px;
    --sidebar-start: #0f172a;
    --sidebar-end: #1e293b;
    --hotel-sidebar-end: #164e63;
}

html {
    font-size: 14px
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter,"Segoe UI",Roboto,Arial,sans-serif
}

a {
    text-decoration: none
}

.admin-shell {
    background: linear-gradient(180deg,#f7f9fd,#eef3fb)
}

.admin-app {
    display: flex;
    min-height: 100vh;
    width: 100%
}

.sidebar {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(180deg,var(--sidebar-start),var(--sidebar-end));
    color: #fff;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow-lg)
}

    .sidebar.hotel-theme {
        background: linear-gradient(180deg,var(--sidebar-start),var(--hotel-sidebar-end))
    }

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--primary),#7c3aed);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(79,70,229,.35)
}

.sidebar-nav {
    display: grid;
    gap: 8px
}

    .sidebar-nav a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #e5e7eb;
        padding: 12px 14px;
        border-radius: 14px;
        font-weight: 600;
        transition: all .2s ease
    }

        .sidebar-nav a:hover, .sidebar-nav a.active {
            background: rgba(255,255,255,.10);
            color: #fff;
            transform: translateX(2px)
        }


.sidebar-group {
    margin-bottom: 8px;
}

.sidebar-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.85);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    text-align: left;
}

    .sidebar-toggle span {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sidebar-toggle:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

.sidebar-submenu {
    display: none;
    margin-left: 14px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,.14);
}

    .sidebar-submenu.is-open {
        display: block;
    }

    .sidebar-submenu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 14px;
        margin: 4px 0;
        font-size: 14px;
        color: rgba(255,255,255,.72);
        text-decoration: none;
        border-radius: 10px;
    }

        .sidebar-submenu a:hover {
            background: rgba(255,255,255,.08);
            color: #fff;
        }

.sidebar-arrow {
    transition: transform .2s ease;
}

.sidebar-toggle.is-open .sidebar-arrow {
    transform: rotate(180deg);
}
.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column
}

.topbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .topbar h5 {
        font-weight: 800
    }

.user-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: var(--shadow-sm)
}

.content-wrap {
    padding: 24px
}

.ui-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm)
}

.ui-card-body {
    padding: 22px
}

.ui-card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.page-hero {
    margin-bottom: 24px
}

.page-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 6px
}

.page-subtitle {
    color: var(--text-soft)
}

.section-title {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-soft);
    font-weight: 700;
    margin-bottom: 12px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 18px
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 18px
}

    .stat-card span {
        display: block;
        color: var(--text-soft);
        font-size: .86rem
    }

    .stat-card strong {
        display: block;
        font-size: 1.9rem;
        margin: 8px 0;
        font-weight: 800
    }

    .stat-card small {
        color: var(--text-soft)
    }

.form-shell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 16px
}

.form-col-12 {
    grid-column: span 12
}

.form-col-6 {
    grid-column: span 6
}

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

.form-label {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 7px;
    color: #334155
}

.form-control, .form-select, .form-textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d7deea;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    font-size: 14px;
    transition: all .2s ease
}

.form-textarea {
    min-height: 110px;
    resize: vertical
}

    .form-control:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: rgba(79,70,229,.6);
        box-shadow: 0 0 0 4px rgba(79,70,229,.10)
    }

.form-check-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px
}

.form-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 10px 16px
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),#7c3aed);
    border: none
}

    .btn-primary:hover {
        background: linear-gradient(135deg,var(--primary-dark),#6d28d9)
    }

.btn-outline-secondary {
    border: 1px solid var(--border);
    background: #fff
}

.btn-soft {
    background: #eef2ff;
    color: var(--primary);
    border: 1px solid #dfe4ff
}

.table-shell {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.table-toolbar {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.table-search {
    max-width: 320px
}

.table {
    margin-bottom: 0
}

    .table thead th {
        background: #f8fafc;
        color: #475569;
        font-size: .84rem;
        text-transform: uppercase;
        letter-spacing: .05em;
        border-bottom: 1px solid var(--border)
    }

.row-title {
    font-weight: 700
}

.row-sub {
    color: var(--text-soft);
    font-size: .85rem;
    margin-top: 4px
}

.row{
    padding-top:2%;
    padding-bottom:2%;
}
.col {
    padding-top: 2%;
    padding-bottom: 2%;
}
.ui-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700
}

    .ui-badge.success {
        background: #ecfdf3;
        color: #15803d
    }

    .ui-badge.warning {
        background: #fff7ed;
        color: #b45309
    }

    .ui-badge.info {
        background: #eff6ff;
        color: #1d4ed8
    }

    .ui-badge.neutral {
        background: #f1f5f9;
        color: #475569
    }

.alert {
    border: none;
    border-radius: 14px;
    box-shadow: var(--shadow-sm)
}

.stack-16 {
    display: grid;
    gap: 16px
}

.empty-state {
    text-align: center;
    padding: 42px 18px;
    color: var(--text-soft)
}

    .empty-state i {
        font-size: 2rem;
        display: block;
        margin-bottom: 10px;
        color: #94a3b8
    }

.property-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

    .property-description p {
        margin-bottom: 1rem;
    }

.property-amenities ul {
    columns: 3;
    padding-left: 1.2rem;
}

.property-amenities li {
    margin-bottom: 8px;
    color: #4b5563;
}

.property-amenities table {
    width: 100%;
}

.property-amenities td {
    padding: 6px 14px 6px 0;
    color: #4b5563;
}

.property-amenities figure {
    margin: 0;
}

.price-box {
    line-height: 1.2;
}

.promo-badge {
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
}

.promo-corner-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
    color: white;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.room-result-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

    .room-result-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(15, 23, 42, .12) !important;
    }

.promo-corner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    padding: 7px 11px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 700;
    z-index: 10;
}

.promo-badge {
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
}

.price-box {
    line-height: 1.2;
}

.mobile-sticky-booking {
    display: none;
}

.demand-calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.demand-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.demand-date {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.demand-type {
    margin: 8px 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.demand-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.demand-card p {
    color: #334155;
    margin-bottom: 0;
}

.demand-high {
    border-left: 6px solid #16a34a;
}

.demand-low {
    border-left: 6px solid #f59e0b;
}

.demand-balanced {
    border-left: 6px solid #64748b;
}

.table-pagination {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination-info {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

    .pagination-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

    .pagination-btn.active {
        background: linear-gradient(135deg, #6d28d9, #7c3aed);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 10px 24px rgba(109, 40, 217, .22);
    }

@media (max-width: 1200px) {
    .demand-calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 768px) {
    .mobile-sticky-booking {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        padding: 10px 14px;
        z-index: 1050;
        box-shadow: 0 -10px 24px rgba(15, 23, 42, .12);
    }

    body {
        padding-bottom: 76px;
    }
}

.pricing-card {
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .pricing-card.featured {
        border: 2px solid #0d6efd;
    }

.pagination-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

    .page-btn:hover {
        background: #4f46e5;
        color: #fff;
        border-color: #4f46e5;
    }

    .page-btn.active {
        background: #4f46e5;
        color: #fff;
        border-color: #4f46e5;
    }

/* =========================================
   HOTEL BRAND HEADER
========================================= */

.hotel-brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 220px;
}

/* LARGE FLEXIBLE LOGO */

.hotel-brand-logo {
    max-height: 72px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* FALLBACK ICON */

.hotel-brand-fallback {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg,#5b4bff,#7c3aed);
    color: white;
    font-weight: 800;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */

.hotel-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hotel-brand-name {
    font-size: 1.85rem;
    font-weight: 800;
    color: #111827;
}

.hotel-brand-subtitle {
    font-size: .92rem;
    color: #6b7280;
    margin-top: 4px;
}

/* MOBILE */

@media (max-width: 768px) {

    .hotel-brand-wrap {
        min-width: unset;
        gap: 10px;
    }

    .hotel-brand-logo {
        max-height: 64px;
        max-width: 180px;
    }

    .hotel-brand-name {
        font-size: 1.25rem;
    }

    .hotel-brand-subtitle {
        font-size: .78rem;
    }
}

@media (max-width: 768px) {
    .property-amenities ul {
        columns: 1;
    }
}

@media (max-width:1200px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:991px) {
    .admin-app {
        flex-direction: column
    }

    .sidebar {
        width: 100%;
        min-width: 100%
    }

    .form-col-6, .form-col-3 {
        grid-column: span 12
    }
}

@media (max-width:767px) {
    .stats-grid {
        grid-template-columns: 1fr
    }

    .topbar {
        padding: 16px
    }

    .content-wrap {
        padding: 16px
    }

    .form-shell {
        padding: 20px
    }
}


@media (max-width: 768px) {
    .booking-meta-grid, .payment-summary-grid {
        grid-template-columns: 1fr;
    }
}

