/* ============================================
   WARUNG ZAM ZAM - Custom Stylesheet
   Coffee & Resto Reservation System
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --zz-green-dark: #133D36;
    --zz-green: #1B4E47;
    --zz-green-light: #2A6E64;
    --zz-green-pale: #A3D2CA;
    --zz-gold: #F5B025;
    --zz-gold-light: #FFD064;
    --zz-gold-dark: #D49216;
    --zz-terracotta: #D97757;
    --zz-cream: #F9F6F0;
    --zz-cream-dark: #EFE8D9;
    --zz-brown: #5C4033;
    --zz-brown-dark: #3E2723;
    --zz-white: #FFFFFF;
    --zz-black: #1A1A1A;
    --zz-gray: #6C757D;
    --zz-gray-light: #F8F9FA;
    --zz-shadow: 0 4px 20px rgba(19, 61, 54, 0.12);
    --zz-shadow-lg: 0 8px 40px rgba(19, 61, 54, 0.22);
    --zz-shadow-gold: 0 4px 25px rgba(245, 176, 37, 0.35);
    --zz-radius: 12px;
    --zz-radius-lg: 20px;
    --zz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--zz-black);
    background: var(--zz-cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--zz-green-dark);
    line-height: 1.3;
}

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

a:hover {
    color: var(--zz-gold);
}

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

/* ---- Brand Logo Styling ---- */
.navbar-logo {
    height: 32px !important;
    width: 32px !important;
    max-height: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
    box-shadow: 0 1px 6px rgba(245, 176, 37, 0.2);
    transition: var(--zz-transition);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zz-gold) !important;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-logo {
    height: 32px !important;
    width: 32px !important;
    max-height: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zz-gold);
}

.sidebar-logo {
    height: 28px !important;
    width: 28px !important;
    max-height: 28px !important;
    max-width: 28px !important;
    object-fit: contain !important;
}

.login-logo-img {
    height: 48px !important;
    width: 48px !important;
    max-height: 48px !important;
    max-width: 48px !important;
    object-fit: contain !important;
    box-shadow: 0 4px 12px rgba(19, 61, 54, 0.15);
}

.hero-mini-logo {
    height: 22px !important;
    width: 22px !important;
    max-height: 22px !important;
    max-width: 22px !important;
    object-fit: contain !important;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--zz-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--zz-green-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--zz-green);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-zz {
    background: rgba(19, 61, 54, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(245, 176, 37, 0.3);
    padding: 10px 0;
    transition: var(--zz-transition);
}

.navbar-zz.scrolled {
    padding: 6px 0;
    box-shadow: var(--zz-shadow-lg);
}

.navbar-zz .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--zz-gold) !important;
    letter-spacing: 1px;
}

.navbar-zz .navbar-brand span {
    color: var(--zz-white);
    font-weight: 400;
}

.navbar-zz .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: var(--zz-transition);
    position: relative;
}

.navbar-zz .nav-link:hover,
.navbar-zz .nav-link.active {
    color: var(--zz-gold) !important;
    background: rgba(212, 168, 67, 0.1);
}

.navbar-zz .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--zz-gold);
    transition: var(--zz-transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-zz .nav-link:hover::after,
.navbar-zz .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border-color: rgba(212, 168, 67, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 168, 67, 1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 120px 0 70px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10332D 0%, #0D2622 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(245,176,37,0.06)"/></svg>') repeat;
    background-size: 36px 36px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, var(--zz-cream), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--zz-white);
    padding: 0 15px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 176, 37, 0.12);
    border: 1px solid rgba(245, 176, 37, 0.35);
    color: var(--zz-gold-light);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: var(--zz-white);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.hero-title .gold {
    color: var(--zz-gold);
    text-shadow: 0 0 20px rgba(245, 176, 37, 0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--zz-gold-light);
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-desc {
    font-size: 0.94rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Elements */
.hero-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.hero-float:nth-child(1) {
    width: 220px;
    height: 220px;
    background: var(--zz-gold);
    top: 5%;
    left: -3%;
}

.hero-float:nth-child(2) {
    width: 160px;
    height: 160px;
    background: var(--zz-green-pale);
    top: 50%;
    right: -2%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-zz-primary {
    background: linear-gradient(135deg, var(--zz-gold), var(--zz-gold-dark));
    color: var(--zz-green-dark) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: var(--zz-transition);
    box-shadow: 0 4px 15px rgba(245, 176, 37, 0.25);
}

.btn-zz-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 176, 37, 0.35);
    color: var(--zz-green-dark) !important;
}

.btn-zz-outline {
    background: transparent;
    color: var(--zz-green-dark) !important;
    border: 1.5px solid var(--zz-green);
    padding: 9px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: var(--zz-transition);
}

.btn-zz-outline:hover {
    background: var(--zz-green);
    border-color: var(--zz-green);
    color: var(--zz-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 78, 71, 0.2);
}

.btn-zz-outline-light,
.booking-detail-header .btn-zz-outline,
.admin-sidebar .btn-zz-outline,
.hero .btn-zz-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--zz-white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-zz-outline-light:hover,
.booking-detail-header .btn-zz-outline:hover,
.admin-sidebar .btn-zz-outline:hover,
.hero .btn-zz-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--zz-gold);
    color: var(--zz-gold) !important;
}

.btn-zz-green {
    background: linear-gradient(135deg, var(--zz-green), var(--zz-green-dark));
    color: var(--zz-white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--zz-transition);
    box-shadow: var(--zz-shadow);
}

.btn-zz-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--zz-shadow-lg);
    color: var(--zz-white) !important;
}

.btn-zz-sm {
    padding: 6px 16px;
    font-size: 0.82rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--zz-gold-dark);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.section-title h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--zz-green-dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--zz-gray);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.section-divider {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--zz-gold), var(--zz-gold-dark));
    margin: 10px auto 0;
    border-radius: 3px;
}
/* ============================================
   CARDS
   ============================================ */
.card-zz {
    background: var(--zz-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--zz-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--zz-transition);
    overflow: hidden;
}

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

.card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--zz-radius-lg);
    box-shadow: var(--zz-shadow);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 26px 18px;
    border-radius: var(--zz-radius);
    background: var(--zz-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--zz-transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zz-green), var(--zz-gold));
    transform: scaleX(0);
    transition: var(--zz-transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zz-shadow-lg);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 78, 71, 0.1), rgba(245, 176, 37, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.35rem;
    color: var(--zz-green);
    transition: var(--zz-transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--zz-green), var(--zz-green-dark));
    color: var(--zz-gold);
    transform: scale(1.06);
}

.feature-card h5 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--zz-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Menu Card */
.menu-card {
    border-radius: var(--zz-radius);
    overflow: hidden;
    background: var(--zz-white);
    box-shadow: var(--zz-shadow);
    transition: var(--zz-transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--zz-shadow-lg);
}

.menu-card .menu-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: var(--zz-transition);
}

.menu-card:hover .menu-img {
    transform: scale(1.05);
}

.menu-card .menu-img-wrapper {
    overflow: hidden;
}

.menu-card .menu-body {
    padding: 20px;
}

.menu-card .menu-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--zz-gold-dark);
    font-weight: 600;
}

.menu-card .menu-name {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--zz-green-dark);
    margin: 6px 0;
}

.menu-card .menu-desc {
    font-size: 0.85rem;
    color: var(--zz-gray);
    margin-bottom: 12px;
}

.menu-card .menu-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--zz-gold-dark);
    font-weight: 700;
}

/* ============================================
   FORMS
   ============================================ */
.form-zz {
    background: var(--zz-white);
    border-radius: var(--zz-radius-lg);
    padding: 40px;
    box-shadow: var(--zz-shadow);
}

.form-zz .form-label {
    font-weight: 600;
    color: var(--zz-green-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-zz .form-control,
.form-zz .form-select {
    border: 2px solid var(--zz-cream-dark);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--zz-transition);
    background: var(--zz-cream);
}

.form-zz .form-control:focus,
.form-zz .form-select:focus {
    border-color: var(--zz-green-light);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
    background: var(--zz-white);
}

.form-zz .form-text {
    font-size: 0.82rem;
    color: var(--zz-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-zz {
    background: var(--zz-green-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-zz h5 {
    color: var(--zz-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-zz a {
    color: rgba(255,255,255,0.7);
}

.footer-zz a:hover {
    color: var(--zz-gold);
}

.footer-zz .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zz-gold);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* ============================================
   ADMIN LAYOUT
   ============================================ */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Sidebar */
.admin-sidebar {
    width: 270px;
    background: linear-gradient(180deg, var(--zz-green-dark), var(--zz-brown-dark));
    color: var(--zz-white);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
    transition: var(--zz-transition);
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}

.sidebar-brand {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.sidebar-brand h4 {
    font-family: var(--font-heading);
    color: var(--zz-gold);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.sidebar-brand small {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
}

.sidebar-menu {
    padding: 16px 0;
}

.sidebar-menu .menu-label {
    padding: 8px 24px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-top: 8px;
}

.sidebar-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 11px 24px;
    color: rgba(255,255,255,0.75);
    transition: var(--zz-transition);
    border-left: 3px solid transparent;
    font-size: 0.9rem;
    gap: 12px;
}

.sidebar-menu .menu-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--zz-gold);
    border-left-color: var(--zz-gold);
}

.sidebar-menu .menu-item.active {
    background: rgba(212, 168, 67, 0.12);
    color: var(--zz-gold);
    border-left-color: var(--zz-gold);
    font-weight: 600;
}

.sidebar-menu .menu-item i {
    width: 22px;
    text-align: center;
    font-size: 1rem;
}

/* Main Content */
.admin-content {
    flex: 1;
    margin-left: 270px;
    background: var(--zz-gray-light);
    min-height: 100vh;
    min-width: 0;
    width: calc(100% - 270px);
    max-width: 100%;
}

/* Top bar */
.admin-topbar {
    background: var(--zz-white);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.admin-topbar .page-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--zz-green-dark);
    margin: 0;
}

.admin-topbar .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--zz-gray);
    font-size: 0.9rem;
}

.admin-topbar .user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zz-green), var(--zz-gold));
    color: var(--zz-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.admin-main {
    padding: 30px;
}

/* ---- Dashboard Status Cards (Clean 6 Cards Grid) ---- */
.dash-row-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.dash-row-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.dash-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

@media (max-width: 1280px) {
    .dash-row-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .dash-row-5,
    .dash-row-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .dash-row-6,
    .dash-row-5,
    .dash-row-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .dash-row-6,
    .dash-row-5,
    .dash-row-4 {
        grid-template-columns: 1fr;
    }
}

.dash-card {
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 84px;
    text-decoration: none !important;
    cursor: pointer;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
    color: #ffffff !important;
}

.dash-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    pointer-events: none;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.dash-card .dash-label {
    font-size: 0.78rem;
    color: inherit;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 6px;
}

.dash-card .dash-icon {
    font-size: 0.95rem;
    opacity: 0.95;
    background: rgba(255,255,255,0.2) !important;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.dash-card .dash-number {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.1;
    margin-bottom: 3px;
}

.dash-card .dash-info {
    font-size: 0.73rem;
    opacity: 0.95;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 5px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.2;
}

.dash-card .dash-info span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-card .dash-info span:first-child {
    flex: 1 1 auto;
}

.dash-card .dash-info span:last-child:not(:first-child) {
    flex: 0 0 auto;
}

.dash-card.bg-booking { background: linear-gradient(135deg, #1E88E5, #1565C0); }
.dash-card.bg-dp { background: linear-gradient(135deg, #FB8C00, #E65100); }
.dash-card.bg-verifikasi { background: linear-gradient(135deg, #8E24AA, #6A1B9A); }
.dash-card.bg-fix { background: linear-gradient(135deg, #1B4E47, #0D332D); }
.dash-card.bg-checkin { background: linear-gradient(135deg, #00ACC1, #00838F); }
.dash-card.bg-pelunasan { background: linear-gradient(135deg, #F4511E, #BF360C); }
.dash-card.bg-lunas { background: linear-gradient(135deg, #D49216, #A26E0B); }
.dash-card.bg-selesai { background: linear-gradient(135deg, #43A047, #2E7D32); }
.dash-card.bg-batal { background: linear-gradient(135deg, #E53935, #B71C1C); }

/* Admin Table */
.table-zz {
    background: var(--zz-white);
    border-radius: var(--zz-radius);
    overflow: hidden;
    box-shadow: var(--zz-shadow);
}

.table-zz table {
    margin-bottom: 0;
}

.table-zz thead {
    background: var(--zz-green-dark);
    color: var(--zz-white);
}

.table-zz thead th {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-zz tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--zz-cream-dark);
}

.table-zz tbody tr:hover {
    background: rgba(45, 106, 79, 0.03);
}

.table-zz tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   PAGE HEADER (customer pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--zz-green-dark), var(--zz-brown-dark));
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(212,168,67,0.06)"/></svg>') repeat;
    background-size: 40px 40px;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--zz-white);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
    justify-content: center;
    margin-top: 12px;
}

.page-header .breadcrumb-item a {
    color: var(--zz-gold);
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ============================================
   BOOKING STATUS TIMELINE
   ============================================ */
.status-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 0;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 16px;
}

.status-step .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zz-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--zz-gray);
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--zz-transition);
}

.status-step.active .step-circle {
    background: linear-gradient(135deg, var(--zz-green), var(--zz-green-dark));
    color: var(--zz-white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.status-step.completed .step-circle {
    background: var(--zz-gold);
    color: var(--zz-green-dark);
}

.status-step .step-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--zz-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 80px;
}

.status-step.active .step-label {
    color: var(--zz-green);
}

.status-step.completed .step-label {
    color: var(--zz-gold-dark);
}

.status-connector {
    width: 40px;
    height: 2px;
    background: var(--zz-cream-dark);
    margin-top: -24px;
}

.status-connector.completed {
    background: var(--zz-gold);
}

/* ============================================
   BOOKING DETAIL CARD
   ============================================ */
.booking-detail-card {
    background: var(--zz-white);
    border-radius: var(--zz-radius-lg);
    overflow: hidden;
    box-shadow: var(--zz-shadow);
}

.booking-detail-header {
    background: linear-gradient(135deg, var(--zz-green-dark), var(--zz-green));
    padding: 30px;
    color: var(--zz-white);
    text-align: center;
}

.booking-code {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zz-gold);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.booking-detail-body {
    padding: 30px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--zz-white);
}

.about-image {
    border-radius: var(--zz-radius-lg);
    overflow: hidden;
    box-shadow: var(--zz-shadow-lg);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--zz-gold);
    border-radius: var(--zz-radius-lg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--zz-transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--zz-gold), var(--zz-gold-dark));
    color: var(--zz-green-dark);
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--zz-green-dark), var(--zz-brown-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(212,168,67,0.08)"/></svg>') repeat;
    background-size: 30px 30px;
}

.cta-section h2 {
    color: var(--zz-white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE (ADMIN & GENERAL)
   ============================================ */
/* Sidebar Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

body.sidebar-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .admin-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        max-width: 85vw !important;
        z-index: 1060 !important;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: none;
    }
    .admin-sidebar.show {
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }
    .admin-sidebar .sidebar-brand {
        padding: 18px 16px;
    }
    .admin-content {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
    }
    .admin-topbar {
        padding: 12px 18px;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    .admin-topbar .sidebar-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.12);
        background: var(--zz-cream);
        color: var(--zz-green-dark);
        cursor: pointer;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    .admin-topbar .sidebar-toggle:hover {
        background: var(--zz-gold);
        color: #fff;
        border-color: var(--zz-gold);
    }
    .admin-main {
        padding: 20px 16px;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .section-padding {
        padding: 50px 0;
    }
    .form-zz {
        padding: 20px 16px;
    }
    .admin-main {
        padding: 16px 12px;
    }
    .admin-topbar {
        padding: 10px 14px;
    }
    .admin-topbar .page-title {
        font-size: 1.1rem;
        max-width: 220px;
    }
    .admin-main h2, .admin-main h3 {
        font-size: 1.35rem !important;
    }
    .admin-main h4 {
        font-size: 1.15rem !important;
    }
    .admin-main h5 {
        font-size: 1rem !important;
    }
    .admin-main p.text-muted {
        font-size: 0.84rem !important;
    }
    .card-zz {
        padding: 16px 14px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .status-timeline {
        flex-direction: column;
    }
    .status-connector {
        width: 2px;
        height: 20px;
        margin-top: 0;
    }
    .booking-code {
        font-size: 1.3rem;
    }

    /* Table mobile enhancements */
    .table th, .table td {
        padding: 8px 10px;
        font-size: 0.84rem;
    }
    .table .btn-sm {
        padding: 4px 8px;
        font-size: 0.78rem;
    }
    .table td:last-child {
        white-space: nowrap;
    }
    .table-responsive {
        border-radius: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive::-webkit-scrollbar {
        height: 5px;
    }
    .table-responsive::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 3px;
    }
}

@media (max-width: 576px) {
    .admin-topbar .page-title {
        font-size: 1rem;
        max-width: 160px;
    }
    .admin-main {
        padding: 12px 8px;
    }
    .card-zz {
        padding: 14px 10px;
        border-radius: 10px;
    }
    .dash-card {
        padding: 8px 10px !important;
        min-height: 68px !important;
    }
    .dash-card .dash-number {
        font-size: 1.25rem !important;
        margin: 2px 0 !important;
    }
    .dash-card .dash-label {
        font-size: 0.72rem !important;
    }
    .dash-card .dash-info {
        font-size: 0.65rem !important;
    }
    .dash-card .dash-icon {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.85rem !important;
    }
    
    /* Forms and search inputs fluid on mobile */
    .admin-main form .form-control,
    .admin-main form .form-select {
        font-size: 0.85rem;
    }
    .admin-main form.d-flex input[type="text"] {
        min-width: unset !important;
    }
    .admin-main .btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    .pagination .page-link {
        padding: 4px 8px;
        font-size: 0.78rem;
    }
    .login-card {
        padding: 30px 20px;
        margin: 15px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-zz-green { background-color: var(--zz-green-dark) !important; }
.bg-zz-cream { background-color: var(--zz-cream) !important; }
.bg-zz-gold { background-color: var(--zz-gold) !important; }
.text-zz-green { color: var(--zz-green-dark) !important; }
.text-zz-gold { color: var(--zz-gold) !important; }
.text-zz-gray { color: var(--zz-gray) !important; }

.border-gold { border-color: var(--zz-gold) !important; }

/* Print Styles */
@media print {
    .admin-sidebar,
    .admin-topbar,
    .btn,
    .no-print {
        display: none !important;
    }
    .admin-content {
        margin-left: 0 !important;
    }
    .admin-main {
        padding: 0 !important;
    }
    body {
        background: white;
        font-size: 12pt;
    }
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zz-green-dark) 0%, var(--zz-brown-dark) 50%, var(--zz-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(212,168,67,0.06)"/></svg>') repeat;
    background-size: 40px 40px;
}

.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--zz-radius-lg);
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--zz-shadow-lg);
    position: relative;
    z-index: 1;
}

.login-card .login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-card .login-logo h2 {
    font-family: var(--font-heading);
    color: var(--zz-green-dark);
    font-size: 1.8rem;
}

.login-card .login-logo p {
    color: var(--zz-gray);
    font-size: 0.9rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--zz-gray);
}

.empty-state i {
    font-size: 3rem;
    color: var(--zz-cream-dark);
    margin-bottom: 16px;
}

.empty-state h5 {
    color: var(--zz-gray);
    font-family: var(--font-body);
}

/* ============================================
   PAGINATION STYLING
   ============================================ */
.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pagination .page-item .page-link {
    color: var(--zz-green-dark);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px !important;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--zz-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    text-decoration: none;
}

.pagination .page-item .page-link:hover {
    background-color: var(--zz-green-pale);
    color: var(--zz-green-dark);
    border-color: var(--zz-green-light);
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background-color: var(--zz-green-dark);
    border-color: var(--zz-green-dark);
    color: var(--zz-gold);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(19, 61, 54, 0.25);
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    pointer-events: none;
}

