/**
 * Main Stylesheet - Veekz Cargo Logistics
 * Theme: Professional Logistics
 * Colors: Navy Blue (#1a2a4a), Orange (#f15a22), White (#ffffff), Grey (#f8f9fa)
 */

/* ===== CSS Variables ===== */
:root {
    --primary: #1a2a4a;
    --primary-dark: #0e1a30;
    --primary-light: #2a406a;
    --secondary: #f15a22;
    --secondary-hover: #d44e1e;
    --secondary-light: #fff3ed;
    --white: #ffffff;
    --grey-light: #f8f9fa;
    --grey: #e9ecef;
    --grey-dark: #6c757d;
    --text-dark: #1a2a4a;
    --text-light: #f8f9fa;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 25px rgba(26, 42, 74, 0.1);
    --shadow-hover: 0 10px 40px rgba(26, 42, 74, 0.15);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

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

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

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

.section-padding {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--secondary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title .text-orange {
    color: var(--secondary);
}

.section-description {
    font-size: 18px;
    color: var(--grey-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-orange {
    color: var(--secondary) !important;
}

.bg-orange {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}

/* ===== Buttons ===== */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 15px;
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 90, 34, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--secondary);
    border: none;
}

.btn-light:hover {
    background-color: var(--grey-light);
    color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--secondary);
}

.top-bar-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-contact li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact li i {
    color: var(--secondary);
    font-size: 13px;
}

.top-bar-contact li a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar-contact li a:hover {
    color: var(--secondary);
}

.top-bar-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.top-bar-social li a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-social li a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== Navigation ===== */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
}

.navbar-brand .brand-text {
    font-size: 22px;
}

.navbar-brand .text-orange {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu .dropdown-item {
    padding: 8px 24px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.85), rgba(14, 26, 48, 0.9)), 
                url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(241, 90, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-overlay {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    padding: 40px 0;
}

.hero-content .badge {
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-title .text-orange {
    color: var(--secondary);
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 20px 0 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    color: var(--white);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--secondary);
}

.floating-card.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 30%;
    right: 0;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

/* ===== About Intro ===== */
.about-content .feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon i {
    font-size: 24px;
}

.about-content h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-content p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== Why Choose Us ===== */
.bg-light {
    background-color: var(--grey-light) !important;
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--secondary);
}

.why-icon i {
    font-size: 30px;
    color: var(--secondary);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== Services Section ===== */
.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
}

.service-icon i {
    font-size: 30px;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--grey-dark);
    font-size: 15px;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-hover);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== How Works Section ===== */
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(241, 90, 34, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 30px;
    color: var(--secondary);
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-header h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-header p {
    color: var(--grey-dark);
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
}

/* ===== Quote Banner ===== */
.quote-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
}

.quote-banner h3 {
    font-size: 32px;
    font-weight: 800;
}

.quote-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.footer-description {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 16px;
}

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

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

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

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

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

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

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

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--secondary);
}

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

.footer-bottom {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

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

.footer-bottom-links li a:hover {
    color: var(--secondary);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(241, 90, 34, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-illustration {
        display: none;
    }
    
    .hero-stats {
        border-top: none;
        padding-top: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .navbar-brand .brand-text {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .quote-banner {
        text-align: center;
        padding: 40px 0;
    }
    
    .quote-banner h3 {
        font-size: 24px;
    }
    
    .footer h5 {
        margin-top: 20px;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons .btn.ms-3 {
        margin-left: 0 !important;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .service-card,
    .why-card,
    .testimonial-card {
        padding: 25px 20px;
    }
}

/**
 * Phase 2 CSS Additions
 * About, Services & Contact Pages
 * Add this to the end of your style.css file
 */

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 90, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-title .text-orange {
    color: var(--secondary);
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

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

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== About Page ===== */
.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(241, 90, 34, 0.4);
}

.experience-badge .number {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

.experience-badge .label {
    font-size: 14px;
    opacity: 0.9;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-dark);
    margin-bottom: 15px;
}

.mission-box,
.vision-box {
    background: var(--grey-light);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mission-icon,
.vision-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mission-icon i,
.vision-icon i {
    font-size: 24px;
    color: var(--secondary);
}

.mission-box h5,
.vision-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.mission-box p,
.vision-box p {
    font-size: 14px;
    color: var(--grey-dark);
    margin-bottom: 0;
}

/* Core Values */
.value-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--secondary);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 28px;
    color: var(--secondary);
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* Company Stats */
.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    display: block;
}

.stat-card .stat-label {
    font-size: 16px;
    color: var(--grey-dark);
    margin-top: 5px;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(26, 42, 74, 0.9));
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--grey-dark);
    font-size: 14px;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons .btn {
    margin: 5px;
}

/* ===== Services Page ===== */
.service-detail-item {
    padding: 40px 0;
}

.service-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--grey), transparent);
    margin: 0;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content {
    position: relative;
}

.service-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(241, 90, 34, 0.08);
    position: absolute;
    top: -20px;
    right: 0;
    line-height: 1;
}

.service-detail-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.8;
}

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

.service-features li {
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--secondary);
    font-size: 18px;
}

.why-service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.why-service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.why-service-icon i {
    font-size: 28px;
    color: var(--secondary);
}

.why-service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-service-card p {
    color: var(--grey-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== Contact Page ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 2px solid var(--grey);
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.1);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--grey);
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--secondary);
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--grey-dark);
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--text-dark);
}

.contact-info-item a:hover {
    color: var(--secondary);
}

.contact-social-links {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--grey);
}

.contact-social-links h6 {
    font-weight: 700;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--grey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.map-container iframe {
    display: block;
}

.contact-cta {
    background: var(--grey-light);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 17px;
    }
    
    .service-detail-item {
        padding: 30px 0;
    }
    
    .service-detail-image img {
        height: 300px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 15px;
    }
    
    .stat-card .stat-number {
        font-size: 36px;
    }
    
    .team-image img {
        height: 250px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .service-number {
        font-size: 40px;
    }
    
    .service-detail-content h3 {
        font-size: 24px;
    }
}

/**
 * Phase 4 CSS Additions
 * Quote Request System
 */

/* Quote Form */
.quote-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-section-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.form-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    margin: 5px 0 20px;
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid var(--grey);
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 15px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.1);
}

.quote-form .form-control.is-invalid,
.quote-form .form-select.is-invalid {
    border-color: #dc3545;
}

.quote-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.quote-form .form-text {
    font-size: 13px;
    color: var(--grey-dark);
}

.quote-form .form-check-label {
    font-size: 14px;
}

.quote-form .form-check-label a {
    color: var(--secondary);
}

.quote-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.sidebar-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.sidebar-list li i {
    color: var(--secondary);
    font-size: 14px;
}

.sidebar-phone,
.sidebar-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 5px;
}

.sidebar-phone {
    background: var(--primary);
    color: var(--white);
}

.sidebar-phone:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.sidebar-whatsapp {
    background: #25D366;
    color: var(--white);
}

.sidebar-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-services li {
    background: var(--grey-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

/* Success Modal */
.success-icon {
    font-size: 72px;
    color: #28a745;
}

.quote-reference {
    background: var(--grey-light);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 15px 0;
}

.quote-reference small {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-reference h4 {
    font-weight: 800;
    margin-bottom: 0;
}

/* Admin Quote Styles */
.badge {
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
    color: white;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

.badge.bg-primary {
    background-color: #007bff !important;
    color: white;
}

.badge.bg-success {
    background-color: #28a745 !important;
    color: white;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: white;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 20px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .quote-sidebar {
        position: static;
        margin-top: 30px;
    }
}

/**
 * Phase 5 CSS Additions
 * Shipment Tracking System
 */

/* Tracking Search */
.tracking-search-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tracking-form .input-group-lg .form-control {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 0;
}

.tracking-form .input-group-lg .btn {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 0;
}

.tracking-form .input-group-lg .input-group-text {
    border-radius: 0;
    padding: 15px 20px;
}

/* Tracking Result Card */
.tracking-result-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 35px;
    margin-top: 20px;
}

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

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.status-badge.badge-secondary {
    background: #6c757d;
    color: white;
}

.status-badge.badge-info {
    background: #17a2b8;
    color: white;
}

.status-badge.badge-primary {
    background: #007bff;
    color: white;
}

.status-badge.badge-warning {
    background: #ffc107;
    color: #212529;
}

.status-badge.badge-success {
    background: #28a745;
    color: white;
}

.status-badge.badge-danger {
    background: #dc3545;
    color: white;
}

.status-badge.badge-dark {
    background: #343a40;
    color: white;
}

.status-badge i {
    margin-right: 8px;
}

/* Tracking Customer */
.tracking-customer {
    background: var(--grey-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.tracking-customer label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Tracking Details */
.tracking-details {
    padding: 15px 0;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    font-size: 20px;
    margin-top: 3px;
}

.detail-item label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-dark);
    display: block;
}

.detail-item p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Tracking Cargo */
.tracking-cargo {
    background: var(--grey-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.tracking-cargo h6 {
    margin-bottom: 10px;
}

.tracking-cargo label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-dark);
}

.tracking-cargo p {
    font-weight: 500;
    margin-bottom: 5px;
}

/* Tracking Location */
.tracking-location {
    margin-bottom: 20px;
}

/* Tracking Timeline */
.tracking-timeline {
    border-top: 2px solid var(--grey);
    padding-top: 20px;
}

.tracking-timeline h6 {
    margin-bottom: 20px;
}

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

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

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

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

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grey);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--grey);
}

.timeline-item.active .timeline-dot {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(241, 90, 34, 0.1);
    }
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.timeline-date {
    font-size: 13px;
    color: var(--grey-dark);
}

.timeline-location {
    color: var(--grey-dark);
    font-size: 14px;
    margin: 5px 0;
}

.timeline-description {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 14px;
}

/* Tracking Actions */
.tracking-actions {
    border-top: 2px solid var(--grey);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Tracking Help */
.tracking-help {
    background: var(--grey-light);
}

/* Admin Stats Cards */
.stat-card-mini {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card-mini .stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-card-mini .stat-value.text-primary {
    color: #007bff !important;
}

.stat-card-mini .stat-value.text-success {
    color: #28a745 !important;
}

.stat-card-mini .stat-value.text-warning {
    color: #ffc107 !important;
}

.stat-card-mini .stat-label {
    font-size: 14px;
    color: var(--grey-dark);
    margin-top: 5px;
}

/* Print Styles */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .tracking-actions,
    .tracking-help {
        display: none !important;
    }
    
    .tracking-result-card {
        box-shadow: none;
        border: 1px solid #ddd;
        padding: 20px;
    }
    
    .page-header {
        padding: 30px 0 !important;
        background: #1a2a4a !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-search-wrapper {
        padding: 20px;
    }
    
    .tracking-result-card {
        padding: 20px;
    }
    
    .tracking-form .input-group-lg {
        flex-wrap: wrap;
    }
    
    .tracking-form .input-group-lg .form-control,
    .tracking-form .input-group-lg .btn,
    .tracking-form .input-group-lg .input-group-text {
        border-radius: var(--border-radius) !important;
    }
    
    .tracking-form .input-group-lg .form-control {
        border-radius: var(--border-radius) !important;
        margin-bottom: 10px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-item {
        margin-bottom: 10px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .tracking-result-card {
        background: #1a1a2e;
    }
    
    .tracking-customer {
        background: #2a2a4e;
    }
    
    .tracking-cargo {
        background: #2a2a4e;
    }
}

/* ============================================
   TRACKING RESULTS - FIX FOR DARK BACKGROUND
   ============================================ */

/* Tracking Result Card - Force white background */
.tracking-result-card {
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
    color: #1a2a4a !important;
}

/* Tracking Header */
.tracking-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.tracking-header h4 {
    color: #1a2a4a !important;
    font-weight: 700;
}

.tracking-header .text-muted {
    color: #6c757d !important;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.status-badge.badge-secondary {
    background: #6c757d !important;
    color: #ffffff !important;
}

.status-badge.badge-info {
    background: #17a2b8 !important;
    color: #ffffff !important;
}

.status-badge.badge-primary {
    background: #007bff !important;
    color: #ffffff !important;
}

.status-badge.badge-warning {
    background: #ffc107 !important;
    color: #212529 !important;
}

.status-badge.badge-success {
    background: #28a745 !important;
    color: #ffffff !important;
}

.status-badge.badge-danger {
    background: #dc3545 !important;
    color: #ffffff !important;
}

.status-badge.badge-dark {
    background: #343a40 !important;
    color: #ffffff !important;
}

.status-badge i {
    margin-right: 8px;
}

/* Tracking Customer */
.tracking-customer {
    background: #f8f9fa !important;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tracking-customer label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d !important;
    display: block;
    font-weight: 600;
}

.tracking-customer p {
    color: #1a2a4a !important;
    font-weight: 600;
    margin-bottom: 0;
}

.tracking-customer .fw-bold {
    font-weight: 700 !important;
    color: #1a2a4a !important;
}

/* Tracking Details */
.tracking-details {
    padding: 15px 0;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    font-size: 20px;
    color: #f15a22 !important;
    margin-top: 3px;
}

.detail-item label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d !important;
    display: block;
    font-weight: 600;
}

.detail-item p {
    font-weight: 600;
    margin-bottom: 0;
    color: #1a2a4a !important;
}

/* Tracking Cargo */
.tracking-cargo {
    background: #f8f9fa !important;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tracking-cargo h6 {
    color: #1a2a4a !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.tracking-cargo label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d !important;
    display: block;
    font-weight: 600;
}

.tracking-cargo p {
    font-weight: 500;
    margin-bottom: 5px;
    color: #1a2a4a !important;
}

/* Tracking Location */
.tracking-location {
    margin-bottom: 20px;
}

.tracking-location .alert {
    background: #e3f2fd !important;
    border: none;
    color: #1a2a4a !important;
    border-radius: 8px;
    padding: 15px 20px;
}

.tracking-location .alert i {
    color: #f15a22 !important;
}

.tracking-location .alert strong {
    color: #1a2a4a !important;
}

/* Tracking Timeline */
.tracking-timeline {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
    margin-top: 10px;
}

.tracking-timeline h6 {
    color: #1a2a4a !important;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

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

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

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e9ecef;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #dee2e6;
}

.timeline-item.active .timeline-dot {
    background: #f15a22;
    border-color: #f15a22;
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(241, 90, 34, 0.1);
    }
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-status {
    font-weight: 600;
    color: #1a2a4a !important;
}

.timeline-date {
    font-size: 13px;
    color: #6c757d !important;
}

.timeline-location {
    color: #6c757d !important;
    font-size: 14px;
    margin: 5px 0;
}

.timeline-description {
    color: #1a2a4a !important;
    margin-bottom: 0;
    font-size: 14px;
}

/* Tracking Actions */
.tracking-actions {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tracking-actions .btn {
    font-weight: 600;
}

.tracking-actions .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.tracking-actions .btn-outline-secondary:hover {
    background: #6c757d;
    color: #ffffff;
}

.tracking-actions .btn-outline-primary {
    color: #f15a22;
    border-color: #f15a22;
}

.tracking-actions .btn-outline-primary:hover {
    background: #f15a22;
    color: #ffffff;
}

/* No Results */
.no-results {
    background: #ffffff !important;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.no-results i {
    color: #dee2e6 !important;
}

.no-results h4 {
    color: #1a2a4a !important;
    font-weight: 700;
}

.no-results p {
    color: #6c757d !important;
}

.no-results strong {
    color: #f15a22 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-result-card {
        padding: 20px 15px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-item {
        margin-bottom: 10px;
    }
    
    .tracking-customer .row > div {
        margin-bottom: 10px;
    }
}

/* ============================================
   MODERN TRACKING SYSTEM STYLES
   ============================================ */

/* Tracking Search */
.tracking-search-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.tracking-form .input-group-lg .form-control {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 0;
    border: 2px solid #e9ecef;
}

.tracking-form .input-group-lg .form-control:focus {
    border-color: #f15a22;
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.1);
}

.tracking-form .input-group-lg .btn {
    padding: 16px 35px;
    font-size: 16px;
    border-radius: 0;
}

.tracking-form .input-group-lg .input-group-text {
    border-radius: 0;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-right: none;
}

/* Loading Spinner */
.tracking-loading {
    text-align: center;
    padding: 40px 0;
}

.tracking-loading .spinner-border {
    width: 48px;
    height: 48px;
}

/* Tracking Result Card */
.tracking-result-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tracking-result-card.animate-fadeIn {
    opacity: 1;
    transform: translateY(0);
}

/* Tracking Header */
.tracking-header {
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.tracking-number {
    font-weight: 700;
    color: #1a2a4a;
}

.tracking-number i {
    margin-right: 10px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.status-badge i {
    margin-right: 8px;
}

.status-badge.status-success {
    background: #28a745;
    color: #ffffff;
}

.status-badge.status-primary {
    background: #007bff;
    color: #ffffff;
}

.status-badge.status-warning {
    background: #ffc107;
    color: #212529;
}

.status-badge.status-danger {
    background: #dc3545;
    color: #ffffff;
}

.status-badge.status-info {
    background: #17a2b8;
    color: #ffffff;
}

.status-badge.status-secondary {
    background: #6c757d;
    color: #ffffff;
}

.status-badge.status-dark {
    background: #343a40;
    color: #ffffff;
}

/* Progress Steps */
.tracking-progress {
    margin: 25px 0 20px;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step .step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid #dee2e6;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.step .step-label {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.step.completed .step-dot {
    background: #28a745;
    border-color: #28a745;
}

.step.completed .step-label {
    color: #28a745;
}

.step.active .step-dot {
    background: #f15a22;
    border-color: #f15a22;
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    animation: pulse-dot 2s infinite;
}

.step.active .step-label {
    color: #f15a22;
    font-weight: 700;
}

.progress-line {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f15a22, #28a745);
    transition: width 0.6s ease;
    border-radius: 4px;
}

/* Tracking Customer */
.tracking-customer {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tracking-customer label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    display: block;
    font-weight: 600;
}

.tracking-customer label i {
    margin-right: 6px;
    color: #f15a22;
}

.tracking-customer p {
    color: #1a2a4a;
    margin-bottom: 0;
}

.tracking-customer .fw-bold {
    font-weight: 700;
    color: #1a2a4a;
}

/* Tracking Route */
.tracking-route {
    margin-bottom: 20px;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.route-point i {
    font-size: 20px;
    color: #f15a22;
    margin-top: 2px;
}

.route-point label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    display: block;
    font-weight: 600;
}

.route-point p {
    font-weight: 600;
    margin-bottom: 0;
    color: #1a2a4a;
}

.route-point.origin i {
    color: #007bff;
}

.route-point.destination i {
    color: #28a745;
}

/* Tracking Location */
.tracking-location-info {
    margin-bottom: 20px;
}

.tracking-location-info .alert {
    background: #e3f2fd;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
}

.tracking-location-info .alert i {
    color: #f15a22;
    margin-right: 10px;
}

.tracking-location-info .alert strong {
    color: #1a2a4a;
}

/* Modern Timeline */
.tracking-timeline-modern {
    border-top: 2px solid #f1f3f5;
    padding-top: 20px;
    margin-top: 10px;
}

.tracking-timeline-modern h6 {
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
}

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

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item-modern {
    position: relative;
    padding-bottom: 25px;
}

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

.timeline-dot-modern {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e9ecef;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #dee2e6;
}

.timeline-item-modern.active .timeline-dot-modern {
    background: #f15a22;
    border-color: #f15a22;
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    animation: pulse-dot 2s infinite;
}

.timeline-item-modern.completed .timeline-dot-modern {
    background: #28a745;
    border-color: #28a745;
}

.timeline-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-status-modern {
    font-weight: 700;
    color: #1a2a4a;
    font-size: 14px;
}

.timeline-date-modern {
    font-size: 13px;
    color: #6c757d;
}

.timeline-location-modern {
    color: #6c757d;
    font-size: 14px;
    margin: 4px 0;
}

.timeline-location-modern i {
    margin-right: 6px;
    color: #f15a22;
}

.timeline-description-modern {
    color: #1a2a4a;
    margin-bottom: 0;
    font-size: 14px;
}

/* Tracking Actions */
.tracking-actions {
    border-top: 2px solid #f1f3f5;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tracking-actions .btn {
    font-weight: 600;
    padding: 8px 20px;
}

.tracking-actions .btn-outline-secondary {
    color: #6c757d;
    border-color: #dee2e6;
}

.tracking-actions .btn-outline-secondary:hover {
    background: #6c757d;
    color: #ffffff;
}

.tracking-actions .btn-outline-primary {
    color: #f15a22;
    border-color: #f15a22;
}

.tracking-actions .btn-outline-primary:hover {
    background: #f15a22;
    color: #ffffff;
}

/* No Results */
.no-results {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.no-results i {
    color: #dee2e6;
}

.no-results h4 {
    color: #1a2a4a;
    font-weight: 700;
}

.no-results p {
    color: #6c757d;
}

/* Pulse Animation */
@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(241, 90, 34, 0.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-search-wrapper {
        padding: 20px;
    }
    
    .tracking-result-card {
        padding: 20px 15px;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step .step-label {
        font-size: 10px;
    }
    
    .step .step-dot {
        width: 16px;
        height: 16px;
    }
    
    .timeline-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .route-point {
        margin-bottom: 10px;
    }
    
    .tracking-customer .row > div {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .tracking-form .input-group-lg {
        flex-wrap: wrap;
    }
    
    .tracking-form .input-group-lg .form-control,
    .tracking-form .input-group-lg .btn,
    .tracking-form .input-group-lg .input-group-text {
        border-radius: 10px !important;
    }
    
    .tracking-form .input-group-lg .form-control {
        margin-bottom: 10px;
    }
}