:root {
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --primary: #00008b;
    --primary-dark: #00005a;
    --primary-light: #eef2ff;
    --accent: #ff131d;
    --accent-hover: #d90b14;
    --accent-light: #fff0f1;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --border: #e2e8f0;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 139, 0.08);
    --shadow-hover: 0 20px 30px -10px rgba(0, 0, 139, 0.16);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6,
.home-hero-title,
.section-title,
.entity-title,
.service-card-title,
.kpi-number,
.stat-number,
.hero-badge-pill,
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta-pickup,
.btn-cta-call,
.nav-link,
.topbar-modern {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2026 MAGNIFICENT BRAND NAVIGATION BAR & TOPBAR STYLES
   Theme: Royal Deep Blue (#00008b) & Vibrant Red (#ff131d)
   ========================================================================== */

/* --- 1. Top Utility Bar with Brand Gradient & Red Divider --- */
.topbar-modern {
    background: linear-gradient(90deg, #00004d 0%, #00008b 50%, #00004d 100%);
    color: #cbd5e1;
    font-size: 0.8rem;
    padding: 7px 0;
    border-bottom: 2px solid #ff131d;
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.775rem;
    color: #f1f5f9;
}

.pulse-beacon {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 8px #22c55e;
    animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.live-text-bold {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.status-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

.live-text-sub {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-text-sub i {
    color: #60a5fa;
    font-size: 0.75rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.775rem;
    color: #e2e8f0;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-chip:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.chip-track-brand {
    background: #ff131d;
    border-color: #ff131d;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 19, 29, 0.35);
}

.chip-track-brand:hover {
    background: #d90b14;
    color: #ffffff;
    border-color: #d90b14;
    box-shadow: 0 4px 14px rgba(255, 19, 29, 0.5);
    transform: translateY(-1px);
}

.topbar-social {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.topbar-social:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
    transform: translateY(-1px);
}

/* --- 2. Main Glassmorphic Header --- */
.header-modern {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 0;
}

.header-modern.is-scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 139, 0.14), 0 2px 0 rgba(255, 19, 29, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* --- 3. Brand Logo (Pure Logo on Left Side) --- */
.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 2px 0;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.brand-logo-link:hover {
    transform: scale(1.03);
}

.brand-logo-img {
    height: 52px;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    filter: none;
    mix-blend-mode: multiply;
}

/* --- 4. Floating Liquid Pill Desktop Navigation --- */
.desktop-navigation {
    display: flex;
    align-items: center;
}

.nav-pill-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    background: rgba(241, 245, 249, 0.85);
    padding: 5px 6px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 139, 0.12);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    white-space: nowrap;
}

.nav-icon {
    font-size: 0.775rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #00008b;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 10px rgba(0, 0, 139, 0.08);
    transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
    color: #ff131d;
    transform: scale(1.15);
}

.nav-link.active {
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.35);
}

.nav-link.active .nav-icon {
    color: #ff858a;
}

.active-glow-dot {
    width: 6px;
    height: 6px;
    background: #ff131d;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ff131d;
}

/* --- 5. Header Action CTAs (Brand Blue & Red) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-track-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff131d;
    background: #fff0f1;
    border: 1.5px solid rgba(255, 19, 29, 0.4);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(255, 19, 29, 0.08);
}

.btn-track-header:hover {
    background: #ff131d;
    color: #ffffff;
    border-color: #ff131d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 19, 29, 0.35);
}

.btn-dispatch-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    padding: 5px 18px 5px 6px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}

.btn-dispatch-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 139, 0.45);
}

.dispatch-icon-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff131d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
    transition: all 0.25s ease;
    box-shadow: 0 0 10px rgba(255, 19, 29, 0.4);
}

.btn-dispatch-call:hover .dispatch-icon-ring {
    background: #d90b14;
    transform: rotate(15deg) scale(1.08);
}

.dispatch-text-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dispatch-tag {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ff9ca0;
    font-weight: 700;
}

.dispatch-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    white-space: nowrap;
    color: #ffffff;
}

/* --- 6. Animated Hamburger Button --- */
.mobile-menu-trigger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid var(--border);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.25s ease;
}

.mobile-menu-trigger:hover {
    background: var(--primary-light);
    border-color: rgba(0, 0, 139, 0.3);
}

.mobile-menu-trigger .bar {
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-trigger.is-active .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background: #ff131d;
}

.mobile-menu-trigger.is-active .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-trigger.is-active .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background: #ff131d;
}

/* --- 7. Frosted Mobile Drawer Menu --- */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-bottom: 2px solid #ff131d;
    box-shadow: 0 25px 45px -10px rgba(0, 0, 139, 0.18);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drawer-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.drawer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.775rem;
    font-weight: 600;
    color: #475569;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.925rem;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all 0.2s ease;
}

.mobile-nav-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 139, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
}

.mobile-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateX(3px);
}

.mobile-nav-link:hover .mobile-arrow {
    color: #ff131d;
    transform: translateX(3px);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    border-color: #00008b;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.25);
}

.mobile-nav-link.active .mobile-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.mobile-nav-link.active .mobile-arrow {
    color: #ff131d;
}

/* Mobile Accordion & Sub-items for Help & Support */
.mobile-accordion-trigger {
    cursor: pointer;
}

.mobile-accordion-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.26s ease;
}

.mobile-nav-accordion.open .mobile-accordion-arrow {
    transform: rotate(180deg);
    color: #ff131d;
}

.mobile-sub-list {
    list-style: none;
    padding: 6px 0 6px 14px;
    margin: 4px 0 0 12px;
    border-left: 2px solid rgba(0, 0, 139, 0.18);
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-accordion.open .mobile-sub-list {
    display: flex;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.2s ease;
}

.mobile-sub-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 0, 139, 0.07);
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.mobile-sub-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
    background: var(--primary-light);
    color: #00008b;
    border-color: rgba(0, 0, 139, 0.3);
    font-weight: 700;
    transform: translateX(3px);
}

.mobile-sub-link:hover .mobile-sub-icon,
.mobile-sub-link.active .mobile-sub-icon {
    background: #ff131d;
    color: #ffffff;
}

.mobile-sub-link.active .mobile-sub-tag {
    background: #ff131d;
    color: #ffffff;
}

.drawer-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-btn-track {
    background: #fff0f1;
    color: #ff131d;
    border: 1.5px solid rgba(255, 19, 29, 0.4);
}

.drawer-btn-track:hover {
    background: #ff131d;
    color: #ffffff;
}

.drawer-btn-call {
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.25);
}

/* --- Hero Banner (Pleasant Light Shades with Brand Accents) --- */
.hero {
    position: relative;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8faff 45%, #ffffff 100%);
    color: var(--text-main);
    padding: 56px 0 48px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.hero-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/network-map.jpg');
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    opacity: 0.22;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 80%);
}

.hero-multimodal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/services-multimodal-banner.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    opacity: 0.16;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 28%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0) 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 28%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0) 78%);
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 420px;
    background: radial-gradient(ellipse at 50% -10%, rgba(0, 0, 139, 0.08) 0%, rgba(255, 19, 29, 0.035) 45%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* Badge Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 0, 139, 0.06);
    border: 1px solid rgba(0, 0, 139, 0.12);
    border-radius: 50px;
    color: #00008b;
    font-size: 0.815rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    color: #ff131d;
    font-size: 0.85rem;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0a1128;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, #00008b 0%, #ff131d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.05rem;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* --- Search Bar (Elevated Crisp White Box) --- */
.search-wrapper {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 52px 16px 52px;
    border-radius: 50px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    font-size: 0.975rem;
    color: #0f172a;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 139, 0.07), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
    outline: none;
    transition: var(--transition);
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-input:focus {
    border-color: #00008b;
    box-shadow: 0 0 0 4px rgba(0, 0, 139, 0.12), 0 16px 32px -8px rgba(0, 0, 139, 0.14);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #00008b;
    font-size: 1.15rem;
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    display: none;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: var(--transition);
}

.clear-search-btn:hover {
    background: #fee2e2;
    color: #ff131d;
}

/* --- Multi-Modal 5 Pillars Quick Deck (Capturing Banner Essence) --- */
.multimodal-caps-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 28px;
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(203, 213, 225, 0.85);
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 139, 0.04);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.cap-pill i {
    color: #00008b;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cap-pill:hover {
    background: #ffffff;
    border-color: #00008b;
    color: #00008b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 139, 0.1);
}

.cap-pill:hover i {
    color: #ff131d;
    transform: scale(1.15);
}

/* --- Network Stats Bar (Luminous Light Frosted Card Deck) --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 860px;
    margin: 32px auto 0;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 139, 0.05), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -24px;
    left: -32px;
    right: -32px;
    bottom: -24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0) 80%);
    border-radius: 32px;
    z-index: -1;
    pointer-events: none;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 4px 12px;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #00008b;
    line-height: 1.2;
    display: block;
    font-feature-settings: "tnum";
}

.stat-plus {
    color: #ff131d;
    font-weight: 700;
}

.stat-label {
    font-size: 0.775rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
}

/* --- Region Filter Tabs --- */
.filter-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 24px;
}

.tab-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(11, 59, 140, 0.25);
}

/* --- Results Bar --- */
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 4px;
    font-size: 0.925rem;
    color: var(--text-muted);
}

.results-count {
    font-weight: 600;
    color: var(--text-main);
}

.reset-filter-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 8px;
}

.reset-filter-btn:hover {
    color: var(--primary-dark);
}

/* --- Grid & Cards --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 24px;
    margin-bottom: 70px;
}

.location-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.region-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.state-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.empty-state {
    grid-column: 1 / -1;
    background: var(--bg-surface);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 60px 24px;
    text-align: center;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 16px;
    display: block;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto 20px;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-row i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.95rem;
    width: 16px;
    flex-shrink: 0;
}

.info-row span,
.info-row a {
    word-break: break-word;
    overflow-wrap: anywhere;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.info-row a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.card-actions {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.action-call {
    background: var(--primary-light);
    color: var(--primary);
}

.action-call:hover {
    background: var(--primary);
    color: white;
}

.action-mail {
    background: #f1f5f9;
    color: var(--text-muted);
}

.action-mail:hover {
    background: #e2e8f0;
    color: var(--text-main);
}

.action-map {
    background: #fee2e2;
    color: var(--accent);
}

.action-map:hover {
    background: var(--accent);
    color: white;
}

/* --- 2026 Sleek & Compact Shared Footer System --- */
.site-footer-modern {
    background: linear-gradient(180deg, #070d1e 0%, #030712 100%);
    color: #94a3b8;
    position: relative;
    border-top: 2.5px solid #00008b;
    font-size: 0.885rem;
}

/* Main Footer Content */
.footer-main-section {
    padding: 42px 0 28px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.95fr 1.35fr;
    gap: 40px;
}

/* Column 1: Brand & Heritage */
.footer-col-brand .footer-logo-box {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-brand-tagline {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 12px;
}

.footer-group-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 139, 0.28);
    border: 1px solid rgba(0, 0, 139, 0.6);
    color: #93c5fd;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.footer-social-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.885rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: #00008b;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 139, 0.35);
}

.footer-social-wa:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}

/* Column Headings */
.footer-heading {
    font-size: 0.985rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-heading-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: #ff131d;
    border-radius: 2px;
}

/* Nav Link Lists */
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-nav-links a i {
    font-size: 0.725rem;
    color: #ff131d;
    transition: transform 0.2s ease;
}

.footer-nav-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-nav-links a:hover i {
    color: #60a5fa;
}

.footer-nav-links .link-highlight {
    color: #f87171 !important;
    font-weight: 600;
}

/* Column 3: Address & Contact Block */
.footer-address-box {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.address-icon {
    color: #ff131d;
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.address-text strong {
    color: #f1f5f9;
    display: block;
    font-size: 0.865rem;
    margin-bottom: 2px;
}

.address-text span {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.5;
    display: block;
}

/* 24/7 Priority Dispatch Card */
.footer-dispatch-card {
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.35) 0%, rgba(10, 17, 40, 0.7) 100%);
    border: 1px solid rgba(0, 0, 139, 0.6);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dispatch-card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.dispatch-card-phone {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.dispatch-card-phone i {
    color: #ff131d;
    font-size: 0.95rem;
}

.dispatch-card-phone:hover {
    color: #60a5fa;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
}

.contact-mini-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.contact-mini-row i {
    color: #60a5fa;
    margin-top: 3px;
    font-size: 0.775rem;
    flex-shrink: 0;
}

.contact-mini-row span {
    color: #64748b;
    font-weight: 600;
    display: block;
}

.contact-mini-row a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-mini-row a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.785rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    color: #64748b;
    margin: 0;
}

.footer-bottom-left strong {
    color: #94a3b8;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.compliance-tag {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.compliance-tag i {
    color: #22c55e;
}

.back-to-top-link {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.back-to-top-link:hover {
    background: #ff131d;
    color: #ffffff;
    border-color: #ff131d;
    transform: translateY(-2px);
}

/* Responsive Rules for Modern Footer */
@media (max-width: 900px) {
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col-contact {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-main-section {
        padding: 32px 0 24px;
    }

    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-col-contact {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-right {
        justify-content: center;
    }
}

/* --- WhatsApp Button --- */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.08);
}

/* --- Back To Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 98px;
    right: 30px;
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(11, 59, 140, 0.3);
    z-index: 998;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* --- Responsive Styles --- */
@media (max-width: 1100px) {
    .nav-link {
        padding: 6px 11px;
        font-size: 0.825rem;
        gap: 5px;
    }

    .btn-track-header {
        display: none;
    }
}

@media (max-width: 992px) {
    .desktop-navigation {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .mobile-drawer {
        display: block;
    }

    .btn-dispatch-call .dispatch-tag {
        display: none;
    }

    .btn-dispatch-call {
        padding: 5px 12px 5px 5px;
        gap: 6px;
    }

    .dispatch-number {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 16px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px;
    }

    .stat-divider {
        display: none;
    }

    .back-to-top {
        bottom: 86px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .float-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero {
        padding: 42px 0 36px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .filter-section {
        margin: 24px 0 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-section::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 0.825rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .live-text-sub,
    .status-sep {
        display: none;
    }

    .topbar-chip:not(.chip-highlight) {
        display: none;
    }

    .topbar-inner {
        padding: 0 4px;
    }

    .brand-title {
        font-size: 1.05rem;
    }

    .brand-tagline {
        display: none;
    }

    .btn-dispatch-call .dispatch-text-col {
        display: none;
    }

    .btn-dispatch-call {
        padding: 5px;
        border-radius: 50%;
    }
}

@media (max-width: 420px) {
    .card-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        padding: 9px;
    }
}

/* ==========================================================================
   2026 SERVICES PAGE MAGNIFICENT DESIGN SYSTEM
   Theme: Royal Deep Blue (#00008b) & Vibrant Red (#ff131d)
   ========================================================================== */

/* --- Section Headers --- */
.section-header-center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 48px;
}

.section-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 0, 139, 0.06);
    border: 1px solid rgba(0, 0, 139, 0.12);
    border-radius: 50px;
    color: #00008b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-pill-badge i {
    color: #ff131d;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0a1128;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- Hero CTA Action Buttons --- */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0 34px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 139, 0.35);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(0, 0, 139, 0.45);
    color: #ffffff;
}

.btn-hero-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff131d 0%, #d90b14 100%);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px -4px rgba(255, 19, 29, 0.35);
    transition: var(--transition);
}

.btn-hero-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -4px rgba(255, 19, 29, 0.45);
    color: #ffffff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #00008b;
    border: 1.5px solid #cbd5e1;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: #00008b;
    background: #f8faff;
    transform: translateY(-2px);
    color: #00008b;
}

/* --- Multi-Modal Freight Pillars Section --- */
.services-pillar-section {
    padding: 70px 0;
}

.multimodal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.multimodal-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 139, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.multimodal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00008b, #ff131d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.multimodal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -8px rgba(0, 0, 139, 0.12);
    border-color: #cbd5e1;
}

.multimodal-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    border: 1.5px solid #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00008b;
    font-size: 1.8rem;
    margin-bottom: 22px;
    box-shadow: 0 6px 14px -3px rgba(0, 0, 139, 0.08);
}

.multimodal-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    border-color: #00008b;
}

.card-mode-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
}

.multimodal-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.multimodal-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.775rem;
    font-weight: 600;
    color: #334155;
}

.spec-pill i {
    color: #ff131d;
    font-size: 0.75rem;
}

.feature-bullets {
    list-style: none;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.feature-bullets li {
    font-size: 0.875rem;
    color: #334155;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-bullets li i {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- Warehousing & 3PL Showcase Block --- */
.warehousing-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.warehousing-showcase {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.wh-content-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1128;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.wh-highlight-badge {
    display: inline-block;
    color: #00008b;
    font-weight: 700;
    background: rgba(0, 0, 139, 0.07);
    padding: 3px 10px;
    border-radius: 6px;
}

.wh-lead-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.wh-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.wh-feature-item {
    display: flex;
    gap: 14px;
}

.wh-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef2ff;
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wh-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.wh-feature-item p {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.45;
}

/* Right Card Deck for Warehousing */
.wh-visual-col {
    position: relative;
}

.wh-hero-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 139, 0.12);
    position: relative;
    overflow: hidden;
}

.wh-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 19, 29, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.wh-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.wh-brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #00008b;
}

.wh-status-chip {
    font-size: 0.725rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #a7f3d0;
}

.wh-metric-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.wh-metric-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.wh-metric-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00008b;
    line-height: 1.2;
}

.wh-metric-lbl {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

.wh-check-list {
    list-style: none;
}

.wh-check-list li {
    font-size: 0.875rem;
    color: #334155;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wh-check-list li i {
    color: #ff131d;
    font-size: 0.85rem;
}

/* --- Industry Sectors Coverage --- */
.industries-section {
    padding: 70px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (min-width: 861px) {
    .industry-card:last-child:nth-child(3n - 2) {
        grid-column: 2;
    }
}

@media (max-width: 860px) and (min-width: 641px) {
    .industry-card:last-child:nth-child(2n + 1) {
        grid-column: 1 / -1;
        max-width: 540px;
        width: 100%;
        margin: 0 auto;
    }
}

.industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(0, 0, 139, 0.08);
    border-color: #cbd5e1;
}

.industry-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f0f4ff;
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon-box {
    background: #ff131d;
    color: #ffffff;
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 10px;
}

.industry-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 18px;
}

.industry-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.industry-tag {
    font-size: 0.725rem;
    background: #f1f5f9;
    color: #334155;
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- Precision Process Flow --- */
.process-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 139, 0.08);
    border-color: #cbd5e1;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #cbd5e1;
    font-feature-settings: "tnum";
    letter-spacing: -1px;
}

.process-card:hover .step-badge {
    color: #ff131d;
}

.process-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 8px;
}

.process-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- Enterprise Capabilities & Trust Pillars --- */
.capabilities-section {
    padding: 70px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.capability-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px -5px rgba(0, 0, 139, 0.08);
    border-color: #00008b;
}

.capability-icon {
    font-size: 2rem;
    color: #00008b;
    margin-bottom: 14px;
}

.capability-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.capability-desc {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.45;
}

/* --- Customer Utility Tools Banner --- */
.tools-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tool-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: 0 6px 18px -4px rgba(0, 0, 139, 0.04);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 139, 0.09);
    border-color: #cbd5e1;
}

.tool-icon-col {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 139, 0.3);
}

.tool-info-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 6px;
}

.tool-info-col p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 14px;
}

.tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff131d;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.tool-btn:hover {
    color: #d90b14;
    transform: translateX(4px);
}

/* --- Enterprise CTA Banner --- */
.service-cta-wrapper {
    padding: 60px 0 80px;
}

.service-cta-card {
    background: linear-gradient(135deg, #00004d 0%, #00008b 60%, #000033 100%);
    border-radius: 24px;
    padding: 56px 48px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 77, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 19, 29, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text-col {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.cta-text-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-text-col p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.55;
}

.cta-buttons-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-cta-pickup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff131d;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 19, 29, 0.4);
    transition: var(--transition);
}

.btn-cta-pickup:hover {
    background: #d90b14;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

/* --- Responsive Rules for Services Page --- */
@media (max-width: 1024px) {
    .multimodal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warehousing-showcase {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ==========================================================================
   2026 ABOUT US MAGNIFICENT DESIGN SYSTEM & INFOGRAPHICS
   Theme: Royal Deep Blue (#00008b) & Vibrant Red (#ff131d)
   ========================================================================== */

/* --- Story Section (Who We Are) --- */
.about-story-section {
    padding: 76px 0;
    position: relative;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0a1128;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}

.about-lead-para {
    font-size: 1.075rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.about-lead-para strong {
    color: #00008b;
}

.about-body-para {
    font-size: 0.985rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}



/* Milestone Timeline Strip */
.heritage-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0 24px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.04);
}

.milestone-item {
    text-align: center;
    position: relative;
}

.milestone-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00008b;
    display: block;
    line-height: 1.2;
}

.milestone-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* Right Column Visual Terminal Box */
.about-visual-box {
    position: relative;
}

/* Fleet Infrastructure Interactive Carousel */
.fleet-carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 139, 0.18);
    border: 2px solid #ffffff;
    background: #0a1128;
    aspect-ratio: 4 / 3;
    perspective: 1000px;
}

.fleet-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.fleet-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    z-index: 1;
}

.fleet-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.fleet-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tag in upper left corner of each slide */
.slide-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 17, 40, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.slide-tag i {
    color: #ff131d;
}

/* Arrow controls */
.fleet-carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
    z-index: 10;
    opacity: 0;
}

.fleet-carousel-wrapper:hover .fleet-carousel-btn {
    opacity: 0.95;
}

.fleet-carousel-btn:hover {
    background: #00008b;
    color: #ffffff;
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.08);
}

.fleet-carousel-btn.prev-btn {
    left: 14px;
}

.fleet-carousel-btn.next-btn {
    right: 14px;
}

/* Dots in top right corner */
.fleet-carousel-dots {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 7px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fleet-carousel-dots .dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.fleet-carousel-dots .dot-btn.active {
    width: 22px;
    border-radius: 10px;
    background: #ff131d;
}

/* Floating Badge at the bottom */
.terminal-floating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.terminal-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00008b 0%, #00005a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.terminal-badge-text h4 {
    font-size: 0.925rem;
    font-weight: 800;
    color: #0a1128;
    line-height: 1.2;
}

.terminal-badge-text p {
    font-size: 0.775rem;
    color: #64748b;
    margin-top: 2px;
}

/* --- Vision, Mission & Values Infographics Section --- */
.vmp-section {
    padding: 76px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Top 2 Cards: Vision and Mission */
.vm-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.vm-infographic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    position: relative;
    box-shadow: 0 6px 20px -4px rgba(0, 0, 139, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.vm-infographic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: opacity 0.3s ease;
}

.vm-card-vision::before {
    background: linear-gradient(90deg, #00008b, #2563eb);
}

.vm-card-mission::before {
    background: linear-gradient(90deg, #ff131d, #f97316);
}

.vm-infographic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px -8px rgba(0, 0, 139, 0.12);
    border-color: #cbd5e1;
}

.vm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vm-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.vm-icon-vision {
    background: #eef2ff;
    color: #00008b;
    border: 1.5px solid #c7d2fe;
}

.vm-icon-mission {
    background: #fff1f2;
    color: #ff131d;
    border: 1.5px solid #fecdd3;
}

.vm-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
}

.vm-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 14px;
}

.vm-statement {
    font-size: 1.025rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 24px;
}

.vm-pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.vm-pillar-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}

.vm-pillar-item i {
    font-size: 1.1rem;
    color: #00008b;
    margin-bottom: 6px;
    display: block;
}

.vm-pillar-item span {
    font-size: 0.775rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    line-height: 1.3;
}

/* Core Values 4-Card Infographic Row */
.values-header {
    text-align: center;
    margin-bottom: 32px;
}

.values-infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.04);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(0, 0, 139, 0.1);
    border-color: #00008b;
}

.value-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #f0f4ff;
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.value-card:hover .value-icon-box {
    background: #ff131d;
    color: #ffffff;
    transform: scale(1.08);
}

.value-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 10px;
}

.value-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
}

/* --- Group Synergy / S.B. Shastri Group Section --- */
.group-synergy-section {
    padding: 76px 0;
}

.group-synergy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.group-entity-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    box-shadow: 0 6px 18px -4px rgba(0, 0, 139, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.group-entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 139, 0.12);
    border-color: #cbd5e1;
}

.group-entity-badge {
    align-self: flex-start;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 139, 0.07);
    color: #00008b;
    margin-bottom: 18px;
}

.group-entity-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 12px;
}

.group-entity-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.group-feature-list {
    list-style: none;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.group-feature-list li {
    font-size: 0.825rem;
    color: #334155;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.group-feature-list li i {
    color: #ff131d;
    font-size: 0.8rem;
}

/* --- Client Logos Marquee / Grid --- */
.client-trust-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    align-items: center;
}

.client-logo-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    transition: var(--transition);
}

.client-logo-item img {
    max-height: 44px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo-item:hover {
    border-color: #00008b;
    box-shadow: 0 6px 14px rgba(0, 0, 139, 0.08);
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Responsive Rules for About Us Page --- */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .group-synergy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .vm-duo-grid {
        grid-template-columns: 1fr;
    }

    .group-synergy-grid {
        grid-template-columns: 1fr;
    }

    .heritage-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .about-lead-para,
    .about-body-para {
        text-align: left;
    }

    .values-infographic-grid {
        grid-template-columns: 1fr;
    }

    .vm-pillars-row {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   HOMEPAGE MODERN 2026 STYLES (Abhinav Roadways & S.B. Shastri Group)
   ========================================================================== */

/* Global Home Section Header */
.section-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px auto;
}

.section-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 139, 0.08);
    color: #00008b;
    border: 1px solid rgba(0, 0, 139, 0.18);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 850;
    color: #0b1a3d;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #526581;
    line-height: 1.65;
    margin: 0;
}

/* 1. Cinematic Hero Section */
.home-hero-section {
    position: relative;
    padding: 140px 0 85px;
    background: linear-gradient(135deg, #070e22 0%, #0d1a3c 45%, #122452 100%);
    overflow: hidden;
    color: #ffffff;
}

.home-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 18% 28%, rgba(255, 19, 29, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 82% 72%, rgba(13, 110, 253, 0.16) 0%, transparent 48%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
    pointer-events: none;
}

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

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffadb0;
    backdrop-filter: blur(10px);
    margin-bottom: 22px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff131d;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 19, 29, 0.7);
    animation: badgePulse 2s infinite;
}

.active-glow-dot {
    width: 6px;
    height: 6px;
    background: #ff131d;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ff131d;
}

/* --- 4b. Desktop Navigation Dropdown Menu (Help & Support) --- */
.nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown-chevron {
    font-size: 0.625rem;
    margin-left: 2px;
    opacity: 0.75;
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item.has-dropdown:hover .nav-dropdown-chevron,
.nav-item.has-dropdown.touch-open .nav-dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 290px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 139, 0.12);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 139, 0.18), 0 0 0 1px rgba(255, 19, 29, 0.05);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    pointer-events: none;
}

/* Invisible hover bridge to prevent flickers */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-item.has-dropdown:hover .nav-dropdown-menu,
.nav-item.has-dropdown.touch-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu-header {
    padding: 6px 12px 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 6px;
}

.dropdown-menu-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #ff131d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-wrap {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 0, 139, 0.06);
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    transition: all 0.22s ease;
    flex-shrink: 0;
}

.dropdown-text-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dropdown-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.dropdown-subtag {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1;
}

.dropdown-arrow-hint {
    font-size: 0.75rem;
    color: #cbd5e1;
    transition: all 0.22s ease;
}

.dropdown-link:hover {
    background: rgba(0, 0, 139, 0.05);
    transform: translateX(3px);
}

.dropdown-link:hover .dropdown-icon-box {
    background: #ff131d;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 19, 29, 0.3);
}

.dropdown-link:hover .dropdown-title {
    color: #00008b;
}

.dropdown-link:hover .dropdown-arrow-hint {
    color: #ff131d;
    transform: translateX(2px);
}

.dropdown-link.active {
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.08) 0%, rgba(255, 19, 29, 0.05) 100%);
    border: 1px solid rgba(0, 0, 139, 0.15);
}

.dropdown-link.active .dropdown-icon-box {
    background: #00008b;
    color: #ffffff;
}

.dropdown-link.active .dropdown-title {
    color: #00008b;
    font-weight: 800;
}

.dropdown-link.active .dropdown-arrow-hint {
    color: #ff131d;
}

/* --- 5. Header Action CTAs (Brand Blue & Red) --- */

@keyframes badgePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 19, 29, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 19, 29, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 19, 29, 0); }
}

.home-hero-title {
    font-size: 3.25rem;
    font-weight: 850;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: -0.6px;
}

.home-hero-title .highlight-text {
    background: linear-gradient(135deg, #ff4c55 0%, #ff131d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-desc {
    font-size: 1.12rem;
    line-height: 1.68;
    color: #c4d2ed;
    margin-bottom: 34px;
    max-width: 580px;
}

.home-hero-desc strong {
    color: #ffffff;
}

.home-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff131d 0%, #cc000a 100%);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 19, 29, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 19, 29, 0.5);
    background: linear-gradient(135deg, #ff2e37 0%, #e6000c 100%);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Badge Accent Pill */
.hero-badge-sub {
    background: #ff131d;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

/* Live Telemetry Status Strip */
.hero-telemetry-strip {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.telemetry-item-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #a7bbdc;
}

.live-dot-beacon {
    width: 9px;
    height: 9px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    animation: beaconPulse 2s infinite;
}

.telemetry-label-sm {
    font-weight: 600;
    color: #c4d2ed;
}

.telemetry-phone-link {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.telemetry-phone-link:hover {
    color: #ffadb0;
}

.telemetry-live-kpis {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tl-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: #cbd7ed;
    backdrop-filter: blur(8px);
}

.tl-chip strong {
    color: #ffffff;
}

.tl-chip i {
    color: #ff3e48;
    font-size: 0.8rem;
}

/* Right Column: Interactive Live Fleet Telematics Showcase */
.home-hero-visual {
    position: relative;
}

.hero-showcase-container {
    position: relative;
    border-radius: 22px;
    padding: 14px;
    background: rgba(11, 23, 53, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 139, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.showcase-radar-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.radar-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radar-sweep-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    animation: beaconPulse 1.8s infinite;
}

.radar-title {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #94a9d4;
    text-transform: uppercase;
}

.radar-title i {
    color: #52a3ff;
    margin-right: 4px;
}

.indicator-chip {
    font-size: 0.7rem;
    font-weight: 700;
    color: #00e676;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.28);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.indicator-chip i {
    font-size: 0.55rem;
}

/* Slides Container */
.showcase-slides-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: #050b18;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
    z-index: 1;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 18px 16px;
    background: linear-gradient(to top, rgba(5, 11, 24, 0.95) 0%, rgba(5, 11, 24, 0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}

.slide-corridor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 139, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    align-self: flex-start;
}

.slide-corridor-badge i {
    color: #ff3e48;
}

.slide-location-text {
    font-size: 0.78rem;
    color: #cbd8ef;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slide-location-text i {
    color: #ff4d55;
}

/* Interactive Tabs Control Bar */
.showcase-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 9px 8px 8px;
    color: #a7bbdc;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.showcase-tab.active {
    background: rgba(0, 0, 139, 0.55);
    border-color: #ff131d;
    color: #ffffff;
}

.tab-index {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ff4d55;
    letter-spacing: 0.5px;
}

.tab-label {
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-glow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.showcase-tab.active .tab-glow-bar {
    background: linear-gradient(90deg, #ff131d 0%, #ff6b72 100%);
    box-shadow: 0 0 8px #ff131d;
}

/* Floating Telematics Badges */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(11, 23, 53, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    z-index: 5;
    animation: heroFloat 4s ease-in-out infinite alternate;
}

.hero-floating-card.card-fleet {
    top: -16px;
    right: -16px;
}

.hero-floating-card.card-network {
    bottom: 74px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.2);
    color: #52a3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.float-card-icon.float-icon-red {
    background: rgba(255, 19, 29, 0.18);
    color: #ff3e48;
}

.float-card-info {
    display: flex;
    flex-direction: column;
}

.float-card-info strong {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
}

.float-card-info span {
    font-size: 0.76rem;
    color: #a7bbdc;
    margin-top: 2px;
}

/* 2. KPI Ribbon Bar */
.home-kpi-ribbon {
    background: #00008b;
    position: relative;
    z-index: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 3px solid #ff131d;
    box-shadow: 0 10px 30px rgba(0, 0, 139, 0.25);
}

.kpi-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kpi-card {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
}

.kpi-number {
    font-size: 2.3rem;
    font-weight: 850;
    color: #ffffff;
    line-height: 1;
}

.kpi-plus, .kpi-percent {
    color: #ff4d55;
    font-weight: 800;
}

.kpi-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    font-weight: 500;
}

.kpi-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.16);
}

/* 3. S.B. Shastri Group Synergy Section */
.home-synergy-section {
    padding: 95px 0;
    background: #f8faff;
    border-bottom: 1px solid #e3eaf5;
}

.synergy-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.synergy-entity-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 30px;
    border: 1px solid #e3ebf7;
    box-shadow: 0 8px 24px rgba(15, 34, 77, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
}

.synergy-entity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 34, 77, 0.12);
    border-color: #c7d8f5;
}

.synergy-entity-card.active-card {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    border: 2px solid #00008b;
}

.entity-card-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #ff131d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.entity-card-badge.badge-blue {
    background: #00008b;
}

.entity-logo-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #f4f7fc;
    border: 1px solid #e3ebf7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 8px;
}

.entity-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.entity-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.entity-desc {
    font-size: 0.95rem;
    color: #4b5b75;
    line-height: 1.75;
    margin-bottom: 22px;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.entity-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    flex-grow: 1;
}

.entity-features-list li {
    font-size: 0.88rem;
    color: #3b4d66;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.entity-features-list li i {
    color: #ff131d;
    font-size: 0.85rem;
}

.entity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #00008b;
    text-decoration: none;
    font-size: 0.92rem;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.entity-link:hover {
    gap: 12px;
    color: #ff131d;
}

/* 4. Freight Services Capabilities Grid */
.home-services-section {
    padding: 95px 0;
    background: #ffffff;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-service-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5edf7;
    padding: 34px 28px;
    box-shadow: 0 6px 22px rgba(11, 26, 61, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 26, 61, 0.12);
    border-color: #c2d5f4;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.icon-truck { background: rgba(0, 0, 139, 0.08); color: #00008b; }
.icon-cold { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.icon-rail { background: rgba(25, 135, 84, 0.1); color: #198754; }
.icon-air { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.icon-warehouse { background: rgba(253, 126, 20, 0.1); color: #fd7e14; }
.icon-factory { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

.home-service-card:hover .service-card-icon {
    background: #00008b;
    color: #ffffff;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.92rem;
    color: #556987;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag-row span {
    background: #f1f5fb;
    color: #384b66;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #00008b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-card-link:hover {
    gap: 10px;
    color: #ff131d;
}

/* 5. Value Pillars (Why Choose Us) */
.home-why-section {
    padding: 95px 0;
    background: #f8faff;
    border-top: 1px solid #e4ecf7;
    border-bottom: 1px solid #e4ecf7;
}

.why-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-pillar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 26px;
    border: 1px solid #e5edf7;
    box-shadow: 0 4px 18px rgba(11, 26, 61, 0.04);
    transition: all 0.3s ease;
}

.why-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 26, 61, 0.09);
    border-color: #00008b;
}

.pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(0, 0, 139, 0.08);
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-pillar-card:hover .pillar-icon {
    background: #ff131d;
    color: #ffffff;
}

.why-pillar-card h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 10px;
}

.why-pillar-card p {
    font-size: 0.92rem;
    color: #556987;
    line-height: 1.6;
    margin: 0;
}

/* 6. Pan-India Network Banner */
.home-network-banner {
    padding: 95px 0;
    background: #ffffff;
}

.network-banner-card {
    background: linear-gradient(135deg, #091530 0%, #0d204a 100%);
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 20px 50px rgba(9, 21, 48, 0.25);
    color: #ffffff;
    overflow: hidden;
}

.network-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 19, 29, 0.2);
    border: 1px solid rgba(255, 19, 29, 0.4);
    color: #ffadb0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.network-banner-text h2 {
    font-size: 2.25rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
}

.network-banner-text p {
    font-size: 1.02rem;
    color: #c1d2f0;
    line-height: 1.65;
    margin-bottom: 32px;
}

.network-banner-text p strong {
    color: #ffffff;
}

.network-stats-row {
    display: flex;
    gap: 36px;
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.net-stat strong {
    font-size: 2rem;
    font-weight: 850;
    color: #ff3e48;
    line-height: 1;
    display: block;
}

.net-stat span {
    font-size: 0.82rem;
    color: #a4badf;
    margin-top: 4px;
    display: block;
}

.btn-network-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff131d;
    color: #ffffff !important;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.4);
}

.btn-network-explore:hover {
    background: #e6000c;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 19, 29, 0.55);
}

.network-banner-visual {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.network-banner-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* 7. Testimonials Section */
.home-testimonials-section {
    padding: 95px 0;
    background: #f8faff;
    border-top: 1px solid #e4ecf7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 24px;
    border: 1px solid #e4ecf7;
    box-shadow: 0 6px 20px rgba(11, 26, 61, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(11, 26, 61, 0.1);
    border-color: #00008b;
}

.testimonial-stars {
    color: #ff9800;
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 0.94rem;
    color: #3b4d66;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #edf2f9;
    padding-top: 16px;
}

.author-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00008b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 0.94rem;
    font-weight: 750;
    color: #0b1a3d;
    display: block;
    line-height: 1.2;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: #7b8ea5;
    margin-top: 2px;
    display: block;
}

/* 8. Clients Showcase */
.home-clients-showcase {
    padding: 75px 0 85px;
    background: #ffffff;
    border-top: 1px solid #edf2f9;
}

.home-client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.home-client-logo-item {
    background: #f9fbff;
    border: 1px solid #e7eef8;
    border-radius: 12px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
}

.home-client-logo-item img {
    max-height: 45px;
    max-width: 85%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.home-client-logo-item:hover {
    background: #ffffff;
    border-color: #00008b;
    box-shadow: 0 8px 20px rgba(0, 0, 139, 0.08);
    transform: translateY(-3px);
}

.home-client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 9. Pre-footer High Conversion CTA */
.home-cta-section {
    padding: 0 0 95px;
    background: #ffffff;
}

.home-cta-card {
    background: linear-gradient(135deg, #00008b 0%, #06113b 100%);
    border-radius: 22px;
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    box-shadow: 0 20px 48px rgba(0, 0, 139, 0.25);
    border-left: 6px solid #ff131d;
}

.cta-card-content {
    max-width: 650px;
}

.cta-card-content h2 {
    font-size: 2.2rem;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-card-content p {
    font-size: 1.05rem;
    color: #c5d7f5;
    line-height: 1.6;
    margin: 0;
}

.cta-card-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-pickup {
    background: #ff131d;
    color: #ffffff !important;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 19, 29, 0.35);
}

.btn-cta-pickup:hover {
    background: #e6000c;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 19, 29, 0.5);
}

.btn-cta-call {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-call:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Breakpoints for Homepage */
@media (max-width: 1200px) {
    .home-hero-title {
        font-size: 2.75rem;
    }
    .hero-media-img {
        height: 420px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-client-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .home-hero-section {
        padding: 120px 0 60px;
    }
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-floating-card.card-fleet {
        top: 10px;
        right: 10px;
    }
    .hero-floating-card.card-network {
        bottom: 10px;
        left: 10px;
    }
    .kpi-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .kpi-divider {
        display: none;
    }
    .synergy-cards-grid {
        grid-template-columns: 1fr;
    }
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .network-banner-grid {
        grid-template-columns: 1fr;
    }
    .network-banner-card {
        padding: 40px 30px;
    }
    .home-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 42px 28px;
    }
    .cta-card-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-hero-title {
        font-size: 2.15rem;
    }
    .home-hero-desc {
        font-size: 1rem;
    }
    .hero-media-img {
        height: 300px;
    }
    .home-services-grid {
        grid-template-columns: 1fr;
    }
    .why-pillars-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .network-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .home-client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-card-content h2 {
        font-size: 1.8rem;
    }
    .cta-card-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-pickup, .btn-cta-call {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    .home-client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   2026 CONTACT US & CUSTOMER SUPPORT DESK MODERN DESIGN SYSTEM
   Theme: Royal Deep Blue (#00008b) & Vibrant Red (#ff131d)
   ========================================================================== */

/* 1. Hero Section */
.contact-hero-section {
    position: relative;
    padding: 130px 0 70px;
    background: linear-gradient(135deg, #070e22 0%, #0d1a3c 45%, #122452 100%);
    overflow: hidden;
    color: #ffffff;
}

.contact-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 25%, rgba(255, 19, 29, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(13, 110, 253, 0.18) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px;
    pointer-events: none;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
}

.contact-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a9d4;
    margin-bottom: 20px;
}

.contact-breadcrumbs a {
    color: #cbd8ef;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-breadcrumbs a:hover {
    color: #ff3e48;
}

.contact-breadcrumbs .bc-sep {
    color: rgba(255, 255, 255, 0.3);
}

.contact-breadcrumbs .bc-current {
    color: #ffadb0;
    font-weight: 700;
}

.contact-hero-content {
    max-width: 860px;
}

.contact-hero-title {
    font-size: 2.9rem;
    font-weight: 850;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.contact-hero-desc {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #c4d2ed;
    margin-bottom: 30px;
}

.contact-hero-chips {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.hero-chip.chip-priority {
    background: rgba(255, 19, 29, 0.18);
    border: 1.5px solid rgba(255, 19, 29, 0.45);
    color: #ffffff;
}

.hero-chip.chip-priority:hover {
    background: #ff131d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 19, 29, 0.4);
}

.hero-chip.chip-wa {
    background: rgba(37, 211, 102, 0.16);
    border: 1.5px solid rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.hero-chip.chip-wa:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.hero-chip.chip-sla {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd8ef;
}

/* 2. Strategic 4-Card Contact Hubs */
.contact-hubs-section {
    padding: 85px 0 50px;
    background: #f8faff;
    border-bottom: 1px solid #e3ebf8;
}

.contact-hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-hub-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e9f5;
    padding: 30px 24px;
    box-shadow: 0 6px 20px rgba(11, 26, 61, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.contact-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 139, 0.1);
    border-color: #00008b;
}

.contact-hub-card.hub-card-priority {
    border-top: 4px solid #ff131d;
}

.hub-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hub-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.icon-box-red { background: rgba(255, 19, 29, 0.1); color: #ff131d; }
.icon-box-blue { background: rgba(0, 0, 139, 0.08); color: #00008b; }
.icon-box-navy { background: rgba(15, 23, 42, 0.08); color: #0f172a; }
.icon-box-indigo { background: rgba(79, 70, 229, 0.1); color: #4f46e5; }

.hub-card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 30px;
    background: #f1f5f9;
    color: #475569;
}

.hub-card-badge.badge-red {
    background: rgba(255, 19, 29, 0.12);
    color: #ff131d;
}

.hub-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hub-card-desc {
    font-size: 0.88rem;
    color: #526581;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

.hub-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid #edf2f9;
    border-bottom: 1px solid #edf2f9;
    margin-bottom: 20px;
}

.hub-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #334155;
}

.hub-detail-row.align-start {
    align-items: flex-start;
}

.hub-phone-link {
    font-weight: 800;
    color: #0b1a3d;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.hub-phone-link:hover {
    color: #ff131d;
}

.hub-phone-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-weight: 700;
}

.hub-phone-group a {
    color: #0b1a3d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-phone-group a:hover {
    color: #ff131d;
}

.hub-detail-row a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.hub-detail-row a:hover {
    color: #00008b;
    font-weight: 600;
}

.hub-status-text {
    font-size: 0.76rem;
    color: #16a34a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-green {
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.btn-hub-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-hub-red {
    background: #ff131d;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(255, 19, 29, 0.3);
}

.btn-hub-red:hover {
    background: #cc000a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 19, 29, 0.45);
}

.btn-hub-wa {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-hub-wa:hover {
    background: #1eb856;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-hub-outline {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    color: #00008b !important;
}

.btn-hub-outline:hover {
    background: #00008b;
    border-color: #00008b;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* 3. Interactive Dual-Panel Contact & Estimate Portal */
.contact-portal-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-portal-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 40px;
    align-items: start;
}

/* Form Container */
.contact-form-container {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 36px rgba(11, 26, 61, 0.06);
    padding: 42px;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 139, 0.08);
    color: #00008b;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.form-main-heading {
    font-size: 1.85rem;
    font-weight: 850;
    color: #0b1a3d;
    margin-bottom: 10px;
    line-height: 1.25;
}

.form-sub-heading {
    font-size: 0.94rem;
    color: #556987;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-form-styled {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1e293b;
}

.form-label .required {
    color: #ff131d;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap .input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 0.92rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control-modern {
    width: 100%;
    height: 48px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 16px 0 46px;
    font-size: 0.92rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.22s ease;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: #00008b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 0, 139, 0.08);
}

.input-icon-wrap:focus-within .input-icon {
    color: #00008b;
}

.form-textarea {
    height: auto !important;
    padding: 14px 16px !important;
    resize: vertical;
    min-height: 110px;
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #ff131d 0%, #cc000a 100%);
    color: #ffffff;
    border: none;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 19, 29, 0.5);
    background: linear-gradient(135deg, #ff2e37 0%, #e6000c 100%);
}

.form-guarantee-note {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Success Toast */
.form-toast-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    padding: 16px 20px;
    color: #166534;
    animation: fadeIn 0.3s ease;
}

.form-toast-alert .toast-icon {
    font-size: 1.5rem;
    color: #16a34a;
    flex-shrink: 0;
}

.form-toast-alert .toast-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}

.form-toast-alert .toast-body strong {
    font-size: 0.95rem;
}

/* Right Panel: Support SLA Sidebar */
.contact-sla-sidebar {
    position: sticky;
    top: 90px;
}

.sla-card {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(11, 26, 61, 0.05);
    padding: 36px 30px;
}

.sla-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 19, 29, 0.1);
    color: #ff131d;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.sla-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0b1a3d;
    line-height: 1.3;
    margin-bottom: 12px;
}

.sla-desc {
    font-size: 0.88rem;
    color: #526581;
    line-height: 1.65;
    margin-bottom: 24px;
}

.sla-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.sla-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e6edf8;
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.sla-feature-item:hover {
    border-color: #00008b;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.06);
    transform: translateX(3px);
}

.sla-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 139, 0.08);
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sla-feature-item:hover .sla-feat-icon {
    background: #ff131d;
    color: #ffffff;
}

.sla-feat-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 4px;
    line-height: 1.2;
}

.sla-feat-text p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Quick Help Portals Box */
.sidebar-portals-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
}

.portals-box-heading {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0b1a3d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-link-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portal-chip-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.portal-chip-link:hover {
    background: #f1f5f9;
    border-color: #00008b;
    transform: translateX(3px);
}

.portal-chip-link i.text-blue { color: #00008b; font-size: 1.1rem; }
.portal-chip-link i.text-red { color: #ff131d; font-size: 1.1rem; }
.portal-chip-link i.text-indigo { color: #4f46e5; font-size: 1.1rem; }

.chip-link-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chip-main {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
}

.chip-sub {
    font-size: 0.74rem;
    color: #64748b;
}

.arrow-sm {
    font-size: 0.72rem;
    color: #94a3b8;
}

/* 4. Pan-India Network Bridge Banner */
.contact-network-bridge {
    padding: 20px 0 80px;
    background: #ffffff;
}

.network-bridge-card {
    background: linear-gradient(135deg, #091530 0%, #0d204a 100%);
    border-left: 6px solid #ff131d;
    border-radius: 22px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    box-shadow: 0 16px 40px rgba(9, 21, 48, 0.22);
    color: #ffffff;
}

.network-bridge-content {
    max-width: 680px;
}

.bridge-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 19, 29, 0.22);
    border: 1px solid rgba(255, 19, 29, 0.45);
    color: #ffadb0;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bridge-heading {
    font-size: 1.95rem;
    font-weight: 850;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.bridge-desc {
    font-size: 0.98rem;
    color: #c1d2f0;
    line-height: 1.65;
    margin-bottom: 24px;
}

.bridge-stats-row {
    display: flex;
    align-items: center;
    gap: 26px;
}

.b-stat strong {
    font-size: 1.8rem;
    font-weight: 850;
    color: #ff3e48;
    line-height: 1;
    display: block;
}

.b-stat span {
    font-size: 0.78rem;
    color: #a4badf;
    margin-top: 4px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.b-stat-div {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.16);
}

.btn-bridge-explore {
    background: #ff131d;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.4);
    transition: all 0.25s ease;
}

.btn-bridge-explore:hover {
    background: #e6000c;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 19, 29, 0.55);
}

/* 5. Registered Head Office Map Section */
.contact-map-section {
    padding: 70px 0 95px;
    background: #f8faff;
    border-top: 1px solid #e3ebf8;
}

.map-showcase-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 36px rgba(11, 26, 61, 0.06);
    overflow: hidden;
}

.hq-map-card {
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
}

.hq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 12px;
}

.hq-card-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.hq-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 139, 0.08);
    color: #00008b;
    letter-spacing: 0.4px;
}

.hq-company-name {
    font-size: 1.35rem;
    font-weight: 850;
    color: #0b1a3d;
    line-height: 1.25;
    margin-bottom: 4px;
}

.hq-parent {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff131d;
    margin-bottom: 24px;
}

.hq-meta-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.hq-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hq-icon {
    color: #00008b;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hq-meta-item strong {
    font-size: 0.86rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.hq-meta-item p {
    font-size: 0.85rem;
    color: #526581;
    line-height: 1.55;
    margin: 0;
}

.hq-meta-item p a {
    color: #00008b;
    text-decoration: none;
    font-weight: 600;
}

.hq-meta-item p a:hover {
    color: #ff131d;
}

.text-green {
    color: #16a34a !important;
}

.hq-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-hq-directions {
    flex: 1;
    background: #00008b;
    color: #ffffff !important;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.22s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.25);
}

.btn-hq-directions:hover {
    background: #00005a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 139, 0.35);
}

.btn-hq-call {
    background: #fff0f1;
    border: 1.5px solid rgba(255, 19, 29, 0.35);
    color: #ff131d !important;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.22s ease;
}

.btn-hq-call:hover {
    background: #ff131d;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.hq-map-embed-box {
    width: 100%;
    height: 100%;
    min-height: 440px;
}

.hq-map-embed-box iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
}

/* --- Responsive Breakpoints for Contact Us Page --- */
@media (max-width: 1200px) {
    .contact-hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-showcase-wrapper {
        grid-template-columns: 360px 1fr;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        padding: 110px 0 50px;
    }

    .contact-hero-title {
        font-size: 2.35rem;
    }

    .contact-portal-grid {
        grid-template-columns: 1fr;
    }

    .contact-sla-sidebar {
        position: static;
    }

    .network-bridge-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .bridge-stats-row {
        justify-content: center;
    }

    .map-showcase-wrapper {
        grid-template-columns: 1fr;
    }

    .hq-map-embed-box iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 1.95rem;
    }

    .contact-hubs-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .form-row-duo {
        grid-template-columns: 1fr;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }

    .bridge-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .b-stat-div {
        display: none;
    }

    .btn-bridge-explore {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Confirmation Toast & WhatsApp Action */
.form-toast-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 16px;
    padding: 22px 24px;
    color: #14532d;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
    margin-top: 20px;
    animation: fadeInToast 0.35s ease;
}

@keyframes fadeInToast {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-toast-alert .toast-icon {
    font-size: 1.8rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-toast-alert .toast-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.toast-success-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-success-desc {
    font-size: 0.9rem;
    color: #15803d;
    line-height: 1.55;
    margin: 0;
}

.toast-wa-card {
    background: #ffffff;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

.toast-wa-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-wa-text strong {
    font-size: 0.88rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toast-wa-text span {
    font-size: 0.8rem;
    color: #64748b;
}

.text-wa {
    color: #25d366;
    font-size: 1.1rem;
}

.btn-toast-wa {
    background: #25d366;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: all 0.22s ease;
}

.btn-toast-wa:hover {
    background: #1eb856;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   2026 VOLUMETRIC WEIGHT & CFT CALCULATOR SYSTEM
   Theme: Royal Deep Blue (#00008b), Vibrant Red (#ff131d), Emerald (#10b981)
   ========================================================================== */

.volcalc-page {
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
}

/* Hero Section */
.volcalc-hero {
    background: radial-gradient(circle at top right, rgba(255, 19, 29, 0.12), transparent 45%),
                radial-gradient(circle at 15% 50%, rgba(0, 0, 139, 0.25), transparent 55%),
                linear-gradient(135deg, #050b1f 0%, #00008b 60%, #0a1128 100%);
    padding: 70px 0 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.volcalc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.volcalc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.volcalc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.volcalc-hero-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #ffffff;
}

.volcalc-hero-title span {
    background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.volcalc-hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 760px;
    margin: 0 auto 24px auto;
}

.volcalc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.volcalc-breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.2s;
}

.volcalc-breadcrumb a:hover {
    color: #ffffff;
}

/* Main Container & Dual-Panel Portal */
.volcalc-section {
    padding: 50px 0 80px 0;
}

.volcalc-portal {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
    align-items: start;
}

/* Card Base */
.volcalc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 20px 40px -15px rgba(0, 0, 139, 0.06);
    position: relative;
}

.volcalc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.volcalc-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.volcalc-card-title i {
    color: #00008b;
}

/* Unit Selection Tabs */
.volcalc-unit-picker {
    margin-bottom: 24px;
}

.volcalc-unit-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 10px;
}

.volcalc-unit-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
}

.volcalc-unit-btn {
    border: none;
    background: transparent;
    padding: 9px 4px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.volcalc-unit-btn:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.5);
}

.volcalc-unit-btn.active {
    background: #ffffff;
    color: #00008b;
    box-shadow: 0 2px 8px rgba(0, 0, 139, 0.12);
}

/* Input Fields Grid */
.volcalc-dim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.volcalc-field-group {
    position: relative;
}

.volcalc-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.volcalc-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.volcalc-input-wrap i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.volcalc-input {
    width: 100%;
    padding: 12px 42px 12px 38px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
    text-align: left !important;
}

.volcalc-input:focus {
    outline: none;
    border-color: #00008b;
    box-shadow: 0 0 0 4px rgba(0, 0, 139, 0.1);
}

.volcalc-unit-tag {
    position: absolute;
    right: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    pointer-events: none;
}

/* Preset Carton Chips */
.volcalc-presets {
    margin-bottom: 24px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 14px;
}

.volcalc-presets-title {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.volcalc-preset-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.volcalc-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.volcalc-chip:hover {
    border-color: #00008b;
    color: #00008b;
    background: #f0f4ff;
    transform: translateY(-1px);
}

/* Quantity & Actual Weight Row */
.volcalc-qty-wt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* Freight Density / Enterprise Factor Box */
.volcalc-density-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #00008b;
}

.volcalc-density-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.volcalc-density-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.volcalc-density-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.volcalc-density-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.18s ease;
}

.volcalc-density-option:hover {
    border-color: #00008b;
}

.volcalc-density-option input[type="radio"] {
    accent-color: #00008b;
    cursor: pointer;
}

/* Form Action Buttons */
.volcalc-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.volcalc-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #00008b 0%, #1e1b4b 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.22s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.25);
}

.volcalc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 139, 0.35);
}

.volcalc-btn-secondary {
    background: #ffffff;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.volcalc-btn-secondary:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

/* ==========================================================================
   RIGHT PANEL: LIVE RESULTS & 3D ISOMETRIC CANVASES
   ========================================================================== */

/* Chargeable Weight Hero Card */
.volcalc-hero-result {
    background: linear-gradient(135deg, #00008b 0%, #0a1128 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 12px 28px -6px rgba(0, 0, 139, 0.35);
}

.volcalc-hero-result::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 19, 29, 0.25), transparent 70%);
    pointer-events: none;
}

.volcalc-hero-res-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.volcalc-hero-res-val {
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 12px;
}

.volcalc-hero-res-val span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #bfdbfe;
    margin-left: 4px;
}

.volcalc-reason-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.volcalc-reason-pill.actual {
    border-color: #34d399;
    color: #a7f3d0;
}

.volcalc-reason-pill.volumetric {
    border-color: #60a5fa;
    color: #bfdbfe;
}

/* 4-Stat Metric Grid */
.volcalc-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.volcalc-stat-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}

.volcalc-stat-box:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.volcalc-stat-box.highlight {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.volcalc-stat-lbl {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 4px;
}

.volcalc-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.volcalc-stat-val small {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 2px;
}

/* Isometric Canvas Visualization Container */
.volcalc-canvas-card {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.volcalc-canvas-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

#volcalcCanvas {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.08));
}

/* Step-by-Step Formula Audit Box */
.volcalc-formula-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.volcalc-formula-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00008b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.volcalc-formula-text {
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    font-size: 0.84rem;
    line-height: 1.6;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Share & Quotation Actions */
.volcalc-share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.volcalc-btn-wa {
    background: #25d366;
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.volcalc-btn-wa:hover {
    background: #1eb856;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.volcalc-btn-copy {
    background: #ffffff;
    color: #00008b;
    border: 1.5px solid #00008b;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.volcalc-btn-copy:hover {
    background: #00008b;
    color: #ffffff;
}

/* ==========================================================================
   EDUCATIONAL GUIDE & COMPARISON INFOGRAPHIC
   ========================================================================== */

.volcalc-guide-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.volcalc-guide-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.volcalc-guide-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.volcalc-guide-desc {
    font-size: 0.96rem;
    color: #64748b;
    line-height: 1.6;
}

.volcalc-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.volcalc-compare-card {
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: var(--transition);
}

.volcalc-compare-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.06);
}

.volcalc-compare-card.bulky {
    border-top: 5px solid #3b82f6;
}

.volcalc-compare-card.dense {
    border-top: 5px solid #10b981;
}

.volcalc-compare-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.volcalc-compare-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.volcalc-compare-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 14px;
}

.volcalc-compare-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.volcalc-compare-tag {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
}

/* Reference Cheat Sheet Table */
.volcalc-table-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.volcalc-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.volcalc-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 800;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.volcalc-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.volcalc-table tr:last-child td {
    border-bottom: none;
}

.volcalc-table tr:hover td {
    background: #f8fafc;
}

/* CTA Dispatch Banner */
.volcalc-dispatch-cta {
    padding: 60px 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 19, 29, 0.2), transparent 50%),
                linear-gradient(135deg, #00008b 0%, #050b1f 100%);
    color: #ffffff;
    text-align: center;
}

.volcalc-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.volcalc-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.volcalc-cta-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 28px;
    line-height: 1.6;
}

.volcalc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.volcalc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.volcalc-cta-quote {
    background: #ff131d !important;
    color: #ffffff !important;
    border: 1.5px solid #ff131d !important;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.4);
}

.volcalc-cta-quote:hover {
    background: #e00d16 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 19, 29, 0.55);
}

.volcalc-cta-pickup {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(8px);
}

.volcalc-cta-pickup:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.volcalc-cta-call {
    background: #ffffff !important;
    color: #00008b !important;
    border: 1.5px solid #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.volcalc-cta-call i {
    color: #ff131d !important;
}

.volcalc-cta-call:hover {
    background: #f1f5f9 !important;
    color: #00008b !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.25);
}

/* Copy Toast */
.volcalc-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.volcalc-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .volcalc-portal {
        grid-template-columns: 1fr;
    }

    .volcalc-compare-grid {
        grid-template-columns: 1fr;
    }

    .volcalc-unit-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .volcalc-dim-grid {
        grid-template-columns: 1fr;
    }

    .volcalc-qty-wt-grid {
        grid-template-columns: 1fr;
    }

    .volcalc-density-radios {
        grid-template-columns: 1fr;
    }

    .volcalc-share-grid {
        grid-template-columns: 1fr;
    }

    .volcalc-card {
        padding: 20px;
    }

    .volcalc-unit-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   2026 FAQ PORTAL & KNOWLEDGE BASE STYLES
   Theme: Royal Deep Blue (#00008b), Vibrant Red (#ff131d), Emerald (#10b981)
   ========================================================================== */

.faq-page {
    background-color: #f8fafc;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    color: #1e293b;
}

/* FAQ Hero Section */
.faq-hero {
    background: radial-gradient(circle at top right, rgba(255, 19, 29, 0.12), transparent 45%),
                radial-gradient(circle at 15% 50%, rgba(0, 0, 139, 0.25), transparent 55%),
                linear-gradient(135deg, #050b1f 0%, #00008b 60%, #0a1128 100%);
    padding: 70px 0 65px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.faq-hero-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: #ffffff;
}

.faq-hero-title span {
    background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 28px auto;
}

/* FAQ Search Input Box */
.faq-search-wrapper {
    max-width: 660px;
    margin: 0 auto 24px auto;
    position: relative;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search-box i.search-icon {
    position: absolute;
    left: 20px;
    font-size: 1.1rem;
    color: #00008b;
    pointer-events: none;
    z-index: 3;
}

.faq-search-input {
    width: 100%;
    padding: 16px 54px 16px 52px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.35);
    outline: none;
    transition: all 0.25s ease;
}

.faq-search-input:focus {
    border-color: #ff131d;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 19, 29, 0.25), 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.faq-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.faq-search-clear {
    position: absolute;
    right: 18px;
    background: #e2e8f0;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #475569;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-search-clear:hover {
    background: #ff131d;
    color: #ffffff;
}

/* Category Filter Bar */
.faq-category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-cat-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.faq-cat-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
}

.faq-cat-pill.active {
    background: #ffffff;
    color: #00008b;
    border-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.faq-cat-pill.active i {
    color: #ff131d;
}

/* Main FAQ Layout */
.faq-section {
    padding: 60px 0 80px 0;
}

.faq-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Accordion Area */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-topic-header {
    margin: 24px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-topic-header:first-child {
    margin-top: 0;
}

.faq-topic-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-topic-title i {
    color: #00008b;
}

.faq-topic-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Accordion Card */
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 139, 0.08);
}

.faq-item.is-open {
    border-color: #00008b;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 139, 0.1);
}

.faq-question-btn {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0f4ff;
    color: #00008b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.faq-item.is-open .faq-q-icon {
    background: #00008b;
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-item.is-open .faq-question-text {
    color: #00008b;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.faq-item.is-open .faq-toggle-icon {
    transform: rotate(180deg);
    background: #ff131d;
    color: #ffffff;
    border-color: #ff131d;
}

/* Accordion Answer Body */
.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 22px 20px 68px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: #475569;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul {
    margin: 8px 0 12px 18px;
    padding: 0;
}

.faq-answer-inner li {
    margin-bottom: 6px;
}

.faq-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    margin-right: 6px;
}

/* Empty Search Results */
.faq-empty-state {
    display: none;
    text-align: center;
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
}

.faq-empty-icon {
    font-size: 2.8rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.faq-empty-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.faq-empty-desc {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* Sticky Support Sidebar */
.faq-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.faq-sidebar-card.highlight {
    background: linear-gradient(135deg, #00008b 0%, #0a1128 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 139, 0.4);
}

.faq-sidebar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #93c5fd;
    margin-bottom: 8px;
}

.faq-sidebar-title {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #0f172a;
}

.faq-sidebar-card.highlight .faq-sidebar-title {
    color: #ffffff;
}

.faq-sidebar-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 18px;
}

.faq-sidebar-card.highlight .faq-sidebar-desc {
    color: #cbd5e1;
}

.faq-hotline-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ff131d;
    color: #ffffff !important;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(255, 19, 29, 0.4);
    transition: all 0.2s ease;
}

.faq-hotline-btn:hover {
    background: #d90b14;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 19, 29, 0.55);
}

.faq-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff !important;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
    margin-top: 10px;
}

.faq-whatsapp-btn:hover {
    background: #1eb856;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.faq-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.faq-quick-link:hover {
    background: #f0f4ff;
    color: #00008b;
    border-color: #bfdbfe;
    transform: translateX(3px);
}

.faq-quick-link i {
    color: #ff131d;
}

/* Bottom Assistance Banner */
.faq-bottom-banner {
    padding: 60px 0;
    background: radial-gradient(circle at 90% 10%, rgba(255, 19, 29, 0.2), transparent 50%),
                linear-gradient(135deg, #00008b 0%, #050b1f 100%);
    color: #ffffff;
    text-align: center;
}

.faq-bottom-content {
    max-width: 780px;
    margin: 0 auto;
}

.faq-bottom-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.faq-bottom-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 28px;
    line-height: 1.6;
}

.faq-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .faq-layout-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .faq-hero {
        padding: 50px 0 45px 0;
    }

    .faq-category-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .faq-category-nav::-webkit-scrollbar {
        display: none;
    }

    .faq-cat-pill {
        flex: 0 0 auto;
    }

    .faq-question-btn {
        padding: 14px 16px;
    }

    .faq-answer-inner {
        padding: 0 16px 16px 16px;
    }

    .faq-q-left {
        gap: 10px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }
}


/* ==========================================================================
   COMMERCIAL CONSIGNMENT PICKUP REQUEST STYLES
   ========================================================================== */

.pickup-hero {
    position: relative;
    background: linear-gradient(135deg, #020b24 0%, #00008b 55%, #0d1e56 100%);
    color: #ffffff;
    padding: 70px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.pickup-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(255, 19, 29, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    opacity: 0.6;
    pointer-events: none;
}

.pickup-hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.pickup-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffd2d5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pickup-hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pickup-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.pickup-hero h1 .text-highlight {
    background: linear-gradient(135deg, #ff4d4d, #ff8080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pickup-hero p {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.pickup-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.pickup-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1f5f9;
    font-size: 0.95rem;
    font-weight: 600;
}

.pickup-stat-item i {
    color: #ff3b30;
    font-size: 1.1rem;
}

/* Page Layout */
.pickup-main-wrap {
    background: #f8fafc;
    padding: 50px 0 80px;
    position: relative;
}

.pickup-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.pickup-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 36px;
    align-items: start;
}

/* Form Container Card */
.pickup-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 36px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.pickup-form-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pickup-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pickup-form-header h2 i {
    color: #00008b;
}

.pickup-form-notice {
    font-size: 0.85rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
}

/* Fieldset / Section styling */
.pickup-step-section {
    margin-bottom: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 24px 20px;
    background: #fafcff;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pickup-step-section:focus-within {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 139, 0.04);
}

.step-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f6;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00008b;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(0, 0, 139, 0.25);
    flex-shrink: 0;
}

.step-title-wrap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.step-title-wrap span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Field Grid */
.pickup-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
}

.pickup-fields-grid.full-width,
.field-span-2 {
    grid-column: span 2;
}

.field-span-3 {
    grid-column: span 3;
}

.pickup-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pickup-field-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pickup-field-group label .req-star {
    color: #ff131d;
    margin-left: 3px;
}

.pickup-field-group label .opt-tag {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.pickup-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.pickup-input-wrap i.input-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s;
}

.pickup-input-wrap input,
.pickup-input-wrap select,
.pickup-input-wrap textarea {
    width: 100%;
    padding: 11px 14px 11px 40px;
    font-size: 0.93rem;
    color: #0f172a;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.pickup-input-wrap textarea {
    padding-left: 14px;
    min-height: 80px;
    resize: vertical;
}

.pickup-input-wrap input:focus,
.pickup-input-wrap select:focus,
.pickup-input-wrap textarea:focus {
    border-color: #00008b;
    box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.12);
}

.pickup-input-wrap input:focus + i.input-icon,
.pickup-input-wrap select:focus + i.input-icon {
    color: #00008b;
}

/* Service Type Cards Radio Group */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.service-card-label {
    cursor: pointer;
    position: relative;
    display: block;
    margin: 0;
}

.service-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.service-card-box {
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.service-card-box i {
    font-size: 1.5rem;
    color: #64748b;
    transition: color 0.2s;
}

.service-card-box .svc-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.service-card-box .svc-sub {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
}

.service-card-label:hover .service-card-box {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card-label input[type="radio"]:checked + .service-card-box {
    border-color: #00008b;
    background: #f0f4ff;
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.12);
}

.service-card-label input[type="radio"]:checked + .service-card-box i {
    color: #ff131d;
    transform: scale(1.1);
}

.service-card-label input[type="radio"]:checked + .service-card-box .svc-name {
    color: #00008b;
}

/* Radio Pill Group */
.radio-pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-pill-label {
    cursor: pointer;
    margin: 0;
}

.radio-pill-label input[type="radio"] {
    display: none;
}

.radio-pill-content {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    transition: all 0.2s;
}

.radio-pill-label input[type="radio"]:checked + .radio-pill-content {
    background: #00008b;
    color: #ffffff;
    border-color: #00008b;
}

/* Submit Section */
.pickup-submit-area {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pickup-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

.pickup-terms-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #00008b;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.pickup-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #00008b 0%, #1e3a8a 50%, #ff131d 150%);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 139, 0.35);
    transition: all 0.25s ease;
    width: 100%;
}

.pickup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 139, 0.45);
    background: linear-gradient(135deg, #000075 0%, #172554 50%, #e00e18 150%);
}

.pickup-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.pickup-submit-btn .spinner {
    display: none;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.pickup-submit-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 0.82rem;
    color: #64748b;
    flex-wrap: wrap;
}

.pickup-submit-guarantee span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pickup-submit-guarantee span i {
    color: #10b981;
}

/* Sidebar Styles */
.pickup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.pickup-side-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.pickup-side-card.hotline-card {
    background: linear-gradient(145deg, #020b24 0%, #00008b 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 28px -6px rgba(0, 0, 139, 0.35);
}

.hotline-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotline-card p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.5;
}

.hotline-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: background 0.2s, transform 0.2s;
}

.hotline-phone-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
    color: #ffffff;
}

.hotline-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background 0.2s, transform 0.2s;
}

.hotline-whatsapp-link:hover {
    background: #1ebc59;
    transform: translateX(4px);
    color: #ffffff;
}

/* Timeline card */
.timeline-card h4,
.checklist-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-card h4 i {
    color: #00008b;
}

.checklist-card h4 i {
    color: #ff131d;
}

.pickup-timeline {
    position: relative;
    padding-left: 24px;
}

.pickup-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-step {
    position: relative;
    margin-bottom: 18px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step-dot {
    position: absolute;
    left: -24px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #00008b;
}

.timeline-step.active .timeline-step-dot {
    border-color: #ff131d;
    background: #ff131d;
}

.timeline-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.timeline-step-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Checklist items */
.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.45;
}

.checklist-items li i {
    color: #10b981;
    margin-top: 3px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Success Confirmation Overlay & Modal */
.pickup-success-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pickup-success-overlay.show {
    display: flex;
    animation: fadeInModal 0.25s ease-out forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pickup-success-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(10px);
    animation: slideUpModal 0.3s ease-out forwards;
}

@keyframes slideUpModal {
    to { transform: translateY(0); }
}

.success-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}

.pickup-success-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pickup-success-card p.success-intro {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 22px;
}

.pickup-ref-box {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pickup-ref-box .ref-info {
    text-align: left;
}

.pickup-ref-box .ref-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pickup-ref-box .ref-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00008b;
    font-family: monospace;
}

.ref-copy-btn {
    background: #e2e8f0;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ref-copy-btn:hover {
    background: #cbd5e1;
}

.pickup-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp-btn:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
}

.modal-close-btn {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.92rem;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #e2e8f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pickup-grid {
        grid-template-columns: 1fr;
    }
    
    .pickup-sidebar {
        position: static;
        order: 2;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pickup-hero h1 {
        font-size: 2.1rem;
    }

    .pickup-form-card {
        padding: 24px 18px;
    }

    .pickup-fields-grid {
        grid-template-columns: 1fr;
    }

    .field-span-2,
    .field-span-3 {
        grid-column: span 1;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}
