:root {
    --color-primary: #DC2626;
    --color-primary-2: #B91C1C;
    --color-secondary: #0A0A0A;
    --color-secondary-2: #1A1A1A;
    --white: #FAFAFA;
    --bg: #F5F5F5;
    --bg2: #EFEFEF;
    --dark: var(--color-secondary);
    --dark2: var(--color-secondary-2);
    --text: var(--color-primary);
    --muted: #6B7280;
    --peach: var(--color-primary);
    --peach2: var(--color-primary-2);
    --peach-bg: #FFF5F5;
    --mint: var(--color-primary);
    --mint2: var(--color-primary-2);
    --mint-bg: var(--peach-bg);
    --border: #E5E5E5;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow2: 0 8px 40px rgba(0, 0, 0, 0.10);
    --bs-primary: #DC2626;
    --bs-secondary: #0A0A0A;
    --bs-dark: #0A0A0A;
    --bs-body-bg: #F5F5F5;
    --cx-nav-height: 82px;
    --cx-nav-height-scrolled: 74px;
    --cx-alert-height: 32px;
    --cx-header-offset: calc(var(--cx-nav-height) + var(--cx-alert-height));
}

body {
    background: var(--bg);
    color: #333;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar — Bootstrap + logo size / scroll only */
#nav {
    background: #fff;
    border-bottom: 1px solid #ececec;
    top: 0;
    z-index: 1040;
}

#nav + .cx-alert-strip {
    top: var(--cx-nav-height);
    z-index: 1035;
    height: var(--cx-alert-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    letter-spacing: 0.01em;
}

#nav.scrolled + .cx-alert-strip {
    top: var(--cx-nav-height-scrolled);
}

.cx-alert-track {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    min-width: 200%;
    will-change: transform;
    animation: cx-alert-marquee 28s linear infinite;
}

.cx-alert-item {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.96);
}

.cx-alert-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.55rem;
    padding: 0.08rem 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffd166;
}

.cx-alert-sep {
    margin: 0 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes cx-alert-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

#nav .container {
    max-width: 1240px;
}

#navbarNav {
    align-items: center;
}

#nav .navbar-nav {
    gap: 0.25rem;
}

#nav .navbar-nav .nav-item {
    margin: 0 0.15rem;
}

#nav .navbar-nav .nav-link {
    color: #202020;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    line-height: 1.2;
    transition: color 0.2s ease, background-color 0.2s ease;
}

#nav .navbar-nav .nav-link:hover,
#nav .navbar-nav .nav-link:focus-visible {
    color: var(--peach);
    background: #fff5f5;
}

#nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-logo-img,
.navbar-brand .custom-logo-link img,
.navbar-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

#nav.scrolled .navbar-logo-img,
#nav.scrolled .navbar-brand img,
#nav.scrolled .navbar-brand .custom-logo-link img {
    height: 40px;
}

.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current_page_item > .nav-link {
    color: var(--peach) !important;
    background: #fff5f5;
}

#nav #navbarNav > .d-flex {
    margin-left: 1rem;
    gap: 0.6rem !important;
}

#nav #navbarNav > .d-flex .btn {
    padding: 0.52rem 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    :root {
        --cx-nav-height: 72px;
        --cx-nav-height-scrolled: 68px;
        --cx-alert-height: 30px;
    }

    .cx-alert-track {
        gap: 2.3rem;
        animation-duration: 22s;
    }

    .cx-alert-label {
        font-size: 0.58rem;
        margin-right: 0.45rem;
        padding: 0.06rem 0.35rem;
    }

    #nav {
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
    }

    #nav .navbar-brand {
        margin-right: 0.5rem;
    }

    #navbarNav {
        margin-top: 0.9rem;
        padding: 0.8rem;
        border: 1px solid #ececec;
        border-radius: 14px;
        background: #fff;
    }

    #nav .navbar-nav {
        gap: 0.2rem;
    }

    #nav .navbar-nav .nav-item {
        margin: 0;
    }

    #nav .navbar-nav .nav-link {
        padding: 0.7rem 0.85rem;
        border-radius: 10px;
    }

    #nav #navbarNav > .d-flex {
        margin-left: 0 !important;
        margin-top: 0.55rem;
    }
}

/* Hero & Sections */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 35%, #3D0A0A 65%, #DC2626 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Home hero — static red + dot pattern, no animation */
.hero.hero-dotted {
    animation: none;
    background-color: #1a0808;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.13) 1.4px, transparent 1.4px),
        radial-gradient(ellipse 70% 55% at 80% 15%, rgba(220, 38, 38, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 45% at 10% 85%, rgba(185, 28, 28, 0.2), transparent 50%),
        linear-gradient(165deg, #0a0a0a 0%, #3d0a0a 38%, #7f1d1d 72%, #991b1b 100%);
    background-size: 24px 24px, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0, center, center, center;
    background-attachment: scroll;
}

/* Subpage hero sections - account for fixed navbar */
section.min-vh-50.position-relative {
    margin-top: var(--cx-header-offset);
    scroll-margin-top: var(--cx-header-offset);
}

/* Default WP pages (page.php) — editor / Custom HTML content */
.page-default {
    padding-top: calc(5.5rem + var(--cx-alert-height));
    min-height: 50vh;
}

.page-default .entry-content {
    line-height: 1.7;
}

.page-default .entry-content img {
    max-width: 100%;
    height: auto;
}

/* FAQ Page */
.faq-page {
    padding-top: calc(5rem + var(--cx-alert-height));
    margin-top: var(--cx-nav-height);
}

.faq-content {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1.25rem;
}

.faq-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    margin: 0 0 0.6rem;
}

.faq-subtitle {
    color: #5f6368;
    margin: 0 0 1.2rem;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid #ededed;
    border-radius: 14px;
    padding: 1rem 1rem 0.95rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 8px 22px rgba(220, 38, 38, 0.08);
}

.faq-item__q {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.faq-item__idx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #fff5f5;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item__a {
    margin: 0;
    color: #5c6066;
    line-height: 1.65;
    padding-left: 2.6rem;
}

.faq-media {
    display: grid;
    gap: 1rem;
}

.faq-media__card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.faq-media__card img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.faq-media__card--two {
    transform: translateX(18px);
}

@media (max-width: 991.98px) {
    .faq-page {
        padding-top: calc(4.6rem + var(--cx-alert-height));
    }

    .faq-content {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }

    .faq-item__a {
        padding-left: 0;
    }

    .faq-media__card--two {
        transform: none;
    }
}

#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 {
    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
   ===================== */

/* Primary red CTA */
.btn.btn-p,
a.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 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(220, 38, 38, 0.3);
}

.btn.btn-p:hover,
a.btn-p:hover {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Secondary black button */
.btn.btn-g,
a.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-2) 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, 0, 0, 0.25);
}

.btn.btn-g:hover,
a.btn-g:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    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(--color-primary) 0%, var(--color-primary-2) 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(--color-primary-2) 0%, #991B1B 100%);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.ship-box {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

/* Stats (index fallback) & legacy service cards */
.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: var(--color-secondary);
    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(220, 38, 38, 0.08) 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(220, 38, 38, 0.35);
    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-brand {
    line-height: 0;
}

.footer-brand .custom-logo-link,
.footer-brand .custom-logo-link img,
.footer-brand img,
.footer-logo {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

@media (min-width: 992px) {
    .footer-brand .custom-logo-link img,
    .footer-brand img,
    .footer-logo {
        height: 64px;
    }
}

/* 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(220, 38, 38, 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 */
.tracking-page {
    min-height: 100vh;
    background: var(--bg);
}

.tracking-page.trx-page--results,
.tracking-page.trx-page--error {
    min-height: auto;
}

.timeline-modern {
    padding: 0;
}

.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(220, 38, 38, 0.15);
}

.timeline-item.latest .timeline-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.label-mini {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

/* Services page */
.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: var(--peach-bg);
    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;
}

/* =====================
   CustomExpress brand utilities
   ===================== */
.hero-subpage {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 35%, #3D0A0A 65%, #DC2626 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    margin-top: 80px;
}

.text-highlight {
    color: var(--color-primary) !important;
}

.text-heading-brand {
    color: var(--color-secondary) !important;
}

.badge-primary-brand {
    background: var(--color-primary) !important;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.badge-secondary-brand {
    background: var(--color-secondary) !important;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.section-cta-red {
    background: var(--color-primary);
}

.card-vision-dark {
    background: var(--color-secondary) !important;
}

.stat-number-red {
    font-size: 32px;
    color: var(--color-primary);
}

.hero-text-muted-75 {
    color: rgba(255, 255, 255, 0.75);
}

.hero-text-muted-60 {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.subpage-lead {
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
}

.progress-brand {
    background: var(--color-primary) !important;
}

.bg-section-light {
    background: var(--bg) !important;
}

.bg-peach-bg {
    background: var(--peach-bg) !important;
}

.btn-white {
    background: #fff;
    color: var(--color-secondary);
    padding: 0.75rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--bg);
    color: var(--color-primary);
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 0.75rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--color-primary);
}

.hover-mint:hover {
    color: var(--color-primary) !important;
}

/* Tracking: tracking.php + track.php */
.trx-page { background: var(--bg); }
.trx-hero { padding: 7rem 0 4rem; animation: none; background-size: auto; }
.trx-features-section { background: var(--bg); }
.trx-form-card { background: #fff; border-radius: 20px; padding: 1.75rem; box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.trx-form-title { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--color-secondary); }
/* Track-by tabs use Bootstrap btn-group + btn-check */
.trx-form-card .btn-group .btn {
    font-weight: 700;
}
.trx-input { border: 2px solid var(--border) !important; border-radius: 12px !important; padding: 0.85rem 1rem !important; }
.trx-input:focus { border-color: var(--color-primary) !important; box-shadow: 0 0 0 4px rgba(220,38,38,0.12) !important; }
.trx-form-hint { padding-top: 1rem; border-top: 1px solid var(--border); }
.trx-feature-box { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; height: 100%; }
.trx-feature-box > i { font-size: 2rem; color: var(--color-primary); display: block; margin-bottom: 1rem; }

/* Results / error: hide search hero */
.trx-page--results .trx-hero,
.trx-page--error .trx-hero {
    display: none;
}

/* Compact top bar (results / not found) */
.trx-topbar {
    margin-top: 80px;
    padding: 0.75rem 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trx-topbar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trx-back-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
}

.trx-back-link:hover {
    color: var(--color-primary);
}

.trx-topbar-title {
    font-weight: 700;
    color: var(--color-secondary);
}

/* Inline search strip — no stretched hero */
.trx-search-strip {
    padding: 1.25rem 0 0;
    background: var(--bg);
}

.trx-search-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow2);
}

.trx-inline-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.trx-inline-form .btn-group .btn {
    font-weight: 700;
}

.trx-inline-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0 0.85rem;
    background: #fafafa;
}

.trx-inline-field:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.trx-inline-field i {
    color: var(--muted);
}

.trx-inline-field .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0.65rem 0;
}

.trx-inline-field .form-control:focus {
    box-shadow: none;
}

.trx-inline-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Shipment summary card */
.trx-shipment-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow2);
    position: sticky;
    top: 100px;
}

.trx-shipment-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.trx-awb {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 0.25rem 0 0.75rem;
    word-break: break-all;
}

.trx-status-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    color: #fff;
    background: var(--pill-color, var(--color-primary));
}

.trx-route-visual {
    margin-bottom: 1.25rem;
}

.trx-route-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trx-route-point strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-secondary);
}

.trx-route-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trx-route-icon--from {
    background: #fef2f2;
    color: var(--color-primary);
}

.trx-route-icon--to {
    background: #f0fdf4;
    color: #15803d;
}

.trx-route-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0 0.5rem 2.6rem;
    color: var(--muted);
}

.trx-route-dash {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--color-primary), var(--border));
    border-radius: 2px;
    max-width: 80px;
}

.trx-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.trx-meta-list li {
    background: var(--bg);
    border-radius: 12px;
    padding: 0.65rem 0.35rem;
    border: 1px solid var(--border);
}

.trx-meta-list li span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.trx-meta-list li strong {
    font-size: 1rem;
    color: var(--color-secondary);
}

/* Timeline panel */
.trx-timeline-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.trx-timeline-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: #fafafa;
}

.trx-timeline-head h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.trx-timeline-v2 {
    padding: 1.5rem 1.75rem 1.75rem;
}

.trx-timeline-v2 .timeline-item {
    padding-left: 48px;
    padding-bottom: 1.75rem;
}

.trx-timeline-v2 .timeline-item:last-child {
    padding-bottom: 0;
}

.trx-timeline-v2 .timeline-dot {
    width: 14px;
    height: 14px;
    left: 4px;
    top: 4px;
    border-width: 3px;
}

.trx-timeline-v2 .timeline-item.latest .timeline-dot {
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
}

.trx-timeline-v2 .timeline-item::before {
    left: 10px;
    top: 22px;
    background: #e5e7eb;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin-bottom: 0.35rem;
}

.timeline-status-tag {
    font-weight: 800;
    font-size: 0.95rem;
}

.timeline-meta time {
    font-size: 0.8rem;
    color: var(--muted);
}

.timeline-text {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.trx-pod-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary) !important;
}

/* Alerts */
.trx-msg {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.trx-msg i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trx-msg--warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}

.trx-msg--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.trx-msg--error i {
    color: var(--color-primary);
}

/* ========== Home page (Pushpak-style layout) ========== */
.home-modern {
    overflow-x: hidden;
}

/* Hero fullscreen — Bootstrap carousel backgrounds */
.hero-fullscreen {
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-carousel {
    z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100dvh;
}

.hero-slide-bg--lazy {
    background-color: #1a1a1a;
}

.hero-carousel__control {
    z-index: 3;
    width: 8%;
}

.hero-carousel__indicators {
    z-index: 3;
    margin-bottom: 1.25rem;
}

.hero-carousel__indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    opacity: 0.85;
}

.hero-carousel__indicators .active {
    background-color: #fff;
}

/* Static hero CTAs — below track input */
.hero-static-actions {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.hero-static-actions .btn {
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 8px;
    min-width: 9.5rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-static-actions {
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .hero-static-actions {
        justify-content: center;
    }

    .hero-static-actions .btn {
        flex: 1;
        min-width: 0;
        max-width: 11rem;
    }
}

.hero-fullscreen__overlay {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.78) 0%,
        rgba(10, 10, 10, 0.45) 55%,
        rgba(10, 10, 10, 0.15) 100%
    );
}

/* Content sits below navbar + pushed down into middle of hero */
.hero-fullscreen__wrap {
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.hero-fullscreen__row {
    width: 100%;
    margin-top: 10vh;
}

.hero-fullscreen__content {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {
    .hero-fullscreen__wrap {
        padding-top: 6.5rem;
        padding-bottom: 4rem;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-fullscreen__row {
        margin-top: 3vh;
    }

    .hero-fullscreen__content {
        text-align: left;
        padding-left: 0.5rem;
    }

}

.hero-fullscreen__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.12;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

@media (min-width: 992px) {
    .hero-fullscreen__title {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-fullscreen__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    opacity: 0.92;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
    color: #fff;
}

@media (min-width: 992px) {
    .hero-fullscreen__lead {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Single-line track bar */
.hero-track-panel {
    display: flex;
    justify-content: center;
}

.hero-track-card {
    width: min(100%, 600px);
    padding: 2.8rem 2.0rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-track-card__head {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-track-card__head span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.7rem;
    color: #111827;
}

.hero-track-card__head span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--peach);
}

.hero-track-card__muted {
    color: #9ca3af !important;
}

.hero-track-card__muted::after {
    display: none;
}

.hero-track-card__title {
    margin: 0 0 0.9rem;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-track-form {
    display: grid;
    gap: 0.85rem;
}

.hero-track-tabs {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.hero-track-tabs .btn {
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #8b95a1;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.72rem 0.6rem;
}

.hero-track-tabs label.btn:not(:first-of-type) {
    border-left: 1px solid #e5e7eb;
}

.hero-track-tabs .btn-check:checked + .btn {
    background: #111827;
    color: #fff;
}

.hero-track-form .hero-track-bar__input {
    width: 100%;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    background: #fff;
    box-shadow: none !important;
    padding: 0.78rem 0.9rem;
    color: #111827;
    font-size: 0.92rem;
}

@media (min-width: 992px) {
    .hero-track-panel {
        justify-content: flex-end;
    }
}

.hero-track-bar__input {
    border: none !important;
    box-shadow: none !important;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    border-radius: 8px 0 0 8px;
    color: #111827;
}

.hero-track-bar__input:focus {
    outline: none;
    box-shadow: none !important;
}

.hero-track-bar__input::placeholder {
    color: #6b7280;
}

.hero-track-bar__btn {
    border-radius: 6px !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.02em;
}

@media (max-width: 991.98px) {
    .hero-fullscreen {
        min-height: auto;
    }

    .hero-fullscreen__wrap {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-fullscreen__row {
        margin-top: 2rem;
    }

    .hero-track-card {
        padding: 1.15rem;
    }

    .hero-track-bar__btn {
        width: 100%;
    }
}

/* Quick action cards */
.home-quick {
    margin-top: 0;
    padding: 0 0 3rem;
    position: relative;
    z-index: 5;
}

.home-quick--pre-reviews {
    background: #fff;
    border-top: 1px solid var(--border);
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

.home-quick--pre-reviews + .home-reviews {
    padding-top: 2rem !important;
}

.home-quick-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.home-quick-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.35);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.12);
    color: inherit;
}

.home-quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef2f2, #fff);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.home-quick-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--color-secondary);
}

.home-quick-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}

/* ===== Delhivery stats — heading + zigzag path ===== */
.dlv-stats {
    padding: 3.25rem 0 4.5rem;
    background: #fff;
}

.dlv-stats-head {
    text-align: left;
    margin-bottom: 3.2rem;
    max-width: 820px;
}

.dlv-stats-sub {
    font-size: clamp(1.08rem, 1.8vw, 1.45rem);
    font-weight: 400;
    color: #111;
    margin: 0 0 0.15rem;
    line-height: 1.35;
}

.dlv-stats-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.dlv-stats-headline {
    display: block;
    width: 56px;
    height: 3px;
    background: #e31e24;
    margin-top: 0.65rem;
}

/* Zigzag track area */
.dlv-stats-visual {
    position: relative;
    width: 100%;
    height: 250px;
}

.dlv-stats-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.dlv-stats-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    gap: 0.75rem;
}

.dlv-stat {
    flex: 1 1 0;
    max-width: 178px;
    min-width: 0;
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
}

/* Stat 1,3 — grey line upar, content neeche: icon → number → label */
.dlv-stat--below {
    grid-template-rows: 45% 5px 1fr;
}

.dlv-stat--below .dlv-stat-node {
    grid-row: 2;
}

.dlv-stat--below .dlv-stat-body {
    grid-row: 3;
    align-self: start;
    padding-top: 0.65rem;
}

/* Stat 2,4 — content upar, grey line neeche */
.dlv-stat--above {
    grid-template-rows: 1fr 5px 45%;
}

.dlv-stat--above .dlv-stat-body {
    grid-row: 1;
    align-self: end;
    padding-bottom: 0.65rem;
}

.dlv-stat--above .dlv-stat-node {
    grid-row: 2;
}

.dlv-stat-node {
    line-height: 0;
    z-index: 2;
}

.dlv-stat-accent {
    display: inline-block;
    width: 118px;
    height: 5px;
    background: #e31e24;
    border-radius: 0;
}

.dlv-stat-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 116px;
    padding: 1.05rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.dlv-stat-icon-wrap {
    height: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0.45rem;
}

.dlv-stat-icon {
    width: 38px;
    height: auto;
    max-height: 38px;
}

.dlv-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin: 0 0 0.28rem;
    letter-spacing: -0.03em;
}

.dlv-stat-caption {
    font-size: 0.78rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.28;
    margin: 0;
    max-width: 130px;
}

@media (max-width: 991px) {
    .dlv-stats {
        padding: 2.25rem 0 2rem;
    }

    .dlv-stats-head {
        margin-bottom: 1.75rem;
    }

    .dlv-stats-visual {
        height: auto;
        min-height: 0;
    }

    .dlv-stats-path {
        display: none;
    }

    .dlv-stats-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1rem;
        height: auto;
    }

    .dlv-stat,
    .dlv-stat--below,
    .dlv-stat--above {
        flex: 0 1 calc(50% - 0.75rem);
        max-width: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-template-rows: unset;
        height: auto;
    }

    .dlv-stat--above .dlv-stat-body,
    .dlv-stat--below .dlv-stat-body {
        grid-row: unset;
        padding: 0;
        order: 1;
    }

    .dlv-stat-node {
        order: 2;
        margin: 0.65rem 0;
    }
}

@media (max-width: 575px) {
    .dlv-stat {
        flex: 0 1 100%;
    }
}

/* Section headers */
.home-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.home-section-desc {
    max-width: 560px;
}

.home-services {
    background: #f8f9fa;
}

/* Service cards with images */
.home-svc-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.home-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.home-svc-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.home-svc-card:hover .home-svc-img-wrap img {
    transform: scale(1.06);
}

.home-svc-body {
    padding: 1.35rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-svc-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.home-svc-body p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1rem;
    flex: 1;
}

.home-svc-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.home-svc-link:hover {
    color: var(--color-primary-2);
}

/* Why section */
.home-why {
    background: #fff;
}

.home-why-visual {
    position: relative;
}

.home-why-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow2);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-why-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.home-why-badge i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.home-why-badge strong {
    display: block;
    font-size: 0.95rem;
}

.home-why-badge span {
    font-size: 0.8rem;
    color: var(--muted);
}

.home-why-item {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    height: 100%;
}

.home-why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fef2f2;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.home-why-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.home-why-item p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

/* Reviews */
.home-reviews {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.home-review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s;
}

.home-review-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.home-review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.home-review-text {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.home-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-review-author strong {
    display: block;
    font-size: 0.9rem;
}

.home-review-author span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Bottom CTA */
.home-cta {
    padding: 4rem 0 5rem;
}

.home-cta-inner {
    background: linear-gradient(135deg, #0a0a0a 0%, #991b1b 55%, #dc2626 100%);
    color: #fff;
    border-radius: 28px;
    padding: 3.5rem 2rem;
    box-shadow: 0 24px 60px rgba(220, 38, 38, 0.25);
}

.home-cta .btn-light {
    color: var(--color-primary);
}

.home-cta .btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
}


@media (max-width: 991px) {
    .trx-shipment-card {
        position: static;
    }

    .trx-inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .trx-inline-form .btn-group {
        width: 100%;
    }

    .trx-inline-form .btn-group .btn {
        flex: 1;
    }

    .trx-inline-btn {
        width: 100%;
    }
}