:root {
    --hotel-dark: #111827;
    --hotel-text: #243041;
    --hotel-muted: #6b7280;
    --hotel-gold: #c79a42;
    --hotel-gold-2: #f2d38b;
    --hotel-soft: #fff7ed;
    --hotel-bg: #f8fafc;
    --hotel-card: rgba(255,255,255,.86);
    --hotel-border: rgba(17,24,39,.09);
    --hotel-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--hotel-text);
    background:
        radial-gradient(circle at 10% 10%, rgba(242, 211, 139, .25), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(255, 214, 224, .22), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #fff7ed 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.hotel-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
}

.hotel-navbar {
    background: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 10px 35px rgba(15,23,42,.06);
}

.hotel-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--hotel-dark);
}

.hotel-brand:hover {
    color: var(--hotel-dark);
}

.hotel-brand .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 12px 30px rgba(17,24,39,.22);
}

.hotel-brand strong {
    display: block;
    line-height: 1;
    font-size: 1.08rem;
    letter-spacing: .03em;
}

.hotel-brand small {
    display: block;
    color: var(--hotel-muted);
    font-size: .72rem;
    margin-top: 3px;
}

.navbar .nav-link {
    color: #374151;
    font-weight: 650;
    border-radius: 999px;
    padding: .55rem .85rem !important;
    transition: .25s ease;
}

.navbar .nav-link:hover {
    color: #111827;
    background: rgba(199,154,66,.13);
    transform: translateY(-1px);
}

.btn-hotel {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #111827, #c79a42);
    box-shadow: 0 12px 28px rgba(199,154,66,.28);
}

.btn-hotel:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(199,154,66,.38);
}

.btn {
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.hotel-hero {
    position: relative;
    min-height: 680px;
    padding: 92px 0 70px;
    overflow: hidden;
}

.hotel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(17,24,39,.88), rgba(17,24,39,.56)),
        radial-gradient(circle at 72% 24%, rgba(242,211,139,.34), transparent 28%),
        linear-gradient(135deg, #111827, #334155);
    z-index: -2;
}

.hotel-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .45;
    z-index: -1;
    animation: gridMove 22s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 84px 84px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    font-weight: 700;
    font-size: .9rem;
}

.hero-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.025em;
    font-size: clamp(2rem, 4.6vw, 4rem);
    line-height: 1.14;
    margin-top: 18px;
    max-width: 760px;
}

.hero-title span {
    color: var(--hotel-gold-2);
}

.hero-subtitle {
    color: rgba(255,255,255,.78);
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.85;
    margin-top: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-stat-card {
    padding: 18px;
    border-radius: 26px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.hero-stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--hotel-gold-2);
}

.booking-panel {
    position: relative;
    margin-top: -68px;
    z-index: 5;
}

.glass-card {
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 30px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(22px);
    box-shadow: var(--hotel-shadow);
}

.search-box {
    padding: 22px;
}

.search-box label {
    font-weight: 800;
    color: #111827;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.search-box .form-control {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--hotel-border);
    background: rgba(255,255,255,.9);
}

.section-wrap {
    padding: 86px 0;
}

.section-kicker {
    color: var(--hotel-gold);
    font-size: .86rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.section-title {
    color: var(--hotel-dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -.04em;
    font-weight: 900;
    margin: 8px 0 14px;
}

.section-desc {
    color: var(--hotel-muted);
    max-width: 720px;
    line-height: 1.75;
}

.room-card {
    position: relative;
    height: 100%;
    border: 1px solid var(--hotel-border);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    transition: .32s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.room-visual {
    position: relative;
    min-height: 210px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.9), transparent 22%),
        linear-gradient(135deg, #111827, #374151 48%, #c79a42);
    overflow: hidden;
}

.room-visual::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -90px;
    border-radius: 50%;
    background: rgba(242,211,139,.32);
    animation: floatOrb 6s ease-in-out infinite;
}

.room-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 24px;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(18px) scale(1.04); }
}

.room-door-icon {
    position: absolute;
    left: 28px;
    bottom: 24px;
    color: #fff;
    font-size: 4.5rem;
    filter: drop-shadow(0 18px 25px rgba(0,0,0,.25));
}

.room-floor-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: #111827;
    background: rgba(255,255,255,.86);
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 850;
    z-index: 2;
}

.room-card-body {
    padding: 24px;
}

.room-title {
    font-weight: 900;
    color: var(--hotel-dark);
    letter-spacing: -.02em;
}

.room-price {
    color: #b7791f;
    font-weight: 950;
    font-size: 1.25rem;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--hotel-border);
    color: #374151;
    font-weight: 700;
    font-size: .82rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.status-free {
    color: #047857;
    background: #d1fae5;
}

.status-busy {
    color: #92400e;
    background: #fef3c7;
}

.status-maintain {
    color: #991b1b;
    background: #fee2e2;
}

.page-hero {
    padding: 72px 0 44px;
    background:
        radial-gradient(circle at 78% 15%, rgba(242,211,139,.30), transparent 30%),
        linear-gradient(135deg, #111827, #293548);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.soft-panel {
    border: 1px solid var(--hotel-border);
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 18px 60px rgba(15,23,42,.09);
}

.detail-icon-box {
    width: 100%;
    min-height: 430px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.25), transparent 22%),
        linear-gradient(135deg, #111827, #c79a42);
    box-shadow: 0 25px 80px rgba(15,23,42,.18);
    overflow: hidden;
    position: relative;
}

.detail-icon-box i {
    font-size: 11rem;
    z-index: 2;
    animation: breathe 4s ease-in-out infinite;
}

.detail-icon-box::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    animation: floatOrb 7s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: .96; }
    50% { transform: scale(1.045); opacity: 1; }
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(17,24,39,.12);
}

.info-row:last-child {
    border-bottom: 0;
}

.info-row span:first-child {
    color: var(--hotel-muted);
    font-weight: 750;
}

.info-row span:last-child {
    text-align: right;
    font-weight: 850;
    color: var(--hotel-dark);
}

.hotel-footer {
    margin-top: 60px;
    padding: 42px 0;
    color: rgba(255,255,255,.76);
    background: #111827;
}

.hotel-footer h5 {
    color: #fff;
    font-weight: 900;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    box-shadow: 0 18px 45px rgba(15,23,42,.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .25s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sakura-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sakura-layer span {
    position: absolute;
    top: -40px;
    width: 12px;
    height: 9px;
    border-radius: 80% 0 80% 0;
    background: rgba(255, 183, 197, .75);
    filter: blur(.1px);
    animation: sakuraFall linear infinite;
}

.sakura-layer span:nth-child(1) { left: 5%; animation-duration: 13s; animation-delay: 0s; }
.sakura-layer span:nth-child(2) { left: 14%; animation-duration: 17s; animation-delay: 2s; }
.sakura-layer span:nth-child(3) { left: 26%; animation-duration: 12s; animation-delay: 1s; }
.sakura-layer span:nth-child(4) { left: 39%; animation-duration: 18s; animation-delay: 4s; }
.sakura-layer span:nth-child(5) { left: 48%; animation-duration: 15s; animation-delay: 0s; }
.sakura-layer span:nth-child(6) { left: 61%; animation-duration: 19s; animation-delay: 3s; }
.sakura-layer span:nth-child(7) { left: 72%; animation-duration: 14s; animation-delay: 1s; }
.sakura-layer span:nth-child(8) { left: 80%; animation-duration: 16s; animation-delay: 5s; }
.sakura-layer span:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 2s; }
.sakura-layer span:nth-child(10) { left: 96%; animation-duration: 20s; animation-delay: 0s; }

@keyframes sakuraFall {
    0% {
        transform: translate3d(0, -40px, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: .78;
    }
    100% {
        transform: translate3d(-120px, 110vh, 0) rotate(520deg);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hotel-hero {
    position: relative;
    min-height: 620px;
    padding: 84px 0 72px;
    overflow: hidden;
}

    .booking-panel {
        margin-top: -48px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .detail-icon-box {
        min-height: 280px;
    }

    .detail-icon-box i {
        font-size: 7rem;
    }
}

/* ===== HERO FULL WIDTH FIX ===== */

.hotel-hero {
    min-height: 640px;
    padding: 84px 0 78px;
}

.hotel-hero .container {
    max-width: 1480px;
    padding-left: 56px;
    padding-right: 56px;
}

.hero-title {
    max-width: 880px;
    font-size: clamp(2.25rem, 4.9vw, 4.7rem);
    line-height: 1.12;
    letter-spacing: -0.028em;
}

.hero-subtitle {
    max-width: 780px;
    font-size: 1.02rem;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 34px;
}

.hero-stat-card {
    min-height: 112px;
}

.booking-panel .container {
    max-width: 1480px;
    padding-left: 56px;
    padding-right: 56px;
}

.section-wrap .container {
    max-width: 1480px;
    padding-left: 56px;
    padding-right: 56px;
}

/* Khối trang trí bên phải hero */
.hero-showcase {
    position: relative;
    min-height: 390px;
}

.hero-floating-card {
    position: absolute;
    border-radius: 28px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    color: #fff;
    overflow: hidden;
}

.hero-floating-card.main {
    width: 360px;
    height: 230px;
    right: 0;
    top: 20px;
    padding: 26px;
}

.hero-floating-card.small {
    width: 230px;
    height: 145px;
    left: 10px;
    bottom: 22px;
    padding: 22px;
}

.hero-floating-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -62px;
    top: -64px;
    border-radius: 50%;
    background: rgba(242,211,139,.25);
    animation: floatOrb 6s ease-in-out infinite;
}

.hero-floating-card .icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,.16);
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.hero-floating-card h3 {
    position: relative;
    font-weight: 900;
    margin-bottom: 8px;
}

.hero-floating-card p {
    position: relative;
    color: rgba(255,255,255,.72);
    margin-bottom: 0;
    line-height: 1.65;
}

.hero-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    right: 92px;
    bottom: -16px;
    border-radius: 50%;
    border: 1px solid rgba(242,211,139,.35);
    animation: spinSlow 18s linear infinite;
}

.hero-ring::before,
.hero-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-ring::before {
    inset: 34px;
    border: 1px dashed rgba(255,255,255,.22);
}

.hero-ring::after {
    width: 18px;
    height: 18px;
    right: 32px;
    top: 40px;
    background: #f2d38b;
    box-shadow: 0 0 30px rgba(242,211,139,.7);
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Phần danh sách phòng rộng và thoáng hơn */
#featuredRooms {
    padding-top: 100px;
}

#featuredRooms .section-title {
    font-size: clamp(2.1rem, 3.6vw, 3.4rem);
}

.room-card {
    min-height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .hotel-hero .container,
    .booking-panel .container,
    .section-wrap .container {
        max-width: 1140px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-floating-card.main {
        width: 310px;
        right: 0;
    }

    .hero-floating-card.small {
        width: 210px;
    }
}

@media (max-width: 992px) {
    .hero-showcase {
        min-height: 260px;
    }

    .hero-floating-card.main {
        width: 100%;
        height: auto;
        position: relative;
        right: auto;
        top: auto;
    }

    .hero-floating-card.small,
    .hero-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .hotel-hero .container,
    .booking-panel .container,
    .section-wrap .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
        line-height: 1.12;
    }
}
/* ===== STICKY FOOTER FIX ===== */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}

.hotel-footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* =========================================================
   HOME CLEAN PROFESSIONAL OVERRIDE
   ========================================================= */

.home-clean-container {
    width: min(100% - 48px, 1320px);
    margin-inline: auto;
}

.home-clean-hero {
    position: relative;
    padding: 86px 0 74px;
    background:
        radial-gradient(circle at 80% 16%, rgba(242, 211, 139, .22), transparent 28%),
        linear-gradient(135deg, #0b1220 0%, #111827 48%, #1f2937 100%);
    overflow: hidden;
}

.home-clean-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .7;
}

.home-clean-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -180px;
    top: -170px;
    background: rgba(199,154,66,.13);
    filter: blur(2px);
}

.home-clean-hero > * {
    position: relative;
    z-index: 2;
}

.home-clean-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    color: #fde68a;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
    font-weight: 800;
    font-size: .9rem;
}

.home-clean-title {
    color: #fff;
    font-weight: 950;
    letter-spacing: -0.035em;
    font-size: clamp(2.55rem, 5.2vw, 5rem);
    line-height: 1.08;
    margin: 22px 0 20px;
    max-width: 850px;
}

.home-clean-title span {
    display: block;
    color: #f2d38b;
}

.home-clean-desc {
    color: rgba(255,255,255,.78);
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.home-clean-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.home-clean-panel {
    padding: 28px;
    border-radius: 32px;
    color: #fff;
    background: rgba(255,255,255,.105);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0,0,0,.24);
    overflow: hidden;
    position: relative;
}

.home-clean-panel::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(242,211,139,.20);
    animation: floatOrb 7s ease-in-out infinite;
}

.home-panel-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.home-panel-header span {
    display: block;
    color: #f2d38b;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    margin-bottom: 6px;
}

.home-panel-header h3 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -.02em;
}

.home-panel-header i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255,255,255,.14);
    font-size: 1.8rem;
}

.home-panel-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.home-panel-item {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.13);
}

.home-panel-item.wide {
    grid-column: span 2;
}

.home-panel-item strong {
    display: block;
    color: #f2d38b;
    font-size: 1.7rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
}

.home-panel-item span {
    color: rgba(255,255,255,.78);
    font-weight: 600;
}

.home-panel-line {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.home-panel-line div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.82);
    font-weight: 650;
}

.home-panel-line i {
    color: #f2d38b;
}

.home-booking-box {
    margin-top: 48px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 28px 80px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.75);
}

.home-booking-box label {
    color: #111827;
    font-weight: 850;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.home-booking-box .btn {
    min-height: 50px;
}

.home-input-icon {
    position: relative;
}

.home-input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 2;
}

.home-input-icon .form-control {
    min-height: 50px;
    padding-left: 44px;
    border-radius: 16px;
    border: 1px solid rgba(17,24,39,.10);
    background: #fff;
    box-shadow: none;
    font-weight: 650;
}

.home-input-icon .form-control:focus {
    border-color: #c79a42;
    box-shadow: 0 0 0 .2rem rgba(199,154,66,.15);
}

.home-feature-section {
    padding: 74px 0 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.home-feature-card {
    height: 100%;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    transition: .28s ease;
}

.home-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15,23,42,.12);
}

.home-feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.home-feature-card h4 {
    color: #111827;
    font-weight: 900;
    margin-bottom: 10px;
}

.home-feature-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

#featuredRooms {
    background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 100%);
    padding-top: 80px;
}

@media (max-width: 992px) {
    .home-clean-container {
        width: min(100% - 30px, 100%);
    }

    .home-clean-hero {
        padding: 70px 0 60px;
    }

    .home-clean-title {
        font-size: clamp(2.35rem, 9vw, 3.6rem);
    }

    .home-clean-panel {
        margin-top: 10px;
    }

    .home-booking-box {
        margin-top: 34px;
    }
}

@media (max-width: 576px) {
    .home-clean-container {
        width: min(100% - 22px, 100%);
    }

    .home-clean-title {
        font-size: 2.25rem;
        line-height: 1.12;
    }

    .home-clean-actions .btn {
        width: 100%;
    }

    .home-panel-grid {
        grid-template-columns: 1fr;
    }

    .home-panel-item.wide {
        grid-column: span 1;
    }
}

/* =========================================================
   BOOKING UI
   ========================================================= */

.booking-note-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(199,154,66,.10);
    border: 1px solid rgba(199,154,66,.20);
    color: #374151;
}

.booking-note-box i {
    color: #b7791f;
    font-size: 1.4rem;
    margin-top: 2px;
}

.booking-table-wrap {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(17,24,39,.08);
}

.booking-table {
    margin-bottom: 0;
}

.booking-table thead th {
    background: #f8fafc;
    color: #111827;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
    border-bottom: 1px solid rgba(17,24,39,.08);
    padding: 16px;
}

.booking-table tbody td {
    padding: 18px 16px;
    color: #374151;
    border-bottom: 1px solid rgba(17,24,39,.06);
}

.booking-table tbody tr:last-child td {
    border-bottom: 0;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 850;
    font-size: .82rem;
}

.booking-primary {
    color: #1d4ed8;
    background: #dbeafe;
}

.booking-success {
    color: #047857;
    background: #d1fae5;
}

.booking-danger {
    color: #b91c1c;
    background: #fee2e2;
}

.booking-dark {
    color: #111827;
    background: #e5e7eb;
}

.booking-secondary {
    color: #475569;
    background: #e2e8f0;
}

/* =========================================================
   STAFF CHECK-IN / CHECK-OUT UI
   ========================================================= */

.staff-note-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(199, 154, 66, .10);
    border: 1px solid rgba(199, 154, 66, .22);
    color: #374151;
}

.staff-note-box i {
    color: #b7791f;
    font-size: 1.35rem;
    margin-top: 2px;
}

.staff-warning-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .16);
    color: #374151;
}

.staff-warning-box i {
    color: #2563eb;
    font-size: 1.45rem;
    margin-top: 2px;
}

.staff-info-empty {
    min-height: 520px;
    border-radius: 28px;
    background: rgba(255,255,255,.88);
    border: 1px dashed rgba(17,24,39,.18);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px;
}

.staff-empty-icon {
    width: 92px;
    height: 92px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-size: 2.7rem;
    box-shadow: 0 22px 60px rgba(15,23,42,.18);
}

.staff-detail-list {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(17,24,39,.08);
    background: #fff;
}

.staff-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(17,24,39,.07);
}

.staff-detail-row:last-child {
    border-bottom: 0;
}

.staff-detail-row span {
    color: #6b7280;
    font-weight: 750;
}

.staff-detail-row strong {
    color: #111827;
    font-weight: 900;
    text-align: right;
}

.form-select.rounded-end-4 {
    min-height: 48px;
}

.input-group-text {
    border-color: rgba(17,24,39,.10);
}

.input-group .form-select,
.input-group .form-control {
    border-color: rgba(17,24,39,.10);
    box-shadow: none;
}

.input-group .form-select:focus,
.input-group .form-control:focus {
    border-color: #c79a42;
    box-shadow: 0 0 0 .2rem rgba(199,154,66,.14);
}

@media (max-width: 768px) {
    .staff-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .staff-detail-row strong {
        text-align: left;
    }

    .staff-info-empty {
        min-height: 360px;
    }
}

/* =========================================================
   STAFF HOME DASHBOARD
   ========================================================= */

.staff-home-hero {
    position: relative;
    padding: 82px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(242, 211, 139, .24), transparent 30%),
        linear-gradient(135deg, #0b1220 0%, #111827 48%, #1f2937 100%);
    overflow: hidden;
}

.staff-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
}

.staff-home-hero > * {
    position: relative;
    z-index: 2;
}

.staff-home-card {
    padding: 28px;
    border-radius: 30px;
    color: #fff;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0,0,0,.22);
}

.staff-home-label {
    display: block;
    color: #f2d38b;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.staff-home-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    font-size: 2rem;
}

.staff-mini-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
}

.staff-mini-stat strong {
    display: block;
    color: #f2d38b;
    font-size: 1.8rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
}

.staff-mini-stat span {
    color: rgba(255,255,255,.78);
    font-weight: 650;
}

.staff-action-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    transition: .28s ease;
}

.staff-action-card:hover {
    color: #111827;
    transform: translateY(-7px);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.staff-action-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    font-size: 2rem;
}

.staff-action-primary .staff-action-icon {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.staff-action-warning .staff-action-icon {
    background: linear-gradient(135deg, #b7791f, #f2d38b);
}

.staff-action-dark .staff-action-icon {
    background: linear-gradient(135deg, #111827, #374151);
}

.staff-action-card h3 {
    font-weight: 900;
    margin-bottom: 8px;
}

.staff-action-card p {
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0;
}

.staff-action-link {
    margin-top: auto;
    color: #111827;
    font-weight: 850;
}

.staff-timeline {
    display: grid;
    gap: 22px;
}

.staff-timeline-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.staff-timeline-number {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-weight: 900;
}

.staff-timeline-item h5 {
    font-weight: 900;
    margin-bottom: 6px;
}

.staff-timeline-item p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.65;
}

.staff-note-list {
    display: grid;
    gap: 16px;
}

.staff-note-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.07);
}

.staff-note-list i {
    color: #b7791f;
    font-size: 1.2rem;
}

.staff-note-list span {
    color: #374151;
    font-weight: 650;
    line-height: 1.55;
}

/* =========================================================
   ADMIN DASHBOARD UI
   ========================================================= */

.admin-hero {
    position: relative;
    padding: 82px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(96, 165, 250, .24), transparent 30%),
        radial-gradient(circle at 12% 85%, rgba(242, 211, 139, .16), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #111827 48%, #1e293b 100%);
    overflow: hidden;
}

.admin-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
}

.admin-hero > * {
    position: relative;
    z-index: 2;
}

.admin-user-card {
    padding: 24px;
    border-radius: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    color: #fff;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 90px rgba(0,0,0,.22);
}

.admin-user-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-size: 2rem;
}

.admin-user-card span {
    display: block;
    color: #f2d38b;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 4px;
}

.admin-user-card strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
}

.admin-user-card small {
    color: rgba(255,255,255,.72);
}

.admin-stat-card {
    height: 100%;
    padding: 24px;
    border-radius: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    transition: .28s ease;
}

.admin-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.admin-stat-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    font-size: 1.8rem;
}

.bg-admin-dark {
    background: linear-gradient(135deg, #111827, #374151);
}

.bg-admin-success {
    background: linear-gradient(135deg, #047857, #10b981);
}

.bg-admin-warning {
    background: linear-gradient(135deg, #b7791f, #f2d38b);
}

.bg-admin-primary {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.admin-stat-card span {
    display: block;
    color: #6b7280;
    font-size: .82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.admin-stat-card strong {
    display: block;
    color: #111827;
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
}

.admin-stat-card p {
    color: #6b7280;
    margin: 0;
    font-weight: 600;
}

.admin-progress-box {
    padding: 22px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.07);
}

.admin-progress-box span {
    color: #6b7280;
    font-weight: 800;
}

.admin-progress-box strong {
    color: #111827;
    font-weight: 900;
}

.admin-progress {
    height: 16px;
    border-radius: 999px;
    overflow: hidden;
    background: #e5e7eb;
}

.admin-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #111827, #c79a42);
    box-shadow: 0 8px 20px rgba(199,154,66,.25);
}

.admin-metric-box {
    height: 100%;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 12px 35px rgba(15,23,42,.05);
}

.admin-metric-box span {
    display: block;
    color: #6b7280;
    font-weight: 850;
    margin-bottom: 8px;
}

.admin-metric-box strong {
    display: block;
    color: #111827;
    font-size: 2.1rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 10px;
}

.admin-metric-box p {
    color: #6b7280;
    margin: 0;
    line-height: 1.65;
}

.admin-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    color: #374151;
    background: rgba(199,154,66,.10);
    border: 1px solid rgba(199,154,66,.20);
}

.admin-note i {
    color: #b7791f;
    font-size: 1.25rem;
    margin-top: 2px;
}

.admin-revenue-card {
    padding: 26px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(242,211,139,.25), transparent 34%),
        linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 24px 70px rgba(15,23,42,.20);
}

.admin-revenue-card span {
    display: block;
    color: rgba(255,255,255,.72);
    font-weight: 800;
    margin-bottom: 12px;
}

.admin-revenue-card strong {
    display: block;
    color: #f2d38b;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
}

.admin-revenue-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-weight: 800;
}

.admin-action-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    transition: .28s ease;
}

.admin-action-card:hover {
    color: #111827;
    transform: translateY(-7px);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.admin-action-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-size: 2rem;
}

.admin-action-card h3 {
    font-weight: 900;
    margin-bottom: 8px;
}

.admin-action-card p {
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 0;
}

.admin-action-card span {
    margin-top: auto;
    color: #111827;
    font-weight: 850;
}

@media (max-width: 768px) {
    .admin-hero {
        padding: 64px 0;
    }

    .admin-user-card,
    .admin-stat-card {
        flex-direction: column;
    }

    .admin-stat-card strong {
        font-size: 1.8rem;
    }
}

/* =========================================================
   ADMIN ACCOUNT MANAGEMENT
   ========================================================= */

.admin-account-table thead th {
    background: #f8fafc;
    color: #111827;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
    padding: 16px;
    border-bottom: 1px solid rgba(17,24,39,.08);
    white-space: nowrap;
}

.admin-account-table tbody td {
    padding: 18px 16px;
    color: #374151;
    border-bottom: 1px solid rgba(17,24,39,.06);
    vertical-align: middle;
}

.admin-account-table tbody tr:last-child td {
    border-bottom: 0;
}

.account-role,
.account-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
}

.account-role.admin {
    color: #991b1b;
    background: #fee2e2;
}

.account-role.staff {
    color: #1d4ed8;
    background: #dbeafe;
}

.account-role.customer {
    color: #047857;
    background: #d1fae5;
}

.account-status.active {
    color: #047857;
    background: #d1fae5;
}

.account-status.locked {
    color: #b91c1c;
    background: #fee2e2;
}

.account-role-select {
    min-width: 110px;
}

/* =========================================================
   ADMIN ROOM MANAGEMENT
   ========================================================= */

.admin-room-table thead th {
    background: #f8fafc;
    color: #111827;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
    padding: 16px;
    border-bottom: 1px solid rgba(17,24,39,.08);
    white-space: nowrap;
}

.admin-room-table tbody td {
    padding: 18px 16px;
    color: #374151;
    border-bottom: 1px solid rgba(17,24,39,.06);
    vertical-align: middle;
}

.admin-room-table tbody tr:last-child td {
    border-bottom: 0;
}

.room-admin-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
}

.room-admin-status.free {
    color: #047857;
    background: #d1fae5;
}

.room-admin-status.busy {
    color: #92400e;
    background: #fef3c7;
}

.room-admin-status.maintain {
    color: #991b1b;
    background: #fee2e2;
}

/* =========================================================
   STAFF ROOM BOARD + WALK-IN BOOKING
   ========================================================= */

.staff-room-card {
    height: 100%;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    transition: .28s ease;
}

.staff-room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(15,23,42,.14);
}

.staff-room-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.staff-room-floor {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f8fafc;
    color: #6b7280;
    font-weight: 850;
    font-size: .78rem;
    margin-bottom: 12px;
}

.staff-room-top h3 {
    color: #111827;
    font-weight: 950;
    margin-bottom: 6px;
}

.staff-room-top p {
    color: #6b7280;
    margin-bottom: 0;
}

.staff-room-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
    white-space: nowrap;
}

.staff-room-status.free {
    color: #047857;
    background: #d1fae5;
}

.staff-room-status.busy {
    color: #92400e;
    background: #fef3c7;
}

.staff-room-status.maintain {
    color: #991b1b;
    background: #fee2e2;
}

.staff-room-price {
    color: #b7791f;
    font-size: 1.35rem;
    font-weight: 950;
    margin-bottom: 18px;
}

.staff-room-price span {
    color: #6b7280;
    font-size: .95rem;
    font-weight: 700;
}

.staff-room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.staff-room-info div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    color: #374151;
    font-weight: 750;
    font-size: .9rem;
}

.staff-room-info i {
    color: #6b7280;
}

.staff-room-note {
    min-height: 54px;
    color: #6b7280;
    line-height: 1.65;
}

.staff-room-selected {
    display: grid;
    gap: 14px;
}

.staff-room-selected div {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.07);
}

.staff-room-selected span {
    display: block;
    color: #6b7280;
    font-size: .8rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.staff-room-selected strong {
    color: #111827;
    font-weight: 900;
}

.qr-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: center;
}

.payment-qr-img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    padding: 14px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.qr-info {
    color: #374151;
}

.transfer-content {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 900;
}

@media (max-width: 768px) {
    .qr-card {
        grid-template-columns: 1fr;
    }

    .payment-qr-img {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
}

.big-qr-wrapper {
    width: min(100%, 460px);
    padding: 24px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 24px 80px rgba(15, 23, 42, .14);
}

.payment-qr-img-large {
    width: 100%;
    max-width: 410px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 24px;
}

.invoice-total-box {
    max-width: 460px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, .08);
}

.invoice-total-box span {
    color: #6b7280;
    font-weight: 700;
}

.invoice-total-box strong {
    color: #111827;
    font-weight: 900;
}

@media (max-width: 768px) {
    .big-qr-wrapper {
        width: 100%;
        padding: 16px;
    }

    .payment-qr-img-large {
        max-width: 100%;
    }

    .invoice-total-box {
        border-radius: 22px;
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   DROPDOWN MENU CLEAN
   ========================================================= */

.hotel-dropdown {
    min-width: 260px;
    padding: 12px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
    backdrop-filter: blur(18px);
}

.hotel-dropdown .dropdown-item {
    border-radius: 14px;
    padding: 11px 14px;
    color: #374151;
    font-weight: 750;
    transition: .22s ease;
}

.hotel-dropdown .dropdown-item:hover {
    color: #111827;
    background: rgba(199,154,66,.13);
    transform: translateX(3px);
}

.hotel-dropdown .dropdown-item i {
    color: #b7791f;
}

/* =========================================================
   PROFESSIONAL INVOICE DETAIL
   ========================================================= */

.invoice-detail-wrap {
    background:
        radial-gradient(circle at 12% 10%, rgba(242,211,139,.16), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #fff7ed 100%);
}

.invoice-paper-pro {
    max-width: 1050px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
}

.invoice-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

.invoice-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.invoice-logo {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #c79a42);
    font-size: 2rem;
    box-shadow: 0 18px 50px rgba(15,23,42,.18);
}

.invoice-brand h2 {
    margin: 0;
    color: #111827;
    font-weight: 950;
    letter-spacing: -.02em;
}

.invoice-brand p {
    margin: 4px 0 0;
    color: #6b7280;
    font-weight: 650;
}

.invoice-meta h3 {
    color: #111827;
    font-weight: 950;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.invoice-meta p {
    color: #6b7280;
    margin-bottom: 12px;
}

.invoice-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .86rem;
}

.invoice-status.paid {
    color: #047857;
    background: #d1fae5;
}

.invoice-status.unpaid {
    color: #b91c1c;
    background: #fee2e2;
}

.invoice-line {
    height: 1px;
    margin: 30px 0;
    background: linear-gradient(90deg, transparent, rgba(17,24,39,.15), transparent);
}

.invoice-info-box {
    height: 100%;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.07);
}

.invoice-info-box span {
    display: block;
    color: #6b7280;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.invoice-info-box strong {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
}

.invoice-section-title {
    margin-top: 34px;
    margin-bottom: 16px;
}

.invoice-section-title span {
    display: block;
    color: #c79a42;
    font-size: .8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
    margin-bottom: 6px;
}

.invoice-section-title h4 {
    color: #111827;
    font-weight: 950;
    margin: 0;
}

.invoice-table-wrap {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(17,24,39,.08);
}

.invoice-table-pro {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.invoice-table-pro thead th {
    padding: 16px 18px;
    color: #111827;
    background: #f8fafc;
    font-size: .8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.invoice-table-pro tbody td {
    padding: 16px 18px;
    color: #374151;
    font-weight: 700;
    border-bottom: 1px solid rgba(17,24,39,.06);
}

.invoice-table-pro tbody tr:last-child td {
    border-bottom: 0;
}

.invoice-total-row td {
    color: #111827 !important;
    background: #fff7ed;
    font-size: 1.12rem;
    font-weight: 950 !important;
}

.invoice-payment-list {
    display: grid;
    gap: 14px;
}

.invoice-payment-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(17,24,39,.07);
}

.invoice-payment-item span {
    display: block;
    color: #6b7280;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 6px;
}

.invoice-payment-item strong {
    color: #111827;
    font-weight: 900;
}

.invoice-sign-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 46px;
    text-align: center;
}

.invoice-sign-row div {
    min-height: 120px;
    padding-top: 14px;
    border-top: 1px dashed rgba(17,24,39,.24);
}

.invoice-sign-row p {
    margin-bottom: 6px;
    color: #111827;
    font-weight: 900;
}

.invoice-sign-row span {
    color: #6b7280;
    font-size: .9rem;
}

.invoice-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(17,24,39,.08);
}

@media print {
    @page {
        size: A4;
        margin: 12mm;
    }

    html,
    body {
        background: #fff !important;
        color: #111827 !important;
        font-size: 12px;
    }

    .hotel-header,
    .hotel-footer,
    .sakura-layer,
    .scroll-top,
    .invoice-screen-hero,
    .invoice-actions,
    .d-print-none,
    .alert {
        display: none !important;
    }

    .main-content,
    .section-wrap,
    .invoice-detail-wrap {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
    }

    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .invoice-paper-pro {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .invoice-logo {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.4rem;
        box-shadow: none !important;
    }

    .invoice-brand h2 {
        font-size: 1.25rem;
    }

    .invoice-meta h3 {
        font-size: 1.3rem;
    }

    .invoice-line {
        margin: 18px 0;
    }

    .invoice-info-grid {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .invoice-info-box {
        padding: 12px;
        border-radius: 10px;
        background: #fff !important;
        border: 1px solid #ddd !important;
    }

    .invoice-section-title {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .invoice-table-wrap {
        border-radius: 0;
        border: 1px solid #222;
    }

    .invoice-table-pro thead th {
        padding: 9px 10px;
        background: #f1f1f1 !important;
        border-bottom: 1px solid #222;
    }

    .invoice-table-pro tbody td {
        padding: 9px 10px;
        border-bottom: 1px solid #ddd;
    }

    .invoice-total-row td {
        background: #f1f1f1 !important;
        font-size: 1rem;
    }

    .invoice-payment-item {
        padding: 10px;
        border-radius: 0;
        border: 1px solid #ddd;
        background: #fff !important;
    }

    .invoice-sign-row {
        margin-top: 36px;
        page-break-inside: avoid;
    }
}

@media (max-width: 768px) {
    .invoice-paper-pro {
        padding: 24px;
        border-radius: 24px;
    }

    .invoice-top {
        flex-direction: column;
    }

    .invoice-meta {
        text-align: left !important;
    }

    .invoice-payment-item {
        grid-template-columns: 1fr;
    }

    .invoice-sign-row {
        grid-template-columns: 1fr;
    }
}