/* ============================================================
   assets/css/style.css — Redesain Laundry Modern (Stripe/Linear/Apple Style)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --navy-deep:     #0F172A; /* Slate 900 */
    --navy-medium:   #1E293B; /* Slate 800 */
    --navy-light:    #334155; /* Slate 700 */
    --primary:       #0284c7; /* Sky 600 - Biru Muda */
    --primary-lt:    #38bdf8; /* Sky 400 */
    --primary-glow:  rgba(2, 132, 199, 0.15);
    --mint:          #10b981; /* Mint / Emerald 500 */
    --mint-lt:       #e6fcf5; /* Mint Light background */
    --accent:        #10b981; /* Default accent matches mint */
    --accent-lt:     #eff6ff; 
    --bg:            #fafafa; /* Clean Off-White */
    --card:          #ffffff;
    --text:          #0f172a;
    --muted:         #64748b;
    --border:        #f1f5f9;
    --border-hover:  #e2e8f0;
    
    /* Layout Constants */
    --sidebar-w:     280px;
    --radius:        16px;
    --radius-sm:     10px;
    --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 12px 30px -10px rgba(0, 0, 0, 0.06);
    --shadow-lg:     0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --glass-bg:      rgba(255, 255, 255, 0.75);
    --glass-border:  rgba(255, 255, 255, 0.4);
    --transition:    all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-deep);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-font {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
}

/* ── Sticky Blur Navbar ───────────────────────────────────────── */
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.sticky-navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    height: 64px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand-icon {
    font-size: 24px;
    color: var(--primary);
    background: var(--accent-lt);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.nav-brand-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--navy-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta-btn {
    background: var(--navy-deep);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.nav-cta-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.2);
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    font-size: 26px;
    color: var(--navy-deep);
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    background: var(--accent-lt);
    color: var(--primary);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-nav-sidebar.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-nav-close {
    font-size: 26px;
    background: none;
    border: none;
    color: var(--navy-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--border);
    color: var(--navy-deep);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
}

.mobile-nav-menu a {
    color: var(--navy-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.mobile-nav-menu a:hover {
    background: var(--bg);
    color: var(--primary);
    padding-left: 16px;
}

.admin-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.admin-sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0 !important;
    }
    .content-area {
        padding: 16px;
    }
    .stat-card {
        padding: 16px;
    }
}

/* ── Hero Section (Full-screen & SVG Illustration) ─────────────── */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #f0f9ff 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 { width: 400px; height: 400px; top: 10%; right: -50px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: 5%; left: -50px; }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint-lt);
    color: var(--mint);
    padding: 6px 14px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.hero-headline {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Animated Washing Machine Illustration (CSS/SVG) */
.illustration-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.washing-machine-container {
    width: 320px;
    height: 400px;
    background: #ffffff;
    border: 6px solid var(--navy-deep);
    border-radius: 28px;
    box-shadow: var(--shadow-lg), inset 0 0 20px rgba(0,0,0,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: floatMachine 6s ease-in-out infinite alternate;
}

.machine-top-panel {
    height: 70px;
    background: #f8fafc;
    border-bottom: 4px solid var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.panel-dial {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid var(--navy-deep);
    background: #e2e8f0;
    position: relative;
    animation: rotateDial 8s ease-in-out infinite alternate;
}

.panel-display {
    width: 70px;
    height: 24px;
    background: var(--navy-deep);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    font-family: monospace;
    font-weight: 700;
    font-size: 11px;
}

.panel-lights {
    display: flex;
    gap: 6px;
}

.panel-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.panel-light:nth-child(2) {
    background: var(--primary-lt);
    animation: blinkLight 1s infinite alternate;
}

.machine-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.machine-door-outer {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid var(--navy-deep);
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 8px 16px rgba(0,0,0,0.06);
}

.machine-door-glass {
    width: 154px;
    height: 154px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.4) 0%, rgba(2, 132, 199, 0.6) 100%);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.15);
}

.drum-water {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 40% 40% 0 0;
    animation: waveMovement 3s ease-in-out infinite alternate, drumSpin 4s linear infinite;
    transform-origin: center;
}

.drum-clothes {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--primary) 100%);
    border-radius: 30% 60% 40% 50%;
    top: 30px;
    left: 35px;
    animation: drumSpin 3s linear infinite;
    opacity: 0.9;
}

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    bottom: 10px;
    animation: floatBubbles 2s infinite ease-out;
}

.bubble-1 { width: 12px; height: 12px; left: 30%; animation-delay: 0.2s; }
.bubble-2 { width: 8px; height: 8px; left: 55%; animation-delay: 0.6s; }
.bubble-3 { width: 14px; height: 14px; left: 70%; animation-delay: 0s; }
.bubble-4 { width: 6px; height: 6px; left: 45%; animation-delay: 1.1s; }

/* Animation Keyframes */
@keyframes floatMachine {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes rotateDial {
    0% { transform: rotate(0deg); }
    30% { transform: rotate(45deg); }
    70% { transform: rotate(-30deg); }
    100% { transform: rotate(90deg); }
}

@keyframes blinkLight {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes drumSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes waveMovement {
    0% { border-radius: 38% 42% 0 0; transform: translateY(0); }
    100% { border-radius: 45% 35% 0 0; transform: translateY(-5px); }
}

@keyframes floatBubbles {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

/* ── Interactive Service Cards ────────────────────────────────── */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--muted);
    font-size: 16px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--mint) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-lt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--navy-deep);
    color: #fff;
    transform: scale(1.05);
}

.service-card-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-deep);
}

.service-card-desc {
    color: var(--muted);
    font-size: 13.5px;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--mint);
    gap: 10px;
}

/* ── Premium Price Cards ─────────────────────────────────────── */
.pricing-section {
    padding: 100px 0;
    background: var(--bg);
}

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.price-card.featured::after {
    content: 'Terpopuler';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--mint);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
}

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

.price-header {
    margin-bottom: 28px;
}

.price-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-light);
    margin-bottom: 8px;
}

.price-value-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-deep);
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1;
}

.price-unit {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.price-features {
    list-style: none;
    margin-bottom: 36px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--navy-light);
    margin-bottom: 12px;
}

.price-features li iconify-icon {
    color: var(--mint);
    font-size: 18px;
}

.price-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--border);
    color: var(--navy-deep);
    text-decoration: none;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.price-card.featured .price-cta {
    background: var(--primary);
    color: #fff;
}

.price-card.featured .price-cta:hover {
    background: var(--navy-deep);
}

.price-cta:hover {
    background: var(--navy-light);
    color: #fff;
}

/* ── Customer & Order Statistics ────────────────────────────── */
.stats-section {
    padding: 80px 0;
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section .section-title {
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--mint);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-family: monospace;
}

.stat-text {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* ── Tracking Section & Stepper ─────────────────────────────── */
.tracking-sec {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
}

.tracking-card-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline Stepper */
.timeline-wrapper-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
    padding: 0 10px;
}

.timeline-wrapper-modern::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    top: 24px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--mint) 100%);
    z-index: 2;
    transition: width 0.5s ease-in-out;
}

.step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.step-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e2e8f0;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-node.done .step-icon-box {
    border-color: var(--mint);
    background: var(--mint);
    color: #fff;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.step-node.active .step-icon-box {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 16px rgba(2, 132, 199, 0.4);
    transform: scale(1.1);
}

.step-label-modern {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
}

.step-node.done .step-label-modern {
    color: var(--mint);
}

.step-node.active .step-label-modern {
    color: var(--primary);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-modern {
    background: var(--navy-deep);
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 12.5px;
}

/* ── Admin Area CSS Overrides & Modernizations ───────────────── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--navy-deep);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition);
}

.main-content {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    transition: var(--transition);
}

.content-area {
    padding: 32px;
}

.sidebar-brand {
    padding: 30px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--mint) 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar-nav {
    padding: 20px 16px;
}

.sidebar-nav .nav-link {
    color: #94a3b8;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: var(--transition);
}

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

.sidebar-nav .nav-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Topbar */
.topbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
}

.topbar .admin-avatar {
    background: var(--accent-lt);
    color: var(--primary);
    border: 2px solid rgba(2, 132, 199, 0.1);
}

/* Cards & Stats */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    padding: 18px 24px;
}

.stat-card {
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #fff;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
}

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

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hover);
    padding: 10px 16px;
    font-size: 13.5px;
    transition: var(--transition);
}

.form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hover);
    padding: 10px 36px 10px 16px;
    font-size: 13.5px;
    transition: var(--transition);
}

.form-select-sm {
    padding: 6px 32px 6px 12px;
    font-size: 12.5px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0270a8;
    border-color: #0270a8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
}

.btn-accent {
    background: var(--mint);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transition: var(--transition);
}

.btn-accent:hover {
    background: #0d9668;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

/* Tables */
.table-responsive {
    border-radius: var(--radius);
}

.table thead th {
    background: #f8fafc;
    color: var(--navy-light);
    font-weight: 700;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.table tbody td {
    padding: 16px 24px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 11.5px;
}

/* Toast Notifications styling */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
}

.custom-toast {
    background: #fff;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInToast {
    to { transform: translateY(0); opacity: 1; }
}

/* Custom Timeline for Order Detail / Payment */
.info-block {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 40px;
    }
    .illustration-wrapper {
        margin-top: 40px;
    }
    .timeline-wrapper-modern {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding-left: 20px;
    }
    .timeline-wrapper-modern::before {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 4px;
        height: auto;
    }
    .timeline-progress-bar {
        top: 0;
        left: 35px;
        width: 4px;
        height: 0;
        transition: height 0.5s ease-in-out;
    }
    .step-node {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        justify-content: flex-start;
    }
    .step-label-modern {
        margin-top: 0;
        text-align: left;
    }
}

/* ── Admin Dashboard Layout ──────────────────────────────────── */
.admin-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.admin-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    width: var(--sidebar-w);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #ffffff;
    color: var(--navy-deep);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.04);
}

.sidebar-brand {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

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

.sidebar-nav {
    padding: 24px 16px;
    flex: 1;
}

.sidebar-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 10px 12px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--navy-light) !important;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14.5px;
    transition: var(--transition);
    gap: 12px;
}

.sidebar-nav .nav-link:hover {
    background: var(--bg);
    color: var(--primary) !important;
    transform: translateX(4px);
}

.sidebar-nav .nav-link.active {
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.08) 0%, transparent 100%);
    color: var(--primary) !important;
    border-left: 3px solid var(--primary);
    font-weight: 700;
}

.nav-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    color: var(--muted);
    transition: var(--transition);
}

.sidebar-nav .nav-link:hover .nav-icon {
    color: var(--primary);
}

.sidebar-nav .nav-link.active .nav-icon {
    color: var(--primary);
    opacity: 1;
}

.sidebar-footer {
    padding: 20px 16px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.main-content {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    transition: var(--transition);
}

/* ── Bubbles Background ──────────────────────────────────────── */
.bubbles-bg {
    position: fixed;
    top: 0;
    left: var(--sidebar-w);
    width: calc(100% - var(--sidebar-w));
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .bubbles-bg {
        left: 0;
        width: 100%;
    }
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: rgba(2, 132, 199, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(2, 132, 199, 0.15);
    border-radius: 50%;
    animation: bubbleRise infinite ease-in;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) translateX(50px) scale(1.5);
        opacity: 0;
    }
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 80px; height: 80px; left: 20%; animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 7s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 100px; height: 100px; left: 50%; animation-duration: 14s; animation-delay: 0s; }
.bubble:nth-child(5) { width: 60px; height: 60px; left: 65%; animation-duration: 10s; animation-delay: 5s; }
.bubble:nth-child(6) { width: 120px; height: 120px; left: 80%; animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(7) { width: 30px; height: 30px; left: 90%; animation-duration: 6s; animation-delay: 3s; }

.topbar {
    height: 72px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.content-area {
    padding: 32px;
    flex: 1;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--mint) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .topbar {
        padding: 0 20px;
    }
    .content-area {
        padding: 20px;
    }
}
