﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&family=Public+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand-dark: #0b1320;
    --brand-blue: #1f3a6b;
    --brand-accent: #f97316;
    --brand-surface: #f3f6fb;
    --brand-text: #0f172a;
    --site-header-h: 76px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Public Sans', sans-serif;
    color: var(--brand-text);
    padding-top: var(--site-header-h);
    background: radial-gradient(circle at top right, rgba(31, 58, 107, 0.06), transparent 40%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08), transparent 35%),
        #ffffff;
}

html {
    scroll-padding-top: var(--site-header-h);
}

header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Manrope', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

svg,
video,
canvas,
embed,
object {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    display: block;
}

.grid,
.flex {
    min-width: 0;
}

.grid > *,
.flex > * {
    min-width: 0;
    max-width: 100%;
}

.site-bg {
    background-color: #f8fafc;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    color: #334155;
    transition: color 0.2s ease;
}

.nav-link i,
.mobile-menu a i {
    color: inherit;
    font-size: 0.72rem;
    line-height: 1;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0.46rem;
    border: 1px solid #d8e2ef;
    background: linear-gradient(145deg, #ffffff, #eff4fb);
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-link:hover i,
.nav-link-active i {
    color: #ffffff;
    border-color: #ea580c;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.35);
    transform: translateY(-1px);
}

.nav-link:hover {
    color: var(--brand-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link-active::after {
    transform: scaleX(1);
}


.site-header-inner > nav[aria-label="Primary navigation"],
.site-header-inner > nav[aria-label="Mobile icon navigation"] {
    display: none !important;
}
.mobile-icon-strip {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
}

.mobile-inline-nav {
    display: none !important;
}

.mobile-icon-link {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.58rem;
    border: 1px solid #d8e2ef;
    background: linear-gradient(145deg, #ffffff, #eff4fb);
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    transition: all 0.2s ease;
}

.mobile-icon-link i {
    font-size: 0.72rem;
    line-height: 1;
}

.pwa-install-btn {
    border-color: #bfdbfe;
}

.pwa-install-btn:hover {
    border-color: #93c5fd;
}

.mobile-icon-link:hover {
    color: var(--brand-accent);
    border-color: #fdba74;
    transform: translateY(-1px);
}

.mobile-icon-link-active {
    color: #ffffff;
    border-color: #ea580c;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.32);
}

.right-side-actions {
    position: fixed;
    right: max(14px, calc((100vw - min(100vw, 80rem)) / 2 + 14px));
    top: max(6px, calc((var(--site-header-h) - 2rem) / 2 + env(safe-area-inset-top)));
    z-index: 10030;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.right-side-actions-head {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.site-ist-time-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.12rem;
    min-width: 13.8rem;
    padding: 0.52rem 0.92rem;
    border-radius: 1rem;
    border: 1px solid rgba(191, 219, 254, 0.88);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(236, 254, 255, 0.97));
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.site-ist-time-label {
    color: #1497a3;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-ist-time-value {
    color: #18354d;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.mobile-ist-strip-wrap {
    display: none;
}

.mobile-ist-strip {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
    width: 100%;
    padding: 0.58rem 0.78rem;
    border-radius: 0.92rem;
    border: 1px solid rgba(191, 219, 254, 0.88);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(236, 254, 255, 0.97));
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mobile-ist-label {
    color: #1497a3;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-ist-value {
    color: #18354d;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: normal;
}

.right-side-contact-shortcuts {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.right-side-notice-btn {
    position: relative;
    width: 2.56rem;
    height: 2.56rem;
    border-radius: 0.78rem;
    border: 1px solid #d7e3ef;
    background: linear-gradient(145deg, #ffffff, #eff4fb);
    color: #1f3a6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.right-side-notice-btn:hover {
    transform: translateY(-1px);
    border-color: #fdba74;
    color: #ea580c;
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.18);
}

.right-side-notice-btn i {
    font-size: 0.96rem;
    line-height: 1;
}

.right-side-notice-btn.has-unread {
    border-color: #fb923c;
    color: #ea580c;
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.24);
    animation: dashboard-notice-pulse 1.15s ease-in-out infinite;
}

.dashboard-notice-count {
    position: absolute;
    top: -0.34rem;
    right: -0.26rem;
    min-width: 1.16rem;
    height: 1.16rem;
    padding: 0 0.26rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.dashboard-notice-live-banner {
    margin-top: 0.42rem;
    max-width: 14.5rem;
    padding: 0.44rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: linear-gradient(145deg, #fb923c, #ea580c);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: right;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
    animation: dashboard-notice-blink 1.1s ease-in-out infinite;
}

.right-side-contact-btn {
    width: 2.24rem;
    height: 2.24rem;
    border-radius: 0.76rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 9px 18px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.right-side-contact-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.24);
}

.right-side-contact-btn i {
    font-size: 0.94rem;
    line-height: 1;
}

.right-side-call-shortcut {
    background: linear-gradient(145deg, #264574, #182948);
}

.right-side-whatsapp-shortcut {
    background: linear-gradient(145deg, #22c55e, #169c46);
    box-shadow: 0 9px 18px rgba(22, 163, 74, 0.28);
}

.right-side-install-shortcut {
    background: linear-gradient(145deg, #38bdf8, #0284c7);
    box-shadow: 0 9px 18px rgba(2, 132, 199, 0.26);
}

.right-side-login-btn {
    position: relative;
    width: 5.9rem;
    height: 2.56rem;
    border-radius: 0.84rem;
    border: 1px solid rgba(20, 151, 163, 0.55);
    background: linear-gradient(135deg, #18354d, #1497a3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.36rem;
    padding: 0 0.7rem;
    box-shadow: 0 12px 22px rgba(20, 151, 163, 0.24);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    appearance: none;
}

.right-side-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(20, 151, 163, 0.32);
    filter: brightness(1.04);
}

.right-side-login-btn::before {
    content: none;
}

.right-side-login-btn::after {
    content: none;
}

.right-side-login-text {
    position: relative;
    z-index: 1;
    font-family: 'Manrope', 'Arial Black', sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    color: #f8fbff;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(12, 35, 53, 0.55);
}

.right-side-login-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.right-side-logout-btn {
    border-color: #f97316;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 9px 18px rgba(249, 115, 22, 0.34);
}

.right-side-toggle-btn {
    width: 2.56rem;
    height: 2.56rem;
    border-radius: 0.78rem;
    border: 1px solid #ea580c;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.34);
    transition: all 0.2s ease;
}

.right-side-toggle-btn:hover {
    transform: translateY(-1px);
}

.right-side-toggle-btn i {
    font-size: 1rem;
    line-height: 1;
}

.right-side-actions-panel {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    overflow: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    padding: 0;
    border-radius: 0.86rem;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease, margin-top 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.right-side-actions.is-open .right-side-actions-panel {
    margin-top: 0.44rem;
    max-height: min(36rem, calc(100vh - var(--site-header-h, 4rem) - 1rem));
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.44rem;
    border-color: #dbe6f4;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.right-side-action-btn {
    min-width: 9.8rem;
    height: 2.42rem;
    border-radius: 0.72rem;
    border: 1px solid #d8e2ef;
    background: linear-gradient(145deg, #ffffff, #eff4fb);
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.56rem;
    padding: 0 0.76rem;
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    appearance: none;
}

.right-side-action-badge {
    margin-left: auto;
    min-width: 1.24rem;
    height: 1.24rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #ea580c;
    color: #ffffff;
    font-size: 0.66rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 14px rgba(249, 115, 22, 0.22);
}

.right-side-action-btn.has-unread {
    border-color: #fb923c;
    color: #ea580c;
}

.right-side-action-btn i {
    width: 1.04rem;
    text-align: center;
    font-size: 0.86rem;
    line-height: 1;
}

.right-side-action-label {
    line-height: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.right-side-action-btn:hover {
    color: var(--brand-accent);
    border-color: #fdba74;
    transform: translateY(-1px);
}

.right-side-action-btn-call {
    color: #18354d;
    border-color: rgba(31, 58, 107, 0.28);
    background: linear-gradient(145deg, #f8fbff, #edf4ff);
}

.right-side-action-btn-call:hover {
    color: #1f3a6b;
    border-color: rgba(31, 58, 107, 0.45);
}

.right-side-action-btn-whatsapp {
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.32);
    background: linear-gradient(145deg, #f7fff9, #e8fff0);
}

.right-side-action-btn-whatsapp:hover {
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.52);
}

.right-side-action-btn-active {
    color: #ffffff;
    border-color: #ea580c;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.34);
}

.right-side-action-btn-danger {
    color: #ffffff;
    border-color: #dc2626;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.28);
}

.right-side-action-btn-danger:hover {
    color: #ffffff;
    border-color: #b91c1c;
}

@keyframes dashboard-notice-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px) scale(1.04);
    }
}

@keyframes dashboard-notice-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.68;
    }
}

.theme-toggle-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: #94a3b8;
    color: var(--brand-accent);
    transform: translateY(-1px);
}

.site-header-inner {
    min-width: 0;
    padding-right: max(7.1rem, calc(env(safe-area-inset-right) + 7.1rem));
}

header a[aria-label="Majisa Road Carrier home"] {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.38rem, 0.8vw, 0.92rem);
    min-width: 0;
    flex-shrink: 0;
}

header a[aria-label="Majisa Road Carrier home"] img {
    height: clamp(2.8rem, 4.8vw, 4.6rem);
    width: auto;
    flex-shrink: 0;
}

header a[aria-label="Majisa Road Carrier home"] > div {
    min-width: 0;
}

.company-name-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
}

.company-name-text {
    display: block !important;
    visibility: visible !important;
    color: var(--brand-blue);
    font-family: 'Manrope', 'Arial Black', sans-serif;
    font-size: clamp(1.34rem, 3.2vw + 0.25rem, 3.3rem);
    font-weight: 900 !important;
    letter-spacing: 0.02em;
    line-height: 0.96;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 0 0 currentColor, 0.55px 0 currentColor, -0.55px 0 currentColor, 0 0.55px currentColor, 0 -0.55px currentColor;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid var(--brand-accent);
    background: var(--brand-accent);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 0.65rem 1.1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid #1f3a6b;
    background: #1f3a6b;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 0.65rem 1.1rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #182f55;
    border-color: #182f55;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 0.65rem 1.1rem;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    transform: translateY(-1px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(1.08) contrast(1.06) brightness(1.04);
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    background: linear-gradient(100deg, rgba(11, 19, 32, 0.58), rgba(11, 19, 32, 0.34) 55%, rgba(11, 19, 32, 0.16));
}

.hero-copy {
    display: none;
}

.hero-copy.is-active {
    display: block;
}

.home-hero-media {
    position: absolute;
    inset: 0;
}

.home-hero {
    width: min(100%, 80rem);
    margin-inline: auto;
    min-height: clamp(22rem, 42vw, 35rem);
}

.home-hero-inner {
    position: relative;
    z-index: 2;
}

.live-permit-dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 9999px;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2), 0 0 16px rgba(34, 197, 94, 0.85);
    animation: livePermitPulse 1.8s ease-in-out infinite;
}

@keyframes livePermitPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.88;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.home-hero .glass-panel {
    background: rgba(11, 19, 32, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.home-hero [data-hero-copy] > p.mt-5,
.home-hero [data-hero-copy] > p.mt-3 {
    color: rgba(241, 245, 249, 0.92) !important;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.1rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    overflow-wrap: anywhere;
}

.section-card > *,
.site-header-inner > *,
.portal-wrap > *,
.right-side-actions > *,
.right-side-actions-panel > * {
    min-width: 0;
    max-width: 100%;
}

.section-card:hover {
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.fleet-ai-shell {
    border-radius: 1.6rem;
    border: 1px solid #d9e3f0;
    background: linear-gradient(170deg, #f8fbff 0%, #eef3fb 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.fleet-ai-card {
    border-radius: 1rem;
    border: 1px solid #dde6f2;
    background: #ffffff;
    text-align: center;
    padding: 0.9rem 0.72rem 1rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.fleet-ai-svg {
    width: min(100%, 11rem);
    height: 5.6rem;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.home-hero-stats {
    width: 100%;
    max-width: 31.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    margin-right: auto;
}

.home-hero-stat {
    min-width: 0;
    padding: 0.46rem 0.5rem !important;
    border-radius: 0.7rem !important;
}

.home-hero-stat p:first-child {
    font-size: 0.88rem !important;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-hero-stat p:last-child {
    font-size: 0.58rem !important;
    line-height: 1.28;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d6deea;
    background: #ffffff;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
}

.home-hero-content,
.section-card,
.route-map-showcase,
.routes-map-showcase {
    min-width: 0;
}

.routes-map-showcase .route-marker .route-label {
    line-height: 1.1;
}

.trust-icon {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.12);
    color: var(--brand-accent);
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.22);
}

.trust-icon i {
    font-size: 1.7rem;
}

.trust-icon-blue {
    background: rgba(31, 58, 107, 0.1);
    color: var(--brand-blue);
    box-shadow: inset 0 0 0 1px rgba(31, 58, 107, 0.18);
}

.route-map-showcase {
    position: relative;
    border-radius: 0.95rem;
    overflow: hidden;
    min-height: 26rem;
    border: 1px solid #d9e3f0;
}

.route-map-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.route-line {
    stroke: #f97316;
    stroke-width: 0.6;
    stroke-linecap: round;
    stroke-dasharray: 3 2;
    filter: drop-shadow(0 0 3px rgba(249, 115, 22, 0.35));
}

.route-marker {
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
}

.route-dot {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    display: block;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22);
}

.route-dot-origin {
    width: 0.9rem;
    height: 0.9rem;
    background: #1f3a6b;
    box-shadow: 0 0 0 4px rgba(31, 58, 107, 0.2);
}

.route-label {
    position: absolute;
    top: 0;
    left: 0.82rem;
    transform: translateY(-50%);
    border-radius: 999px;
    border: 1px solid #d6deea;
    background: rgba(255, 255, 255, 0.95);
    color: #1f3a6b;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.24rem 0.5rem;
    white-space: nowrap;
}

.route-marker-guwahati .route-label,
.route-marker-kolkata .route-label,
.route-marker-assam .route-label,
.route-marker-manipur .route-label,
.route-marker-imphal .route-label {
    left: auto;
    right: 0.82rem;
}

.route-marker-jodhpur {
    left: 35%;
    top: 30%;
}

.route-marker-ahmedabad {
    left: 34%;
    top: 50%;
}

.route-marker-mumbai {
    left: 34%;
    top: 66%;
}

.route-marker-hyderabad {
    left: 50%;
    top: 68%;
}

.route-marker-chennai {
    left: 58%;
    top: 81%;
}

.routes-map-showcase {
    width: min(100%, 40rem);
    margin-inline: auto;
    aspect-ratio: 1594 / 1868;
    min-height: 0;
}

.routes-map-showcase img {
    object-fit: contain;
    background: #eef2f7;
}

.routes-map-showcase .route-marker-jodhpur {
    left: 20.6%;
    top: 36.8%;
}

.route-marker-ahmedabad-wide {
    left: 22%;
    top: 48%;
}

.route-marker-mumbai-wide {
    left: 23%;
    top: 62%;
}

.route-marker-hyderabad-wide {
    left: 37%;
    top: 67%;
}

.route-marker-chennai-wide {
    left: 40.4%;
    top: 84.2%;
}

.route-marker-kolkata {
    left: 70%;
    top: 49%;
}

.route-marker-guwahati {
    left: 82.2%;
    top: 36.7%;
}

.route-marker-assam {
    left: 78.5%;
    top: 39.8%;
}

.route-marker-manipur {
    left: 87%;
    top: 46.6%;
}

.route-marker-imphal {
    left: 85.6%;
    top: 49.9%;
}

.route-marker-pachpadra {
    left: 21%;
    top: 38%;
}

.route-marker-jaipur {
    left: 29%;
    top: 35%;
}

.route-marker-surat {
    left: 22%;
    top: 55%;
}

.route-marker-chandigarh {
    left: 32%;
    top: 22%;
}

.route-marker-lucknow {
    left: 44%;
    top: 35%;
}

.route-marker-kanpur {
    left: 42%;
    top: 36%;
}

.route-marker-indore {
    left: 29%;
    top: 50%;
}

.route-marker-bhopal {
    left: 34%;
    top: 47%;
}

.route-marker-raipur {
    left: 46%;
    top: 55%;
}

.route-marker-patna {
    left: 58%;
    top: 40%;
}

.route-marker-bhubaneswar {
    left: 60%;
    top: 58%;
}

.route-label-compact {
    font-size: 0.55rem;
    padding: 0.12rem 0.32rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.routes-map-showcase .route-map-lines {
    display: none;
}

.routes-map-showcase .route-marker .route-dot {
    display: none;
}

.routes-map-showcase .route-marker .route-label {
    left: 0.28rem;
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.routes-map-showcase .route-marker .route-label::before {
    content: '';
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 999px;
    background: #f97316;
    flex: 0 0 auto;
}

.routes-map-showcase .route-marker-guwahati .route-label,
.routes-map-showcase .route-marker-kolkata .route-label,
.routes-map-showcase .route-marker-assam .route-label,
.routes-map-showcase .route-marker-manipur .route-label,
.routes-map-showcase .route-marker-imphal .route-label {
    left: auto;
    right: 0.28rem;
}

.routes-map-showcase .route-marker-jodhpur .route-dot {
    display: block;
    width: 0.84rem;
    height: 0.84rem;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28), 0 0 12px rgba(34, 197, 94, 0.35);
}

.routes-map-showcase .route-marker-jodhpur .route-label {
    left: 0.92rem;
    font-weight: 700;
    font-size: 0.6rem;
    padding: 0.14rem 0.34rem;
}

.routes-map-showcase .route-marker-jodhpur .route-label::before {
    display: none;
}

.route-marker-pune {
    left: 25%;
    top: 67%;
}

.route-marker-nagpur {
    left: 40%;
    top: 58%;
}

.route-marker-varanasi {
    left: 48%;
    top: 39%;
}

.route-marker-ranchi {
    left: 60%;
    top: 52%;
}

.route-marker-bengaluru {
    left: 35%;
    top: 79%;
}

.route-marker-karnataka {
    left: 29.4%;
    top: 80.2%;
}

.route-marker-tamilnadu {
    left: 39.4%;
    top: 88.5%;
}

.route-marker-kanyakumari {
    left: 35.2%;
    top: 92.9%;
}

.route-marker-vijayawada {
    left: 40.6%;
    top: 74.8%;
}

.route-marker-kochi {
    left: 34%;
    top: 91%;
}

.route-dot-soft {
    width: 0.56rem;
    height: 0.56rem;
    background: #1f3a6b;
    box-shadow: 0 0 0 2px rgba(31, 58, 107, 0.18);
}

.route-chip {
    border-color: #cfd9e7;
    background: #ffffff;
    color: #1f3a6b;
    font-weight: 700;
}

.state-route-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.state-route-card {
    position: relative;
    overflow: hidden;
}

.state-route-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #1f3a6b);
}

.state-route-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 1.03rem;
    font-weight: 800;
    color: #1f3a6b;
    letter-spacing: 0.01em;
}

.state-route-cities {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.state-route-cities .city-chip {
    font-size: 0.76rem;
    padding: 0.34rem 0.56rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu.open {
    max-height: 34rem;
}

.mobile-menu a {
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 0.44rem;
    border-radius: 0.65rem;
    padding: 0.6rem 0.8rem;
    color: #334155;
    font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a.mobile-active {
    background: #f8fafc;
    color: var(--brand-accent);
}

.mobile-menu a:hover i,
.mobile-menu a.mobile-active i {
    color: #ffffff;
    border-color: #ea580c;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 8px 14px rgba(249, 115, 22, 0.3);
}

.faq-answer {
    display: none;
}

.faq-answer.open {
    display: block;
}

main p,
main li,
main dd {
    overflow-wrap: anywhere;
}

html.dark body {
    color: #e2e8f0;
    background: radial-gradient(circle at top right, rgba(30, 64, 175, 0.2), transparent 40%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.14), transparent 35%),
        #020617;
}

html.dark .site-bg {
    background-color: #020617;
}

html.dark header {
    background: rgba(11, 19, 32, 0.94) !important;
    border-color: #334155 !important;
}

html.dark .nav-link {
    color: #cbd5e1;
}

html.dark .nav-link i,
html.dark .mobile-menu a i {
    background: linear-gradient(145deg, #1f2937, #111827);
    border-color: #334155;
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.45);
}

html.dark .nav-link:hover i,
html.dark .nav-link-active i,
html.dark .mobile-menu a:hover i,
html.dark .mobile-menu a.mobile-active i {
    color: #ffffff;
    border-color: #fdba74;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
}

html.dark .theme-toggle-btn {
    background: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

html.dark .theme-toggle-btn:hover {
    border-color: #64748b;
    color: var(--brand-accent);
}

html.dark .mobile-menu {
    background: #0f172a;
    border-color: #334155;
}

html.dark .mobile-menu a {
    color: #cbd5e1;
}

html.dark .mobile-menu a:hover,
html.dark .mobile-menu a.mobile-active {
    background: #1e293b;
    color: var(--brand-accent);
}

html.dark .right-side-login-btn {
    border-color: #38bdf8;
    background: linear-gradient(180deg, #1bdcf6 0%, #0997df 48%, #1154b4 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), inset 0 -3px 8px rgba(3, 18, 64, 0.42), 0 9px 18px rgba(37, 99, 235, 0.34);
}

html.dark .right-side-logout-btn {
    border-color: #fdba74;
    background: linear-gradient(145deg, #fb923c, #ea580c);
    box-shadow: 0 9px 18px rgba(249, 115, 22, 0.4);
}

html.dark .right-side-action-btn-danger {
    border-color: #dc2626;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    color: #ffffff;
}

html.dark .right-side-notice-btn {
    border-color: #33556c;
    background: linear-gradient(145deg, #123248, #10273a);
    color: #9feef2;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.42);
}

html.dark .right-side-notice-btn.has-unread {
    border-color: #fb923c;
    color: #fdba74;
}

html.dark .dashboard-notice-live-banner {
    border-color: rgba(251, 146, 60, 0.45);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.34);
}

html.dark .section-card {
    background: #111827;
    border-color: #334155;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.55);
}

html.dark .city-chip {
    background: #111827;
    border-color: #334155;
    color: #e2e8f0;
}

html.dark .trust-icon {
    background: rgba(251, 146, 60, 0.16);
    color: #fdba74;
    box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.35);
}

html.dark .trust-icon-blue {
    background: rgba(59, 130, 246, 0.16);
    color: #93c5fd;
    box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.35);
}

html.dark .route-map-showcase {
    border-color: #334155;
}

html.dark .routes-map-showcase img {
    background: #0b1220;
}

html.dark .route-line {
    stroke: #fb923c;
}

html.dark .route-dot {
    background: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.26);
}

html.dark .route-dot-origin {
    background: #93c5fd;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.26);
}

html.dark .route-dot-soft {
    background: #93c5fd;
    box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.25);
}

html.dark .routes-map-showcase .route-marker .route-label {
    background: rgba(15, 23, 42, 0.9);
}

html.dark .routes-map-showcase .route-marker-jodhpur .route-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25), 0 0 12px rgba(34, 197, 94, 0.3);
}

html.dark .route-label {
    background: rgba(15, 23, 42, 0.92);
    border-color: #334155;
    color: #e2e8f0;
}

html.dark .route-chip {
    background: #111827;
    border-color: #334155;
    color: #e2e8f0;
}

html.dark .route-network-snapshot .bg-slate-50 {
    background: #0f172a !important;
    border-color: #334155 !important;
}

html.dark .route-network-snapshot .text-slate-800 {
    color: #e2e8f0 !important;
}

html.dark .route-network-snapshot .text-slate-600 {
    color: #cbd5e1 !important;
}

html.dark .state-route-heading {
    color: #93c5fd;
}

html.dark .state-route-card::before {
    background: linear-gradient(90deg, #fb923c, #60a5fa);
}

html.dark .glass-panel {
    background: rgba(15, 23, 42, 0.52);
    border-color: rgba(148, 163, 184, 0.35);
}

html.dark .btn-outline {
    background: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}

html.dark .btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

html.dark .bg-white {
    background-color: #0f172a !important;
}

html.dark .border-slate-200,
html.dark .border-slate-300 {
    border-color: #334155 !important;
}

html.dark .text-slate-500,
html.dark .text-slate-600,
html.dark .text-slate-700,
html.dark .text-slate-800,
html.dark .text-slate-900 {
    color: #cbd5e1 !important;
}

html.dark .text-brand-blue {
    color: #93c5fd !important;
}

html.dark input[type='text'],
html.dark input[type='tel'],
html.dark input[type='number'],
html.dark input[type='date'],
html.dark select,
html.dark textarea {
    background: #0f172a !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}

html.dark input::placeholder,
html.dark textarea::placeholder {
    color: #94a3b8 !important;
}

@media (max-width: 1023px) {
    .right-side-actions {
        right: max(10px, calc(env(safe-area-inset-right) + 4px));
        top: max(5px, calc((var(--site-header-h) - 1.94rem) / 2 + env(safe-area-inset-top)));
    }

    .right-side-actions-head {
        gap: 0.34rem;
    }

    .right-side-contact-shortcuts {
        gap: 0.26rem;
    }

    .right-side-contact-btn {
        width: 1.82rem;
        height: 1.82rem;
        border-radius: 0.58rem;
    }

    .right-side-contact-btn i {
        font-size: 0.74rem;
    }

    .right-side-toggle-btn {
        width: 1.94rem;
        height: 1.94rem;
        border-radius: 0.58rem;
    }

    .right-side-login-btn {
        width: 4.2rem;
        height: 1.94rem;
        border-radius: 0.62rem;
        gap: 0.22rem;
        padding: 0 0.4rem;
    }

    .right-side-toggle-btn i {
        font-size: 0.76rem;
    }

    .right-side-login-text {
        font-size: 0.58rem;
        letter-spacing: 0.04em;
    }

    .right-side-login-btn i {
        font-size: 0.62rem;
    }
}

@media (max-width: 767px) {
    .right-side-actions {
        right: max(10px, calc(env(safe-area-inset-right) + 4px));
        top: max(5px, calc((var(--site-header-h) - 1.66rem) / 2 + env(safe-area-inset-top)));
    }

    .mobile-ist-strip-wrap {
        display: block;
        padding: 0.48rem 0.55rem 0;
    }

    .mobile-ist-strip {
        max-width: 100%;
        margin: 0 auto;
    }

    .site-ist-time-chip {
        display: none;
    }

    .right-side-actions-head {
        gap: 0.3rem;
    }

    .right-side-contact-shortcuts {
        gap: 0.22rem;
    }

    .right-side-contact-btn {
        width: 1.48rem;
        height: 1.48rem;
        border-radius: 0.46rem;
    }

    .right-side-toggle-btn {
        width: 1.66rem;
        height: 1.66rem;
        border-radius: 0.48rem;
    }

    .right-side-login-btn {
        width: 3.6rem;
        height: 1.66rem;
        border-radius: 0.56rem;
        gap: 0.16rem;
        padding: 0 0.32rem;
    }

    .right-side-toggle-btn i {
        font-size: 0.62rem;
    }

    .right-side-login-text {
        font-size: 0.48rem;
        letter-spacing: 0.038em;
    }

    .right-side-login-btn i {
        font-size: 0.5rem;
    }

    .right-side-contact-btn i {
        font-size: 0.62rem;
    }

    .right-side-actions.is-open .right-side-actions-panel {
        margin-top: 0.3rem;
        gap: 0.3rem;
        padding: 0.3rem;
        border-radius: 0.78rem;
        width: min(12.8rem, calc(100vw - 0.8rem));
        max-width: calc(100vw - 0.8rem);
    }

    .right-side-action-btn {
        width: 100%;
        min-width: 7.1rem;
        height: 1.72rem;
        border-radius: 0.48rem;
        gap: 0.4rem;
        padding: 0 0.52rem;
        font-size: 0.66rem;
    }

    .right-side-action-btn i {
        width: 0.82rem;
        font-size: 0.62rem;
    }
    .site-header-inner {
        gap: 0.28rem;
        max-width: 100%;
        overflow: hidden;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        padding-left: 0.24rem !important;
        padding-right: clamp(7.4rem, 38vw, 9.15rem) !important;
    }

    .mobile-menu nav {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    .mobile-menu a {
        padding: 0.56rem 0.72rem;
        font-size: 0.9rem;
    }

    .nav-link i,
    .mobile-menu a i {
        width: 1.33rem;
        height: 1.33rem;
        font-size: 0.67rem;
        border-radius: 0.42rem;
    }

    .mobile-icon-link {
        width: 1.62rem;
        height: 1.62rem;
        border-radius: 0.5rem;
    }

    .mobile-icon-link i {
        font-size: 0.64rem;
    }

    header a[aria-label="Majisa Road Carrier home"] {
        gap: 0.34rem !important;
        min-width: 0;
        max-width: calc(100vw - clamp(7.8rem, 40vw, 9.7rem));
    }

    .company-name-wrap {
        max-width: 100%;
    }

    .company-name-text {
        font-size: clamp(0.96rem, 0.76rem + 0.95vw, 1.22rem) !important;
        font-weight: 900 !important;
        letter-spacing: 0.02em !important;
        line-height: 0.96 !important;
        white-space: nowrap;
    }

    .mobile-inline-nav {
    display: none !important;
}

    .home-hero {
        --hero-mobile-media-h: clamp(13.8rem, 60vw, 16.8rem);
        min-height: calc(var(--hero-mobile-media-h) + 14.6rem) !important;
    }

    .home-hero-media {
        inset: auto 0 0 0;
        height: var(--hero-mobile-media-h);
    }

    .home-hero-inner {
        padding-top: 1.25rem !important;
        padding-bottom: calc(var(--hero-mobile-media-h) + 0.9rem) !important;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .section-card,
    .section-card > *,
    .mobile-menu,
    .mobile-menu nav,
    .mobile-menu a {
        min-width: 0;
        max-width: 100%;
    }

    pre,
    table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .home-hero .hero-slide {
        background-size: cover;
        background-position: center 56% !important;
        background-color: #0b1320;
        background-repeat: no-repeat;
        filter: none;
        transition: opacity 0.35s ease;
    }

    .home-hero .hero-slide:nth-child(1),
    .home-hero .hero-slide:nth-child(3) {
        background-size: cover;
        background-position: center 56% !important;
    }

    .home-hero [data-hero-copy] h1,
    .home-hero [data-hero-copy] h2 {
        font-size: clamp(0.95rem, 4.6vw, 1.15rem) !important;
        line-height: 1.28 !important;
    }

    .home-hero-badges {
        gap: 0.3rem !important;
        margin-bottom: 0.62rem !important;
    }

    .home-hero .hero-secondary-badge {
        display: none;
    }

    [data-hero-copy] .glass-panel,
    .home-hero [data-hero-copy] .glass-panel {
        max-width: 100%;
        font-size: 0.54rem !important;
        letter-spacing: 0.09em !important;
        padding: 0.34rem 0.56rem !important;
    }

    .home-hero [data-hero-copy] .glass-panel:first-child {
        font-size: 0.66rem !important;
        letter-spacing: 0.11em !important;
        padding: 0.4rem 0.72rem !important;
    }

    .home-hero [data-hero-copy] > p.mt-5 {
        margin-top: 0.52rem !important;
        max-width: 24ch;
        font-size: 0.72rem !important;
        line-height: 1.32 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-hero [data-hero-copy] > p.mt-3 {
        display: none;
    }

    .home-hero-stats {
        margin-top: 0.52rem !important;
        gap: 0.33rem !important;
        width: 100%;
        max-width: 15.6rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-hero-stat {
        padding: 0.34rem 0.28rem !important;
        border-radius: 0.58rem !important;
    }

    .home-hero-stat p:first-child {
        font-size: 0.58rem !important;
        line-height: 1.16;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .home-hero-stat p:last-child {
        display: none;
    }

    input[type='text'],
    input[type='tel'],
    input[type='number'],
    input[type='date'],
    select,
    textarea {
        font-size: 16px !important;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(11, 19, 32, 0.62) 0%, rgba(11, 19, 32, 0.42) 44%, rgba(11, 19, 32, 0.14) 72%, rgba(11, 19, 32, 0.04) 100%);
    }

    iframe[title="Majisa Road Carrier office map"] {
        height: 240px;
    }

    .route-map-showcase {
        min-height: 18rem;
    }

    .route-dot {
        width: 0.62rem;
        height: 0.62rem;
    }

    .route-dot-origin {
        width: 0.78rem;
        height: 0.78rem;
    }

    .route-label {
        font-size: 0.68rem;
        padding: 0.2rem 0.42rem;
    }

    .routes-map-showcase {
        width: min(100%, 34rem);
    }

    .routes-map-showcase .route-label {
        font-size: 0.48rem;
        padding: 0.08rem 0.23rem;
        max-width: 5.7rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .routes-map-showcase .route-marker .route-label::before {
        width: 0.22rem;
        height: 0.22rem;
    }

    .fleet-ai-section {
        margin-top: -11.4rem;
        position: relative;
        z-index: 4;
        padding-top: 0.6rem !important;
        padding-bottom: 1.7rem !important;
    }

    .fleet-ai-shell {
        border-radius: 1.25rem;
        padding: 1rem 0.82rem 1.1rem !important;
    }

    .fleet-ai-card {
        padding: 0.7rem 0.5rem 0.82rem;
    }

    .fleet-ai-svg {
        width: min(100%, 9.4rem);
        height: 4.8rem;
    }

    .why-choose-section {
        padding-top: 1.2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 640px) {
    .px-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .py-16 {
        padding-top: 2.85rem !important;
        padding-bottom: 2.85rem !important;
    }

    .home-hero {
        --hero-mobile-media-h: clamp(13rem, 62vw, 16rem);
    }

    .home-hero-inner {
        padding-top: 1.12rem !important;
        padding-bottom: calc(var(--hero-mobile-media-h) + 0.82rem) !important;
    }

    .home-hero [data-hero-copy] > p.mt-5 {
        max-width: 24ch;
        font-size: 0.66rem !important;
        line-height: 1.26 !important;
    }

    .home-hero [data-hero-copy] h1,
    .home-hero [data-hero-copy] h2 {
        font-size: clamp(0.92rem, 4.5vw, 1.1rem) !important;
        line-height: 1.26 !important;
    }

    .py-14 {
        padding-top: 2.35rem !important;
        padding-bottom: 2.35rem !important;
    }

    .py-12 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    main h1.font-heading {
        font-size: clamp(1.55rem, 6.8vw, 2.05rem) !important;
        line-height: 1.22 !important;
    }

    main h2.font-heading {
        font-size: clamp(1.3rem, 5.8vw, 1.75rem) !important;
        line-height: 1.28 !important;
    }

    main h3.font-heading {
        font-size: 1.03rem !important;
        line-height: 1.35 !important;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.62rem 0.95rem;
        font-size: 0.9rem;
    }

    .city-chip {
        font-size: 0.76rem;
        padding: 0.38rem 0.62rem;
    }

    .route-chip {
        font-size: 0.74rem;
    }

    .state-route-heading {
        font-size: 0.96rem;
    }

    .state-route-cities .city-chip {
        font-size: 0.72rem;
        padding: 0.3rem 0.5rem;
    }

    .routes-map-showcase .route-label {
        font-size: 0.44rem;
        max-width: 5rem;
    }
}

@media (min-width: 1024px) {
    .site-header-inner {
        padding-right: max(14.25rem, calc(env(safe-area-inset-right) + 14.25rem));
    }

    .home-hero {
        min-height: clamp(24rem, 38vw, 39rem);
    }

    .home-hero-inner {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .state-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .state-route-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.48rem;
    margin-top: 0.86rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.12rem;
    height: 2.12rem;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.footer-social-link i,
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.92rem;
}

.footer-social-x-mark {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.04);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.footer-social-facebook {
    background: linear-gradient(145deg, #1877f2, #0f4fb5);
}

.footer-social-linkedin {
    background: linear-gradient(145deg, #0a66c2, #07487e);
}

.footer-social-youtube {
    background: linear-gradient(145deg, #ff0033, #b20710);
}

.footer-social-x {
    background: linear-gradient(145deg, #111827, #020617);
}

.footer-social-instagram {
    background: linear-gradient(145deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

@media (max-width: 480px) {
    .footer-social-link {
        width: 1.92rem;
        height: 1.92rem;
    }

    .footer-social-link i,
    .footer-social-icon {
        font-size: 0.82rem;
    }
}

.floating-contact-actions {
    display: none !important;
    position: fixed;
    left: max(14px, env(safe-area-inset-left));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 10060;
    pointer-events: none;
    width: 52px;
    height: 118px;
}

.floating-contact-btn {
    position: absolute;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.34);
    pointer-events: auto;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.42);
}

.floating-call-btn {
    bottom: 0;
    background: linear-gradient(145deg, #17b72b, #0f921f);
}

.floating-whatsapp-btn {
    bottom: 60px;
    background: linear-gradient(145deg, #2be06f, #1aa34d);
}

.floating-call-label {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(41, 45, 56, 0.96);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    padding: 4px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-call-btn:hover .floating-call-label {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
}

@media (max-width: 480px) {
    .mobile-ist-strip-wrap {
        padding: 0.42rem 0.42rem 0;
    }

    .mobile-ist-strip {
        padding: 0.5rem 0.64rem;
        border-radius: 0.84rem;
    }

    .mobile-ist-label {
        font-size: 0.52rem;
        letter-spacing: 0.08em;
    }

    .mobile-ist-value {
        font-size: 0.74rem;
    }

    .right-side-actions {
        right: max(9px, calc(env(safe-area-inset-right) + 3px));
        top: max(4px, calc((var(--site-header-h) - 1.56rem) / 2 + env(safe-area-inset-top)));
    }

    .right-side-actions-head {
        gap: 0.26rem;
    }

    .right-side-contact-shortcuts {
        gap: 0.18rem;
    }

    .right-side-contact-btn {
        width: 1.34rem;
        height: 1.34rem;
        border-radius: 0.42rem;
    }

    .right-side-toggle-btn {
        width: 1.56rem;
        height: 1.56rem;
        border-radius: 0.44rem;
    }

    .right-side-login-btn {
        width: 3.32rem;
        height: 1.56rem;
        border-radius: 0.5rem;
        gap: 0.14rem;
        padding: 0 0.26rem;
    }

    .right-side-toggle-btn i {
        font-size: 0.58rem;
    }

    .right-side-login-text {
        font-size: 0.44rem;
        letter-spacing: 0.03em;
    }

    .right-side-login-btn i {
        font-size: 0.48rem;
    }

    .right-side-contact-btn i {
        font-size: 0.58rem;
    }

    .right-side-actions.is-open .right-side-actions-panel {
        margin-top: 0.26rem;
        gap: 0.26rem;
        padding: 0.26rem;
        border-radius: 0.7rem;
        width: min(11.6rem, calc(100vw - 0.72rem));
        max-width: calc(100vw - 0.72rem);
    }

    .right-side-action-btn {
        width: 100%;
        min-width: 6.6rem;
        height: 1.56rem;
        border-radius: 0.44rem;
        gap: 0.36rem;
        padding: 0 0.46rem;
        font-size: 0.61rem;
    }

    .right-side-action-btn i {
        width: 0.76rem;
        font-size: 0.58rem;
    }
    .floating-contact-actions {
        left: max(12px, env(safe-area-inset-left));
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 50px;
        height: 112px;
    }

    .floating-contact-btn {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp-btn {
        bottom: 58px;
    }

    .company-name-text {
        font-size: clamp(0.84rem, 0.7rem + 0.85vw, 1rem) !important;
        font-weight: 900 !important;
        letter-spacing: 0.018em !important;
        line-height: 0.96 !important;
    }

    .site-header-inner {
        padding-top: 0.48rem !important;
        padding-bottom: 0.48rem !important;
        padding-left: 0.18rem !important;
        padding-right: clamp(6.4rem, 37vw, 8.35rem) !important;
    }

    header a[aria-label="Majisa Road Carrier home"] {
        gap: 0.28rem !important;
        min-width: 0;
        max-width: calc(100vw - clamp(6.8rem, 39vw, 8.8rem));
    }

    header a[aria-label="Majisa Road Carrier home"] img {
        height: 2.1rem !important;
    }

    .mobile-icon-link {
        width: 1.52rem;
        height: 1.52rem;
        border-radius: 0.48rem;
    }

    .mobile-icon-link i {
        font-size: 0.6rem;
    }

    .mobile-inline-nav {
    display: none !important;
}

    .home-hero {
        --hero-mobile-media-h: clamp(12.6rem, 66vw, 15.2rem);
        min-height: calc(var(--hero-mobile-media-h) + 14.2rem) !important;
    }

    .home-hero-inner {
        padding-top: 1rem !important;
        padding-bottom: calc(var(--hero-mobile-media-h) + 0.72rem) !important;
    }

    .home-hero .hero-slide {
        background-size: cover;
        background-position: center 58% !important;
        background-color: #0b1320;
        background-repeat: no-repeat;
    }

    .home-hero .hero-slide:nth-child(1),
    .home-hero .hero-slide:nth-child(3) {
        background-size: cover;
        background-position: center 58% !important;
    }

    .home-hero [data-hero-copy] h1,
    .home-hero [data-hero-copy] h2 {
        font-size: clamp(0.82rem, 4vw, 0.98rem) !important;
        line-height: 1.24 !important;
    }

    .home-hero [data-hero-copy] > p.mt-5 {
        max-width: 22ch;
        font-size: 0.6rem !important;
    }

    .home-hero [data-hero-copy] .glass-panel:first-child {
        font-size: 0.62rem !important;
        padding: 0.36rem 0.62rem !important;
    }

    .home-hero-stat p:first-child {
        font-size: 0.56rem !important;
    }

    .route-map-showcase {
        min-height: 15.5rem;
    }

    .route-marker:not(.route-marker-jodhpur) .route-label {
        display: none;
    }

    .route-marker-jodhpur .route-label {
        font-size: 0.66rem;
    }

    .routes-map-showcase {
        width: 100%;
        max-width: 34rem;
    }

    .routes-map-showcase .route-marker:not(.route-marker-jodhpur) .route-label {
        display: inline-flex;
        font-size: 0.46rem;
        padding: 0.08rem 0.22rem;
    }

    .fleet-ai-section {
        margin-top: -10.2rem;
        padding-top: 0.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .fleet-ai-card h3 {
        font-size: 1.18rem;
        line-height: 1.25;
    }

    .fleet-ai-card p {
        font-size: 1.05rem;
    }

    .why-choose-section {
        padding-top: 1rem !important;
        padding-bottom: 1.8rem !important;
    }

    .route-marker-chennai-wide {
        left: 39.4%;
        top: 83.8%;
    }

    .route-marker-vijayawada {
        left: 39.6%;
        top: 74.5%;
    }

    .route-marker-tamilnadu {
        left: 38.6%;
        top: 88.2%;
    }

    .route-marker-kanyakumari {
        left: 34%;
        top: 92.3%;
    }

    .route-marker-assam {
        left: 77.5%;
        top: 39.2%;
    }

    .route-marker-manipur {
        left: 86.1%;
        top: 46%;
    }

    .route-marker-imphal {
        left: 84.7%;
        top: 49.3%;
    }

}

@media (max-width: 340px) {
    .home-hero-stats {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.36rem !important;
    }

    .home-hero-stats .home-hero-stat:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 60%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

