:root {
    --white: #ffffff;
    --bg: #f8f9fa;
    --bg2: #f1f3f5;
    --dark: #001f3f;
    --dark2: #003366;
    --text: #ff8c00;
    --muted: #8a8a9a;
    --peach: #ff8c00;
    --peach2: #ffa500;
    --peach-bg: #fff5ee;
    --mint: #ff8c00;
    --mint2: #e67e00;
    --mint-bg: #fff5ee;
    --border: #e9ecef;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow2: 0 8px 40px rgba(0, 0, 0, 0.10);
}

body {
    background: var(--bg);
    color: #333;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar Enhancements */
.navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 24px rgba(0, 31, 63, 0.10);
    background: rgba(255, 255, 255, 0.99) !important;
}

/* Logo image */
.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo-img {
    height: 44px;
}

/* Custom logo from WP (the_custom_logo wraps in <a>) */
.navbar-brand .custom-logo-link img,
.navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand .custom-logo-link img,
.navbar.scrolled .navbar-brand img {
    height: 44px;
}

/* Nav links */
.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark) !important;
    margin: 0 6px;
    padding: 0.5rem 0.6rem !important;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--peach) !important;
    background: rgba(255, 140, 0, 0.07);
}

/* current_page_item highlight */
.navbar-nav .current-menu-item>.nav-link,
.navbar-nav .current_page_item>.nav-link {
    color: var(--peach) !important;
}

/* Track Shipment pill button */
.nav-pill-btn {
    background: linear-gradient(135deg, var(--peach) 0%, var(--peach2) 100%) !important;
    color: #fff !important;
    padding: 0.48rem 1.3rem !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: inline-block;
}

.nav-pill-btn:hover,
.nav-pill-btn:focus {
    background: linear-gradient(135deg, #e67e00 0%, var(--peach) 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.50);
    transform: translateY(-1px);
    background-color: transparent !important;
}

/* Navbar toggler (hamburger) */
.navbar-toggler {
    border: 2px solid var(--dark);
    border-radius: 8px;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C31%2C63%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 16px;
        margin-top: 0.75rem;
        padding: 1rem 1.25rem;
        box-shadow: 0 8px 32px rgba(0, 31, 63, 0.12);
        border: 1px solid var(--border);
    }

    .nav-link {
        padding: 0.6rem 0.75rem !important;
        margin: 2px 0;
    }

    .nav-pill-btn {
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

/* Hero & Sections */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #001f3f 0%, #003366 20%, #004080 40%, #0056b3 60%, #004080 80%, #003366 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Subpage hero sections - account for fixed navbar */
section.min-vh-50.position-relative {
    margin-top: 80px;
    scroll-margin-top: 80px;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.text-peach {
    color: var(--peach);
}

.text-mint {
    color: var(--mint);
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--peach);
}

/* =====================
   Buttons — Override Bootstrap defaults
   ===================== */

/* Dark navy gradient button */
.btn.btn-p,
a.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 31, 63, 0.25);
}

.btn.btn-p:hover,
a.btn-p:hover {
    box-shadow: 0 8px 24px rgba(0, 31, 63, 0.35);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Green mint gradient button */
.btn.btn-g,
a.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--peach) 0%, #e67e00 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.btn.btn-g:hover,
a.btn-g:hover {
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Tracking Card */
.track-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow2);
    color: var(--dark);
}

.track-input-group {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.track-input-group:focus-within {
    border-color: var(--peach);
}

.track-input-group input {
    border: none;
    outline: none;
    padding: 0.8rem 1.2rem;
    flex: 1;
    font-weight: 500;
    background: transparent;
}

/* TRACK button inside tracking card */
.track-btn {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    color: #fff !important;
    border: none;
    padding: 0 1.6rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.track-btn:hover {
    background: linear-gradient(135deg, var(--dark2) 0%, #004080 100%);
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.3);
}

.ship-box {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

/* Stats & Services */
.stat-box {
    padding: 3rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-val {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
}

.svc-card:hover {
    border-color: var(--mint);
    box-shadow: var(--shadow2);
}

.svc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Reveal Animation - Disabled */
.reveal {
    opacity: 1;
}

/* =====================
   Premium Footer System
   ===================== */
.footer-premium {
    background: #000B1D;
    /* Deep enterprise navy */
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--peach);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--mint);
    transform: translateX(5px);
}

.footer-social-box {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle:hover {
    background: var(--peach);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 121, 32, 0.3);
    border-color: var(--peach);
}

.footer-newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
}

.newsletter-glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    width: 100%;
    margin-bottom: 12px;
    outline: none;
    transition: all 0.3s;
}

.newsletter-glass-input:focus {
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.v-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin: 0 15px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-link:hover {
        transform: none;
    }

    .footer-social-box {
        justify-content: center;
    }
}

/* Coming Soon Page */
.comingsoon-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comingsoon-h1 {
    color: var(--peach);
}

.comingsoon-p {
    color: var(--peach);
}

.comingsoon-btn {
    background: var(--peach);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* Footer Logo */
.footer-logo {
    height: 80px;
    border-radius: 10px;
}

/* Index Page */
.hero-container {
    z-index: 2;
}

.hero-lead {
    max-width: 500px;
}

.tc-dot {
    width: 10px;
    height: 10px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}

.ship-sample-div {
    letter-spacing: 1px;
}

.progress-fill {
    width: 75%;
    border-radius: 2px;
}

.services-h6 {
    letter-spacing: 2px;
}

.services-p {
    max-width: 600px;
}

.why-us-h6 {
    letter-spacing: 2px;
}

.testimonials-h6 {
    letter-spacing: 2px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-name {
    font-size: 0.75rem;
}

/* Tracking Page */
:root {
    --tracking-primary: var(--dark);
    --tracking-accent: var(--peach);
    --tracking-success: var(--mint);
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
}

.tracking-page {
    min-height: 100vh;
    background: var(--bg);
}

.tracking-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 20%, #004080 40%, #0056b3 60%, #004080 80%, #003366 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    padding: 60px 0 120px;
    color: white;
    text-align: center;
    margin-bottom: -80px;
    position: relative;
    overflow: hidden;
}

.tracking-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.track-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.track-input-premium {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.track-input-premium input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    flex: 1;
    font-weight: 500;
    outline: none;
}

.track-input-premium input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-track {
    background: var(--peach);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-track:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.main-tracking-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.tracking-status-bar {
    padding: 40px;
    border-bottom: 1px solid #edf2f0;
    background: #fff;
}

.status-badge-lg {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-track {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 6px;
    background: #f0f0f0;
    z-index: 1;
    border-radius: 10px;
}

.progress-track .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-dot {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.progress-step.completed .step-dot {
    background: var(--mint);
    color: white;
}

.progress-step.active .step-dot {
    background: var(--dark);
    color: white;
    box-shadow: 0 0 0 5px rgba(0, 31, 63, 0.1);
}

.progress-bar-fill {
    position: absolute;
    top: 25px;
    left: 0;
    height: 6px;
    background: var(--mint);
    z-index: 1;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Timeline Section */
.timeline-modern {
    padding: 40px;
}

.timeline-item {
    position: relative;
    padding-left: 45px;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.latest .timeline-dot {
    border-color: var(--mint);
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(255, 140, 0, 0.15);
}

.timeline-item.latest .timeline-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.detail-card {
    background: #f8fbfa;
    border: 1px solid #eef3f1;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
}

.detail-card:hover {
    background: #fff;
    border-color: var(--mint);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.label-mini {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.empty-state {
    text-align: center;
    padding: 100px 0;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tracking-empty-icon {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .track-search-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .track-input-premium {
        flex-direction: column;
        padding: 12px;
    }

    .track-input-premium input {
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
    }

    .btn-track {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }

    .tracking-hero {
        padding: 40px 0 100px;
    }

    .tracking-hero h1 {
        font-size: 1.75rem;
    }

    .tracking-hero p {
        font-size: 0.9rem;
    }
}

/* =====================
   Services Page Styles
   ===================== */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--peach);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fff5ee;
    color: var(--peach);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--peach);
    color: #fff;
    transform: rotate(10deg);
}

.service-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--peach);
    font-size: 0.8rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.hover-peach:hover {
    color: var(--peach) !important;
}