/* LOS-Hub — Lojistik Depo Pazaryeri & WMS UI System */
/* Dark Slate & Glowing Orange Theme (depo2.hasgul.net Style) */

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

:root {
    /* Primary Orange Palette */
    --primary: #f97316;
    --primary-hover: #ea580c;
    --primary-dark: #c2410c;
    --primary-50: rgba(249, 115, 22, 0.08);
    --primary-100: rgba(249, 115, 22, 0.15);
    --primary-200: rgba(249, 115, 22, 0.25);
    --primary-500: #f97316;
    --primary-600: #ea580c;
    --primary-gradient: linear-gradient(135deg, #ff7a1a 0%, #ea580c 100%);
    --primary-gradient-subtle: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(234, 88, 12, 0.03) 100%);

    /* Slate & Deep Midnight Accents */
    --accent: #1e293b;
    --accent-dark: #0f172a;
    --accent-light: #334155;
    --accent-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-dark: #020617;

    /* Functional Colors */
    --success: #10b981;
    --success-dark: #059669;
    --success-light: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: rgba(245, 158, 11, 0.15);
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --danger-light: rgba(239, 68, 68, 0.15);
    --info: #3b82f6;
    --info-dark: #2563eb;
    --info-light: rgba(59, 130, 246, 0.15);

    /* Backgrounds & Surfaces (Dark Slate Theme) */
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --bg-pattern: #020617;
    --surface: rgba(30, 41, 59, 0.65);
    --surface-solid: #1e293b;
    --surface-glass: rgba(15, 23, 42, 0.82);
    --surface-card: rgba(30, 41, 59, 0.55);
    --surface-secondary: rgba(15, 23, 42, 0.6);

    /* Text & Typography */
    --text: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #64748b;

    /* Borders */
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.06);
    --border-dark: rgba(255, 255, 255, 0.18);
    --border-focus: rgba(249, 115, 22, 0.5);

    /* Radii */
    --radius-sm: 10px;
    --radius: 16px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows & Glows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
    --shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 16px 36px -6px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, 0.65);
    --shadow-orange: 0 8px 25px -4px rgba(249, 115, 22, 0.45);
    --shadow-orange-sm: 0 4px 14px -2px rgba(249, 115, 22, 0.3);
    --glow-orange: 0 0 30px rgba(249, 115, 22, 0.25);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Reset & Base Styles ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Glowing Background Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(130px);
    opacity: 0.7;
}

body::before {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

body::after {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 70%);
}

::selection {
    background: var(--primary);
    color: #ffffff;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: #fb923c;
}

/* ── Modern Header & Glass Navigation ── */
.site-header {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.site-header.header--sticky {
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header.header--static {
    position: relative;
    top: auto;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0.5rem 0;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.logo:hover {
    color: #ffffff;
    opacity: 0.96;
}

.logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.logo:hover .logo-icon {
    transform: scale(1.06) rotate(4deg);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.65);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 40%, #fed7aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.logo-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: 750;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.main-nav a:not(.btn) {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.835rem;
    font-weight: 600;
    padding: 0.48rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.main-nav a:not(.btn):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.main-nav a:not(.btn).active {
    color: #ffffff;
    background: rgba(249, 115, 22, 0.16);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.25);
    font-weight: 700;
}

.user-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.role-tag {
    background: rgba(249, 115, 22, 0.18);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.35);
    padding: 0.15rem 0.55rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: #ffffff;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-dark);
}

.nav-toggle svg {
    display: block;
}

/* ── Main Layout ── */
.main-content {
    flex: 1;
    padding: 2.5rem 0 4rem;
    position: relative;
    z-index: 1;
}

.page-intro {
    margin-bottom: 2.5rem;
}

.page-intro h1,
.page-intro h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.page-intro .lead {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.25rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--border);
}

.page-header h2 {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    color: #ffffff;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border-color: rgba(254, 215, 170, 0.35);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -2px rgba(249, 115, 22, 0.6);
    color: #ffffff !important;
}

.btn-accent {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-accent:hover {
    transform: translateY(-2px);
    background: rgba(51, 65, 85, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.site-header .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--text-secondary);
}

.site-header .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.site-header .btn-primary {
    background: var(--primary-gradient);
    box-shadow: var(--shadow-orange-sm);
}

.site-header .btn-primary:hover {
    box-shadow: var(--shadow-orange);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    border-color: rgba(167, 243, 208, 0.3);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff !important;
    border-color: rgba(253, 230, 138, 0.3);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}
.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.5);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff !important;
    border-color: rgba(254, 202, 202, 0.3);
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
}
.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.5);
}

.btn-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff !important;
    border-color: rgba(191, 219, 254, 0.3);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);
}
.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.5);
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 0.95rem 2.4rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ── Modern Quick Floating Nav Bar (Hızlı Menü) ── */
.quick-nav-bar-wrapper {
    width: 100%;
    transition: top 0.25s ease;
}

.quick-nav-bar-wrapper.quick-nav--sticky {
    position: sticky;
    top: 86px;
    z-index: 180;
}

.site-header.header--static ~ .main-content .quick-nav-bar-wrapper.quick-nav--sticky {
    top: 14px;
}

.quick-nav-bar {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 0.4rem 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.quick-nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    white-space: nowrap;
}

.quick-nav-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.quick-nav-btn.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
    border-color: rgba(254, 215, 170, 0.3);
}

.quick-nav-icon {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.quick-nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 1rem;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #fb923c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-badge-icon {
    font-size: 0.85rem;
}

@media (max-width: 960px) {
    .quick-nav-bar {
        border-radius: 20px;
        padding: 0.65rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }
    .quick-nav-links {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }
    .quick-nav-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ── Modern Hero Slider (Slayt Alanı) ── */
.hero-slider-wrapper {
    width: 100%;
}

.hero-slider-container {
    background: 
        radial-gradient(circle at 90% 15%, rgba(249, 115, 22, 0.28) 0%, transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(56, 189, 248, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.45) 0%, transparent 80%),
        linear-gradient(135deg, #090d16 0%, #111a2e 50%, #17243c 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 2.75rem 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 0 40px rgba(249, 115, 22, 0.08);
    backdrop-filter: blur(20px);
}

.hero-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-bar {
    width: 26px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.indicator-bar:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator-bar.active {
    width: 54px;
    background: #ffffff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.slider-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slider-play-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.95rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.slider-play-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.slider-play-toggle.paused {
    background: rgba(249, 115, 22, 0.18);
    border-color: rgba(249, 115, 22, 0.4);
    color: #fed7aa;
}

.slider-nav-arrows {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.slider-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.hero-slides-track {
    position: relative;
    min-height: 250px;
}

.hero-slide-item {
    display: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 1.15rem;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.38);
    color: #fed7aa;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    letter-spacing: 0.02em;
}

.slide-title {
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.038em;
    color: #ffffff;
    margin-bottom: 1.15rem;
}

.slide-highlight {
    background: linear-gradient(135deg, #ffffff 10%, #fed7aa 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    font-size: 1.05rem;
    line-height: 1.68;
    color: #cbd5e1;
    max-width: 820px;
    margin-bottom: 2.25rem;
}

.slide-buttons {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.85rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-slide-primary {
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.btn-slide-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 255, 255, 0.3);
    background: #f8fafc;
    color: #ea580c !important;
}

.btn-slide-secondary {
    background: rgba(30, 41, 59, 0.75);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-slide-secondary:hover {
    transform: translateY(-2px);
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
}

.hero-slider-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-stat-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.slider-stat-card:hover {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

.slider-stat-card .stat-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.slider-stat-card .stat-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .hero-slider-container {
        padding: 1.75rem 1.5rem;
        border-radius: 22px;
    }
    .hero-slider-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

@media (max-width: 600px) {
    .hero-slider-stats {
        grid-template-columns: 1fr 1fr;
    }
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-slide {
        width: 100%;
    }
}

/* ── Hero Section ── */
.hero {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 4rem;
    overflow: hidden;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #fb923c;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseBadge 2s infinite;
}

.hero h1 {
    font-size: clamp(2.35rem, 5.5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #fde047 30%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 600;
    max-width: 660px;
    margin: 0 auto 1rem;
}

.hero-desc {
    max-width: 660px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1.15rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-actions .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fb923c;
    letter-spacing: -0.03em;
}

.hero-stat span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ── Workflow Steps ── */
.workflow {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    margin-bottom: 0.45rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.75rem;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
    position: relative;
}

.workflow-step {
    text-align: center;
    padding: 1.35rem 0.85rem;
    position: relative;
    transition: all var(--transition);
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 0;
}

.workflow-step:last-child::after {
    display: none;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0 auto 0.95rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-orange);
    transition: all var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.workflow-step:hover .step-num {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.65);
}

.workflow-step h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.workflow-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Features & Roles ── */
.features, .roles-section {
    margin-bottom: 4rem;
}

.feature-grid, .role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-card, .role-card {
    background: var(--surface-card);
    padding: 2.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before, .role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover, .role-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 25px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.35);
}

.feature-card:hover::before, .role-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.35rem;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(3deg);
    background: rgba(249, 115, 22, 0.25);
    border-color: var(--primary);
}

.feature-card h3, .role-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.7;
}

.role-card ul {
    padding-left: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.925rem;
}

.role-card li {
    padding: 0.5rem 0;
    padding-left: 1.65rem;
    position: relative;
}

.role-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.95rem;
}

.role-icon {
    font-size: 2.25rem;
    margin-bottom: 1.15rem;
}

/* ── Cards ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.75rem;
}

.card {
    background: var(--surface-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md), 0 0 25px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-3px);
}

.card-header {
    padding: 1.35rem 1.6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.card-body {
    padding: 1.6rem;
}

.card-body p {
    font-size: 0.925rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.card-body p strong {
    color: var(--text);
    font-weight: 700;
}

.card-footer {
    padding: 1.2rem 1.6rem;
    border-top: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.45);
}

.capacity-info {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0.85rem 0;
}

.capacity-info span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: 10px;
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.match-card {
    border: 1px solid var(--border);
}

.match-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(249, 115, 22, 0.18);
}

/* ── Stats & KPI Widgets ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.75rem;
    margin: 2.25rem 0;
}

.stat-card {
    background: var(--surface-card);
    padding: 1.85rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.stat-card:nth-child(2)::before { background: #38bdf8; }
.stat-card:nth-child(3)::before { background: var(--success); }
.stat-card:nth-child(4)::before { background: #a855f7; }

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 25px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.35);
}

.stat-icon {
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 14px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.stat-card:nth-child(2) .stat-icon {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.3);
}
.stat-card:nth-child(3) .stat-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}
.stat-card:nth-child(4) .stat-icon {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-value {
    font-size: 2.35rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.45rem;
    font-weight: 600;
}

.stat-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: rgba(249, 115, 22, 0.04);
    border: 2px dashed rgba(249, 115, 22, 0.3);
}

.stat-action::before {
    display: none;
}

.stat-action:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.08);
}

/* Clickable Stat Cards */
a.stat-card {
    text-decoration: none !important;
    color: inherit !important;
}

a.stat-card:hover .stat-value {
    color: #fb923c;
}

/* ── Forms & Inputs ── */
.form {
    max-width: 640px;
}

.form-wide {
    max-width: 900px;
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    font-size: 0.925rem;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.7);
    transition: all var(--transition-fast);
    color: #ffffff;
    box-shadow: var(--shadow-xs);
}

.form-group select option {
    background: #0f172a;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.85);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3.5px rgba(249, 115, 22, 0.25);
    background: rgba(15, 23, 42, 0.95);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

fieldset {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(30, 41, 59, 0.45);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}

legend {
    font-weight: 900;
    font-size: 1rem;
    padding: 0 0.85rem;
    color: #fb923c;
    letter-spacing: -0.02em;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600 !important;
    font-size: 0.925rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-label:hover {
    color: #ffffff;
}

/* Feature & Service Filter Pills */
.feature-pill-input {
    display: none;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-pill-input:checked + .feature-pill {
    background: var(--primary);
    color: #ffffff;
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
    font-weight: 700;
}

/* ── Tables ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin: 1.75rem 0;
    background: var(--surface-card);
    backdrop-filter: blur(16px);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    margin: 0;
    box-shadow: none;
}

.table th, .table td {
    padding: 1rem 1.35rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.table th {
    background: rgba(15, 23, 42, 0.85);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.table tbody tr {
    transition: background var(--transition-fast);
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

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

.table-detail th {
    width: 230px;
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
}

.table-detail td {
    font-weight: 500;
    color: #ffffff;
}

.table-sm th, .table-sm td {
    padding: 0.7rem 1rem;
    font-size: 0.825rem;
}

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid transparent;
}

.badge-primary {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    border-color: rgba(249, 115, 22, 0.35);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.35);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.35);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.35);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.35);
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── Alerts ── */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
    font-size: 0.925rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-left: 5px solid;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #f0fdf4;
    border-color: rgba(16, 185, 129, 0.25);
    border-left-color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fef2f2;
    border-color: rgba(239, 68, 68, 0.25);
    border-left-color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.12);
    color: #fffbeb;
    border-color: rgba(245, 158, 11, 0.25);
    border-left-color: var(--warning);
}

.alert-info {
    background: rgba(59, 130, 246, 0.12);
    color: #eff6ff;
    border-color: rgba(59, 130, 246, 0.25);
    border-left-color: var(--info);
}

/* ── Auth Screen Layout ── */
.main-content--full {
    padding: 0;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: calc(100vh - 74px - 140px);
}

.auth-side {
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #020617 0%, #0f172a 100%);
    color: #fff;
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.auth-side > * {
    position: relative;
    z-index: 1;
}

.auth-side h2 {
    font-size: 2.35rem;
    font-weight: 900;
    margin-bottom: 1.15rem;
    letter-spacing: -0.04em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 40%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-side p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.auth-features {
    list-style: none;
}

.auth-features li {
    padding: 0.65rem 0;
    padding-left: 1.85rem;
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.auth-features li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem;
    background: var(--bg);
}

.auth-card, .setup-card, .payment-card {
    width: 100%;
    max-width: 450px;
    background: var(--surface-card);
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

.auth-card h2, .setup-card h1 {
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.4rem;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 2.25rem;
}

.auth-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.925rem;
    color: var(--text-muted);
}

.auth-link a {
    font-weight: 700;
    color: #fb923c;
}

.setup-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg);
}

.setup-card {
    max-width: 600px;
    text-align: center;
}

/* ── Info Box & Special Layouts ── */
.info-box {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin: 2.25rem 0;
    font-size: 0.925rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-xs);
}

.info-box h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fb923c;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.info-box ul {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.info-box li {
    margin-bottom: 0.5rem;
}

.privacy-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-left: 5px solid var(--warning);
    padding: 1.15rem 1.4rem;
    border-radius: 12px;
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
    color: #fef08a;
    font-weight: 500;
}

.price-highlight {
    color: #fb923c;
    font-weight: 900;
    font-size: 1.35rem;
}

.total-row {
    font-weight: 900;
    font-size: 1.2rem;
    color: #ffffff;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.matches-section { margin-top: 4rem; }
.matches-section h3 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.payment-card {
    max-width: 520px;
    text-align: center;
    margin: 3rem auto;
}

.payment-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fb923c;
    margin: 1.75rem 0;
    letter-spacing: -0.04em;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
    background: var(--surface-card);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    backdrop-filter: blur(14px);
}

.empty-state p {
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.refund-calculator, .po-preview {
    background: var(--surface-card);
    padding: 2.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 680px;
    backdrop-filter: blur(16px);
}

.inline-form {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    flex-wrap: wrap;
}

.input-sm {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: inherit;
    width: 130px;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
}

.input-sm:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

/* ── Customer Profile & Summary Section ── */
.profile-section {
    margin-top: 4rem;
}

.profile-section h2 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.85rem;
    color: #ffffff;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.75rem;
}

.profile-card {
    background: var(--surface-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.profile-card:hover {
    box-shadow: var(--shadow-md), 0 0 25px rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.35);
}

.profile-card-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.35rem 1.6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.profile-card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.profile-card-header .badge {
    margin-left: auto;
}

.profile-card-body {
    padding: 1.6rem;
    flex: 1;
}

.profile-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.925rem;
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-info-label {
    color: var(--text-muted);
    font-weight: 600;
}

.profile-info-value {
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

/* ── Floating Notification Bell (Bottom-Left) ── */
.notification-bell-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-bell-btn {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    color: #f8fafc;
    width: 56px;
    height: 56px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55), 0 0 15px rgba(249, 115, 22, 0.25);
    transition: all var(--transition-bounce);
}

.notification-bell-btn svg {
    display: block;
    width: 26px;
    height: 26px;
    color: #ffffff;
}

.notification-bell-btn:hover {
    background: var(--primary);
    transform: scale(1.1) rotate(8deg);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.65);
    border-color: rgba(255, 255, 255, 0.6);
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.72rem;
    padding: 0 6px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 20px;
    height: 20px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 0 0 2px #0f172a;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.notification-dropdown {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 0;
    top: auto;
    right: auto;
    width: 400px;
    max-width: calc(100vw - 32px);
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 100000;
    display: none;
    margin-top: 0;
    overflow: hidden;
    animation: slideUpFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-dropdown.active {
    display: block;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-dropdown-header {
    padding: 1.15rem 1.4rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
}

.notification-dropdown-header-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-dropdown-header-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.notification-dropdown-header-title a {
    font-size: 0.8rem;
    color: #fb923c;
    font-weight: 700;
    text-decoration: none;
}

.notification-dropdown-header-title a:hover {
    text-decoration: underline;
}

.notification-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

.notification-close-btn:hover {
    color: #ffffff;
}

.notification-dropdown-body {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.notification-slider-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.notification-slider-page {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.no-notifications {
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    width: 100%;
}

.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item.unread {
    background: rgba(249, 115, 22, 0.1);
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.notification-link {
    display: block;
    padding: 1.15rem 1.4rem;
    text-decoration: none;
    color: inherit;
}

.notification-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.notification-title {
    font-weight: 800;
    font-size: 0.925rem;
    color: #ffffff;
}

.notification-msg {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.notification-dropdown-footer {
    padding: 1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.notification-dropdown-footer a.view-all-link {
    font-size: 0.85rem;
    color: #fb923c;
    font-weight: 700;
    text-decoration: none;
}

.notification-dropdown-footer a.view-all-link:hover {
    text-decoration: underline;
}

.notification-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
}

.slider-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    border-radius: var(--radius-sm);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-page-indicator {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 44px;
    text-align: center;
    user-select: none;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Footer ── */
.site-footer {
    background: #020617;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2.25rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 2.75rem;
    margin-bottom: 2.75rem;
}

.footer-brand .logo {
    margin-bottom: 1.15rem;
}

.footer-brand p {
    font-size: 0.925rem;
    line-height: 1.75;
    max-width: 350px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.925rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.925rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: #fb923c;
}

.footer-bottom {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.15rem;
    font-size: 0.875rem;
}

.footer-note {
    color: rgba(255, 255, 255, 0.45);
}

/* ── Global Responsive & Mobile Optimization ── */
@media (max-width: 960px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }
    .auth-side {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .workflow-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 76px !important; /* Space for Mobile Fixed Bottom Tab Bar */
    }

    .form-row, .form-row-3, .form-row[style], .form-row-3[style] {
        grid-template-columns: 1fr !important;
    }
    .stats-grid, .stats-grid[style] {
        grid-template-columns: 1fr !important;
    }
    .hero {
        padding: 3rem 1.25rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }

    /* Mobile Header & Logo */
    .header-inner {
        min-height: 64px;
        padding: 0.35rem 0;
        gap: 0.75rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.58rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 1.25rem 1rem;
        gap: 0.5rem;
        border-top: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.7);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a:not(.btn) {
        width: 100%;
        padding: 0.8rem 1.15rem;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .user-badge {
        width: 100%;
        justify-content: space-between;
        margin: 0.25rem 0;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ── Mobile Fixed Bottom Navigation Bar (Tab Bar) ── */
    .quick-nav-bar-wrapper {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 998 !important;
        margin: 0 !important;
        padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom, 0px)) !important;
        background: rgba(15, 23, 42, 0.96) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6) !important;
    }

    .quick-nav-bar {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .quick-nav-links {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        gap: 0.2rem;
        flex-wrap: nowrap;
        overflow-x: visible;
    }

    .quick-nav-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.35rem 0.2rem;
        border-radius: 12px;
        font-size: 0.68rem;
        font-weight: 700;
        text-align: center;
        gap: 0.15rem;
        min-width: 0;
        line-height: 1.15;
    }

    .quick-nav-btn .quick-nav-icon {
        font-size: 1.15rem;
    }

    .quick-nav-btn span:not(.quick-nav-icon) {
        font-size: 0.65rem;
        display: block;
        max-width: 76px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .quick-nav-badge {
        display: none !important; /* Hide long badge on mobile tab bar */
    }

    /* ── Mobile Hero Slider Card ── */
    .hero-slider-container {
        padding: 1.5rem 1.15rem 1.25rem !important;
        border-radius: 20px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .hero-slider-header {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }

    .slider-indicators .indicator-bar {
        width: 18px;
        height: 5px;
    }
    .slider-indicators .indicator-bar.active {
        width: 36px;
    }

    .slider-play-toggle {
        padding: 0.28rem 0.65rem;
        font-size: 0.72rem;
    }

    .slider-arrow {
        width: 28px;
        height: 28px;
    }
    .slider-arrow svg {
        width: 14px;
        height: 14px;
    }

    .slide-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.85rem;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .slide-title {
        font-size: clamp(1.5rem, 6.5vw, 2.1rem) !important;
        line-height: 1.22;
        margin-bottom: 0.75rem;
        word-break: break-word;
    }

    .slide-desc {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }

    .slide-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
    }

    .btn-slide {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero-slider-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }

    .slider-stat-card {
        padding: 0.75rem 0.65rem;
        border-radius: 12px;
    }

    .slider-stat-card .stat-num {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }

    .slider-stat-card .stat-lbl {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    /* Floating action buttons offset above bottom tab bar on mobile */
    .whatsapp-float-btn {
        bottom: 84px !important;
        right: 1.25rem !important;
        width: 48px !important;
        height: 48px !important;
    }
    .whatsapp-float-btn svg {
        width: 22px !important;
        height: 22px !important;
    }

    .notification-bell-container {
        bottom: 84px !important;
        left: 1.25rem !important;
    }
    .notification-bell-btn {
        width: 48px !important;
        height: 48px !important;
    }
    .notification-bell-btn svg {
        width: 22px !important;
        height: 22px !important;
    }
}

