/* ============================================
   Modern Shipping Website CSS
   TrackShip Pro - FedEx Style Design
   Using Flaticons for all icons
   ============================================ */

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

:root {
    /* FedEx-inspired Professional Color Palette */
    --primary-color: #4D148C; /* FedEx Purple */
    --primary-dark: #3A0F6B;
    --primary-light: #6B2FA0;
    --secondary-color: #FF6600; /* FedEx Orange */
    --secondary-dark: #E55A00;
    --accent-color: #1A1A2E;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --bg-dark: #2C2C2C;
    --border-color: #E0E0E0;
    --success-color: #00A651;
    --error-color: #DC143C;
    --warning-color: #FFB800;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    font-weight: 400;
    white-space: nowrap;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar i {
    font-size: 11px;
}

/* Top Bar Mobile Responsive */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .top-bar a {
        font-size: 11px;
        gap: 6px;
    }
    
    .top-bar i {
        font-size: 10px;
    }
    
    /* Hide less important items on very small screens */
    .top-bar-right a:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 0;
        font-size: 10px;
    }
    
    .top-bar-content {
        gap: 6px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 8px;
    }
    
    .top-bar a {
        font-size: 10px;
        gap: 4px;
    }
    
    /* Show only phone and email on very small screens */
    .top-bar-right {
        display: none;
    }
    
    .top-bar-left a:first-child {
        flex: 1;
    }
    
    .top-bar-left a:last-child {
        flex: 1;
    }
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-wrapper .nav-menu {
    margin-left: auto;
    margin-right: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.logo-dot {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
    position: relative;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    z-index: auto;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
}

.nav-menu a i {
    font-size: 10px;
}

/* Mega Menu */
.mega-menu-parent {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    border-radius: 0;
    padding: 25px;
    min-width: 750px;
    max-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    display: block;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mega-menu-column h3 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mega-menu-column ul li a i {
    font-size: 12px;
    width: 16px;
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 24px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border-radius: 0;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    padding: 8px;
}

.mobile-menu-close {
    display: none !important;
}

/* Ensure desktop navigation is always visible and properly positioned */
@media (min-width: 769px) {
    .nav-menu {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        display: flex !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: auto !important;
        transition: none !important;
        gap: 18px !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    .nav-menu.active {
        left: auto !important;
    }
    
    .nav-menu::before,
    .nav-menu::after {
        display: none !important;
        content: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-close {
        display: none !important;
    }
    
    .nav-menu > li {
        position: relative !important;
        width: auto !important;
        border-bottom: none !important;
    }
    
    .nav-menu > li > a {
        padding: 10px 12px !important;
        width: auto !important;
        justify-content: flex-start !important;
    }
    
    .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 750px !important;
        max-width: 900px !important;
        opacity: 0;
        visibility: hidden;
        display: block !important;
        max-height: none !important;
        padding: 25px !important;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .mega-menu-parent:hover .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0 !important;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        padding: 0 !important;
    }
    
    /* Hero Section Desktop Styles */
    .hero-service-boxes {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    
    .service-box {
        width: auto !important;
        min-width: 180px !important;
        padding: 25px 35px !important;
    }
    
    .form-group-inline {
        flex-direction: row !important;
        align-items: flex-end !important;
    }
    
    .btn-track {
        width: auto !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
    
    /* Services Grid Desktop */
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Tracking Desktop */
    .tracking-content-grid {
        grid-template-columns: 1.2fr 1fr !important;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Footer Desktop */
    .footer-content {
        grid-template-columns: repeat(5, 1fr) !important;
    }
    
    /* Contact Desktop */
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr !important;
    }
    
    /* Calculator Desktop */
    .calculator-wrapper {
        grid-template-columns: 1.5fr 1fr !important;
    }
    
    /* Branches Desktop */
    .branches-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* About Desktop */
    .about-content {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    /* Service Detail Pages Desktop */
    .service-intro {
        display: block !important;
    }
    
    .service-intro img {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
    }
    
    .service-details {
        margin-top: 50px !important;
    }
    
    .service-details h2 {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    /* Services Page Desktop */
    .services-categories {
        display: block !important;
    }
    
    .category-card {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }
    
    .category-card.large {
        display: grid !important;
    }
    
    .category-content {
        padding: 40px !important;
    }
    
    .category-content h2 {
        font-size: 28px !important;
    }
    
    /* Quick Track Desktop */
    .quick-track-box {
        max-width: 850px !important;
        padding: 45px !important;
    }
    
    .track-form .form-group {
        display: flex !important;
        gap: 10px !important;
    }
    
    .track-form input {
        flex: 1 !important;
    }
    
    /* Tracking Features Desktop */
    .tracking-features {
        padding: 80px 0 !important;
    }
    
    .tracking-features .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    /* CTA Section Desktop */
    .cta-section {
        padding: 90px 0 !important;
    }
    
    .cta-actions {
        display: flex !important;
        gap: 15px !important;
        justify-content: center !important;
    }
    
    /* Page Sections Desktop */
    section {
        padding: 90px 0 !important;
    }
    
    .page-hero {
        padding: 90px 0 70px !important;
    }
    
    .section-header {
        margin-bottom: 60px !important;
    }
    
    .section-header h2 {
        font-size: 2.75rem !important;
    }
    
    .section-header p {
        font-size: 17px !important;
    }
    
    /* Service Detail Pages */
    .service-detail-page {
        padding: 60px 0 !important;
    }
    
    .services-page {
        padding: 60px 0 !important;
    }
    
    /* Tracking Page Desktop */
    .tracking-section {
        padding: 60px 0 !important;
    }
    
    .tracking-wrapper {
        grid-template-columns: 1fr 1.5fr !important;
        gap: 40px !important;
    }
    
    .tracking-form-container {
        max-width: none !important;
    }
    
    /* Advanced Tracking Desktop - Override tablet styles */
    .tracking-content-grid {
        grid-template-columns: 1.2fr 1fr !important;
    }
    
    .tracking-header-card {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* FAQ Desktop */
    .faq-section {
        padding: 60px 0 !important;
    }
    
    .faq-list {
        max-width: 800px !important;
    }
    
    /* Calculator Desktop */
    .calculator-section {
        padding: 60px 0 !important;
    }
    
    /* Quote Desktop */
    .quote-section {
        padding: 60px 0 !important;
    }
    
    .quote-form-wrapper {
        max-width: 900px !important;
    }
    
    /* Contact Desktop */
    .contact-section {
        padding: 60px 0 !important;
    }
    
    /* About Desktop */
    .about-section {
        padding: 60px 0 !important;
    }
    
    /* Branches Desktop */
    .branches-section {
        padding: 60px 0 !important;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 14px 32px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 20, 140, 0.95) 0%, rgba(102, 51, 153, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Hero Service Boxes */
.hero-service-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 25px 35px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.service-box.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(77, 20, 140, 0.4);
}

.service-box-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-box.active .service-box-icon {
    color: #fff;
}

.service-box span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.service-box.active span {
    color: #fff;
}

/* Hero Track Form */
.hero-track-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 25px 30px;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.track-form-inline {
    width: 100%;
}

.form-group-inline {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
}

.form-group-inline label {
    position: absolute;
    left: -9999px;
}

.form-group-inline input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(77, 20, 140, 0.1);
}

.form-group-inline input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.btn-track {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.3);
}

.btn-track:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Track Section */
.quick-track {
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
}

.quick-track-box {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border-color);
}

.quick-track-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.track-form {
    margin-bottom: 15px;
}

.track-form .form-group {
    display: flex;
    gap: 10px;
}

.track-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.track-hint {
    font-size: 12px;
    color: var(--text-light);
}

.track-hint a {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 90px 0;
}

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

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: #fff;
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    filter: grayscale(0.2);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Features Section */
.features-section {
    background-color: #FAFAFA;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(77, 20, 140, 0.3);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 13px;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    color: #FBBF24;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 12px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
    border-bottom: 4px solid var(--secondary-color);
}

.page-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Tracking Section */
.tracking-section {
    padding: 60px 0;
}

.tracking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.tracking-form-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.tracking-form-box h2 {
    font-size: 22px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dimensions-input {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tracking-help {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.tracking-help h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.tracking-help ul {
    list-style: none;
}

.tracking-help ul li {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-help ul li i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Tracking Results */
.tracking-results {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.tracking-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.tracking-header h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.tracking-number-display {
    font-size: 14px;
    color: var(--text-light);
}

.tracking-number-display strong {
    color: var(--text-dark);
}

.tracking-status-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 0;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-in-transit {
    background: #FEF3C7;
    color: #92400E;
}

.status-out-for-delivery {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-delivered {
    background: #D1FAE5;
    color: #065F46;
}

.status-details {
    display: grid;
    gap: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.status-item .label {
    color: var(--text-light);
}

.status-item .value {
    color: var(--text-dark);
    font-weight: 500;
}

/* Timeline */
.tracking-timeline {
    margin-top: 30px;
}

.tracking-timeline h3 {
    font-size: 18px;
    margin-bottom: 25px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-marker {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 0;
}

.timeline-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.timeline-status {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.timeline-location {
    font-size: 13px;
    color: var(--text-light);
}

.tracking-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid var(--error-color);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 70px 0 25px;
    border-top: 4px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: #fff;
}

/* Additional Pages Styles */
.services-page,
.service-detail-page {
    padding: 60px 0;
}

.category-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 40px;
}

.category-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.category-content p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.category-content ul li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.category-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-intro {
    margin-bottom: 50px;
}

.service-intro img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 30px;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 15px;
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-box {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 0;
}

.feature-box i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 12px;
    margin: 0;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 13px;
    line-height: 1.7;
}

/* Calculator */
.calculator-section {
    padding: 60px 0;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.calculator-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.calculator-result {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 0;
    padding: 40px;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.calculator-result h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.result-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 0;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-display p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 0;
}

/* Quote Form */
.quote-section {
    padding: 60px 0;
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.quote-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Branches */
.branches-section {
    padding: 60px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.branch-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.branch-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.branch-content {
    padding: 25px;
}

.branch-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.branch-content p {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-content i {
    color: var(--primary-color);
    width: 18px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* About */
.about-section {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content img {
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 0;
}

.stat-box .stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 14px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Error Page */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.error-content {
    text-align: center;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        min-width: 700px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 0;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.4);
        gap: 0;
        align-items: stretch;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-close {
        display: block !important;
        position: sticky;
        top: 0;
        background: var(--primary-dark);
        padding: 0;
        border-bottom: 3px solid var(--secondary-color);
        z-index: 10;
        margin-bottom: 0;
        width: 100%;
    }
    
    .close-menu-btn {
        width: 100%;
        background: transparent;
        border: none;
        padding: 20px;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        font-size: 15px;
        font-family: inherit;
        transition: background-color 0.2s ease;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .close-menu-btn span {
        font-size: 15px;
    }
    
    .close-menu-btn i {
        font-size: 22px;
        transition: transform 0.2s ease;
    }
    
    .close-menu-btn:active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .close-menu-btn:active i {
        transform: scale(0.9);
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 16px 20px;
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        text-transform: none;
        letter-spacing: normal;
    }
    
    .nav-menu > li > a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--secondary-color);
        transform: scaleY(0);
        transition: transform 0.2s ease;
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 24px;
    }
    
    .nav-menu > li > a:hover::before,
    .nav-menu > li > a.active::before {
        transform: scaleY(1);
    }
    
    .nav-menu > li > a i {
        font-size: 14px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .nav-menu > li.mega-menu-parent.active > a i {
        transform: rotate(180deg);
    }
    
    .mega-menu {
        position: static !important;
        transform: none !important;
        min-width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        background: rgba(0, 0, 0, 0.25) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .mega-menu-parent.active .mega-menu {
        max-height: 2000px;
        padding: 20px 0;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }
    
    .mega-menu-column {
        margin-bottom: 20px;
    }
    
    .mega-menu-column:last-child {
        margin-bottom: 0;
    }
    
    .mega-menu-column h3 {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 600;
    }
    
    .mega-menu-column ul li {
        margin-bottom: 0;
    }
    
    .mega-menu-column ul li a {
        padding: 12px 20px 12px 40px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 14px !important;
        display: flex !important;
        align-items: center;
        gap: 12px;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        text-decoration: none;
    }
    
    .mega-menu-column ul li a:hover,
    .mega-menu-column ul li a:active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15);
        border-left-color: var(--secondary-color);
        padding-left: 43px !important;
    }
    
    .mega-menu-column ul li a i {
        font-size: 14px;
        width: 18px;
        color: var(--secondary-color);
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        transition: all 0.2s ease;
    }
    
    .mobile-menu-toggle:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }
    
    .mobile-menu-toggle i {
        font-size: 20px;
        color: #fff;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-actions .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .nav-link {
        display: none;
    }
    
    /* Ensure all menu items are visible on mobile */
    .nav-menu > li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Make sure links are clickable */
    .nav-menu a {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-service-boxes {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .service-box {
        width: 100%;
        padding: 20px 25px;
        min-width: auto;
    }
    
    .service-box-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero-track-form {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .form-group-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .form-group-inline input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .btn-track {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-actions {
        margin-bottom: 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-wrapper,
    .calculator-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        grid-template-columns: 1fr;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-wrapper {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-actions .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .service-box {
        padding: 18px 20px;
    }
    
    .service-box-icon {
        font-size: 24px;
    }
    
    .service-box span {
        font-size: 12px;
    }
    
    .hero-track-form {
        padding: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-track-box {
        padding: 30px 20px;
    }
    
    .tracking-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-map {
        height: 350px;
    }
    
    .tracking-header-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .tracking-status-main {
        flex-direction: column;
        gap: 15px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mega-menu {
        min-width: 100%;
    }
}
    
    .hero-actions {
        flex-direction: column;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Advanced Tracking Page Styles
   ============================================ */

.advanced-tracking {
    margin-top: 30px;
}

/* Tracking Header Card */
.tracking-header-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 0;
    padding: 30px;
    color: #fff;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    box-shadow: var(--shadow-xl);
}

.tracking-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.tracking-number-badge i {
    font-size: 16px;
}

.tracking-status-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status-icon-large.status-pending { background: rgba(251, 191, 36, 0.3); }
.status-icon-large.status-picked-up { background: rgba(59, 130, 246, 0.3); }
.status-icon-large.status-in-transit { background: rgba(139, 92, 246, 0.3); }
.status-icon-large.status-out-for-delivery { background: rgba(34, 197, 94, 0.3); }
.status-icon-large.status-delivered { background: rgba(16, 185, 129, 0.3); }
.status-icon-large.status-exception { background: rgba(239, 68, 68, 0.3); }

.status-info h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.status-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.tracking-header-right {
    display: flex;
    align-items: center;
}

.tracking-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.meta-item.highlight {
    background: rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.meta-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Tracking Content Grid */
.tracking-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Map Section */
.tracking-map-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-header {
    padding: 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-header h3 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 i {
    color: var(--primary-color);
}

.map-controls {
    display: flex;
    gap: 10px;
}

.map-btn {
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.tracking-map {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

.map-loading.hidden,
.map-loading[style*="display: none"] {
    display: none !important;
}

.map-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.map-loading p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* 3D Techish Map Container */
.tracking-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(77, 20, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Leaflet/Geoapify Map Styles with 3D effect */
.tracking-map .leaflet-container {
    height: 100%;
    width: 100%;
    border-radius: 0;
    font-family: inherit;
    background: #e5e5e5;
    filter: contrast(1.1) saturate(1.2) brightness(0.95);
    z-index: 10;
    position: relative;
}

/* 3D Route Line Styling */
.route-line-3d {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.4));
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Enhanced marker shadows for 3D effect */
.custom-marker {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.custom-marker:hover {
    transform: scale(1.2) translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

/* Custom Marker Styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.marker-pin {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-pin.origin {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: 3px solid #FFFFFF;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.marker-pin.origin::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), transparent);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

.marker-pin.destination {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border: 3px solid #FFFFFF;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.marker-pin.destination::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), transparent);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

.marker-pin.current {
    background: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    border: 4px solid #FFFFFF;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: pulse3d 2s infinite;
    position: relative;
}

.marker-pin.current::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.marker-pin.route {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    border: 2px solid #FFFFFF;
    box-shadow: 
        0 3px 10px rgba(99, 102, 241, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 3D Pulsing animation for current marker */
@keyframes pulse3d {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 1;
        box-shadow: 
            0 6px 20px rgba(255, 107, 53, 0.6),
            0 2px 8px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.15) translateZ(5px);
        opacity: 0.9;
        box-shadow: 
            0 8px 30px rgba(255, 107, 53, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1) translateZ(0);
        opacity: 1;
        box-shadow: 
            0 6px 20px rgba(255, 107, 53, 0.6),
            0 2px 8px rgba(0, 0, 0, 0.4);
    }
}

/* Ripple effect for current marker */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Glow effect for markers */
@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.pulsing-marker .marker-pin.current {
    animation: pulse3d 2s infinite;
}

/* 3D Techish Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 0;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(-2deg);
    transition: transform 0.3s ease;
}

.leaflet-popup-content-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.leaflet-popup-tip {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Map controls 3D styling */
.leaflet-control-zoom {
    border-radius: 0;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.leaflet-control-zoom a {
    border-radius: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.leaflet-control-zoom a:hover {
    background: linear-gradient(135deg, #4D148C 0%, #6B2FA0 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(77, 20, 140, 0.4);
}

.map-legend {
    padding: 15px 20px;
    background: var(--bg-light);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-marker.origin { background: #10B981; }
.legend-marker.destination { background: #EF4444; }
.legend-marker.current { background: #FF6B35; }
.legend-marker.route { background: #6366F1; }

/* Timeline Section */
.tracking-details-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 25px;
    box-shadow: var(--shadow-md);
    max-height: 600px;
    overflow-y: auto;
}

.timeline-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-section h3 i {
    color: var(--primary-color);
}

.advanced-timeline {
    position: relative;
    padding-left: 40px;
}

.advanced-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.timeline-event {
    position: relative;
    margin-bottom: 30px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.timeline-event.active {
    opacity: 1;
}

.timeline-event-marker {
    position: absolute;
    left: -32px;
    top: 5px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.timeline-event.active .timeline-dot {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 16px;
    width: 2px;
    height: calc(100% + 14px);
    background: var(--border-color);
}

.timeline-event-content {
    background: var(--bg-light);
    padding: 18px;
    border-radius: 0;
    border-left: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-event.active .timeline-event-content {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.timeline-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.timeline-event-header h4 {
    font-size: 15px;
    margin: 0;
    color: var(--text-dark);
}

.timeline-time {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
}

.timeline-event-location {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.timeline-event-location i {
    color: var(--primary-color);
    font-size: 12px;
}

.branch-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 0;
    font-size: 10px;
    margin-left: 8px;
}

.timeline-event-description {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 8px;
}

/* Tracking Tabs */
.tracking-tabs {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--bg-white);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.detail-section h4 i {
    color: var(--primary-color);
}

.address-block {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.8;
}

.address-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.address-block p {
    margin: 4px 0;
    color: var(--text-light);
}

.info-grid {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 0;
    font-size: 13px;
}

.info-label {
    color: var(--text-light);
}

.info-value {
    color: var(--text-dark);
    font-weight: 500;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 0;
    font-size: 13px;
}

.cost-item.total {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.cost-item.total span {
    color: rgba(255, 255, 255, 0.9);
}

.payment-status {
    margin-top: 10px;
}

.status-badge-small {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge-small.status-pending { background: #FEF3C7; color: #92400E; }
.status-badge-small.status-paid { background: #D1FAE5; color: #065F46; }
.status-badge-small.status-failed { background: #FEE2E2; color: #991B1B; }
.status-badge-small.status-refunded { background: #DBEAFE; color: #1E40AF; }

/* Packages List */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.package-header h4 {
    font-size: 16px;
    margin: 0;
}

.package-status {
    padding: 4px 12px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.package-info div {
    color: var(--text-light);
}

.package-info strong {
    color: var(--text-dark);
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
}

.document-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.document-info p {
    font-size: 12px;
    margin: 0 0 3px 0;
    color: var(--text-light);
}

.document-info small {
    font-size: 11px;
    color: var(--text-light);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Route List */
.route-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
}

.route-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.route-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.route-info {
    flex: 1;
}

.route-info h4 {
    font-size: 15px;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.route-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-meta span.actual {
    color: var(--success-color);
}

.route-meta i {
    font-size: 11px;
}

/* No Data */
.no-data {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 14px;
}

/* Tracking Actions Footer */
.tracking-actions-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 0;
    justify-content: center;
}

/* Responsive for Advanced Tracking - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .tracking-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-header-card {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tablet: Adjust mega menu */
    .mega-menu {
        min-width: 650px !important;
        max-width: 750px !important;
        padding: 20px !important;
    }
    
    .mega-menu-content {
        gap: 20px !important;
    }
    
    .nav-menu {
        gap: 12px !important;
    }
    
    .nav-menu a {
        font-size: 11px !important;
        padding: 7px 8px !important;
    }
}

@media (max-width: 768px) {
    .tracking-map {
        height: 400px;
    }
    
    .tab-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab-btn {
        min-width: 120px;
    }
    
    .tracking-actions-footer {
        flex-direction: column;
    }
    
    .tracking-actions-footer .btn-primary,
    .tracking-actions-footer .btn-secondary {
        width: 100%;
    }
}

