/* ============================================================
   Apple International - Main Stylesheet
   Primary: #0B3D91 | Secondary: #D62828 | Accent: White
   ============================================================ */

:root {
    --navy: #0B3D91;
    --navy-dark: #082d6e;
    --navy-light: #1a4fa8;
    --red: #D62828;
    --red-dark: #b01f1f;
    --red-light: #e83333;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f1f3f8;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --shadow-sm: 0 2px 8px rgba(11,61,145,0.08);
    --shadow-md: 0 8px 30px rgba(11,61,145,0.12);
    --shadow-lg: 0 20px 60px rgba(11,61,145,0.16);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

/* ============================================================
   TOP HEADER
   ============================================================ */
.top-header {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    padding: 8px 0;
    font-family: 'Roboto', sans-serif;
}

.top-header-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.top-header-info a, .top-header-info span {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-header-info a:hover { color: var(--white); }

.top-header-info i { color: var(--red-light); margin-right: 4px; }

.top-header .divider { color: rgba(255,255,255,0.3); margin: 0 6px; }

.top-header-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.top-header-social a:hover { color: var(--red-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(11,61,145,0.1);
    padding: 14px 0;
    transition: var(--transition);
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(11,61,145,0.15);
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 9.5px;
    font-weight: 400;
    color: var(--red);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.navbar-brand { text-decoration: none; }

.why-section,
.counter-section {
    overflow: hidden;
}


/* Nav Links */
.main-navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text) !important;
    padding: 8px 14px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--navy) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.btn-track-nav {
    background: var(--red);
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 20px !important;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 2px solid var(--red);
    transition: var(--transition);
}

.btn-track-nav:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(214,40,40,0.35);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:  linear-gradient(135deg, rgba(8,45,110,0.92) 0%, rgba(11,61,145,0.82) 50%, rgba(214,40,40,0.15) 100%),
        url('../images/home-bg.jpg') center/cover no-repeat;
    /*background:
        linear-gradient(135deg, rgba(8,45,110,0.92) 0%, rgba(11,61,145,0.82) 50%, rgba(214,40,40,0.15) 100%),
        url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1920&q=80') center/cover no-repeat;*/
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214,40,40,0.2);
    border: 1px solid rgba(214,40,40,0.4);
    color: #ff8080;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.hero-eyebrow i { font-size: 10px; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title .highlight {
    color: var(--red);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.hero-badge i { color: var(--red-light); }

/* Hero Tracking Box */
.hero-track-box {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.hero-track-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--red));
}

.hero-track-box .track-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-track-box .track-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.track-input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11,61,145,0.12);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.track-input-group:focus-within {
    border-color: var(--navy);
    box-shadow: 0 4px 20px rgba(11,61,145,0.2);
}

.track-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Roboto', monospace;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 1px;
    background: var(--white);
    text-transform: uppercase;
}

.track-input-group input::placeholder {
    color: #b0bec5;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
}

.btn-track-hero {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-track-hero:hover {
    background: linear-gradient(135deg, var(--red-dark), #8b0000);
    transform: none;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

.track-help {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.track-help i { color: var(--navy); }

/* Hero Stats Strip */
.hero-stats-strip {
    background: var(--navy);
    padding: 20px 0;
    border-top: 3px solid var(--red);
}

.hero-stat-item {
    text-align: center;
    padding: 8px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number span { color: var(--red-light); }

.hero-stat-label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 80px 0; }

.section-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-title span { color: var(--red); }

.section-divider {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--navy));
    border-radius: 2px;
    margin: 0 auto 16px;
}

.section-divider.left { margin: 0 0 16px; }

.section-subtitle {
    font-size: 15.5px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.75;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--red));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--light-gray);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    font-size: 26px;
    color: var(--navy);
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.08);
}

.service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover { gap: 10px; color: var(--red-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.why-image-wrap img {
    width: 100%;
    /*height: 480px;*/
    height: 580px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.why-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(214,40,40,0.4);
}

.why-image-badge .badge-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.why-image-badge .badge-text {
    font-size: 12px;
    opacity: 0.9;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.why-feature:last-child { border-bottom: none; }

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
    background: var(--red);
    transform: scale(1.05);
}

.why-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-feature-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-dark) 100%);
    padding: 70px 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214,40,40,0.12) 0%, transparent 70%);
    border-radius: 50%;
} 

.counter-item { text-align: center; padding: 20px; }

.counter-icon {
    font-size: 36px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 10px;
    display: block;
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
}

.counter-number .counter-plus { color: var(--red-light); }

.counter-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-family: 'Roboto', sans-serif;
}

.counter-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section { background: var(--off-white); }

.process-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    margin-top: 50px;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--border);
    z-index: 0;
}

.process-line-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--navy), var(--red));
    border-radius: 2px;
    animation: lineGrow 1.5s ease-out forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 100%; }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.process-step-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--navy);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(11,61,145,0.15);
}

.process-step.active .process-step-dot {
    background: var(--navy);
    color: var(--white);
}

.process-step.done .process-step-dot {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.process-step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.process-step-sub {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--navy);
}

.testimonial-quote {
    font-size: 48px;
    color: var(--red);
    line-height: 0.8;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.testimonial-city {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-stars { color: #f59e0b; font-size: 13px; margin-bottom: 4px; }

/* ============================================================
   TRACKING PAGE
   ============================================================ */
/*.page-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}*/

.page-banner {
    background-image:
            linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url('../images/breadcumb.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--red), var(--navy));
}

.page-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 13.5px;
}

.page-banner-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-banner-breadcrumb a:hover { color: var(--white); }
.page-banner-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-banner-breadcrumb .current { color: var(--red-light); }

/* Tracking Form */
.track-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.track-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--red));
}

/* Tracking Result */
.tracking-result {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tracking-result-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tracking-awb {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.tracking-status-badge {
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-delivered { background: #10b981; color: white; }
.status-in-transit { background: var(--navy); color: white; }
.status-out-for-delivery { background: #f59e0b; color: white; }
.status-booked { background: #64748b; color: white; }
.status-picked-up { background: #06b6d4; color: white; }
.status-reached-hub { background: #8b5cf6; color: white; }
.status-returned { background: var(--red); color: white; }
.status-cancelled { background: #374151; color: white; }

.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.tracking-info-item {
    padding: 20px 24px;
    border-right: 1px solid var(--border);
}

.tracking-info-item:last-child { border-right: none; }

.tracking-info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.tracking-info-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
}

/* Timeline */
.tracking-timeline {
    padding: 30px 28px;
}

.tracking-timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.timeline-dot.done {
    background: var(--navy);
    color: var(--white);
}

.timeline-dot.current {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(214,40,40,0.2);
    animation: pulse-ring 2s infinite;
}

.timeline-dot.pending {
    background: var(--border);
    color: var(--text-muted);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 4px rgba(214,40,40,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(214,40,40,0.08); }
    100% { box-shadow: 0 0 0 4px rgba(214,40,40,0.2); }
}

.timeline-content { flex: 1; padding-top: 6px; }

.timeline-status {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.timeline-status.done { color: var(--navy); }
.timeline-status.current { color: var(--red); }
.timeline-status.pending { color: var(--text-muted); }

.timeline-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.timeline-date {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Roboto', sans-serif;
}

/* ============================================================
   POD PAGE
   ============================================================ */
.pod-result-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--navy);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pod-result-header {
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pod-result-body { padding: 28px; }

.pod-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.pod-file-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pod-file-info { flex: 1; margin: 0 16px; }

.pod-file-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.pod-file-meta { font-size: 12px; color: var(--text-muted); }

.btn-pod-view, .btn-pod-download {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-pod-view { background: var(--navy); color: white; }
.btn-pod-view:hover { background: var(--navy-dark); color: white; }
.btn-pod-download { background: var(--red); color: white; }
.btn-pod-download:hover { background: var(--red-dark); color: white; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 14.5px;
    color: var(--white);
    line-height: 1.6;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11,61,145,0.1);
    outline: none;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11,61,145,0.3);
    color: var(--white);
}

.btn-red-custom {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-red-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214,40,40,0.3);
    color: var(--white);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: 60px 0;
}

.cta-inner { max-width: 100%; }

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 0;
}

.btn-cta-white {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    padding: 12px 26px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 26px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: #0a1628; }

.footer-top { padding: 70px 0 40px; }

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    display: block;
    line-height: 1;
}

.footer-logo-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    letter-spacing: 3.5px;
    color: var(--red-light);
    display: block;
    margin-top: 2px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i { font-size: 10px; color: var(--red); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0 0 16px; }

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--red-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-copy strong { color: rgba(255,255,255,0.7); }

.footer-policy {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-policy a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-policy a:hover { color: var(--white); }
.footer-policy span { margin: 0 8px; opacity: 0.3; }

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */
.alert-custom {
    border-radius: 10px;
    padding: 16px 20px;
    border: none;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-custom i { font-size: 20px; flex-shrink: 0; }

.alert-error { background: #fff1f1; color: var(--red); border-left: 4px solid var(--red); }
.alert-success { background: #f0fdf4; color: #15803d; border-left: 4px solid #22c55e; }
.alert-info { background: #eff6ff; color: var(--navy); border-left: 4px solid var(--navy); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-highlight {
    background: var(--light-gray);
    border-left: 4px solid var(--red);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    font-style: italic;
    color: var(--navy);
    margin: 24px 0;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 28px auto 16px;
    background: linear-gradient(135deg, var(--navy), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    section { padding: 60px 0; }

    .hero-section { min-height: auto; }
    .hero-content { padding: 60px 0 40px; }
    .hero-track-box { margin-top: 40px; }

    .process-track { flex-direction: column; align-items: flex-start; padding: 0; gap: 0; }
    .process-line { display: none; }
    .process-step { display: flex; align-items: center; gap: 16px; text-align: left; width: 100%; padding-bottom: 20px; position: relative; }
    .process-step::after { content: ''; position: absolute; left: 30px; top: 62px; bottom: 0; width: 2px; background: var(--border); }
    .process-step:last-child::after { display: none; }
    .process-step-dot { margin: 0; flex-shrink: 0; }

    .counter-divider { display: none; }

    .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hero-stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767.98px) {
    .top-header { display: none; }
    .hero-title { font-size: 1.8rem; }
    .track-input-group { flex-direction: column; border-radius: 10px; }
    .btn-track-hero { border-radius: 0 0 8px 8px; padding: 13px; width: 100%; justify-content: center; }
    .track-input-group input { border-radius: 8px 8px 0 0; }

    .tracking-info-grid { grid-template-columns: 1fr 1fr; }
    .tracking-info-item { border-bottom: 1px solid var(--border); }

    .hero-stats-strip .row { flex-direction: row; flex-wrap: wrap; }
    .hero-stat-item { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }

    .contact-form-card, .track-form-card { padding: 24px 18px; }
}

@media (max-width: 575.98px) {
    .tracking-info-grid { grid-template-columns: 1fr; }
    .pod-file-item { flex-direction: column; text-align: center; }
    .pod-file-info { margin: 12px 0; }
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spinner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.spin {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(11,61,145,0.3);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn.show { display: flex; }
.scroll-top-btn:hover { background: var(--red); transform: translateY(-3px); }

/* ============================================================
   MISC HELPERS
   ============================================================ */
.text-navy { color: var(--navy) !important; }
.text-red { color: var(--red) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-red { background: var(--red) !important; }
.bg-off-white { background: var(--off-white) !important; }

.logo-wrap .logo-img{
    width:55px;
}
.footer-logo .logo-img{
    width:55px;
}
@media (max-width: 767.98px) {
    .why-image-wrap img{
        height: 100%;
    }
    .logo-wrap .logo-img{
        width:40px;
    }
    .logo-wrap .logo-text .logo-name{
        font-size: 13px;
        font-weight: 900;
    }
    .logo-wrap .logo-text .logo-sub{
        font-size: 7px;
        font-weight: 900;
    }
    .footer-logo .logo-img{
        width:40px;
    }
    .footer-logo .footer-logo-text .footer-logo-name{
        font-size: 13px;
        font-weight: 900;
    }
    .footer-logo .footer-logo-text .footer-logo-sub{
        font-size: 7px;
        font-weight: 900;
    }
    .counter-section::before{
        top: 0;
        right: 0;
        width:100%;
        height:100%;
    }
}


.about-story-section img{
    width:100%;height:440px;object-fit:cover;border-radius:16px;display:block;
                   
}
.about-story-section .story-counter{
    position:absolute;top:-20px;right:-20px;background:var(--red);color:white;padding:20px;border-radius:16px;text-align:center;box-shadow:0 10px 40px rgba(214,40,40,0.35);
}

@media (max-width: 767.98px) {
.about-story-section img{
    height:100%
}
.about-story-section .story-counter{
    right: 0;
}

}