/* ============================================================
   Global Delivered Logistics - Main Stylesheet
   Enterprise-grade design comparable to DHL, FedEx, UPS
   ============================================================ */

/* --------------------------------
   CSS Variables / Theme
   -------------------------------- */
:root {
    --primary: #1a237e;
    --primary-dark: #0d1452;
    --primary-light: #3949ab;
    --secondary: #0d47a1;
    --accent: #ff6f00;
    --accent-light: #ffa000;
    --warning: #ffc107;
    --success: #2e7d32;
    --danger: #c62828;
    --info: #0277bd;
    
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    --gradient-accent: linear-gradient(135deg, #ff6f00 0%, #ffa000 50%, #ffc107 100%);
    --gradient-dark: linear-gradient(135deg, #0d1452 0%, #1a237e 100%);
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-light: #ffffff;
    --bg-light: #f8f9fc;
    --bg-dark: #0d1452;
    --bg-card: #ffffff;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* Light/Dark Mode */
[data-bs-theme="dark"] {
    --primary: #3949ab;
    --primary-dark: #1a237e;
    --bg-light: #0d1117;
    --bg-card: #161b22;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
}

[data-bs-theme="dark"] .bg-light {
    background-color: var(--bg-card) !important;
}
[data-bs-theme="dark"] .text-muted {
    color: var(--text-secondary) !important;
}
[data-bs-theme="dark"] .input-group-text {
    background-color: var(--bg-card);
    color: var(--text-primary);
}
[data-bs-theme="dark"] .form-control[readonly] {
    background-color: var(--bg-card);
    color: var(--text-primary);
}
[data-bs-theme="dark"] .badge.bg-light {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--text-secondary);
}
[data-bs-theme="dark"] .card.bg-light {
    background-color: var(--bg-card) !important;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

a:hover {
    color: var(--accent);
}

/* --------------------------------
   Top Bar
   -------------------------------- */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-info span {
    display: inline-block;
    margin-right: 20px;
}

.top-bar-info i {
    margin-right: 6px;
    color: var(--warning);
}

.top-bar-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--warning);
}

.top-bar-links .btn-register-top {
    background: var(--warning);
    color: var(--primary-dark);
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* --------------------------------
   Navigation
   -------------------------------- */
.main-navbar {
    background: var(--gradient-primary) !important;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.main-navbar.scrolled {
    padding: 8px 0;
    background: rgba(26, 35, 126, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar .brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    margin-left: 10px;
    line-height: 1.2;
}

.navbar .brand-icon {
    filter: drop-shadow(0 2px 8px rgba(255, 213, 79, 0.3));
    transition: filter 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    filter: drop-shadow(0 2px 12px rgba(255, 213, 79, 0.5));
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--warning);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-cta-btn {
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 160, 0, 0.4);
}

/* --------------------------------
   Hero Section
   -------------------------------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: visible;
}

.hero-delivery-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 420px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-delivery-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .hero-delivery-image {
        width: 320px;
    }
}

@media (max-width: 991px) {
    .hero-delivery-image {
        display: none;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,202.7C960,181,1056,139,1152,133.3C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-animation .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s infinite ease-in-out;
}

.hero-bg-animation .orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-bg-animation .orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-bg-animation .orb:nth-child(3) {
    width: 300px;
    height: 300px;
    background: #00bcd4;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--warning);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease;
}

.hero-buttons .btn {
    padding: 14px 36px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-right: 12px;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.hero-buttons .btn-warning {
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 1.4s ease;
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-icon {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.hero-stat h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.hero-stat span {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --------------------------------
   Tracking Widget (Hero)
   -------------------------------- */
.tracking-widget {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 440px;
    animation: fadeInUp 1.6s ease;
}

.tracking-widget h4 {
    color: #fff;
    font-weight: 600;
}

.tracking-widget .input-group {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tracking-widget .form-control {
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: #fff;
    font-size: 1rem;
}

.tracking-widget .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.tracking-widget .btn {
    padding: 14px 28px;
    border-radius: 0;
}

.tracking-result {
    animation: fadeInUp 0.5s ease;
}

/* --------------------------------
   Section Styles
   -------------------------------- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    display: inline-block;
    background: rgba(26, 35, 126, 0.1);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --------------------------------
   Feature Cards
   -------------------------------- */
.feature-card, .service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.feature-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26,35,126,0.1), rgba(13,71,161,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotateY(180deg) scale(1.1);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* --------------------------------
   Service Cards
   -------------------------------- */
.service-card {
    text-align: left;
    padding: 30px;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.service-card ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-card ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

.service-card .btn {
    margin-top: 15px;
}

/* --------------------------------
   Stats Section
   -------------------------------- */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

/* --------------------------------
   Testimonials
   -------------------------------- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --------------------------------
   FAQ
   -------------------------------- */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    font-weight: 600;
    padding: 18px 24px;
    background: var(--bg-card);
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 20px 24px;
    background: var(--bg-card);
}

/* --------------------------------
   Contact Section
   -------------------------------- */
.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

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

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(26,35,126,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --------------------------------
   Process Timeline
   -------------------------------- */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    top: 0;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-item .process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--bg-light), 0 0 0 6px var(--primary-light);
}

.process-item .process-content {
    width: 45%;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-item .process-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* --------------------------------
   CTA Section
   -------------------------------- */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
}

/* --------------------------------
   Footer
   -------------------------------- */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.main-footer h4 {
    color: #fff;
    font-weight: 700;
}

.main-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--warning);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--warning);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--warning);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.footer-bottom-link {
    color: rgba(255,255,255,0.6);
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-bottom-link:hover {
    color: var(--warning);
}

.social-links {
    display: flex;
    gap: 10px;
}

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

.social-link:hover {
    background: var(--warning);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* --------------------------------
   Back to Top
   -------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

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

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

/* --------------------------------
   Tracking Result Styles
   -------------------------------- */
.tracking-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
    overflow-x: auto;
    gap: 4px;
}

.tracking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0, #c0c0c0);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

[data-bs-theme="dark"] .tracking-progress::before {
    background: linear-gradient(90deg, #30363d, #21262d);
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 80px;
    flex: 1;
}

.tracking-step .step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1rem;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

[data-bs-theme="dark"] .tracking-step .step-dot {
    background: #21262d;
    border-color: #0d1117;
    color: #484f58;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tracking-step.completed .step-dot {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4), 0 0 0 4px rgba(46, 125, 50, 0.15);
}

[data-bs-theme="dark"] .tracking-step.completed .step-dot {
    border-color: #0d1117;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.5), 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.tracking-step.current .step-dot {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4), 0 0 0 4px rgba(26, 35, 126, 0.15);
    animation: pulse 2s infinite;
}

[data-bs-theme="dark"] .tracking-step.current .step-dot {
    border-color: #0d1117;
    box-shadow: 0 4px 15px rgba(57, 73, 171, 0.5), 0 0 0 4px rgba(57, 73, 171, 0.2);
}

.tracking-step .step-label {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    max-width: 90px;
    line-height: 1.3;
}

.tracking-step.completed .step-label,
.tracking-step.current .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* --------------------------------
   Timeline Details
   -------------------------------- */
.timeline-list {
    position: relative;
    padding-left: 30px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding: 0 0 25px 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 3px solid var(--bg-light);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .timeline-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline-item .timeline-status {
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-item .timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------
   Skeleton Loading
   -------------------------------- */
.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --------------------------------
   Dashboard Styles
   -------------------------------- */
.dashboard-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.dashboard-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.dashboard-card .card-value {
    font-size: 2rem;
    font-weight: 800;
}

.dashboard-card .card-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dashboard-sidebar {
    background: var(--gradient-primary);
    min-height: 100vh;
    padding: 20px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* --------------------------------
   Responsive
   -------------------------------- */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .top-bar-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .top-bar-links {
        text-align: left;
    }
    
    .top-bar-links a {
        margin-left: 0;
        margin-right: 12px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-item,
    .process-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 50px;
    }
    
    .process-item .process-number {
        left: 20px;
        transform: none;
    }
    
    .process-item .process-content {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .tracking-widget {
        margin-top: 30px;
    }
}

/* --------------------------------
   Page Hero (Inner Pages)
   -------------------------------- */
.page-hero {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

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

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

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

/* --------------------------------
   Customer Dashboard
   -------------------------------- */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background: var(--gradient-primary);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

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

.dashboard-sidebar .sidebar-header h4 {
    font-weight: 800;
    font-size: 1.2rem;
}

.dashboard-sidebar .sidebar-header small {
    opacity: 0.7;
}

.dashboard-sidebar .sidebar-menu {
    padding: 15px 0;
}

.dashboard-sidebar .sidebar-menu .menu-label {
    padding: 10px 20px 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

.dashboard-sidebar .sidebar-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.dashboard-sidebar .sidebar-menu .nav-link:hover,
.dashboard-sidebar .sidebar-menu .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.dashboard-sidebar .sidebar-menu .nav-link.active {
    border-right: 3px solid var(--warning);
}

.dashboard-sidebar .sidebar-menu .nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.dashboard-main {
    margin-left: 260px;
    flex: 1;
    min-height: 100vh;
    background: var(--bg-light);
}

.dashboard-topbar {
    background: #fff;
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.dashboard-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-topbar .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--bg-light);
    color: #555;
    transition: all 0.3s;
}

.dashboard-topbar .btn-icon:hover {
    background: #e4e6ef;
}

.dashboard-content {
    padding: 25px 30px;
}

.dashboard-sidebar::-webkit-scrollbar {
    width: 4px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }

    .dashboard-sidebar.show {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
    }

    .dashboard-content {
        padding: 20px 15px;
    }
}

/* --------------------------------
   Print Styles
   -------------------------------- */
@media print {
    .top-bar, .main-navbar, .main-footer, .back-to-top, .nav-cta-btn,
    .dashboard-sidebar, .dashboard-topbar {
        display: none !important;
    }

    .dashboard-main {
        margin-left: 0 !important;
    }
}
