/* Typography: Inter Font Family Standardization */

:root {
    --primary: #FF941F;
    --primary-hover: #FF7A00;
    --bg-main: #050816;
    --bg-secondary: #0B1020;
    --bg-card: rgba(11, 16, 32, 0.6);
    --bg-glass: rgba(11, 16, 32, 0.45);
    --text-primary: #FFFFFF;
    --text-secondary: #D6D6D6;
    --text-muted: #8E9BAE;
    --success: #25D366;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 148, 31, 0.3);
    --glow-effect: 0 0 20px rgba(255, 148, 31, 0.15);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Dark Theme Overrides */
html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-main) !important;
    overflow-x: visible !important;
}

/* Prevent body scroll when drawer or tracking panel is open ───────── */
body.nav-drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.tracking-panel-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main) !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em !important;
}

/* Paragraphs & Text */
p {
    font-family: var(--font-main) !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

.text-gray,
.text-muted {
    color: var(--text-secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Inputs & Form Elements */
input,
select,
textarea,
.form-control {
    background-color: rgba(11, 16, 32, 0.8) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
    height: 52px !important;
    padding: 0 20px !important;
    font-family: var(--font-main) !important;
    font-weight: 500 !important;
    transition: var(--transition-smooth) !important;
}

textarea.form-control {
    height: 120px !important;
    padding: 15px 20px !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    background-color: var(--bg-secondary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--border-glow) !important;
    color: var(--text-primary) !important;
    outline: none !important;
}

label {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
}

/* Modern Button Custom Styling */
.btn-theme,
.btn-primary,
.btn-theme-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    height: auto !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(255, 148, 31, 0.3) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-theme:hover,
.btn-primary:hover,
.btn-theme-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 148, 31, 0.45) !important;
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%) !important;
}

.btn-theme:active,
.btn-primary:active,
.btn-theme-dark:active {
    transform: translateY(1px);
    opacity: 0.9;
}

/* Secondary Button Outline */
.btn-outline-theme {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    padding: 10px 28px !important;
    transition: var(--transition-smooth) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-theme:hover {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(255, 148, 31, 0.3) !important;
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-effect);
    transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FAQ SECTION REDESIGN — Matches Carguu Brand
   ═══════════════════════════════════════════════════════════════════════ */

.faq_section_main {
    background: var(--bg-main) !important;
    padding: 80px 0 100px !important;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow */
.faq_section_main::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.06) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.faq_section_main .container {
    position: relative;
    z-index: 1;
}

/* Section title styling */
.faq_section_main h1 {
    font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem) !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 3rem !important;
    letter-spacing: -0.02em;
}

/* Remove white container background completely */
.all_faq_container_main {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.all_faq_container_main_faq_list {
    background: transparent !important;
    padding: 0 !important;
}

.all_faq_container_main_faq_list_ol {
    background: transparent !important;
    padding: 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

/* Premium FAQ Card Design */
.all_faq_container_main_faq_list_ol>li {
    background: #121827 !important;
    border: 1px solid rgba(255, 148, 31, 0.15) !important;
    border-radius: 18px !important;
    padding: 28px !important;
    margin-bottom: 20px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    display: flex !important;
    align-items: start !important;
    gap: 20px !important;
}

/* Hover effect - lift and glow */
.all_faq_container_main_faq_list_ol>li:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 148, 31, 0.4) !important;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(255, 148, 31, 0.15) !important;
    background: #151d2e !important;
}

/* Premium Orange Number Badge */
.all_faq_container_main_faq_list_ol>li>span:first-child {
    background: rgba(255, 148, 31, 0.15) !important;
    border: 1.5px solid rgba(255, 148, 31, 0.4) !important;
    color: #FF941F !important;
    min-width: 48px !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
    box-shadow:
        0 4px 12px rgba(255, 148, 31, 0.2),
        inset 0 0 12px rgba(255, 148, 31, 0.08) !important;
    transition: all 0.25s ease !important;
}

.all_faq_container_main_faq_list_ol>li:hover>span:first-child {
    background: rgba(255, 148, 31, 0.22) !important;
    border-color: rgba(255, 148, 31, 0.6) !important;
    box-shadow:
        0 6px 16px rgba(255, 148, 31, 0.3),
        inset 0 0 16px rgba(255, 148, 31, 0.12) !important;
    transform: scale(1.05);
}

/* FAQ Content Wrapper */
.all_faq_container_main_faq_list_ol>li>div {
    flex: 1;
    min-width: 0;
}

/* Question Typography */
.all_faq_container_main_faq_list_ol>li>div>span {
    color: #FFFFFF !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    display: block !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.01em !important;
}

/* Answer Typography */
.all_faq_container_main_faq_list_ol>li>div>p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Responsive Typography & Spacing ────────────────────────────────────── */

/* Tablets & Small Desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .faq_section_main {
        padding: 60px 0 80px !important;
    }

    .all_faq_container_main_faq_list_ol>li {
        padding: 24px !important;
        gap: 18px !important;
    }

    .all_faq_container_main_faq_list_ol>li>span:first-child {
        min-width: 44px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>span {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>p {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .faq_section_main {
        padding: 50px 0 60px !important;
    }

    .faq_section_main h1 {
        margin-bottom: 2rem !important;
    }

    .all_faq_container_main_faq_list_ol>li {
        padding: 20px !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }

    .all_faq_container_main_faq_list_ol>li>span:first-child {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>span {
        font-size: 17px !important;
        margin-bottom: 10px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* Mobile Portrait (414px - 575px) */
@media (max-width: 575px) {
    .faq_section_main {
        padding: 40px 0 50px !important;
    }

    .all_faq_container_main_faq_list_ol>li {
        padding: 18px !important;
        gap: 14px !important;
        margin-bottom: 14px !important;
    }

    .all_faq_container_main_faq_list_ol>li>span:first-child {
        min-width: 38px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>span {
        font-size: 16px !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }
}

/* Small Mobile (360px - 413px) */
@media (max-width: 413px) {
    .all_faq_container_main_faq_list_ol>li {
        padding: 16px !important;
        gap: 12px !important;
    }

    .all_faq_container_main_faq_list_ol>li>span:first-child {
        min-width: 36px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>span {
        font-size: 15px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>p {
        font-size: 13px !important;
    }
}

/* Extra Small Mobile (320px - 359px) */
@media (max-width: 359px) {
    .faq_section_main {
        padding: 35px 0 45px !important;
    }

    .all_faq_container_main_faq_list_ol>li {
        padding: 14px !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }

    .all_faq_container_main_faq_list_ol>li>span:first-child {
        min-width: 34px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 14px !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>span {
        font-size: 14.5px !important;
        line-height: 1.3 !important;
    }

    .all_faq_container_main_faq_list_ol>li>div>p {
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FLOATING HEADER — Reference Image Implementation
   Handcrafted by Senior Frontend Engineer + UI/UX Designer
   Inspired by: Stripe, Linear, Framer, Vercel, Uber Freight
   ═══════════════════════════════════════════════════════════════════════ */

.site-header-sticky {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 24px;
    transition: top 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Floating Container with Gradient Border */
.custom_nav_bar_main {
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
    border-radius: 28px !important;
    position: relative;
    display: flex;
    align-items: center;

    /* Premium dark glass background */
    background: rgba(10, 12, 22, 0.72) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;

    /* Gradient border using pseudo-element */
    padding: 1px;

    /* Layered premium shadows */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.48),
        0 2px 12px rgba(255, 145, 30, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset !important;

    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Gradient border wrapper */
.custom_nav_bar_main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(90deg,
            rgba(255, 145, 30, 0.35) 0%,
            rgba(255, 170, 70, 0.18) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.32s ease;
}

/* Ambient orange glow (corners) */
.custom_nav_bar_main::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 50%,
            rgba(255, 145, 30, 0.08) 0%,
            rgba(255, 145, 30, 0.04) 30%,
            transparent 70%);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

/* Scrolled state */
.site-header-sticky.scrolled {
    top: 16px;
}

.custom_nav_bar_main.scrolled {
    background: rgba(8, 10, 18, 0.88) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    height: 68px !important;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.58),
        0 4px 16px rgba(255, 145, 30, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
}

.custom_nav_bar_main.scrolled::before {
    opacity: 1;
}

/* Inner navbar container */
.custom_nav_bar_main nav.navbar {
    padding: 0 32px !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.custom_nav_bar_main .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 !important;
}

/* ── Logo Section ───────────────────────────────────────────────────── */
.navbar-brand {
    margin-right: 56px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand svg {
    filter: drop-shadow(0 2px 8px rgba(255, 145, 30, 0.28));
    transition: filter 0.28s ease;
}

.navbar-brand:hover svg {
    filter: drop-shadow(0 4px 12px rgba(255, 145, 30, 0.42));
}

.brand-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-container:hover {
    transform: translateY(-1px);
}

.brand-logo-text {
    color: #FFFFFF !important;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.03em;
}

/* ── Navigation Links ─────────────────────────────────────────────────── */
.custom_nav_bar_main .navbar-nav {
    gap: 10px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    padding: 10px 20px !important;
    letter-spacing: 0.3px !important;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.04);
}

/* Active menu state */
.navbar-nav .nav-item.active .nav-link {
    color: #FF911E !important;
    background: rgba(255, 145, 30, 0.06);
}

.navbar-nav .nav-item.active .nav-link:hover {
    color: #FF911E !important;
    background: rgba(255, 145, 30, 0.08);
}

/* Animated underline indicator */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: calc(100% - 32px);
    height: 2px;
    background: linear-gradient(90deg, #FF911E 0%, #FFAA46 100%);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0;
}

.navbar-nav .nav-item.active .nav-link::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* ── Right-side CTAs ──────────────────────────────────────────────────── */
.header-ctas-container {
    gap: 12px !important;
    margin-left: 36px;
    display: flex;
    align-items: center;
}

/* Language Selector - Premium Glass Effect */
.filter-type .language-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 100px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 18px 0 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.filter-type .language-btn .globe-icon {
    margin-right: 0 !important;
    opacity: 0.78;
    flex-shrink: 0;
    transition: opacity 0.28s ease;
}

.filter-type .language-btn::after {
    margin-left: 2px;
    opacity: 0.68;
    transition: opacity 0.28s ease;
}

.filter-type .language-btn:hover {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.filter-type .language-btn:hover .globe-icon,
.filter-type .language-btn:hover::after {
    opacity: 1;
}

.filter-type .dropdown-menu.show {
    background: rgba(12, 14, 22, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 145, 30, 0.18) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
    border-radius: 12px !important;
    padding: 8px !important;
}

.filter-type .dropdown-item {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 600 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    transition: all 0.28s ease !important;
}

.filter-type .dropdown-item:hover {
    background: rgba(255, 145, 30, 0.12) !important;
    color: #FF911E !important;
}

.filter-type .dropdown-item.primary {
    background: rgba(255, 145, 30, 0.15) !important;
    color: #FF911E !important;
}

/* Track Order Button - Perfectly Centered Icon & Text Group */
.header-track-btn {
    background: #FF7D00 !important;
    border: none !important;
    border-radius: 12px !important;
    height: 48px !important;
    padding: 0 12px !important; /* Extremely reduced padding to shorten button */
    color: #FFFFFF !important;
    font-size: 14px !important; /* Smaller font to fit nicely */
    font-weight: 700 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    /* Flexbox for perfect centering of icon + text group */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important; /* Minimal gap between text and icon */
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Ensure any old ::after content is hidden to prevent duplicate text */
.header-track-btn::after, .header-track-btn::before {
    content: none !important;
    display: none !important;
}

.header-track-btn:hover {
    background: rgba(255, 145, 30, 0.08) !important;
    border-color: rgba(255, 145, 30, 0.68) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.18),
        0 0 20px rgba(255, 145, 30, 0.18);
}

.header-track-icon {
    width: 15px;
    height: 15px;
    opacity: 0.88;
    transition: opacity 0.28s ease !important;
    display: block;
    flex-shrink: 0;
    line-height: 1;
}

.header-track-btn:hover .header-track-icon {
    opacity: 1;
}

/* Mobile hamburger */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    padding: 10px !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.28s ease;
    background: rgba(255, 255, 255, 0.04);
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24) !important;
}

.navbar-toggler span {
    color: #FFFFFF !important;
    font-size: 22px !important;
}

/* Hero Section Enhancements */
.header_main_Section {
    background: radial-gradient(circle at 10% 40%, rgba(255, 148, 31, 0.12), transparent 45%), #050816 !important;
    position: relative;
    padding: 120px 0 120px 0 !important;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-light);
}

/* Cinematic background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    /* Fade in once video starts playing */
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-video.loaded {
    opacity: 1;
}

/* Dark gradient overlay — keeps text readable without hiding the video */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(8, 12, 22, 0.72),
            rgba(8, 12, 22, 0.82));
    pointer-events: none;
}

/* Glow blob and content sit above video + overlay */
.header_main_Section .glow-backdrop {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.header_main_Section .z-index-1 {
    z-index: 2 !important;
    position: relative;
}

.overlay_header {
    display: none !important;
    /* Remove legacy black blocky overlay */
}

/* Hero Badge Capsule */
.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(11, 16, 32, 0.5);
    border: 1px solid rgba(255, 148, 31, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 148, 31, 0.1);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.hero-badge .text {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.5rem, 1.5rem + 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
}

.hero-title .text-primary {
    color: var(--primary) !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.5vw, 1.25rem) !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400 !important;
}

/* Hero CTAs */
.hero-btns-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-orange-filled {
    background: var(--primary) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(255, 148, 31, 0.3);
}

.btn-orange-filled:hover {
    background: var(--primary-hover) !important;
    box-shadow: 0 6px 20px rgba(255, 148, 31, 0.45);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    color: #FFFFFF !important;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-outline-white:hover {
    border-color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px);
}

/* Mouse Scroll Indicator */
.scroll-indicator-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(255, 148, 31, 0.1);
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll-wheel-anim 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px var(--primary);
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        top: 18px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* Glow effects */
.glow-backdrop {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* App Promotion Section styling */
.app_prmt_section {
    background: var(--bg-secondary) !important;
    position: relative;
    overflow: hidden;
    padding: 100px 0 !important;
}

.app_prmt_section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.app_prmt_section h1 {
    font-size: clamp(1.8rem, 1rem + 2.5vw, 2.8rem) !important;
}

.app_prmt_section .material-icons {
    background: rgba(255, 148, 31, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 1.2rem !important;
}

.app_mockup_img_sec {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
    top: 0 !important;
    max-height: 480px;
}

/* Testimonial & Expert Says Slider styling */
.expert_says_section {
    background: var(--bg-main) !important;
    padding: 100px 0 !important;
}

.expert_says_section_all_comnts {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition-smooth) !important;
    height: 100%;
}

.expert_says_section_all_comnts:hover {
    border-color: var(--border-glow) !important;
    transform: translateY(-4px) !important;
}

.expert_client_img_conatiner_contain {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.client_img_conatiner_contain {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 10px rgba(255, 148, 31, 0.2) !important;
}

.expert_says_rat_dte_sec span {
    color: var(--text-muted) !important;
}

.owl-carousel-expert-says .owl-nav .owl-prev,
.owl-carousel-expert-says .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-primary) !important;
    transition: var(--transition-smooth) !important;
}

.owl-carousel-expert-says .owl-nav .owl-prev:hover,
.owl-carousel-expert-says .owl-nav .owl-next:hover {
    background: var(--primary) !important;
    box-shadow: 0 0 10px rgba(255, 148, 31, 0.4) !important;
}

/* Our Services Ecosystem Card style */
.our_srvcs_Sec {
    background: var(--bg-main) !important;
    padding: 100px 0 !important;
}

.our_Services_crds_hm {
    transition: var(--transition-smooth);
}

.our_srvcs_Sec_crd {
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    overflow: hidden;
    height: 250px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition-smooth) !important;
}

.our_srvcs_Sec_crd:hover {
    transform: translateY(-6px);
    border-color: var(--primary) !important;
    box-shadow: 0 12px 25px rgba(255, 148, 31, 0.25) !important;
}

.overlay_serv_crd {
    background: linear-gradient(to top, rgba(5, 8, 22, 0.95) 0%, rgba(5, 8, 22, 0.75) 100%) !important;
}

.our_srvcs_Sec_crd_head::before {
    border-top: 2px solid var(--primary) !important;
}

/* Stats / Counter section styling */
.counter_section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-main) 100%) !important;
    background-image: none !important;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding: 80px 0 !important;
}

.overlay_counter_section {
    display: none !important;
}

.counter_Section {
    border-left: 2px solid var(--border-light) !important;
    padding-left: 30px !important;
}

.counter_Section h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2.5rem, 1rem + 3.5vw, 4rem) !important;
    margin-bottom: 5px;
}

.counter_Section h5 {
    color: var(--text-secondary) !important;
}

/* Video overview preview card */
.video-area {
    background: var(--bg-secondary) !important;
    padding: 100px 0 !important;
}

.video-area .video-popup {
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    position: relative;
}

.video-popup span {
    background: var(--primary) !important;
    border: 5px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition-smooth) !important;
    width: 80px;
    height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}

.video-popup span::before {
    display: none !important;
}

.video-popup span:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 0 25px rgba(255, 148, 31, 0.6) !important;
    background: var(--primary-hover) !important;
}

.video-popup span i,
.video-popup span .material-icons {
    font-size: 40px !important;
    margin: 0 !important;
    color: #FFFFFF !important;
}

/* Section headings global dashed border removal / enhancement */
.section_heading_cntnr::before,
.section_heading_cntnr_app_prmt::before,
.section_heading_cntnr_counter::before,
.section_heading_cntnr_video::before,
.section_heading_testimonial::before,
.section_heading_cntnr_faq::before,
.section_heading_cntnr_serv_3_crg_trkng::before {
    display: none !important;
    /* Remove dated dashed horizontal lines */
}

/* Add custom modern underline for headers */
.modern-title-underline {
    position: relative;
    padding-bottom: 12px;
}

.modern-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.modern-title-underline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer Section Styling */
.footer_section {
    background-color: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 50px 0 !important;
}

.footer_logo_img img {
    max-height: 50px;
    filter: drop-shadow(0 0 6px rgba(255, 148, 31, 0.15));
}

.footer_section h5 {
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px !important;
    color: var(--text-primary) !important;
}

.footer_section ul {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.footer_section ul li {
    margin-bottom: 12px !important;
}

.footer_section ul li a {
    color: var(--text-secondary) !important;
    transition: var(--transition-smooth);
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.footer_section ul li a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.social_links_footer a span img {
    transition: var(--transition-smooth);
}

.social_links_footer a:hover span img {
    transform: scale(1.2) translateY(-2px);
    filter: drop-shadow(0 0 5px rgba(255, 148, 31, 0.5));
}

/* Copyright section */
.copyright_section {
    background-color: var(--bg-main) !important;
    border-top: 1px solid var(--border-light);
    padding: 25px 0 !important;
}

.copyright_section span {
    color: var(--text-muted) !important;
}

/* Side Menu Tracking Panel Redesign */
.menu {
    background: #0d1220 !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light) !important;
    min-width: 360px !important;
    max-width: 360px !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 2000 !important;
    overflow-y: auto;
    position: relative;
}

/* Tracking panel close button – always visible ──────────────────── */
.tracking-panel-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.tracking-panel-close:hover {
    background: rgba(255, 145, 30, 0.12);
    border-color: rgba(255, 145, 30, 0.5);
    color: #FF8A00;
}

/* Mobile tracking panel close button ─────────────────────────────── */
@media (max-width: 991px) {
    .tracking-panel-close {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 2001;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        max-height: 100vh;
        width: min(90vw, 360px);
        border-radius: 0;
        border-left: 1px solid rgba(255, 145, 30, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-top: 0;
    }
}

.login_sec_head_main {
    background: linear-gradient(135deg, #1a2340 0%, #0d1220 100%) !important;
    border-bottom: 1px solid var(--border-light);
    padding: 30px 70px 30px 20px !important;
    /* Added right padding to prevent overlap with close button */
    min-height: auto !important;
    height: auto !important;
}

.login_sec_head_main_on_position {
    position: relative;
    width: 100%;
}

.login_sec_head_main_on_position h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding-right: 0 !important;
    /* Remove extra padding since parent has it */
}

.login_sec_head_main_on_position p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5 !important;
    padding-right: 0 !important;
    /* Remove extra padding since parent has it */
}

.login_form_Sec_container {
    padding: 30px 20px !important;
    background: transparent !important;
    top: 0 !important;
    border-radius: 0 !important;
}

/* Dark-styled form input inside the sidebar */
.menu .form-control {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    height: 50px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.menu .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.menu .form-control:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 148, 31, 0.15) !important;
    outline: none !important;
    color: #ffffff !important;
}

/* Label inside menu */
.menu label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px !important;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALIDATION ERROR STYLING — ONLY red border and error message
   ═══════════════════════════════════════════════════════════════════════ */

/* Error label styling - the existing #error_id label */
.menu #error_id,
.menu .error_id,
.menu label.error {
    color: #ff4444 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.01em;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    display: none;
    /* Hidden by default */
    transition: all 0.25s ease;
}

/* Show error when it has text */
.menu #error_id:not(:empty),
.menu .error_id:not(:empty),
.menu label.error:not(:empty) {
    display: block !important;
}

/* Input error state - ONLY red border, everything else stays the same */
.menu .form-control.error,
.menu input.error,
.menu #track_id.error {
    border-color: #ff4444 !important;
    pointer-events: auto !important;
    /* DO NOT change background, opacity, or any other properties */
    /* Input remains fully editable with same dark background */
}

/* Focus state on error input - normal focus behavior with red border */
.menu .form-control.error:focus,
.menu input.error:focus,
.menu #track_id.error:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    /* Same as normal focus */
    border-color: #ff4444 !important;
    /* Keep red border while in error state */
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15) !important;
    /* Red glow instead of orange */
    outline: none !important;
    color: #ffffff !important;
}

/* Check Status button - solid orange */
.menu .btn-theme {
    background: var(--primary) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 14px 24px !important;
    width: 100% !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(255, 148, 31, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    letter-spacing: 0.03em;
    cursor: pointer;
}

/* .menu .btn-theme:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(236, 174, 111, 0.45) !important;
} */

.menu .btn-theme {
    background: linear-gradient(135deg, #ff8c00 0%, #ff9f1c 100%) !important;
    border: 1px solid #ff9800 !important;
    color: #ffffff !important;
    font-weight: 600;
    transition: all .25s ease;
}

.menu .btn-theme:hover {
    background: linear-gradient(135deg, #ff991a 0%, #ffae33 100%) !important;
    border-color: #ffae33 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 152, 0, .28) !important;
}

.menu .btn-theme span,
.menu .btn-theme i,
.menu .btn-theme .material-icons {
    color: #ffffff !important;
}

.menu .btn-theme .material-icons {
    font-size: 20px !important;
    line-height: 1 !important;
    position: static !important;
    top: auto !important;
}

/* Back button in tracking status view */
.menu .sign_up_login_sec .btn {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background: transparent !important;
}

.menu .sign_up_login_sec .btn:hover {
    background: rgba(255, 148, 31, 0.1) !important;
}

.booking-status-container {
    padding: 20px !important;
    color: var(--text-primary);
    background: transparent !important;
}

.driver-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.driver-details h3 {
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
    color: var(--text-primary) !important;
}

.driver-details p {
    font-size: 0.85rem !important;
    margin: 0 !important;
    color: var(--text-secondary) !important;
}

/* Stepper status list style in Tracking */
.booking-status h4 {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
    color: var(--text-primary) !important;
    border-color: var(--border-light) !important;
}

.status-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Remove gap to make timeline continuous */
    padding-left: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM TIMELINE PROGRESS BAR — Professional logistics tracking style
   ═══════════════════════════════════════════════════════════════════════ */

/* Vertical connector line - background (inactive) */
.timeline-track {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 3px;
    height: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.15) !important;
    z-index: 0;
    border-radius: 2px;
}

/* Active progress line (orange) */
.timeline-track .timeline-progress {
    background: #FFA03A !important;
    width: 100% !important;
    height: 0;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 160, 58, 0.4) !important;
}

/* Each status item */
.status-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    opacity: 1; /* Made fully opaque for better readability */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    min-height: 60px;
}

.status-item:first-child {
    padding-top: 0;
}

.status-item:last-child {
    padding-bottom: 0;
}

/* Active status items */
.status-item.active {
    opacity: 1;
}

/* Status icon circle */
.status-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    /* Above the line */
    position: relative;
}

/* Active icon - orange with glow */
.status-item.active .status-icon {
    background: #FFA03A !important;
    border-color: #FFA03A !important;
    box-shadow: 0 0 0 4px rgba(255, 160, 58, 0.15), 0 0 20px rgba(255, 160, 58, 0.4) !important;
    transform: scale(1.05);
}

/* Icon images */
.status-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    /* Inactive icons: semi-transparent white */
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Active icons: full white */
.status-item.active .status-icon img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Status text */
.status-text {
    flex: 1;
    padding-top: 2px;
    /* Align with icon center */
}

.status-text h5 {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600 !important;
    transition: color 0.3s ease;
}

.status-text p {
    font-size: 0.8rem !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    line-height: 1.5 !important;
    transition: color 0.3s ease;
}

/* Active text styling */
.status-item.active .status-text h5 {
    color: #ffffff !important;
}

.status-item.active .status-text p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Dynamic progress height based on active items */
.status-item.active~.status-item {
    /* Future steps remain inactive */
}

/* Responsive adjustments for timeline */
@media (max-width: 576px) {
    .status-item {
        gap: 14px;
        padding: 12px 0;
        min-height: 64px;
    }

    .status-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .timeline-track {
        left: 18px;
        /* Adjust for smaller icon */
        width: 2px;
    }

    .status-text h5 {
        font-size: 0.9rem !important;
    }

    .status-text p {
        font-size: 0.75rem !important;
    }
}

/* Premium Minimalist WhatsApp Button */
.whatsapp_btn_fixd {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 1050 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    background-color: transparent !important; /* Removed white */
    border-radius: 50% !important;
    border: none !important; /* Removed white border */
    
    /* Maximum orange ambient glow */
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        0 0 60px 10px rgba(255, 102, 0, 0.8) !important;
        
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-decoration: none !important;
    
    /* Very slow floating animation with breathing glow */
    animation: waFloatPremium 4s ease-in-out infinite !important;
    will-change: transform, box-shadow, bottom;
}

.whatsapp_btn_fixd img {
    width: 60px !important; /* Scaled to perfectly fill the container */
    height: 60px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp_btn_fixd:hover {
    transform: translateY(-6px) scale(1.08) !important;
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.15),
        0 0 80px 15px rgba(255, 102, 0, 1) !important;
    /* Pause float on hover */
    animation: none !important;
}

/* Messenger fallback styles */
.messenger_btn_fixd {
    transition: var(--transition-smooth);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.messenger_btn_fixd:hover {
    transform: scale(1.15) rotate(8deg);
}

/* Premium Floating Animation */
@keyframes waFloatPremium {
    0% { 
        transform: translateY(0px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 60px 10px rgba(255, 102, 0, 0.8);
    }
    50% { 
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15), 0 0 85px 20px rgba(255, 102, 0, 1);
    }
    100% { 
        transform: translateY(0px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 60px 10px rgba(255, 102, 0, 0.8);
    }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .whatsapp_btn_fixd {
        /* Set base bottom safely for normal scrolling. JS handles footer overlap. */
        bottom: 20px !important;
        right: 20px !important;
        width: 58px !important;
        height: 58px !important;
    }
    .whatsapp_btn_fixd img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Responsive updates and Utilities */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0 !important;
    }

    .header_main_Section {
        padding: 60px 0 80px 0 !important;
    }

    .top_nav_fr_info_left_Sec {
        width: 100% !important;
        justify-content: center;
        margin-bottom: 8px;
    }

    .top_nav_fr_info_right_Sec {
        width: 100% !important;
        justify-content: center;
    }

    .counter_Section {
        border-left: none !important;
        border-bottom: 1px solid var(--border-light);
        padding-left: 0 !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .app_mockup_img_sec {
        margin-top: 40px;
        max-height: 350px;
    }
}

/* Float Keyframe Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Flex Gap Utility Classes for Bootstrap 4 */
.gap-1 {
    gap: 4px !important;
}

.gap-2 {
    gap: 8px !important;
}

.gap-3 {
    gap: 16px !important;
}

.gap-4 {
    gap: 24px !important;
}

.gap-5 {
    gap: 32px !important;
}

/* Reusable Breadcrumbs Header */
.breadcrumbs-header {
    background: radial-gradient(circle at top right, rgba(255, 148, 31, 0.08), transparent 50%), var(--bg-main) !important;
    height: auto !important;
    padding: 30px 0 !important;
    border-bottom: 1px solid var(--border-light);
}

/* Redesigned Newsletter Component */
.newsletter-card {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Custom bullet styling for list groups */
.custom-list-unstyled {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.custom-list-unstyled li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.custom-list-unstyled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Owl Carousel Responsiveness Controls */
@media (max-width: 1200px) {
    .owl-carousel-expert-says .owl-nav .owl-prev {
        left: -10px !important;
        background: rgba(11, 16, 32, 0.9) !important;
    }

    .owl-carousel-expert-says .owl-nav .owl-next {
        right: -10px !important;
        background: rgba(11, 16, 32, 0.9) !important;
    }
}

@media (max-width: 767.98px) {
    .owl-carousel-expert-says .owl-nav {
        display: none !important;
        /* Hide navigation arrows on mobile, support swipe gesture */
    }
}

/* Image Zoom Hover effect for services */
.zoom-on-hover {
    overflow: hidden;
}

.zoom-on-hover img {
    transition: var(--transition-smooth);
}

.zoom-on-hover:hover img {
    transform: scale(1.05);
}

/* ========================================
   PREMIUM DRIVER APP SHOWCASE SLIDER
   ======================================== */
.driver-showcase-section {
    background-color: #FFFFFF !important;
    color: #1A1F35 !important;
    padding: 100px 0 !important;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.driver-showcase-section h2,
.driver-showcase-section h3,
.driver-showcase-section .driver-slide-title {
    color: #1A1F35 !important;
    font-family: var(--font-main) !important;
}

.driver-showcase-section p,
.driver-showcase-subtitle {
    color: #4A5568 !important;
    font-family: var(--font-main) !important;
}

.driver-showcase-subtitle {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400 !important;
}

/* Swiper Slide Layout */
.driver-swiper-container {
    padding: 40px 0 60px 0 !important;
    position: relative;
}

.driver-slide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    gap: 50px;
}

.driver-slide-image-col {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.driver-slide-text-col {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* Responsive Swiper Layout */
@media (max-width: 991.98px) {
    .driver-slide-container {
        gap: 30px;
    }

    .driver-slide-image-col {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .driver-slide-text-col {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (max-width: 767.98px) {
    .driver-showcase-section {
        padding: 60px 0 !important;
    }

    .driver-slide-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .driver-slide-image-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .driver-slide-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
}

/* Phone Showcase Mockup Frame */
.phone-showcase-mockup {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
    animation: float-mockup 6s ease-in-out infinite;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-showcase-mockup:hover {
    box-shadow: 0 35px 80px rgba(255, 138, 0, 0.12);
}

.phone-showcase-mockup img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: contain;
    display: block;
}

@keyframes float-mockup {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Typography styles */
.driver-slide-title {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
    line-height: 1.25 !important;
}

.driver-slide-desc {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
    .driver-slide-title {
        font-size: 1.75rem !important;
        margin-bottom: 12px !important;
    }

    .driver-slide-desc {
        font-size: 0.95rem !important;
        max-width: 500px;
        margin: 0 auto !important;
    }
}

/* Slider Navigation & Pagination */
.driver-swiper-button-prev,
.driver-swiper-button-next {
    color: #FF8A00 !important;
    background: rgba(255, 138, 0, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.driver-swiper-button-prev::after,
.driver-swiper-button-next::after {
    font-size: 18px !important;
    font-weight: 800;
}

.driver-swiper-button-prev:hover,
.driver-swiper-button-next:hover {
    background: #FF8A00;
    color: #FFFFFF !important;
    border-color: #FF8A00;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.25);
}

.driver-swiper-button-prev {
    left: 20px !important;
}

.driver-swiper-button-next {
    right: 20px !important;
}

@media (max-width: 1024px) {

    .driver-swiper-button-prev,
    .driver-swiper-button-next {
        display: none !important;
    }
}

.driver-swiper-pagination {
    bottom: 10px !important;
}

.driver-swiper-pagination .swiper-pagination-bullet {
    background: #CBD5E1;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.driver-swiper-pagination .swiper-pagination-bullet-active {
    background: #FF8A00;
    width: 26px;
    border-radius: 5px;
}

/* Explore Button CTA */
.driver-cta-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.driver-explore-btn {
    background: linear-gradient(135deg, #FF8A00 0%, #FF6A00 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 16px 42px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.driver-explore-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(255, 138, 0, 0.35) !important;
    background: linear-gradient(135deg, #FF6A00 0%, #FF8A00 100%) !important;
    color: #FFFFFF !important;
}

.driver-explore-btn:active {
    transform: translateY(1px) !important;
}


/* ========================================
   YOUR CARGO ALWAYS UNDER CONTROL SECTION
   ======================================== */
.cargo-control-section {
    background: var(--bg-main) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Badge Styling */
.cargo-badge-wrapper {
    display: inline-block;
    margin-bottom: 24px;
}

.cargo-badge {
    background: rgba(11, 16, 32, 0.5);
    border: 1px solid rgba(255, 148, 31, 0.25);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cargo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF941F;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 148, 31, 0.6);
}

.cargo-badge-text {
    color: #FF941F;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Heading Typography */
.cargo-heading {
    font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
}

.cargo-heading-white {
    color: #FFFFFF !important;
    font-weight: 400 !important;
}

.cargo-heading-orange {
    color: #FF941F !important;
    font-weight: 700 !important;
}

/* Description Text */
.cargo-description {
    font-size: 0.95rem !important;
    color: #b0b0b0 !important;
    line-height: 1.65 !important;
    max-width: 720px;
    margin: 0 auto 60px auto !important;
    font-weight: 400 !important;
}

/* Card Styling */
.cargo-card {
    background: rgba(11, 16, 32, 0.6);
    border: 1px solid rgba(255, 148, 31, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cargo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 148, 31, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 148, 31, 0.2);
    background: rgba(11, 16, 32, 0.8);
}

/* Card Number Badge */
.cargo-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 148, 31, 0.4);
    letter-spacing: 0.05em;
}

/* Icon Wrapper */
.cargo-card-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(11, 16, 32, 0.8);
    border: 2px solid rgba(255, 148, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    position: relative;
    transition: all 0.4s ease;
}

.cargo-card-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cargo-card:hover .cargo-card-icon-wrapper {
    border-color: rgba(255, 148, 31, 0.6);
    box-shadow: 0 0 20px rgba(255, 148, 31, 0.3);
    transform: scale(1.05);
}

.cargo-card:hover .cargo-card-icon-wrapper::before {
    opacity: 1;
}

.cargo-card-icon {
    font-size: 42px !important;
    color: #FF941F !important;
}

/* Card Title */
.cargo-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
}

/* Orange Underline */
.cargo-card-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF941F 0%, #FF5C00 100%);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Card Description Text */
.cargo-card-text {
    font-size: 0.9rem !important;
    color: #a0aec0 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cargo-control-section {
        padding: 80px 0 !important;
    }

    .cargo-card {
        min-height: 310px;
        padding: 35px 25px;
    }

    .cargo-card-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .cargo-card-icon {
        font-size: 38px !important;
    }
}

@media (max-width: 767.98px) {
    .cargo-control-section {
        padding: 60px 0 !important;
    }

    .cargo-description {
        margin-bottom: 40px !important;
    }

    .cargo-card {
        min-height: 290px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .cargo-card-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .cargo-card-icon {
        font-size: 34px !important;
    }

    .cargo-card-title {
        font-size: 1.05rem !important;
    }

    .cargo-card-text {
        font-size: 0.85rem !important;
    }
}

/* ========================================
   EMPRESAS (FOR COMPANIES) SECTION
   ======================================== */
.empresas-section {
    background: var(--bg-main) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.empresas-container {
    max-width: 1280px !important;
    margin: 0 auto;
}

.empresas-header-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.empresas-heading {
    font-size: clamp(2rem, 3vw, 2.75rem) !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

.empresas-subtitle {
    font-size: 1rem !important;
    color: #a0aec0 !important;
    line-height: 1.7 !important;
    margin-bottom: 48px !important;
    font-weight: 400 !important;
}

/* Card Styling */
.empresas-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 40px 32px !important;
    height: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    position: relative;
}

.empresas-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(255, 148, 31, 0.45) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 148, 31, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* Circular Icon Container */
.empresas-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255, 148, 31, 0.3) !important;
    background: rgba(255, 148, 31, 0.05) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px !important;
    box-shadow: 0 0 12px rgba(255, 148, 31, 0.1) !important;
    transition: all 0.25s ease !important;
}

.empresas-icon {
    font-size: 30px !important;
    color: #FF941F !important;
}

.empresas-card:hover .empresas-icon-wrapper {
    border-color: rgba(255, 148, 31, 0.7) !important;
    box-shadow: 0 0 20px rgba(255, 148, 31, 0.3) !important;
    background: rgba(255, 148, 31, 0.1) !important;
}

/* Card Title */
.empresas-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

/* Orange Accent Underline */
.empresas-card-underline {
    width: 40px;
    height: 2px;
    background: #FF941F !important;
    margin-bottom: 18px !important;
    border-radius: 2px !important;
    transition: all 0.25s ease !important;
}

.empresas-card:hover .empresas-card-underline {
    width: 60px !important;
}

/* Description Text */
.empresas-card-text {
    font-size: 0.9rem !important;
    color: #a0aec0 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .empresas-section {
        padding: 60px 0 !important;
    }

    .empresas-card {
        min-height: 290px;
        padding: 35px 28px !important;
    }
}

@media (max-width: 767.98px) {
    .empresas-section {
        padding: 50px 0 !important;
    }

    .empresas-card {
        min-height: auto;
        padding: 30px 20px !important;
    }

    .empresas-subtitle {
        margin-bottom: 35px !important;
    }
}

/* ── Logo ─────────────────────────────────────────────────────────────── */
.navbar-brand {
    margin-right: 48px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand svg {
    filter: drop-shadow(0 2px 8px rgba(255, 148, 31, 0.24));
    transition: filter 0.25s ease;
}

.navbar-brand:hover svg {
    filter: drop-shadow(0 4px 12px rgba(255, 148, 31, 0.38));
}

.brand-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-container:hover {
    transform: translateY(-1px);
}

.brand-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.02em;
}

/* ── Navigation Links ─────────────────────────────────────────────────── */
.custom_nav_bar_main .navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.64) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 16px !important;
    letter-spacing: 0.3px !important;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover {
    color: #FF941F !important;
    background: rgba(255, 148, 31, 0.06);
}

.navbar-nav .nav-item.active .nav-link {
    color: #FF941F !important;
    background: rgba(255, 148, 31, 0.08);
}

/* Active underline indicator */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: calc(100% - 28px);
    height: 2px;
    background: linear-gradient(90deg, #FF941F 0%, #FF7A00 100%);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0;
}

.navbar-nav .nav-item.active .nav-link::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* ── Right-side CTAs ──────────────────────────────────────────────────── */
.header-ctas-container {
    gap: 10px !important;
    margin-left: 32px;
}

/* Language selector pill */
.filter-type .language-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 100px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 16px 0 14px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.filter-type .language-btn .globe-icon {
    margin-right: 0 !important;
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.filter-type .language-btn::after {
    margin-left: 2px;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.filter-type .language-btn:hover {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #FFFFFF !important;
}

.filter-type .language-btn:hover .globe-icon,
.filter-type .language-btn:hover::after {
    opacity: 1;
}



/* Tablet & Mobile responsive adjustments */
@media (max-width: 1199px) {
    .site-header-sticky {
        padding: 0 20px;
        top: 20px;
    }

    .custom_nav_bar_main {
        border-radius: 24px !important;
    }

    .custom_nav_bar_main::before {
        border-radius: 24px;
    }

    .navbar-brand {
        margin-right: 40px !important;
    }
}

@media (max-width: 991px) {
    .custom_nav_bar_main nav.navbar {
        padding: 0 20px !important;
    }

    .navbar-brand {
        margin-right: 24px !important;
    }

    .header-ctas-container {
        margin-left: 16px;
    }

    .header-track-btn::after {
        content: '';
    }
}

@media (max-width: 767px) {
    .site-header-sticky {
        padding: 0 12px;
        top: 12px;
    }

    .custom_nav_bar_main {
        border-radius: 20px !important;
        height: 64px;
    }

    .custom_nav_bar_main::before {
        border-radius: 20px;
    }

    .custom_nav_bar_main nav.navbar {
        padding: 0 20px !important;
    }

    .navbar-brand svg {
        width: 32px;
        height: 32px;
    }

    .brand-logo-text {
        font-size: 20px;
    }

    .custom_nav_bar_main .navbar-collapse {
        padding: 18px 20px;
        margin-top: 14px;
    }
}

/* ── Track Order Button ───────────────────────────────────────────────── */
.header-track-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 148, 31, 0.35) !important;
    border-radius: 100px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.header-track-btn img {
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease;
    width: 16px !important;
    height: 16px !important;
}

.header-track-btn:hover {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(255, 148, 31, 0.08);
    transform: translateY(-1px);
}

.header-track-btn:hover img {
    opacity: 1;
    transform: translateX(2px);
}

/* Track button text */
/* .header-track-btn::after {
    content: 'Track Order';
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
} */

/* Mobile hamburger */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 10px !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.04) !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.navbar-toggler span {
    color: var(--text-primary) !important;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .custom_nav_bar_main {
        max-width: 100%;
        border-radius: 20px !important;
    }

    .site-header-sticky {
        padding: 0 16px;
    }
}

@media (max-width: 991px) {
    .custom_nav_bar_main nav.navbar {
        padding: 0 20px !important;
    }

    .navbar-brand {
        margin-right: 24px !important;
    }

    .header-ctas-container {
        margin-left: 16px;
    }

    .header-track-btn::after {
        content: '';
    }
}

@media (max-width: 767px) {
    .site-header-sticky {
        top: 12px;
        padding: 0 12px;
    }

    .site-header-sticky.scrolled {
        top: 8px;
    }

    .custom_nav_bar_main {
        border-radius: 16px !important;
        height: 64px;
    }

    .custom_nav_bar_main.scrolled {
        height: 60px !important;
    }

    .custom_nav_bar_main nav.navbar {
        padding: 0 16px !important;
    }

    .brand-logo-text {
        font-size: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL RESPONSIVE AUDIT — Complete Breakpoint Coverage
   Fixes all horizontal overflow, drawer conflicts, and layout issues
   across every viewport from 320px to 1920px
   ═══════════════════════════════════════════════════════════════════ */

/* ── Global Overflow Guards ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Every section must never overflow the viewport */
section,
.header_main_Section,
.footer_section,
.copyright_section,
.driver-showcase-section,
.cargo-control-section,
.empresas-section,
.app_prmt_section,
.expert_says_section,
.our_srvcs_Sec,
.counter_section,
.video-area {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Images must never overflow */
img {
    max-width: 100%;
    height: auto;
}

/* ── Mobile Drawer Controller (Fixed Drawer) ─────────────────────── */
#navbarNav {
    display: block;
    position: relative;
}

/* Desktop (≥992px): inline flex row */
@media (min-width: 992px) {
    #navbarNav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0;
        position: relative;
        width: auto;
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-drawer-header {
        display: none !important;
    }
}

/* Responsive spacing adjustments for smaller desktops ─────────────── */
@media (min-width: 992px) and (max-width: 1366px) {
    .custom_nav_bar_main .navbar-nav {
        gap: 6px;
    }

    .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .custom_nav_bar_main .navbar-nav {
        gap: 4px;
    }

    .navbar-nav .nav-link {
        padding: 10px 14px !important;
        letter-spacing: 0.2px !important;
    }

    .header-ctas-container {
        margin-left: 24px;
    }
}

/* Mobile (<992px): Fixed drawer panel ─────────────────────────────── */
@media (max-width: 991px) {
    #navbarNav {
        position: fixed;
        top: 0;
        right: -375px;
        width: 375px;
        height: 100vh;
        max-height: 100vh;
        background: rgba(7, 11, 22, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 145, 30, 0.2);
        z-index: 9999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        padding: 0;
        margin: 0;
        transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        pointer-events: auto !important;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }

    #navbarNav.is-open {
        right: 0;
    }

    #navbarNav>* {
        pointer-events: auto !important;
    }

    /* Drawer header ─────────────────────────────────────────────── */
    .nav-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 24px;
        border-bottom: 1px solid rgba(255, 145, 30, 0.15);
        background: rgba(5, 8, 22, 0.5);
        flex-shrink: 0;
        min-height: 72px;
    }

    .nav-drawer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .nav-drawer-logo svg {
        width: 26px;
        height: 26px;
    }

    .nav-drawer-logo-text {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff !important;
        letter-spacing: -0.02em;
        opacity: 1 !important;
    }

    .nav-drawer-close {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #ffffff !important;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1 !important;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-drawer-close:hover {
        background: rgba(255, 145, 30, 0.12);
        border-color: rgba(255, 145, 30, 0.3);
        color: #FF8A00 !important;
        transform: scale(1.05);
    }

    .nav-drawer-close:active {
        transform: scale(0.95);
    }

    /* Nav links in drawer ─────────────────────────────────────────── */
    .navbdrawer-content {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    /* Nav links in drawer ─────────────────────────────────────────── */
    .navbar-nav {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 24px 20px !important;
        margin: 0 auto !important;
        pointer-events: auto !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        pointer-events: auto !important;
        border: none !important;
    }

    .navbar-nav .nav-item::after {
        display: none !important;
    }

    .navbar-nav .nav-link {
        padding: 14px 18px !important;
        border-radius: 12px;
        margin-bottom: 8px;
        width: 100%;
        color: #FFFFFF !important;
        opacity: 1 !important;
        font-weight: 600 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        min-height: 50px;
        display: flex;
        align-items: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
        border-top: none !important;
    }

    .navbar-nav .nav-link::before,
    .navbar-nav .nav-link::after {
        display: none !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 145, 30, 0.08) !important;
        color: #FFFFFF !important;
        transform: translateX(4px);
        border: none !important;
        box-shadow: none !important;
    }

    .navbar-nav .nav-item.active .nav-link {
        background: linear-gradient(135deg, rgba(255, 145, 30, 0.15) 0%, rgba(255, 145, 30, 0.08) 100%) !important;
        color: #FF8A00 !important;
        border-left: 3px solid #FF8A00 !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        padding-left: 15px !important;
        box-shadow: 0 2px 8px rgba(255, 145, 30, 0.15) !important;
    }

    .navbar-nav .nav-item.active .nav-link:hover {
        color: #FF8A00 !important;
        background: linear-gradient(135deg, rgba(255, 145, 30, 0.18) 0%, rgba(255, 145, 30, 0.1) 100%) !important;
        border-left: 3px solid #FF8A00 !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }

    /* Remove any global border/separator styles */
    .navbar-nav .nav-item:not(:last-child) {
        border-bottom: none !important;
    }

    .navbar-nav .nav-item+.nav-item {
        border-top: none !important;
    }

    .navbar-nav>li {
        border: none !important;
    }

    .navbar-nav>li::before,
    .navbar-nav>li::after {
        display: none !important;
    }

    /* CTA buttons in drawer ──────────────────────────────────────── */
    .header-ctas-container {
        margin-top: auto;
        padding: 20px !important;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
        border-top: 1px solid rgba(255, 145, 30, 0.15);
        flex-direction: column;
        gap: 12px !important;
        width: 100%;
        pointer-events: auto !important;
    }

    .filter-type {
        width: 100%;
        position: relative;
        pointer-events: auto !important;
    }

    .filter-type .language-btn {
        width: 100%;
        color: #FFFFFF !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative;
        z-index: 1;
        height: 52px !important;
        min-height: 52px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0 20px !important;
        font-size: 14.5px !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-radius: 12px !important;
    }

    .filter-type .language-btn:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.24) !important;
        transform: translateY(-1px);
    }

    .filter-type .language-btn:active {
        transform: translateY(0);
    }

    .filter-type .language-btn .globe-icon {
        opacity: 1 !important;
        pointer-events: none !important;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .filter-type .language-btn::after {
        opacity: 1 !important;
        pointer-events: none !important;
    }

    .filter-type .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin-top: 8px !important;
        z-index: 10000 !important;
        pointer-events: auto !important;
    }

    .filter-type .dropdown-menu.show {
        display: block !important;
    }

    .filter-type .dropdown-item {
        pointer-events: auto !important;
        cursor: pointer !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 18px !important;
    }

    .header-track-btn {
        width: 100%;
        color: #FFFFFF !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative;
        z-index: 1;
        height: 52px !important;
        min-height: 52px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0 20px !important;
        font-size: 14.5px !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-radius: 12px !important;
    }

    .header-track-btn:hover {
        background: rgba(255, 145, 30, 0.10) !important;
        border-color: rgba(255, 145, 30, 0.5) !important;
        transform: translateY(-1px);
    }

    .header-track-btn:active {
        transform: translateY(0);
    }

    .header-track-btn::after {
        color: #FFFFFF !important;
        opacity: 1 !important;
        pointer-events: none !important;
    }

    .header-track-icon {
        pointer-events: none !important;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

/* Overlay backdrop ───────────────────────────────────────────────── */
#navDrawerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, background 0.28s ease;
}

/* #navDrawerOverlay.is-visible {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
} */

/* Mobile drawer specific responsive sizes ───────────────────────── */
@media (max-width: 414px) {
    #navbarNav {
        right: -85vw;
        width: 85vw;
        max-width: 375px;
    }
}

@media (max-width: 360px) {
    #navbarNav {
        right: -90vw;
        width: 90vw;
        max-width: 375px;
    }
}

@media (max-width: 320px) {
    #navbarNav {
        width: 100vw;
        right: -100vw;
    }
}

/* ── Site Header Sticky — Padding at all sizes ───────────────────────── */
/* Ensure the header never causes horizontal scroll */
.site-header-sticky {
    box-sizing: border-box;
    width: 100%;
    left: 0;
    right: 0;
}

/* ── Header Track Button — always accessible ─────────────────────────── */
@media (max-width: 991px) {
    .header-ctas-container {
        margin-left: 0 !important;
        margin-top: 16px !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(255, 145, 30, 0.12) !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .filter-type {
        width: 100% !important;
    }

    .filter-type .language-btn {
        width: 100% !important;
        justify-content: center !important;
        height: 48px !important;
        padding: 0 18px !important;
    }

    .header-track-btn {
        width: 100% !important;
        justify-content: center !important;
        height: 48px !important;
        padding: 0 18px !important;
        border: 1.5px solid rgba(255, 145, 30, 0.5) !important;
        background: rgba(255, 145, 30, 0.08) !important;
    }

    .header-track-btn::after {
        content: '📍 Track Order' !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        line-height: 1 !important;
    }

    .header-track-icon {
        display: none !important;
    }

    .filter-type .dropdown-menu {
        width: 100% !important;
    }
}

/* ── Hero Section ────────────────────────────────────────────────────── */
.header_main_Section {
    min-height: min(95vh, 800px);
}

@media (max-width: 991px) {
    .header_main_Section {
        padding: 80px 0 80px !important;
        min-height: auto !important;
    }
}

@media (max-width: 767px) {
    .header_main_Section {
        padding: 70px 0 60px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.8rem) !important;
        line-height: 1.2 !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
        padding: 0 8px;
    }

    .hero-btns-container {
        flex-wrap: wrap !important;
        gap: 12px !important;
        justify-content: center !important;
    }

    .btn-orange-filled,
    .btn-outline-white {
        width: 100% !important;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header_main_Section {
        padding: 60px 0 50px !important;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7.5vw, 2rem) !important;
    }
}

@media (max-width: 360px) {
    .header_main_Section {
        padding: 55px 0 45px !important;
    }

    .hero-title {
        font-size: clamp(1.35rem, 7vw, 1.7rem) !important;
    }
}

/* ── Tracking Panel — Mobile ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .menu {
        min-width: min(90vw, 360px) !important;
        max-width: min(90vw, 360px) !important;
        width: min(90vw, 360px) !important;
    }
}

@media (max-width: 480px) {
    .menu {
        min-width: min(95vw, 360px) !important;
        max-width: min(95vw, 360px) !important;
        width: min(95vw, 360px) !important;
    }
}

@media (max-width: 360px) {
    .menu {
        min-width: 100vw !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

/* ── Section Paddings ────────────────────────────────────────────────── */
@media (max-width: 767px) {
    section {
        padding: 50px 0 !important;
    }

    .app_prmt_section,
    .expert_says_section,
    .our_srvcs_Sec,
    .video-area,
    .counter_section {
        padding: 50px 0 !important;
    }

    .footer_section {
        padding: 60px 0 40px 0 !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0 !important;
    }
}

/* ── Container Padding at Small Screens ──────────────────────────────── */
@media (max-width: 575px) {

    .container,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 360px) {

    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* ── Grid & Cards — Fluid at mobile ──────────────────────────────────── */
@media (max-width: 575px) {

    .col,
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Service cards */
    .our_srvcs_Sec_crd {
        height: 220px !important;
    }

    /* Counter */
    .counter_Section {
        text-align: center;
        padding: 15px !important;
    }

    /* Driver showcase */
    .driver-slide-container {
        gap: 20px !important;
        padding: 10px 0 !important;
    }

    .phone-showcase-mockup {
        max-width: 260px !important;
    }

    /* Cargo cards */
    .cargo-card {
        min-height: 260px !important;
        padding: 25px 16px !important;
    }

    /* Empresas cards */
    .empresas-card {
        padding: 24px 18px !important;
    }
}

/* ── App promotion section image ─────────────────────────────────────── */
@media (max-width: 767px) {
    .app_mockup_img_sec {
        max-height: 280px !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 480px) {
    .app_mockup_img_sec {
        max-height: 240px !important;
    }
}

/* ── Typography — Prevent all overflow ───────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Section headings clamp */
@media (max-width: 767px) {

    .section_heading_cntnr h1,
    .section_heading_cntnr h2,
    .section_heading_cntnr_app_prmt h1,
    .section_heading_testimonial h1,
    .cargo-heading,
    .empresas-heading {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
    }
}

@media (max-width: 480px) {

    .section_heading_cntnr h1,
    .section_heading_cntnr h2,
    .section_heading_cntnr_app_prmt h1,
    .section_heading_testimonial h1,
    .cargo-heading,
    .empresas-heading {
        font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
    }
}

/* ── Floating Social Buttons — Never overflow ────────────────────────── */
.whatsapp_btn_fixd,
.messenger_btn_fixd {
    max-width: 50px;
    max-height: 50px;
}

@media (max-width: 360px) {

    .whatsapp_btn_fixd,
    .messenger_btn_fixd {
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .whatsapp_btn_fixd img,
    .messenger_btn_fixd img {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ── Navbar nav links — no overflow ──────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* ── Video Popup ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .video-popup {
        margin: 0 !important;
    }

    .video-popup span {
        width: 60px !important;
        height: 60px !important;
    }

    .video-popup span .material-icons {
        font-size: 28px !important;
    }
}

/* ── Footer ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer_section {
        padding: 60px 0 40px 0 !important;
    }

    .footer-container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Mobile footer grid – vertical stacking ───────────────────── */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 0;
    }

    .footer-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .footer-col-left,
    .footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-center {
        align-items: center;
        text-align: center;
    }

    .footer-col-center .footer-logo {
        margin: 0 auto 20px auto;
    }

    .footer-col-center .footer-socials {
        justify-content: center;
        margin-top: 20px;
    }

    /* Footer bottom row stacked ──────────────────────────────────── */
    .footer-bottom-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
    }

    .footer-bottom-divider {
        margin: 30px 0 20px 0;
    }

    /* Remove any absolute positioning ──────────────────────────── */
    .footer_section .col-md-3,
    .footer_section .col-md-4,
    .footer_section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
    }

    .footer_section h5 {
        margin-bottom: 16px !important;
    }
}

@media (max-width: 480px) {
    .footer_section {
        padding: 50px 0 35px 0 !important;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-col-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-links-list {
        gap: 1rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .footer-socials {
        gap: 12px;
    }

    .social-circle-btn {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-divider {
        margin: 25px 0 15px 0;
    }

    .footer-bottom-row {
        font-size: 0.8rem;
        gap: 12px;
    }
}

@media (max-width: 360px) {
    .footer_section {
        padding: 45px 0 30px 0 !important;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col-title {
        font-size: 0.95rem;
    }

    .footer-links-list li a {
        font-size: 0.9rem;
    }

    .social-circle-btn {
        width: 36px;
        height: 36px;
    }

    .social-circle-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ── Small Mobile (320px) — Final Safety Net ────────────────────────── */
@media (max-width: 320px) {
    .site-header-sticky {
        padding: 0 8px !important;
        top: 8px !important;
    }

    .custom_nav_bar_main {
        border-radius: 14px !important;
        height: 60px !important;
    }

    .custom_nav_bar_main nav.navbar {
        padding: 0 12px !important;
    }

    .navbar-brand svg {
        width: 28px !important;
        height: 28px !important;
    }

    .brand-logo-text {
        font-size: 18px !important;
    }

    .hero-title {
        font-size: clamp(1.2rem, 8vw, 1.5rem) !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .btn-orange-filled,
    .btn-outline-white {
        font-size: 0.875rem !important;
        padding: 10px 20px !important;
    }

    .cargo-card {
        min-height: auto !important;
        padding: 20px 14px !important;
    }

    .empresas-card {
        padding: 20px 14px !important;
    }

    .our_srvcs_Sec_crd {
        height: 190px !important;
    }
}

/* ── Large Desktop Enhancements (1440px+) ────────────────────────────── */
@media (min-width: 1440px) {
    .site-header-sticky {
        padding: 0 32px;
    }

    .custom_nav_bar_main {
        max-width: 1400px;
    }
}

@media (min-width: 1920px) {
    .site-header-sticky {
        padding: 0 48px;
    }

    .custom_nav_bar_main {
        max-width: 1600px;
    }

    .hero-title {
        font-size: clamp(3.5rem, 4vw, 5rem) !important;
    }
}


   

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════ */
.faq_section_main {
    background: #0b101d !important;
    padding: 100px 0 !important;
    position: relative;
}

.faq_section_main::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 148, 31, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.faq-title {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    margin-bottom: 60px !important;
    position: relative;
    z-index: 1;
}

.faq-title .text-primary {
    color: #FF941F !important;
}

.faq-accordion {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 148, 31, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF941F;
    font-family: var(--font-main);
    opacity: 0.8;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question,
.faq-header[aria-expanded="true"] .faq-question {
    color: #ffffff;
}

.faq-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF941F;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-header[aria-expanded="true"] .faq-toggle-icon {
    background: #FF941F;
    color: #ffffff;
    transform: rotate(135deg);
    box-shadow: 0 0 15px rgba(255, 148, 31, 0.4);
}

.faq-body {
    padding: 0 30px 30px 76px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-body p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem !important;
        margin-bottom: 40px !important;
    }

    .faq-header {
        padding: 20px;
        gap: 16px;
    }

    .faq-body {
        padding: 0 20px 25px 20px;
    }

    .faq-number {
        display: none;
    }

    .faq-question {
        font-size: 1.05rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE FIXES (320px - 1920px Support)
   ═══════════════════════════════════════════════════════════════════════ */

/* 1. Global Overflow Fixes */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* Ensure no rogue rows cause horizontal scroll */
.row {
    max-width: 100%;
}

.row:not(.mx-0) {
    margin-left: 0;
    margin-right: 0;
}

/* 2. Navigation Fixes */
/* Fix mobile drawer width for very small screens (e.g. 320px) */
@media (max-width: 991px) {

    .menu,
    #navbarNav {
        width: 100% !important;
        max-width: 300px !important;
        /* Safely fits 320px screens */
    }
}

/* 3. Hero Fixes */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }
}

/* 4. Card & Spacing Fixes */
@media (max-width: 768px) {

    /* Scale down large padding on sections */
    section[style*="padding: 100px"],
    section[style*="padding: 110px"],
    section[style*="padding: 120px"],
    .header_main_Section,
    .app_prmt_section,
    .footer_section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Testimonial cards overflow fix */
    .testi-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
    }

    .glass-panel {
        padding: 1.5rem !important;
    }
}

@media (max-width: 400px) {
    .glass-panel {
        padding: 1rem !important;
    }

    .testi-card {
        padding: 0.8rem !important;
    }
}

/* 5. Footer Fixes */
@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 30px !important;
        text-align: center;
    }

    .footer-col h5,
    .footer-col ul {
        text-align: center !important;
        align-items: center;
        justify-content: center;
    }

    .newsletter-card {
        padding: 30px 20px !important;
    }

    .newsletter-title {
        font-size: 1.8rem !important;
    }
}

/* 6. Modal Fixes (Video / Track Order) */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95% !important;
        margin: 1.75rem auto !important;
    }

    .modal-body {
        padding: 1rem !important;
    }
}

/* 7. FAQ Fixes (Verify < 400px) */
@media (max-width: 400px) {
    .faq-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .faq-header {
        padding: 15px !important;
        gap: 12px !important;
    }

    .faq-body {
        padding: 0 15px 20px 15px !important;
    }

    .faq-question {
        font-size: 1rem !important;
    }
}