/* ================================================================
   HOMEPAGE V2 — Jayesh Trans Movers
   ================================================================ */

/* ─── SECTION SPACING UTILITY ─────────────────────────────────── */
.sec-pad   { padding: 80px 0; }
.sec-pad-sm{ padding: 60px 0; }
.sec-pad-xs{ padding: 48px 0; }

/* ================================================================
   0. TOP INFO RIBBON
   ================================================================ */
.jt-top-ribbon {
    background: #0D1828;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}
.jt-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.jt-ribbon-left {
    display: flex;
    align-items: center;
    gap: 0;
}
.jt-ribbon-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.18s;
    white-space: nowrap;
    padding: 0 14px 0 0;
    font-family: "Manrope", sans-serif;
}
.jt-ribbon-item i {
    font-size: 11px;
    color: #F57920;
    flex-shrink: 0;
}
.jt-ribbon-item:hover { color: rgba(255,255,255,0.9); }
.jt-ribbon-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
    margin: 0 14px 0 0;
    flex-shrink: 0;
}
.jt-ribbon-hours { cursor: default; }
.jt-ribbon-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.jt-ribbon-wa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: #25D366;
    text-decoration: none;
    padding: 0 10px 0 0;
    border-right: 1px solid rgba(255,255,255,0.12);
    font-family: "Manrope", sans-serif;
    transition: opacity 0.18s;
}
.jt-ribbon-wa i { font-size: 13px; }
.jt-ribbon-wa:hover { opacity: 0.85; color: #25D366; }
.jt-ribbon-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    background: #F57920;
    padding: 5px 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s;
    font-family: "Manrope", sans-serif;
    white-space: nowrap;
}
.jt-ribbon-cta i { font-size: 12px; }
.jt-ribbon-cta:hover { background: #e06a10; color: #fff; transform: translateY(-1px); }

/* Hide ribbon hours + wa on small screens */
@media (max-width: 991px) {
    .jt-ribbon-hours { display: none; }
}
@media (max-width: 767px) {
    .jt-ribbon-item:nth-child(3),
    .jt-ribbon-sep:nth-child(4) { display: none; }
    .jt-ribbon-wa { display: none; }
}
@media (max-width: 480px) {
    .jt-top-ribbon { height: 36px; }
    .jt-ribbon-item { font-size: 11px; padding-right: 10px; }
    .jt-ribbon-sep { margin: 0 10px 0 0; }
}

/* ================================================================
   TOP RIBBON — fixed on desktop, scrolls away on mobile
   ================================================================ */
.jt-top-ribbon {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1100 !important;
}
/* Compensate for ribbon taken out of flow on desktop */
body {
    padding-top: 40px;
}
/* Mobile: ribbon scrolls away — not fixed */
@media (max-width: 767px) {
    .jt-top-ribbon {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
    }
    body { padding-top: 0 !important; }
}

/* ================================================================
   MOBILE NAV — Slicknav Fixes
   ================================================================ */

/* 1. Background: was var(--accent-color) = orange. Must be dark navy. */
.slicknav_menu {
    background: #1C2B4A !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    overflow: hidden !important;
}

/* 2. Height: was 100vh (fills entire screen). Use auto with scroll cap. */
.slicknav_nav {
    height: auto !important;
    max-height: calc(100vh - 130px) !important;
    overflow-y: auto !important;
}

/* 3. Arrow colour: matches menu text (white on dark bg) */
.slicknav_arrow:after {
    color: rgba(255,255,255,0.5) !important;
}
.slicknav_open > a .slicknav_arrow:after {
    color: #F57920 !important;
}

/* 4. Sub-menu background: slightly lighter than parent */
.slicknav_menu .slicknav_nav ul {
    background: rgba(0,0,0,0.2) !important;
}

/* 5. Active / hover states */
.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    color: #F57920 !important;
    background: transparent !important;
}

/* 6. Divider between items */
.slicknav_nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.slicknav_nav li:last-child {
    border-bottom: none !important;
}

/* 7. Mobile contact block sits inside slicknav_menu visually (via .responsive-menu sibling) */
.responsive-menu .footer-header-prime {
    display: none; /* only show via Bootstrap collapse, not slicknav */
}

/* 8. Ensure ribbon stays on top of slicknav dropdown */
.jt-top-ribbon {
    z-index: 1100 !important;
}

/* 9. Mobile contact block injected into slicknav */
.mob-contact-inject {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0 4px;
    margin: 0 20px;
}
.mob-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
    font-family: "Manrope", sans-serif;
}
.mob-contact-row:last-child { border-bottom: none; }
.mob-contact-row:hover { color: #fff !important; }
.mob-contact-row i { font-size: 14px; color: #F57920; flex-shrink: 0; width: 18px; text-align: center; }
.mob-contact-row.mob-wa { color: #25d366 !important; }
.mob-contact-row.mob-wa i { color: #25d366; }
.mob-contact-row.mob-track {
    color: #F57920 !important;
    font-weight: 700;
    margin-top: 6px;
    background: rgba(245,121,32,0.1);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(245,121,32,0.2);
    border-bottom: 1px solid rgba(245,121,32,0.2) !important;
}
.mob-contact-row.mob-track i { color: #F57920; }

/* ================================================================
   HEADER — always sit below ribbon (initial + sticky states)
   ================================================================ */
/* Initial load: header is position:absolute; top:0 — push it below the 40px ribbon */
header.main-header {
    top: 40px !important;
}
/* Scrolled (sticky-fixed): keep it anchored below ribbon */
header.main-header .header-sticky.active {
    top: 40px !important;
}
header.main-header .header-sticky.hide {
    transform: translateY(calc(-100% - 40px)) !important;
}

/* ================================================================
   HERO — Remove 100svh, use padding-only height
   ================================================================ */

/* Kill the full-viewport min-height entirely */
.hero.bg-section.dark-section {
    min-height: 0 !important;
}
.hero-split-row {
    min-height: 0 !important;
    padding: 120px 0 60px !important;
    gap: 48px !important;
}

/* Headline — slightly smaller so it breathes on 768px screens */
.hero-heading {
    font-size: clamp(2rem, 4vw, 3.6rem) !important;
    margin-bottom: 12px !important;
    line-height: 1.08 !important;
}
.hero-subtext {
    font-size: 0.93rem !important;
    margin-bottom: 20px !important;
}
.hero-cta-row { gap: 12px !important; }

/* Tracking card — tighter */
.hero-track-box     { padding: 18px 18px 14px !important; margin-bottom: 12px !important; }
.hero-track-hint    { margin-top: 8px !important; margin-bottom: 0 !important; }
.about-us-counter-list-prime  { margin-top: 10px !important; }
.about-us-counter-item-prime  { padding: 13px 8px !important; }

@media (max-width: 991px) {
    .hero-split-row { padding: 45px 0 25px !important; gap: 30px !important; }
    header.main-header .header-sticky.active { top: 40px !important; }
    /* Hide video on tablet/mobile — external CDN fails and shows broken placeholder */
    .hero-bg-video { display: none !important; }
    .hero.bg-section.dark-section { background: linear-gradient(135deg, #0D1828 0%, #1C2B4A 60%, #0D1828 100%) !important; }
}
@media (max-width: 767px) {
    .hero-split-row { padding: 22px 0 20px !important; }
    /* Ribbon scrolled away — sticky header snaps flush to viewport top (initial top:40px from base is fine) */
    header.main-header .header-sticky.active { top: 0 !important; }
    header.main-header .header-sticky.hide { transform: translateY(-100%) !important; }
}
@media (max-width: 480px) {
    .hero-split-row { padding: 16px 0 18px !important; }
}

/* ================================================================
   1. MARQUEE / TICKER BAR
   ================================================================ */
.jt-ticker {
    background: #F5F7FB;
    border-top: 1px solid #e4e9f2;
    border-bottom: 1px solid #e4e9f2;
    padding: 13px 0;
    overflow: hidden;
}
.jt-ticker-wrapper {
    display: flex;
    width: max-content;
    animation: jtTicker 40s linear infinite;
    gap: 0;
}
.jt-ticker:hover .jt-ticker-wrapper {
    animation-play-state: paused;
}
@keyframes jtTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.jt-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #1C2B4A;
    opacity: 0.55;
    transition: opacity 0.2s;
    font-family: "Manrope", sans-serif;
}
.jt-ticker-item:hover { opacity: 1; }
.jt-ticker-item i {
    font-size: 11px;
    color: #F57920;
}
.jt-ticker-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #F57920;
    margin: 0 4px;
    vertical-align: middle;
    opacity: 0.5;
}

/* ================================================================
   2. HOW IT WORKS — 4-Step Process
   ================================================================ */
.jt-process {
    background: #fff;
    padding: 80px 0;
}
.jt-process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.jt-process-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F57920;
    background: rgba(245,121,32,0.08);
    border: 1px solid rgba(245,121,32,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 16px;
}
.jt-process-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #F57920;
    box-shadow: 0 0 6px rgba(245,121,32,0.7);
    animation: prBadgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.jt-process-header h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #1C2B4A;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}
.jt-process-header p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.jt-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.jt-process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: linear-gradient(to right, #F57920, rgba(28,43,74,0.3), #F57920);
    z-index: 0;
}
.jt-process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.jt-step-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #e4e9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(28,43,74,0.07);
}
.jt-step-circle i {
    font-size: 26px;
    color: #1C2B4A;
    transition: color 0.3s;
}
.jt-process-step:hover .jt-step-circle {
    border-color: #F57920;
    background: #F57920;
    box-shadow: 0 8px 30px rgba(245,121,32,0.25);
    transform: translateY(-4px);
}
.jt-process-step:hover .jt-step-circle i {
    color: #fff;
}
.jt-step-num-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F57920;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-family: "Bricolage Grotesque", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(245,121,32,0.4);
}
.jt-step-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1C2B4A;
    margin-bottom: 8px;
    font-family: "Bricolage Grotesque", sans-serif;
}
.jt-step-body p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .jt-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .jt-process-grid::before { display: none; }
}
@media (max-width: 575px) {
    .jt-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================================================================
   3. SERVICE COVERAGE SECTION
   ================================================================ */
.jt-coverage-section {
    background: #F5F7FB;
    padding: 72px 0 64px;
    border-top: 1px solid #e8ecf2;
}

/* Heading */
.jt-coverage-head {
    text-align: center;
    margin-bottom: 32px;
}
.jt-coverage-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #F57920;
    margin-bottom: 14px;
}
.jt-coverage-eyebrow i { font-size: 0.9rem; }
.jt-coverage-head h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0D1828;
    line-height: 1.25;
    margin-bottom: 12px;
}
.jt-coverage-head h2 span { color: #F57920; }
.jt-coverage-head p {
    color: #5a6270;
    font-size: 0.97rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* UT city pills row */
.jt-ut-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.jt-ut-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    padding: 7px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.jt-ut-pill i { font-size: 0.75rem; color: #9ca3af; }
/* Hub pill — orange highlight */
.jt-ut-pill--hub {
    background: #F57920;
    color: #fff;
    border-color: #F57920;
    box-shadow: 0 4px 12px rgba(245,121,32,0.3);
}
.jt-ut-pill--hub i { color: rgba(255,255,255,0.85); }
.jt-ut-pill--hub small {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

/* 3 coverage cards grid */
.jt-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.jt-cov-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    border: 1px solid #e8ecf2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}
.jt-cov-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.jt-cov-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.jt-cov-card--local .jt-cov-icon   { background: rgba(22,163,74,0.1);  color: #16a34a; }
.jt-cov-card--india .jt-cov-icon   { background: rgba(245,121,32,0.1); color: #F57920; }
.jt-cov-card--ptl   .jt-cov-icon   { background: rgba(99,102,241,0.1); color: #6366f1; }
/* top accent line */
.jt-cov-card--local { border-top: 3px solid #16a34a; }
.jt-cov-card--india { border-top: 3px solid #F57920; }
.jt-cov-card--ptl   { border-top: 3px solid #6366f1; }

.jt-cov-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0D1828;
    margin-bottom: 10px;
}
.jt-cov-card p {
    font-size: 0.88rem;
    color: #5a6270;
    line-height: 1.65;
    margin-bottom: 16px;
}
.jt-cov-card p strong { color: #0D1828; }

/* vehicle/metro tag chips */
.jt-cov-vehicles,
.jt-cov-metros {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.jt-cov-vehicles span,
.jt-cov-metros span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    border-radius: 100px;
    background: #F5F7FB;
    border: 1px solid #e2e5eb;
    color: #374151;
}

/* Responsive */
@media (max-width: 991px) {
    .jt-coverage-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 575px) {
    .jt-coverage-section { padding: 52px 0 44px; }
    .jt-coverage-head h2 { font-size: 1.6rem; }
}

/* ================================================================
   4. TRANSIT TIMES SECTION  (departure-board tier layout)
   ================================================================ */
.jt-transit-section {
    background: #fff;
    padding: 80px 0 64px;
    position: relative;
    border-top: 4px solid #F57920;
}
.jt-transit-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,121,32,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Top split: heading left + KPI strip right ── */
.jt-transit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}
.jt-transit-heading {
    flex: 0 0 auto;
    max-width: 420px;
}
.jt-transit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #F57920;
    margin-bottom: 14px;
}
/* pulsing hub dot */
.jt-hub-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: #F57920;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245,121,32,0.5);
    animation: hubPulse 2s infinite;
}
@keyframes hubPulse {
    0%   { box-shadow: 0 0 0 0 rgba(245,121,32,0.55); }
    60%  { box-shadow: 0 0 0 9px rgba(245,121,32,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,121,32,0); }
}
.jt-transit-heading h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0D1828;
    margin-bottom: 14px;
}
.jt-transit-heading h2 span { color: #F57920; }
.jt-transit-heading p {
    color: #5a6270;
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0;
}

/* KPI stat strip */
.jt-transit-kpis {
    display: flex;
    align-items: center;
    gap: 0;
    background: #0D1828;
    border-radius: 18px;
    padding: 28px 36px;
    flex-shrink: 0;
}
.jt-transit-kpi {
    text-align: center;
    padding: 0 28px;
}
.jt-transit-kpi strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #F57920;
    line-height: 1;
}
.jt-transit-kpi strong em {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(245,121,32,0.75);
}
.jt-transit-kpi small {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}
.jt-transit-kpi-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── 3 Cards Grid ── */
.jt-transit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: start;
}

/* Individual card */
.jt-tc {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ecf2;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.jt-tc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

/* Coloured top accent */
.jt-tc--green  { border-top: 4px solid #16a34a; }
.jt-tc--orange { border-top: 4px solid #F57920; }
.jt-tc--indigo { border-top: 4px solid #6366f1; }

/* Card header */
.jt-tc-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f2f6;
}
.jt-tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0D1828;
    margin-bottom: 4px;
}
.jt-tc--green  .jt-tc-badge i { color: #16a34a; }
.jt-tc--orange .jt-tc-badge i { color: #F57920; }
.jt-tc--indigo .jt-tc-badge i { color: #6366f1; }

.jt-tc-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* Card body rows */
.jt-tc-body {
    padding: 8px 0;
}
.jt-tc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    border-bottom: 1px solid #f5f7fb;
    transition: background 0.15s;
}
.jt-tc-row:last-child { border-bottom: none; }
.jt-tc-row:hover { background: #fafbfc; }

/* Destination cell */
.jt-tc-dest {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #374151;
}
.jt-tc-dest strong {
    font-weight: 700;
    color: #0D1828;
}

/* Shared origin pill + arrow */
.jt-origin {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: #9ca3af;
    border-radius: 4px;
    padding: 2px 6px;
    flex-shrink: 0;
}
.jt-dir {
    font-size: 0.58rem;
    color: #d1d5db;
    flex-shrink: 0;
}

/* Time cell */
.jt-tc-time {
    font-size: 1.05rem;
    font-weight: 900;
    white-space: nowrap;
    line-height: 1;
}
.jt-tc-time em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 1px;
    opacity: 0.75;
}
.jt-tc--green  .jt-tc-time { color: #16a34a; }
.jt-tc--orange .jt-tc-time { color: #F57920; }
.jt-tc--indigo .jt-tc-time { color: #6366f1; }

/* Footer note */
.jt-transit-footer {
    text-align: center;
    color: #7a8290;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.jt-transit-footer i { color: #F57920; }
.jt-transit-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    background: #F57920;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}
.jt-transit-cta:hover { background: #d4660f; color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .jt-transit-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .jt-transit-kpis {
        width: 100%;
        justify-content: center;
        padding: 22px 24px;
    }
    .jt-transit-cards { grid-template-columns: 1fr 1fr; }
    .jt-tc:last-child { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
    .jt-transit-section { padding: 56px 0 48px; }
    .jt-transit-heading h2 { font-size: 1.75rem; }
    .jt-transit-kpis { padding: 18px 12px; }
    .jt-transit-kpi { padding: 0 14px; }
    .jt-transit-kpi strong { font-size: 1.7rem; }
    .jt-transit-cards { grid-template-columns: 1fr; }
    .jt-tc:last-child { grid-column: auto; }
}

/* ================================================================
   4. OUR CLIENTS / PARTNERS SECTION
   ================================================================ */
.jt-clients {
    background: #F5F7FB;
    padding: 70px 0;
    border-top: 1px solid #e4e9f2;
}
.jt-clients-header {
    text-align: center;
    margin-bottom: 44px;
}
.jt-clients-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F57920;
    background: rgba(245,121,32,0.08);
    border: 1px solid rgba(245,121,32,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 14px;
}
.jt-clients-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #F57920;
    box-shadow: 0 0 6px rgba(245,121,32,0.7);
    animation: prBadgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.jt-clients-header h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: #1C2B4A;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 10px;
}
.jt-clients-header p {
    color: #6b7280;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}
/* Logo Marquee */
.jt-logo-marquee-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
    padding: 4px 0;
}
.jt-logo-marquee-wrap::before,
.jt-logo-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.jt-logo-marquee-wrap::before { left: 0; background: linear-gradient(to right, #F5F7FB 0%, transparent 100%); }
.jt-logo-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #F5F7FB 0%, transparent 100%); }
.jt-logo-marquee {
    display: flex;
    width: max-content;
    animation: jt-logo-scroll 32s linear infinite;
}
.jt-logo-marquee:hover { animation-play-state: paused; }
.jt-logo-track {
    display: flex;
    align-items: center;
    gap: 52px;
    padding: 0 26px;
}
.jt-logo-item {
    flex-shrink: 0;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #e8ecf4;
    border-radius: 10px;
    padding: 10px 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.jt-logo-item:hover {
    border-color: rgba(245,121,32,0.35);
    box-shadow: 0 4px 16px rgba(245,121,32,0.1);
}
.jt-logo-item img {
    max-height: 44px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.3s ease;
}
.jt-logo-item:hover img { filter: grayscale(0) opacity(1); }
@keyframes jt-logo-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.jt-clients-note {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #e4e9f2;
}
.jt-clients-note i { color: #F57920; }

/* ================================================================
   4. WHY CHOOSE US STRIP
   ================================================================ */
.jt-why-strip {
    background: linear-gradient(135deg, #1C2B4A 0%, #0D1A2E 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.jt-why-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 5%, #F57920 50%, transparent 95%);
}
.jt-why-strip::after {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,121,32,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.jt-why-header {
    text-align: center;
    margin-bottom: 48px;
}
.jt-why-header h2 {
    color: #fff !important;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.jt-why-header p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}
.jt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.jt-why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
}
.jt-why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245,121,32,0.35);
    transform: translateY(-4px);
}
.jt-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245,121,32,0.12);
    border: 1px solid rgba(245,121,32,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: #F57920;
    transition: all 0.3s;
}
.jt-why-card:hover .jt-why-icon {
    background: #F57920;
    color: #fff;
    box-shadow: 0 8px 24px rgba(245,121,32,0.35);
}
.jt-why-card h4 {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Bricolage Grotesque", sans-serif;
}
.jt-why-card p {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .jt-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .jt-why-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   5. REDESIGNED FOOTER
   ================================================================ */

/* Pre-footer CTA */
.jt-prefooter {
    background: linear-gradient(135deg, #1C2B4A 0%, #0D1A2E 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #F57920;
}
.jt-prefooter::before {
    content: '';
    position: absolute;
    left: -80px; bottom: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,121,32,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.jt-prefooter::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,121,32,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.jt-prefooter-inner { position: relative; z-index: 1; }
.jt-prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.jt-prefooter-text .jt-pf-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F57920;
    display: block;
    margin-bottom: 10px;
}
.jt-prefooter-text h2 {
    color: #fff !important;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.jt-prefooter-text p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin: 0;
    max-width: 540px;
    line-height: 1.6;
}
.jt-prefooter-btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.jt-pf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F57920;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
    box-shadow: 0 6px 20px rgba(245,121,32,0.3);
}
.jt-pf-btn-primary:hover {
    background: #e06a10;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,121,32,0.4);
}
.jt-pf-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: "Manrope", sans-serif;
}
.jt-pf-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-2px);
}

/* Main footer */
.jt-footer {
    background: #0A1628;
}

/* Contact bar */
.jt-footer-cbar {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.jt-cbar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}
.jt-cbar-item:hover { background: rgba(255,255,255,0.04); }
.jt-cbar-item:last-child { border-right: none; }
.jt-cbar-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(245,121,32,0.12);
    border: 1px solid rgba(245,121,32,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #F57920;
    flex-shrink: 0;
}
.jt-cbar-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}
.jt-cbar-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-family: "Manrope", sans-serif;
}
.jt-cbar-value a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.jt-cbar-value a:hover { color: #F57920; }

/* Footer body */
.jt-footer-body {
    padding: 56px 0 40px;
}

/* Brand column */
.jt-footer-logo {
    display: inline-block;
    background: #fff;
    border-radius: 14px;
    padding: 10px 18px;
    margin-bottom: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.jt-footer-logo img {
    display: block;
    height: 44px;
    width: auto;
}
.jt-footer-brand .jt-footer-desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
    margin: 20px 0 22px;
}
.jt-footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.jt-ftrust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    padding: 5px 12px;
    transition: all 0.2s;
}
.jt-ftrust-pill i { color: #F57920; font-size: 12px; }
.jt-ftrust-pill:hover {
    border-color: rgba(245,121,32,0.3);
    color: #fff;
}
.jt-footer-socials {
    display: flex;
    gap: 8px;
}
.jt-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.22s ease;
}
.jt-social-icon:hover {
    background: #F57920;
    border-color: #F57920;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245,121,32,0.3);
}

/* Footer link columns */
.jt-footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    font-family: "Manrope", sans-serif;
}
.jt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.jt-footer-links li {
    margin-bottom: 11px;
}
.jt-footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.2s;
    position: relative;
    padding-left: 0;
}
.jt-footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #F57920;
    margin-right: 0;
    transition: width 0.2s ease, margin-right 0.2s ease;
    vertical-align: middle;
    flex-shrink: 0;
}
.jt-footer-links a:hover {
    color: #F57920;
    padding-left: 14px;
}
.jt-footer-links a:hover::before {
    width: 8px;
    margin-right: 6px;
    position: absolute;
    left: 0;
}

/* Contact column */
.jt-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.jt-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.jt-footer-contact-list li:last-child { margin-bottom: 0; }
.jt-footer-contact-list li i {
    color: #F57920;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}
.jt-footer-contact-list li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.jt-footer-contact-list li a:hover { color: #F57920; }

.jt-footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
    font-family: "Manrope", sans-serif;
    margin-top: 4px;
}
.jt-footer-whatsapp-btn:hover {
    background: #1fb85a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}

/* Footer bottom */
.jt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.jt-footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.jt-footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.jt-footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.jt-footer-bottom-links {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.jt-footer-bottom-links li:not(:last-child)::after {
    content: '·';
    margin: 0 10px;
    color: rgba(255,255,255,0.35);
}
.jt-footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: color 0.2s;
}
.jt-footer-bottom-links a:hover { color: #F57920; }
.jt-footer-gst {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 0;
}
.jt-reg-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.25);
}
.jt-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.60);
    line-height: 1.6;
    margin: 0;
}
.jt-footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    margin: 0;
}
.jt-footer-credit a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.jt-footer-credit a:hover { color: #F57920; }

/* ── Footer responsive ── */
@media (max-width: 1199px) {
    .jt-prefooter-inner { flex-direction: column; text-align: center; gap: 28px; }
    .jt-prefooter-btns  { justify-content: center; }
    .jt-prefooter-text p { max-width: 100%; }
}
@media (max-width: 991px) {
    .jt-prefooter { padding: 44px 0; }
    .jt-cbar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 18px 20px; }
    .jt-cbar-item:last-child { border-bottom: none; }
    .jt-footer-body { padding: 44px 0 32px; }
    .jt-footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
    .jt-footer-bottom-left,
    .jt-footer-bottom-right { align-items: center; }
    .jt-footer-bottom-links { justify-content: center; }
    .jt-footer-gst { justify-content: center; }
    .jt-social-icon { width: 40px; height: 40px; }
}
@media (max-width: 767px) {
    .jt-prefooter { padding: 36px 0; }
    .jt-footer-body { padding: 36px 0 28px; }
    .jt-footer-col { margin-bottom: 28px; }
}
@media (max-width: 575px) {
    .jt-prefooter { padding: 32px 0; }
    .jt-pf-btn-primary,
    .jt-pf-btn-ghost { width: 100%; justify-content: center; }
    .jt-footer-body { padding: 32px 0 24px; }
    .jt-social-icon { width: 44px; height: 44px; font-size: 15px; }
    .jt-footer-bottom { padding: 18px 0; }
}

/* ================================================================
   6. SECTION SPACING FIXES
   ================================================================ */
.pr-services-section { padding: 72px 0; }
.pr-trust-bar-section { padding: 72px 0; }
.our-business-elite  { padding: 72px 0; }
.our-faqs-prime      { padding: 72px 0 !important; }
.our-blog            { padding: 72px 0 !important; }
.section-row         { margin-bottom: 36px; }
.section-title       { margin-bottom: 0; }
.section-title h2    { margin-bottom: 0; }

/* ================================================================
   8. ABOUT US — Full Redesign (Two-Column)
   ================================================================ */

/* ── Section wrapper ── */
.jt-about-v2 {
    background: #fff;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}

/* Subtle dot-grid — left half only */
.jt-about-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 50%; bottom: 0;
    background-image: radial-gradient(circle, rgba(28,43,74,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* ── Top split row: headline left, intro right ── */
.jt-av2-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

/* Left: big headline */
.jt-av2-left { position: relative; }

.jt-av2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F57920;
    background: rgba(245,121,32,0.08);
    border: 1px solid rgba(245,121,32,0.22);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.jt-av2-eyebrow i { font-size: 12px; }

.jt-av2-heading {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
    font-weight: 800 !important;
    color: #1C2B4A !important;
    letter-spacing: -0.04em !important;
    line-height: 1.06 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}
.jt-av2-heading em {
    font-style: normal;
    color: #F57920;
}

/* Big decorative "1990" watermark */
.jt-av2-year-deco {
    position: absolute;
    bottom: -28px;
    left: -8px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 9rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(28,43,74,0.07);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Right: intro, CTAs, trust pills */
.jt-av2-right { padding-top: 14px; }

.jt-av2-right > p {
    font-size: 15px !important;
    color: #6b7280 !important;
    line-height: 1.75 !important;
    margin-bottom: 28px !important;
}

.jt-av2-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.jt-av2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F57920, #e06a10);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(245,121,32,0.3);
    font-family: "Manrope", sans-serif;
}
.jt-av2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,121,32,0.4);
    color: #fff;
}

.jt-av2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1C2B4A;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid #dde3ef;
    transition: all 0.25s ease;
    font-family: "Manrope", sans-serif;
}
.jt-av2-btn-ghost:hover {
    border-color: #1C2B4A;
    background: #1C2B4A;
    color: #fff;
    transform: translateY(-2px);
}

.jt-av2-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.jt-av2-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1C2B4A;
    background: #F5F7FB;
    border: 1px solid #e8edf5;
    border-radius: 100px;
    padding: 5px 13px;
}
.jt-av2-trust-pill i { color: #F57920; font-size: 11px; }

/* ── 4-column Feature Cards ── */
.jt-av2-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.jt-av2-card {
    background: #F5F7FB;
    border: 1.5px solid #eaeff7;
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.jt-av2-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F57920, #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.jt-av2-card:hover {
    background: #fff;
    border-color: rgba(245,121,32,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(28,43,74,0.1);
}
.jt-av2-card:hover::after { transform: scaleX(1); }

.jt-av2-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #1C2B4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #F57920;
    margin-bottom: 18px;
    transition: background 0.25s, transform 0.3s;
}
.jt-av2-card:hover .jt-av2-card-icon {
    background: #F57920;
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}

.jt-av2-card h4 {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1C2B4A !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
}
.jt-av2-card p {
    font-size: 13px !important;
    color: #9ca3af !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ── Stats Bar — dark navy full-bleed ── */
.jt-av2-stats {
    background: #1C2B4A;
    margin-top: 56px;
}
.jt-av2-stats-inner {
    display: flex;
    align-items: center;
    padding: 36px 0;
}
.jt-av2-stat {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}
.jt-av2-stat strong {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F57920;
    line-height: 1;
    margin-bottom: 6px;
}
.jt-av2-stat strong .counter {
    font-size: 2rem;
    font-weight: 800;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #F57920;
}
.jt-av2-stat span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.jt-av2-stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .jt-av2-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .jt-av2-top { grid-template-columns: 1fr; gap: 32px; }
    .jt-av2-year-deco { font-size: 6rem; }
    .jt-av2-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .jt-about-v2 { padding-top: 60px; }
    .jt-av2-stats-inner { flex-wrap: wrap; padding: 20px 0; }
    .jt-av2-stat { width: 50%; flex: none; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .jt-av2-stat-sep { display: none; }
    .jt-av2-stat strong { font-size: 1.6rem; }
}
@media (max-width: 575px) {
    .jt-av2-cards { grid-template-columns: 1fr; }
    .jt-av2-actions { flex-direction: column; align-items: flex-start; }
    .jt-av2-heading { font-size: 2.4rem !important; }
    .jt-av2-year-deco { display: none; }
}


/* ================================================================
   NETWORK PAGE — jt-net-*
   ================================================================ */

/* ── Shared helpers ── */
.jt-net-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F57920;
    background: rgba(245,121,32,0.09);
    border: 1px solid rgba(245,121,32,0.22);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.jt-net-eyebrow.light {
    color: #F57920;
    background: rgba(245,121,32,0.12);
    border-color: rgba(245,121,32,0.3);
}
.jt-net-eyebrow i { font-size: 12px; }

.jt-net-sec-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.jt-net-sec-header h2 {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
    font-weight: 800 !important;
    color: #1C2B4A !important;
    letter-spacing: -0.035em !important;
    line-height: 1.12 !important;
    margin-bottom: 14px !important;
}
.jt-net-sec-header p {
    font-size: 14.5px !important;
    color: #6b7280 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* dark-bg variant */
.jt-net-routes .jt-net-sec-header h2,
.jt-net-states .jt-net-sec-header h2 {
    color: #fff !important;
}
.jt-net-routes .jt-net-sec-header p,
.jt-net-states .jt-net-sec-header p {
    color: rgba(255,255,255,0.6) !important;
}

/* ── Hero variant ── */
.jt-network-hero {
    background: linear-gradient(135deg, #0D1828 0%, #1C2B4A 100%) !important;
}

/* ── Stats Strip ── */
.jt-net-stats-strip {
    background: #fff;
    border-bottom: 1px solid #eaeff7;
    padding: 0;
    box-shadow: 0 4px 24px rgba(28,43,74,0.06);
}
.jt-net-stats-row {
    display: flex;
    align-items: center;
    padding: 28px 0;
}
.jt-net-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
}
.jt-net-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(28,43,74,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #F57920;
    flex-shrink: 0;
}
.jt-net-stat-body strong {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #1C2B4A;
    line-height: 1;
    margin-bottom: 3px;
}
.jt-net-stat-body strong .counter {
    font-size: 1.65rem;
    font-weight: 800;
    font-family: "Bricolage Grotesque", sans-serif;
    color: #1C2B4A;
}
.jt-net-stat-body span {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.jt-net-stat-sep {
    width: 1px;
    height: 40px;
    background: #eaeff7;
    flex-shrink: 0;
}

/* ── Network Overview ── */
.jt-net-overview {
    padding: 80px 0;
    background: #fff;
}
.jt-net-overview h2 {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    font-weight: 800 !important;
    color: #1C2B4A !important;
    letter-spacing: -0.035em !important;
    line-height: 1.14 !important;
    margin-bottom: 16px !important;
}
.jt-net-overview > .container > .row > div > p {
    font-size: 14.5px !important;
    color: #6b7280 !important;
    line-height: 1.72 !important;
    margin-bottom: 14px !important;
}
.jt-net-ov-feats {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px;
}
.jt-net-ov-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: #374151;
    line-height: 1.5;
}
.jt-net-ov-feat i {
    color: #F57920;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.jt-net-ov-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.jt-net-ov-card {
    background: #F5F7FB;
    border: 1.5px solid #eaeff7;
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.jt-net-ov-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F57920, #ffb347);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.jt-net-ov-card:hover {
    background: #fff;
    border-color: rgba(245,121,32,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(28,43,74,0.09);
}
.jt-net-ov-card:hover::after { transform: scaleX(1); }
.jt-net-ov-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #1C2B4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #F57920;
    margin-bottom: 14px;
    transition: background 0.25s;
}
.jt-net-ov-card:hover .jt-net-ov-card-icon { background: #F57920; color: #fff; }
.jt-net-ov-card h4 {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: #1C2B4A !important;
    margin: 0 0 6px !important;
}
.jt-net-ov-card p {
    font-size: 12.5px !important;
    color: #9ca3af !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

/* ── Active Routes ── */
.jt-net-routes {
    background: #1C2B4A;
    padding: 80px 0;
}
.jt-net-routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.jt-net-route-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 14px;
    transition: all 0.25s ease;
    cursor: default;
}
.jt-net-route-card:hover {
    background: rgba(245,121,32,0.12);
    border-color: rgba(245,121,32,0.4);
    transform: translateY(-3px);
}
.jt-net-route-origin {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}
.jt-net-route-origin i { color: #F57920; }
.jt-net-route-arrow {
    font-size: 10px;
    color: #F57920;
    margin-bottom: 4px;
}
.jt-net-route-dest {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}
.jt-net-route-dest small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    font-family: "Manrope", sans-serif;
}
.jt-net-route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.jt-net-route-tags span {
    font-size: 10px;
    font-weight: 700;
    color: #F57920;
    background: rgba(245,121,32,0.12);
    border: 1px solid rgba(245,121,32,0.25);
    border-radius: 4px;
    padding: 2px 7px;
    letter-spacing: 0.04em;
}
/* "All India" special card */
.jt-net-route-all {
    background: rgba(245,121,32,0.1);
    border-color: rgba(245,121,32,0.35);
    grid-column: span 1;
}
.jt-net-route-all .jt-net-route-dest { color: #F57920; }

/* ── Office Cards ── */
.jt-net-offices {
    padding: 80px 0;
    background: #F5F7FB;
}
.jt-net-offices-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}
.jt-net-office-card {
    background: #fff;
    border: 1.5px solid #eaeff7;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.28s ease;
}
.jt-net-office-card:hover {
    border-color: rgba(245,121,32,0.3);
    box-shadow: 0 16px 48px rgba(28,43,74,0.1);
}
.jt-net-office-type {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F57920;
    background: rgba(245,121,32,0.1);
    border: 1px solid rgba(245,121,32,0.22);
    border-radius: 100px;
    padding: 3px 10px;
}
.jt-net-office-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #1C2B4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #F57920;
    margin-bottom: 18px;
}
.jt-net-office-card h3 {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #1C2B4A !important;
    margin: 0 0 14px !important;
}
.jt-net-office-addr {
    font-size: 13.5px !important;
    color: #6b7280 !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}
.jt-net-office-addr i { color: #F57920; margin-right: 6px; }
.jt-net-office-contacts {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}
.jt-net-office-contacts a {
    font-size: 13px;
    font-weight: 600;
    color: #1C2B4A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.jt-net-office-contacts a i { color: #F57920; width: 14px; }
.jt-net-office-contacts a:hover { color: #F57920; }
.jt-net-office-hours {
    font-size: 12.5px;
    color: #9ca3af;
    margin-bottom: 20px;
}
.jt-net-office-hours i { color: #F57920; margin-right: 6px; }
.jt-net-office-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.22s ease;
    font-family: "Manrope", sans-serif;
}
.jt-net-office-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ── Fleet Grid ── */
.jt-net-fleet {
    padding: 80px 0;
    background: #fff;
}
.jt-net-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.jt-net-fleet-card {
    background: #F5F7FB;
    border: 1.5px solid #eaeff7;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.jt-net-fleet-card:hover {
    background: #fff;
    border-color: rgba(245,121,32,0.28);
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(28,43,74,0.09);
}
.jt-net-fleet-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #1C2B4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #F57920;
    margin-bottom: 16px;
    transition: background 0.25s, transform 0.28s;
}
.jt-net-fleet-card:hover .jt-net-fleet-icon {
    background: #F57920;
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}
.jt-net-fleet-card h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1C2B4A !important;
    margin: 0 0 8px !important;
}
.jt-net-fleet-card p {
    font-size: 13px !important;
    color: #9ca3af !important;
    line-height: 1.6 !important;
    margin: 0 0 14px !important;
}
.jt-net-fleet-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #F57920;
    background: rgba(245,121,32,0.1);
    border: 1px solid rgba(245,121,32,0.22);
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

/* ── States Coverage ── */
.jt-net-states {
    background: #0D1828;
    padding: 80px 0 60px;
}
.jt-net-states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}
.jt-net-state-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 7px 16px;
    transition: all 0.22s ease;
    cursor: default;
}
.jt-net-state-pill:hover {
    background: rgba(245,121,32,0.15);
    border-color: rgba(245,121,32,0.4);
    color: #fff;
}
.jt-net-state-pill i { color: #F57920; font-size: 11px; }
.jt-net-state-ut {
    background: rgba(245,121,32,0.08);
    border-color: rgba(245,121,32,0.2);
}
.jt-net-states-note {
    text-align: center;
    font-size: 13px !important;
    color: rgba(255,255,255,0.4) !important;
    margin-top: 10px !important;
}
.jt-net-states-note i { color: rgba(255,255,255,0.4); margin-right: 5px; }

/* ── CTA Section ── */
.jt-net-cta {
    padding: 60px 0;
    background: #F5F7FB;
    border-top: 1px solid #eaeff7;
}
.jt-net-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.jt-net-cta-left h2 {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem) !important;
    font-weight: 800 !important;
    color: #1C2B4A !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.03em !important;
}
.jt-net-cta-left p {
    font-size: 14px !important;
    color: #6b7280 !important;
    margin: 0 !important;
    max-width: 480px;
}
.jt-net-cta-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.jt-net-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F57920, #e06a10);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(245,121,32,0.3);
    font-family: "Manrope", sans-serif;
}
.jt-net-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,121,32,0.4); color: #fff; }
.jt-net-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1C2B4A;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid #dde3ef;
    transition: all 0.25s ease;
    font-family: "Manrope", sans-serif;
}
.jt-net-cta-ghost:hover { border-color: #1C2B4A; background: #1C2B4A; color: #fff; }
.jt-net-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: "Manrope", sans-serif;
}
.jt-net-cta-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

/* ── Network Page Responsive ── */
@media (max-width: 1199px) {
    .jt-net-routes-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .jt-net-stats-row { flex-wrap: wrap; gap: 0; }
    .jt-net-stat-item { width: 50%; flex: none; padding: 16px 14px; border-bottom: 1px solid #eaeff7; }
    .jt-net-stat-sep { display: none; }
    .jt-net-routes-grid { grid-template-columns: repeat(3, 1fr); }
    .jt-net-ov-cards { grid-template-columns: 1fr 1fr; }
    .jt-net-offices-row { grid-template-columns: 1fr; max-width: 560px; }
    .jt-net-fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .jt-net-cta-inner { flex-direction: column; text-align: center; }
    .jt-net-cta-left p { max-width: 100%; }
}
@media (max-width: 767px) {
    .jt-net-routes-grid { grid-template-columns: repeat(2, 1fr); }
    .jt-net-fleet-grid { grid-template-columns: 1fr 1fr; }
    .jt-net-overview { padding: 56px 0; }
    .jt-net-routes, .jt-net-offices, .jt-net-fleet, .jt-net-states { padding: 56px 0; }
}
@media (max-width: 575px) {
    .jt-net-stat-item { width: 100%; flex: none; }
    .jt-net-routes-grid { grid-template-columns: 1fr 1fr; }
    .jt-net-ov-cards { grid-template-columns: 1fr; }
    .jt-net-fleet-grid { grid-template-columns: 1fr; }
    .jt-net-cta-right { flex-direction: column; width: 100%; }
    .jt-net-cta-primary, .jt-net-cta-ghost, .jt-net-cta-wa { width: 100%; justify-content: center; }
    .jt-net-offices-row { grid-template-columns: 1fr; }
}

/* ── Route Region Tabs ── */
.jt-net-rtabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}
.jt-net-rtab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.02em;
}
.jt-net-rtab:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.45);
}
.jt-net-rtab.active {
    color: #fff;
    background: #F57920;
    border-color: #F57920;
}
.jt-net-rtab i { font-size: 12px; }

/* ── Redesigned Route Cards ── */
.jt-net-route-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.jt-net-route-eta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.02em;
}
.jt-net-route-eta i { font-size: 12px; }
.jt-net-route-card:hover .jt-net-route-eta {
    color: #F57920;
    background: rgba(245,121,32,0.15);
    border-color: rgba(245,121,32,0.3);
}
.jt-net-route-state {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.jt-net-route-state i { color: rgba(245,121,32,0.7); font-size: 12px; }
.jt-net-routes-note {
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
    margin-top: 28px;
}
.jt-net-routes-note i { color: rgba(245,121,32,0.6); margin-right: 5px; }
.jt-net-routes-note a { color: rgba(245,121,32,0.7); text-decoration: underline; }

/* ── Regional States Grid ── */
.jt-net-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.jt-net-region {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 20px;
    transition: border-color 0.25s ease;
}
.jt-net-region:hover { border-color: rgba(245,121,32,0.3); }
.jt-net-region-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F57920;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.jt-net-region-label i { font-size: 13px; }
.jt-net-region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.jt-net-region-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.3;
}
.jt-net-region-list li i { color: #F57920; font-size: 10px; flex-shrink: 0; }
.ut-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: #F57920;
    background: rgba(245,121,32,0.12);
    border: 1px solid rgba(245,121,32,0.25);
    border-radius: 3px;
    padding: 1px 5px;
    letter-spacing: 0.06em;
    margin-left: 2px;
    vertical-align: middle;
    font-family: "Manrope", sans-serif;
}
@media (max-width: 991px) {
    .jt-net-regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .jt-net-regions-grid { grid-template-columns: 1fr; }
    .jt-net-rtabs { gap: 7px; }
    .jt-net-rtab { font-size: 11.5px; padding: 7px 14px; }
}

/* ── FAQ Section ── */
.jt-net-faq {
    padding: 80px 0;
    background: #fff;
}
.jt-net-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid #eaeff7;
    border-radius: 16px;
    overflow: hidden;
}
.jt-net-faq-item {
    border-bottom: 1px solid #eaeff7;
}
.jt-net-faq-item:last-child { border-bottom: none; }
.jt-net-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1C2B4A;
    transition: background 0.2s ease;
    line-height: 1.4;
}
.jt-net-faq-q:hover { background: #F5F7FB; }
.jt-net-faq-q[aria-expanded="true"] { color: #F57920; background: rgba(245,121,32,0.04); }
.jt-faq-icon {
    font-size: 12px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
}
.jt-net-faq-q[aria-expanded="true"] .jt-faq-icon {
    transform: rotate(180deg);
    color: #F57920;
}
.jt-net-faq-a {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid #eaeff7;
}
.jt-net-faq-a.open { display: block; }
.jt-net-faq-a p {
    font-size: 14px !important;
    color: #6b7280 !important;
    line-height: 1.72 !important;
    margin: 16px 0 0 !important;
}
.jt-net-faq-a a { color: #F57920; text-decoration: underline; }

/* Route card links */
a.jt-net-route-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.jt-net-route-card-link:hover {
    text-decoration: none;
    color: inherit;
}
.jt-net-route-view {
    font-size: 11px;
    color: #F57920;
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
a.jt-net-route-card-link:hover .jt-net-route-view {
    opacity: 1;
}

@media (max-width: 767px) {
    .jt-net-faq { padding: 56px 0; }
    .jt-net-faq-q { font-size: 14px; padding: 16px 18px; }
    .jt-net-faq-a { padding: 0 18px 16px; }
}
