:root {
    --peacock-teal: #00695C;
    --peacock-teal-dark: #004D40;
    --peacock-teal-light: #00897B;
    --peacock-blue: #1565C0;
    --peacock-blue-dark: #0D47A1;
    --peacock-blue-light: #1E88E5;
    --peacock-emerald: #2E7D32;
    --peacock-emerald-light: #43A047;
    --peacock-gold: #FFB300;
    --peacock-gold-dark: #FF8F00;
    --peacock-bronze: #8D6E63;
    --peacock-purple: #6A1B9A;
    --peacock-cream: #F5F0E8;
    --peacock-cream-dark: #E8DCC8;
    --peacock-deep: #1A0A2E;
    --peacock-navy: #0D1B2A;
    --white: #FFFFFF;
    --gray-100: #F0F4F3;
    --gray-200: #D5E0DD;
    --gray-600: #607D8B;
    --success: #2E7D32;
    --warning: #FFB300;
    --danger: #C62828;
    --info: #00838F;
    --bg-cream: #F5F0E8;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --saffron: #00695C;
    --saffron-dark: #004D40;
    --saffron-light: #00897B;
    --gold: #FFB300;
    --gold-dark: #FF8F00;
    --deep-red: #4A148C;
    --brown: #1A0A2E;
    --brown-light: #3E2723;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--brown);
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1000;
}
.navbar.scrolled { padding: 5px 0; box-shadow: 0 4px 25px rgba(0,0,0,0.1); }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.3);
    transition: var(--transition);
    background: white;
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.navbar-brand:hover .brand-logo { transform: rotate(-10deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--peacock-teal);
    letter-spacing: 1px;
}
.brand-sub {
    font-size: 10px;
    color: var(--brown-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-link {
    color: var(--brown) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: var(--transition);
    margin: 0 2px;
}
.nav-link:hover { color: var(--peacock-teal) !important; background: rgba(0,105,92,0.08); }
.nav-link i { margin-right: 4px; }

.btn-signup-nav {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue)) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,105,92,0.3);
}
.btn-signup-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,105,92,0.4);
    background: linear-gradient(135deg, var(--peacock-blue), var(--peacock-teal)) !important;
    color: white !important;
}

.user-dropdown { font-weight: 600 !important; }
.dropdown-menu {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
}
.dropdown-item { padding: 10px 20px; transition: var(--transition); }
.dropdown-item:hover { background: rgba(0,105,92,0.08); color: var(--peacock-teal); }

/* ========== MAIN CONTENT ========== */
.main-content { padding-top: 76px; min-height: calc(100vh - 200px); }

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0D1B2A 0%, #00251A 25%, #004D40 50%, #0D47A1 75%, #0D1B2A 100%);
    overflow: hidden;
    margin-top: -76px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 40%, rgba(0,105,92,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 65% 60%, rgba(21,101,192,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 20%, rgba(255,179,0,0.08) 0%, transparent 40%);
}
.hero-particles { position: absolute; inset: 0; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: floatUp 6s infinite;
    opacity: 0;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 60%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 75%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 90%; animation-delay: 3s; }

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; padding: 80px 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,0,0.15);
    border: 1px solid rgba(255,179,0,0.3);
    color: var(--peacock-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-gold), var(--peacock-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: 0 6px 25px rgba(0,105,92,0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,105,92,0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 14px; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}
.hero-card {
    position: relative;
    width: 300px;
    height: 300px;
}
.hero-icon-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,105,92,0.2), rgba(21,101,192,0.15), rgba(255,179,0,0.1));
    border: 3px solid rgba(255,179,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    animation: pulse 3s infinite;
    font-size: 60px;
    color: var(--peacock-teal);
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,105,92,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 30px rgba(0,105,92,0); }
}

.floating-elements { position: absolute; inset: 0; }
.float-item {
    position: absolute;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}
.f1 { top: 20px; left: 30px; animation-delay: 0s; }
.f2 { top: 40px; right: 20px; animation-delay: 1s; }
.f3 { bottom: 40px; left: 20px; animation-delay: 2s; }
.f4 { bottom: 20px; right: 40px; animation-delay: 0.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-wave { position: relative; z-index: 1; margin-top: -5px; }
.hero-wave svg { display: block; width: 100%; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== SECTION HEADERS ========== */
.section-header { margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    background: rgba(0,105,92,0.1);
    color: var(--peacock-teal);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}
.section-header p { color: var(--gray-600); font-size: 16px; }

/* ========== SERVICES ========== */
.services-section { padding: 80px 0; }
.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(0,105,92,0.2);
}
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(0,105,92,0.1), rgba(21,101,192,0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--peacock-teal);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    color: white;
    transform: rotate(-5deg) scale(1.05);
}
.service-card h4 { font-weight: 600; margin-bottom: 8px; font-size: 18px; }
.service-card p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* ========== PROMO ========== */
.promo-section { padding: 40px 0 80px; }
.promo-banner {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-purple));
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(106,27,154,0.2);
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.promo-banner h2 { color: white; font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700; }
.text-gold { color: var(--gold) !important; }
.promo-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 24px; position: relative; z-index: 1; }
.btn-promo {
    background: white;
    color: var(--peacock-teal);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative; z-index: 1;
}
.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--peacock-teal); }

.promo-visual { position: relative; z-index: 1; }
.promo-circle {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2.5s infinite;
}
.promo-percent { font-size: 36px; font-weight: 700; color: white; line-height: 1; }
.promo-off { font-size: 18px; color: var(--gold); font-weight: 600; }

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 80px 0; background: white; }
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: var(--transition);
}
.step-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,105,92,0.08);
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.step-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0,105,92,0.25);
    position: relative; z-index: 1;
}
.step-card h4 { font-weight: 600; margin-bottom: 8px; }
.step-card p { color: var(--gray-600); font-size: 14px; }

/* ========== PRICING ========== */
.pricing-section { padding: 80px 0; }
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover-shadow); }
.pricing-card.featured {
    border: 2px solid var(--peacock-teal);
    transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.pricing-header {
    background: linear-gradient(135deg, rgba(0,105,92,0.05), rgba(21,101,192,0.05));
    padding: 30px;
    text-align: center;
}
.pricing-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin: 0 auto 16px;
}
.pricing-header h3 { font-weight: 600; margin-bottom: 4px; }
.pricing-header p { color: var(--gray-600); font-size: 14px; margin: 0; }
.pricing-body { padding: 30px; text-align: center; }
.price { font-family: 'Cinzel', serif; font-size: 42px; font-weight: 700; color: var(--peacock-teal); margin-bottom: 20px; }
.price span { font-size: 16px; color: var(--gray-600); font-weight: 400; }
.pricing-body ul { list-style: none; padding: 0; text-align: left; }
.pricing-body ul li { padding: 8px 0; color: var(--gray-600); font-size: 14px; }
.pricing-body ul li i { color: var(--success); margin-right: 8px; }

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1B2A, #00251A);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,105,92,0.1) 0%, transparent 70%);
}
.cta-section h2 { color: white; font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700; position: relative; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; position: relative; }

/* ========== AUTH PAGES ========== */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0,105,92,0.03), rgba(21,101,192,0.03));
}
.auth-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.auth-header { margin-bottom: 32px; }
.auth-logo {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,105,92,0.25);
    background: white;
}
.auth-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.auth-header h2 { font-family: 'Cinzel', serif; font-weight: 700; color: var(--brown); }
.auth-header p { color: var(--gray-600); margin: 0; }

.auth-form .form-control, .auth-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--gray-100);
}
.auth-form .form-control:focus, .auth-form .form-select:focus {
    border-color: var(--peacock-teal);
    box-shadow: 0 0 0 4px rgba(0,105,92,0.1);
    background: white;
}
.auth-form .form-label { font-weight: 500; font-size: 13px; color: var(--brown); margin-bottom: 6px; }
.auth-form textarea.form-control { resize: vertical; min-height: 80px; }

.form-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}
.form-hint {
    color: var(--gray-600);
    font-size: 11px;
    margin-top: 4px;
}

.form-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 16px; }
.form-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--peacock-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.btn-auth {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-blue));
    color: white;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,105,92,0.3);
    transition: var(--transition);
}
.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,105,92,0.4);
    color: white;
}
.btn-auth:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-footer { margin-top: 24px; }
.auth-footer a { color: var(--peacock-teal); font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.auth-note { font-size: 12px; color: var(--gray-600); margin-top: 8px; }

/* ========== PAGE SECTION ========== */
.page-section { padding: 40px 0; }

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}
.card-header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 20px;
    font-weight: 600;
}
.card-header h5, .card-header h6 { margin: 0; color: var(--brown); }

/* ========== MAP CARD ========== */
.map-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-mode-btns { display: flex; gap: 8px; }

.btn-outline-saffron {
    border: 2px solid var(--peacock-teal);
    color: var(--peacock-teal);
    background: transparent;
    border-radius: 10px;
    padding: 6px 16px;
    font-weight: 500;
    transition: var(--transition);
}
.btn-outline-saffron:hover, .btn-outline-saffron.active {
    background: var(--peacock-teal);
    color: white;
}

/* ========== PRICE PREVIEW ========== */
.price-preview {
    background: linear-gradient(135deg, rgba(0,105,92,0.05), rgba(21,101,192,0.05));
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,105,92,0.1);
}
.price-preview hr { margin: 10px 0; opacity: 0.3; }
.text-saffron { color: var(--peacock-teal) !important; }

/* ========== ORDER SUMMARY ========== */
.order-summary {
    background: var(--gray-100);
    border-radius: 14px;
    padding: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--peacock-teal);
    padding-top: 8px;
}

/* ========== STATUS BADGES ========== */
.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}
.status-pending { background: #FFF3CD; color: #856404; }
.status-accepted { background: #D4EDDA; color: #155724; }
.status-rejected { background: #F8D7DA; color: #721C24; }
.status-assigned { background: #CCE5FF; color: #004085; }
.status-pickup_in_progress { background: #FFF3CD; color: #856404; }
.status-picked_up { background: #D1ECF1; color: #0C5460; }
.status-in_transit { background: #D6D8F8; color: #383D94; }
.status-delivered { background: #D4EDDA; color: #155724; }
.status-completed { background: #C3E6CB; color: #155724; }

/* ========== TIMELINE ========== */
.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 20px; top: 0; bottom: 0;
    width: 2px;
    background: var(--gray-200);
}
.timeline-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-600);
    flex-shrink: 0;
    z-index: 1;
}
.timeline-item.done .timeline-marker {
    background: var(--success);
    color: white;
}
.timeline-item.rejected .timeline-marker {
    background: var(--danger);
    color: white;
}
.timeline-content h6 { margin: 0; font-size: 14px; }
.timeline-content small { color: var(--gray-600); }

/* ========== STAT CARDS ========== */
.stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--card-hover-shadow); }
.stat-card h3 { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 700; color: var(--peacock-teal); margin: 0; }
.stat-card p { color: var(--gray-600); margin: 4px 0 0; font-size: 13px; font-weight: 500; }

/* ========== NAV TABS ========== */
.nav-tabs { border-bottom: 2px solid var(--gray-200); gap: 4px; }
.nav-tabs .nav-link {
    border: none !important;
    color: var(--gray-600) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    transition: var(--transition);
}
.nav-tabs .nav-link.active {
    color: var(--peacock-teal) !important;
    background: transparent !important;
    border-bottom: 3px solid var(--peacock-teal) !important;
}
.nav-tabs .nav-link:hover:not(.active) { color: var(--brown) !important; background: rgba(0,105,92,0.05) !important; }

/* ========== TABLE ========== */
.custom-table { font-size: 14px; }
.custom-table thead th {
    background: var(--gray-100);
    border-bottom: 2px solid var(--gray-200);
    font-weight: 600;
    color: var(--brown);
    padding: 12px 16px;
    white-space: nowrap;
}
.custom-table tbody td { padding: 12px 16px; vertical-align: middle; }
.custom-table tbody tr { transition: var(--transition); }
.custom-table tbody tr:hover { background: rgba(0,105,92,0.03); }

/* ========== ORDER CARD ========== */
.order-card { transition: var(--transition); }
.order-card:hover { box-shadow: var(--card-hover-shadow); border-left: 4px solid var(--peacock-teal); }

/* ========== ALERTS ========== */
.custom-alert {
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* ========== FOOTER ========== */
.footer { background: #0D1B2A; color: rgba(255,255,255,0.7); }
.footer-top { padding: 40px 0 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}
.footer-brand h4 { color: white; margin: 0; font-family: 'Cinzel', serif; font-size: 18px; }
.footer-top h5 { color: white; font-weight: 600; margin-bottom: 16px; font-size: 16px; }
.footer-top p { font-size: 13px; line-height: 1.6; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--peacock-teal); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 8px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-contact li i { color: var(--peacock-teal); font-size: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title { font-size: 36px; }
    .hero-visual { margin-top: 40px; }
    .hero-card { width: 240px; height: 240px; }
    .hero-icon-ring { width: 140px; height: 140px; font-size: 44px; margin: 50px auto; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 28px; }
    .section-header h2 { font-size: 28px; }
    .promo-banner { padding: 30px 24px; }
    .promo-banner h2 { font-size: 28px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .auth-card { padding: 24px; }
    .brand-name { font-size: 18px; }
    .brand-logo { width: 40px; height: 40px; font-size: 20px; }
}

/* ========== ANIMATIONS ========== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--peacock-teal-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--peacock-teal); }
