/* Custom Theme Styles */
:root {
    --thm-primary: #FF131D;
    --wpcargo: #ff131d;
}

/* ==========================================================================
   Paramount Custom Sleek Scrollbar
   ========================================================================== */
html {
    scrollbar-width: thin;
    scrollbar-color: #334155 #0b0f19;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0f19;
}

::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 999px;
    border: 2px solid #0b0f19;
    transition: background 0.25s ease, border-color 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF131D;
    box-shadow: 0 0 10px rgba(255, 19, 29, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: #d8000b;
}

::-webkit-scrollbar-corner {
    background: #0b0f19;
}


/* ==========================================================================
   Paramount Modern Top Navbar System (Fixed Centered Menu & Right Action)
   ========================================================================== */

.paramount-top-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.paramount-top-navbar.scrolled {
    position: fixed !important;
    background: rgba(8, 12, 16, 0.94) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    animation: none !important;
}

.paramount-top-navbar .nav-container,
.nav-inner-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

/* Brand Logo */
.paramount-top-navbar .nav-logo,
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.paramount-top-navbar .nav-logo img,
.nav-logo img {
    height: 58px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
    transition: all 0.25s ease;
}

.paramount-top-navbar.scrolled .nav-logo img {
    height: 50px;
}

.paramount-top-navbar .nav-logo:hover img,
.nav-logo:hover img {
    transform: scale(1.02);
}

/* Centered Navigation Links Wrap */
.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item-link {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-item-link:hover,
.nav-item-link.active {
    color: #FF131D !important;
}

/* Dropdown Menu */
.dropdown-parent {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: #05151B !important;
    background-color: #05151B !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 270px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: none;
    flex-direction: column;
    z-index: 9999999 !important;
    pointer-events: auto;
}

/* Invisible bridge so cursor never drops when moving down */
.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    display: block;
}

.dropdown-parent:hover .dropdown-menu-custom,
.dropdown-parent:focus-within .dropdown-menu-custom,
.dropdown-parent.is-open .dropdown-menu-custom,
.dropdown-menu-custom:hover {
    display: flex !important;
}

.dropdown-menu-custom a {
    display: flex !important;
    align-items: center;
    padding: 9px 20px;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu-custom a:hover {
    background: rgba(255, 19, 29, 0.15) !important;
    color: #FF131D !important;
    padding-left: 25px;
}

/* Right Action Container & Button */
.nav-right-action {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

/* ==================== GLOBAL PILL BUTTONS ==================== */
.btn-pill-red {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FF131D !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: 2px solid #FF131D !important;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.4) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.btn-pill-red:hover {
    background: #d60b14 !important;
    border-color: #d60b14 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(255, 19, 29, 0.55) !important;
    color: #ffffff !important;
}

.btn-pill-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.btn-pill-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* ==================== GLOBAL PROMO CTA BANNER CARDS WITH PHOTO BACKDROP ==================== */
.promo-banner-wrap,
.cta-banner-strip {
    background: linear-gradient(135deg, rgba(255, 19, 29, 0.92) 0%, rgba(186, 10, 17, 0.95) 100%), url('../images/truck2-hero.jpg') center center / cover no-repeat !important;
    border-radius: 24px;
    padding: 65px 48px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(255, 19, 29, 0.32);
    position: relative;
    overflow: hidden;
}

.promo-banner-wrap h2,
.cta-banner-strip h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.promo-banner-wrap p,
.cta-banner-strip p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.94);
    max-width: 680px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.cta-white-btn {
    background: #ffffff;
    color: #FF131D !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.cta-white-btn:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== GLOBAL FAQ ACCORDION WITH DYNAMIC 2-COLUMN SHOWCASE ==================== */
.faq-section,
.section-faq {
    padding: 25px 0 45px 0 !important;
    background: #ffffff;
    position: relative;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item:hover {
    border-color: rgba(255, 19, 29, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-accordion-item.active {
    border-color: #FF131D;
    border-left-width: 4px;
    box-shadow: 0 10px 30px rgba(255, 19, 29, 0.08);
}

.faq-accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-accordion-header:hover {
    color: #FF131D;
}

.faq-accordion-item.active .faq-accordion-header {
    color: #05151B;
}

.faq-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 14px;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-arrow {
    background: #FF131D;
    color: #ffffff;
    transform: rotate(90deg);
}

.faq-accordion-body {
    padding: 0 24px 22px 24px;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.75;
    display: none;
    border-top: 1px solid #f1f5f9;
    margin-top: -4px;
    padding-top: 16px;
}

.faq-accordion-item.active .faq-accordion-body {
    display: block;
}

.faq-image-showcase-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    position: relative;
    height: 100%;
    min-height: 480px;
    background: #05151B;
}

.faq-image-showcase-container img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 540px;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease, transform 0.4s ease;
}

.faq-image-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(5, 21, 27, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 22px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* ==================== 8-SERVICE CATALOG CARDS SECTION ==================== */
.catalog-section {
    padding: 95px 0;
    background: #ffffff;
}

.catalog-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 19, 29, 0.45);
    box-shadow: 0 20px 40px rgba(255, 19, 29, 0.12);
}

.catalog-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 19, 29, 0.09);
    color: #FF131D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-icon-wrap {
    background: #FF131D;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 19, 29, 0.35);
}

.catalog-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.catalog-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 20px;
}

.catalog-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.catalog-card-features li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-card-features li i {
    color: #FF131D;
    font-size: 12px;
    width: 16px;
}

.catalog-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF131D;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none !important;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.2s ease;
}

.catalog-btn-link:hover {
    color: #b90e16;
    gap: 12px;
}

@media (max-width: 991px) {
    .nav-links-wrap {
        display: none;
    }
}

/* CTA Button */
.paramount-top-navbar .nav-actions {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.paramount-top-navbar .nav-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 26px !important;
    background: #FF131D !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 4px 16px rgba(255, 19, 29, 0.45) !important;
    transition: all 0.25s ease !important;
    white-space: nowrap !important;
}

.paramount-top-navbar .nav-cta-btn:hover {
    background: #FF131D !important;
    color: #ffffff !important;
    border-color: #FF131D !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(255, 19, 29, 0.45) !important;
}

@media (max-width: 991px) {
    .paramount-top-navbar .nav-menu {
        display: none !important;
    }
}


/* ==========================================================================
   Paramount High-End Crafted Hero Typography & Badge Architecture
   ========================================================================== */

.hero-text-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 20;
    padding: 130px 90px 40px 90px;
    box-sizing: border-box;
    will-change: opacity, transform;
    opacity: 0;
}

.hero-text-layer.left-side {
    justify-content: flex-start;
    text-align: left;
}

.hero-text-layer.right-side {
    justify-content: flex-end;
    text-align: right;
}

.hero-text-content {
    max-width: 580px;
    pointer-events: auto;
}

/* Crafted Micro Badge with Live Indicator Dot */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 21, 27, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FF131D;
    box-shadow: 0 0 10px #FF131D;
    display: inline-block;
    flex-shrink: 0;
}

/* Refined, Editorial-Grade Typography */
.hero-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.6px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.75);
}

.hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

/* Crafted Modern Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #05151B !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.2px;
}

.hero-cta-btn:hover {
    background: #FF131D !important;
    color: #ffffff !important;
    border-color: #FF131D !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 19, 29, 0.45) !important;
}

@media (max-width: 991px) {
    .hero-text-layer {
        padding: 100px 40px 30px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .hero-text-layer {
        padding: 90px 20px 20px 20px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-cta-btn {
        padding: 10px 22px;
        font-size: 13.5px;
    }
}



/* Dynamic Alive Hero & Site CTA Buttons */
.hero-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: #05151B !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 13px 32px !important;
    border-radius: 50px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-cta-btn:hover {
    background: #FF131D !important;
    color: #ffffff !important;
    border-color: #FF131D !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(255, 19, 29, 0.55) !important;
}

.service-nav-arrow:hover {
    background: #FF131D !important;
    color: #ffffff !important;
    border-color: #FF131D !important;
    transform: scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(255, 19, 29, 0.5) !important;
}



/* ==================== ELEGANT FOOTER SOCIAL & CONTACT ICONS ==================== */
.footer-social-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    backdrop-filter: blur(8px) !important;
}

.footer-social-icon:hover {
    background: #FF131D !important;
    border-color: #FF131D !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 19, 29, 0.45) !important;
}

.footer-contact-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
}

.footer-social-link:hover {
    background: #FF131D !important;
    border-color: #FF131D !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 18px rgba(255, 19, 29, 0.4) !important;
}

.footer-link-item:hover {
    color: #FF131D !important;
    padding-left: 4px !important;
}



/* Strict Image & Section Container Bounds */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100% !important;
    height: auto;
    display: block;
}

.elementor-widget-image,
.elementor-widget-container,
.feature-card,
.faq-accordion-item,
.transpi__delivery-item,
.transpi__blog-item {
    overflow: hidden !important;
}

.elementor-section {
    position: relative;
    overflow: hidden;
}



/* ==================== HIGH-PERFORMANCE NATIVE SCROLL OPTIMIZATIONS ==================== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* GPU Hardware Layer Isolation for Critical Fixed Elements */
.paramount-top-navbar {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Off-screen Content Visibility Optimization (Skips non-visible layout reflows) */
.testimonial-clean-section,
.faq-clean-section,
.matrix-interactive-section,
.bento-services-section,
.quote-calculator-section,
.paramount-master-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

/* Hardware accelerated card transitions */
.solution-visual-card,
.pillar-box-card,
.feature-node-box,
.matrix-feature-card,
.why-matrix-card,
.bento-card,
.testimonial-white-card,
.transpi__counter-item,
.wow {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}





/* ==================== EXACT REFERENCE TESTIMONIALS ==================== */
.testimonial-section-wrap {
    background: #ffffff !important;
    padding: 55px 0 !important;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 991px) {
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.testimonial-white-card {
    background: #ffffff !important;
    border: 1.5px solid #eaeef2 !important;
    border-radius: 20px !important;
    padding: 45px 30px 35px 30px !important;
    position: relative !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.testimonial-white-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #cbd5e1 !important;
}

.testimonial-quote-badge {
    position: absolute !important;
    top: -18px !important;
    right: 28px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 20px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
    z-index: 5 !important;
}

.testimonial-quote-badge.dark {
    background: #05151B !important;
}

.testimonial-quote-badge.red {
    background: #FF131D !important;
    box-shadow: 0 6px 18px rgba(255, 19, 29, 0.4) !important;
}

.testimonial-card-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #05151B !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    text-align: center !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.testimonial-card-desc {
    color: #64748b !important;
    font-size: 14.5px !important;
    line-height: 1.75 !important;
    text-align: center !important;
    margin-bottom: 28px !important;
}

.testimonial-author-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
}

.testimonial-author-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.testimonial-author-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #05151B !important;
    margin: 0 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-align: left !important;
}

.testimonial-author-role {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
}





/* ==================== GLOBAL SCROLL REVEAL ANIMATIONS ==================== */
.scroll-reveal,
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed,
.reveal-on-scroll.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-left.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-right.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal-scale.revealed {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Stagger Delays */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}

/* ==========================================================================
   MASTER RESPONSIVE DESIGN SYSTEM (MOBILE, TABLET, LAPTOP & 4K SCREENS)
   ========================================================================== */

/* Universal Responsive Base */
html,
body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100vw !important;
    -webkit-text-size-adjust: 100%;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

/* Mobile Navigation Drawer & Toggle System */
.paramount-mobile-toggle,
.mobile-nav-toggler {
    display: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 26px !important;
    cursor: pointer;
    padding: 6px !important;
    margin: 0 !important;
    line-height: 1 !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
    z-index: 10002;
    -webkit-tap-highlight-color: transparent;
}

.paramount-mobile-toggle:hover,
.paramount-mobile-toggle:focus,
.mobile-nav-toggler:hover,
.mobile-nav-toggler:focus {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #FF131D !important;
    transform: scale(1.08);
}

.paramount-mobile-toggle i,
.mobile-nav-toggler i {
    font-size: 24px !important;
    line-height: 1 !important;
    display: block !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.paramount-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 21, 27, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 100000;
}

.paramount-mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Luxury Modern Mobile Navigation Drawer */
.paramount-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100vh;
    height: 100dvh;
    background: #05151b;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    z-index: 100001;
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.paramount-mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.drawer-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.drawer-close-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: rotate(90deg);
}

.drawer-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.drawer-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.drawer-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.drawer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(255, 19, 29, 0.12);
    border-color: rgba(255, 19, 29, 0.35);
    color: #ffffff;
}

.drawer-link:hover .drawer-icon-wrap,
.drawer-link.active .drawer-icon-wrap {
    background: var(--brand-red);
    color: #ffffff;
}

.drawer-link:hover .drawer-chevron {
    transform: translateX(3px);
    color: var(--brand-red);
}

.drawer-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.drawer-chevron {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
}

/* Services Accordion inside Drawer */
.drawer-accordion-group {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.drawer-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 10px;
}

.drawer-link-left {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.drawer-link-text {
    white-space: nowrap;
}

.drawer-badge-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.drawer-pill-count {
    background: rgba(255, 19, 29, 0.2);
    border: 1px solid rgba(255, 19, 29, 0.4);
    color: #ff4d55;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap !important;
    flex-shrink: 0;
    line-height: 1.2;
    display: inline-block;
}

.accordion-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.drawer-accordion-group.open .accordion-arrow {
    transform: rotate(180deg);
    color: var(--brand-red);
}

.drawer-accordion-content {
    display: none;
    padding: 6px 14px 14px 14px;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-accordion-group.open .drawer-accordion-content {
    display: flex;
}

.drawer-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    color: #94a3b8;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.drawer-sublink i {
    font-size: 12px;
    color: var(--brand-red);
    width: 16px;
    text-align: center;
}

.drawer-sublink:hover,
.drawer-sublink.active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateX(4px);
}

.drawer-sublink.view-all-services {
    color: #ff4d55;
    font-weight: 700;
    margin-top: 4px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

/* Dispatch Hotline Card inside Drawer */
.drawer-support-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 19, 29, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #94a3b8;
    text-transform: uppercase;
}

.support-beacon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.support-phone-link {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.support-phone-link:hover {
    color: var(--brand-red);
}

.support-phone-link i {
    color: var(--brand-red);
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
}

.support-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer CTA in Drawer */
.drawer-footer {
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.drawer-quote-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
}

/* ==================== 1. TABLET & SMALL LAPTOP (max-width: 1199px) ==================== */
@media (max-width: 1199px) {

    .nav-inner-container,
    .nav-container {
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    .nav-links-wrap {
        gap: 20px !important;
    }

    .nav-item-link {
        font-size: 14px !important;
    }

    .hero-headline {
        font-size: clamp(34px, 5vw, 54px) !important;
    }

    .hero-metrics-bar {
        max-width: 100% !important;
        gap: 14px !important;
    }

    .metric-num,
    .hero-metric-val {
        font-size: 26px !important;
    }

    .spotlight-banner-wrap {
        max-width: 100% !important;
    }
}

/* ==================== 2. TABLET PORTRAIT & MOBILE (max-width: 991px) ==================== */
@media (max-width: 991px) {

    /* Responsive Navbar Mobile Drawer */
    .paramount-top-navbar .nav-links-wrap {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: min(85vw, 360px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(5, 21, 27, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 85px 26px 40px 26px !important;
        gap: 14px !important;
        transform: none !important;
        left: auto !important;
        box-shadow: -12px 0 45px rgba(0, 0, 0, 0.6) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        z-index: 10001 !important;
    }

    .paramount-top-navbar .nav-links-wrap.mobile-open {
        right: 0 !important;
    }

    .paramount-top-navbar .nav-item-link {
        font-size: 15.5px !important;
        width: 100% !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    }

    .paramount-top-navbar .dropdown-parent {
        width: 100% !important;
    }

    .paramount-top-navbar .dropdown-menu-custom {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
        margin-top: 6px !important;
        margin-bottom: 10px !important;
        padding: 8px !important;
        width: 100% !important;
        display: block !important;
    }

    .paramount-top-navbar .dropdown-menu-custom a {
        padding: 8px 12px !important;
        font-size: 13.5px !important;
    }

    .paramount-mobile-toggle,
    .paramount-top-navbar .mobile-nav-toggler {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
    }

    .paramount-top-navbar .nav-right-action .btn-pill-red,
    .paramount-top-navbar .nav-actions .btn-pill-red,
    .paramount-top-navbar .nav-right-action a.btn-pill-red,
    .paramount-top-navbar .nav-cta-btn,
    .paramount-top-navbar .paramount-quote-btn {
        display: none !important;
    }

    .nav-inner-container {
        padding: 0 16px !important;
    }

    .nav-logo img,
    .paramount-top-navbar .nav-logo img {
        height: 68px !important;
        max-width: 360px !important;
    }

    /* Hero Section Responsive */
    .about-hero,
    .leadership-hero,
    .services-hero,
    .contact-hero,
    .hero-section {
        min-height: auto !important;
        padding: 140px 0 70px 0 !important;
    }

    .hero-metrics-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-top: 40px !important;
    }

    /* Core Principles Split Layout on Company Leadership */
    .principles-split-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .principles-visual-card {
        position: static !important;
        width: 100% !important;
        min-height: 380px !important;
    }

    .exec-divisions-grid {
        grid-template-columns: 1fr !important;
    }

    /* FAQ 2-Column Responsive */
    .section-faq,
    .faq-section {
        padding: 70px 0 !important;
    }

    .faq-image-showcase-container {
        min-height: 340px !important;
        max-height: 400px !important;
        margin-top: 30px !important;
    }

    .faq-image-showcase-container img {
        min-height: 340px !important;
        max-height: 400px !important;
    }

    /* Spotlight Driver Banner */
    .spotlight-banner-wrap {
        flex-direction: column !important;
        min-height: auto !important;
        border-radius: 20px !important;
    }

    .spotlight-img-col {
        width: 100% !important;
        min-height: 240px !important;
        max-height: 280px !important;
    }

    .spotlight-text-col {
        padding: 35px 25px !important;
    }

    /* Footer */
    .paramount-master-footer {
        padding: 60px 0 25px 0 !important;
    }
}

/* ==================== 3. SMARTPHONES & MOBILE PHONES (max-width: 767px) ==================== */
@media (max-width: 767px) {

    /* Container Padding */
    .section-container,
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Typography */
    .section-title-large {
        font-size: clamp(26px, 7vw, 36px) !important;
        line-height: 1.2 !important;
    }

    .hero-headline {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.15 !important;
    }

    .hero-subtext {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        margin-bottom: 25px !important;
    }

    /* Sub Tags */
    .sub-tag {
        font-size: 12px !important;
        letter-spacing: 1.8px !important;
        margin-bottom: 10px !important;
    }

    /* Hero Metrics Bar */
    .hero-metrics-bar {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 35px !important;
    }

    .hero-metric-card {
        padding: 16px 18px !important;
    }

    .metric-num,
    .hero-metric-val {
        font-size: 24px !important;
    }

    .metric-lbl,
    .hero-metric-label {
        font-size: 12px !important;
    }

    /* Buttons */
    .btn-pill-red,
    .btn-pill-outline,
    .cta-white-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 13px 24px !important;
        font-size: 14.5px !important;
        box-sizing: border-box !important;
    }

    .nav-right-action .btn-pill-red {
        width: auto !important;
        padding: 7px 14px !important;
        font-size: 12px !important;
    }

    /* CTA Strips */
    .cta-banner-strip,
    .promo-banner-wrap {
        padding: 35px 20px !important;
        border-radius: 18px !important;
    }

    .cta-banner-strip h2,
    .promo-banner-wrap h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .cta-banner-strip p,
    .promo-banner-wrap p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Hub Cards on Contact Page */
    .hub-card-thumb-wrap {
        height: 170px !important;
    }

    .hub-card-body {
        padding: 20px 18px !important;
    }

    .hub-card h3 {
        font-size: 17.5px !important;
    }

    .hub-chips-grid {
        gap: 6px !important;
    }

    .hub-lane-chip {
        font-size: 11.5px !important;
        padding: 4px 8px !important;
    }

    /* FAQ Items */
    .faq-accordion-header {
        padding: 16px 18px !important;
        font-size: 14.5px !important;
    }

    .faq-accordion-body {
        padding: 0 18px 18px 18px !important;
        font-size: 13.5px !important;
    }

    .faq-arrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        font-size: 11px !important;
    }

    .faq-image-showcase-container {
        min-height: 260px !important;
        max-height: 300px !important;
        border-radius: 18px !important;
    }

    .faq-image-showcase-container img {
        min-height: 260px !important;
        max-height: 300px !important;
    }

    .faq-image-floating-badge {
        bottom: 14px !important;
        left: 14px !important;
        padding: 6px 14px !important;
        font-size: 11.5px !important;
    }

    /* Forms */
    .form-control-custom {
        font-size: 16px !important;
        /* Prevents auto-zoom in iOS Safari */
        padding: 12px 14px !important;
    }

    /* Testimonials */
    .testimonial-white-card {
        padding: 35px 20px 25px 20px !important;
    }

    .testimonial-card-title {
        font-size: 18px !important;
    }

    .testimonial-card-desc {
        font-size: 13.5px !important;
    }
}

/* ==================== 4. EXTRA SMALL MOBILE SCREENS (max-width: 420px) ==================== */
@media (max-width: 420px) {
    .nav-logo img,
    .paramount-top-navbar .nav-logo img {
        height: 58px !important;
        max-width: 300px !important;
    }

    .nav-right-action .btn-pill-red {
        display: none !important;
        /* Hide tiny quote button on micro screens so logo has full breathing room */
    }

    .paramount-mobile-toggle {
        margin-left: auto !important;
    }

    .hero-headline {
        font-size: 26px !important;
    }

    .section-title-large {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   PARAMOUNT BESPOKE AI DISPATCH CHATBOT WIDGET
   ========================================================================== */

/* Launcher Floating Button */
.paramount-chat-launcher {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF131D 0%, #ba0a11 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(255, 19, 29, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 99999;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.paramount-chat-launcher:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 19, 29, 0.55);
}

.paramount-chat-launcher .launcher-icon-chat,
.paramount-chat-launcher .launcher-icon-close {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paramount-chat-launcher .launcher-icon-close {
    display: none;
    font-size: 22px;
}

.paramount-chat-launcher.is-active .launcher-icon-chat {
    display: none;
}

.paramount-chat-launcher.is-active .launcher-icon-close {
    display: flex;
}

/* Glowing Pulsing Status Beacon */
.chat-status-beacon {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #10b981;
    border: 2.5px solid #ffffff;
}

.chat-status-beacon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.6);
    animation: beaconPulse 2s infinite ease-out;
}

@keyframes beaconPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Teaser Notification Bubble */
.paramount-chat-teaser {
    position: fixed;
    bottom: 96px;
    right: 28px;
    background: #ffffff;
    color: #05151B;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(5, 21, 27, 0.15);
    border-radius: 16px;
    padding: 14px 18px;
    max-width: 310px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    z-index: 99998;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.paramount-chat-teaser.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.teaser-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #05151B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF131D;
    font-size: 16px;
    flex-shrink: 0;
}

.teaser-close {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    padding: 0 4px;
    margin-left: auto;
    transition: color 0.2s;
}

.teaser-close:hover {
    color: #0f172a;
}

/* Chat Main Window Modal */
.paramount-chat-window {
    position: fixed;
    bottom: 98px;
    right: 28px;
    width: min(390px, calc(100vw - 32px));
    height: min(580px, calc(100vh - 120px));
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 65px rgba(5, 21, 27, 0.35);
    border: 1px solid rgba(5, 21, 27, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.94);
    transform-origin: bottom right;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.paramount-chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-window-header {
    background: linear-gradient(135deg, #05151B 0%, #0a2530 100%);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 19, 29, 0.15);
    border: 1.5px solid #FF131D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF131D;
    font-size: 18px;
}

.chat-header-avatar .header-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #05151B;
}

.chat-header-title h4 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.chat-header-title span {
    font-size: 11.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-header-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-header-btn:hover {
    background: rgba(255, 19, 29, 0.8);
    color: #ffffff;
}

/* Messages Body Area */
.chat-window-messages {
    flex: 1;
    padding: 18px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f8fafc;
}

/* Individual Message Bubbles */
.chat-msg-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    max-width: 88%;
}

.chat-msg-row.bot {
    align-self: flex-start;
}

.chat-msg-row.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #05151B;
    color: #FF131D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.chat-bubble {
    padding: 12px 15px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.55;
    word-break: break-word;
}

.chat-msg-row.bot .chat-bubble {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.chat-msg-row.user .chat-bubble {
    background: linear-gradient(135deg, #FF131D 0%, #d60e17 100%);
    color: #ffffff;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 14px rgba(255, 19, 29, 0.25);
}

.chat-bubble a.chat-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF131D;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.chat-bubble a.chat-inline-btn:hover {
    background: #05151B;
}

.chat-time-stamp {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 4px;
    text-align: right;
    display: block;
}

/* Typing Indicator Animation */
.chat-typing-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    border-top-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
        background: #FF131D;
    }
}

/* Quick Action Chips Bar */
.chat-quick-chips {
    padding: 10px 14px 6px 14px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.chat-quick-chips::-webkit-scrollbar {
    display: none;
}

.chat-chip-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 5px 11px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.chat-chip-btn:hover {
    background: #05151B;
    color: #ffffff;
    border-color: #05151B;
}

/* Chat Input Footer */
.chat-window-input-bar {
    padding: 12px 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-input-field {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.chat-input-field:focus {
    border-color: #FF131D;
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FF131D;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.chat-send-btn:hover {
    background: #05151B;
    transform: scale(1.05);
}

.chat-input-disclaimer {
    font-size: 10.5px;
    color: #94a3b8;
    text-align: center;
    padding: 4px 0 8px 0;
    background: #ffffff;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 480px) {
    .paramount-chat-launcher {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .paramount-chat-teaser {
        bottom: 84px;
        right: 16px;
        max-width: calc(100vw - 32px);
    }

    .paramount-chat-window {
        bottom: 82px;
        right: 12px;
        width: calc(100vw - 24px);
        height: calc(100dvh - 100px);
    }
}

/* ==========================================================================
   Clean Testimonial Reviews System (Matches Reference Design)
   ========================================================================== */
.testimonial-clean-section {
    padding: 55px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.reviews-slider-overflow {
    overflow: hidden;
    width: 100%;
    padding: 35px 6px 15px 6px;
    position: relative;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.reviews-slider-card-wrap {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .reviews-slider-card-wrap {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .reviews-slider-card-wrap {
        flex: 0 0 100%;
    }
}

.testimonial-clean-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 32px 36px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: all 0.35s ease;
    box-sizing: border-box;
}

.testimonial-clean-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 19, 29, 0.35);
}

.testimonial-quote-badge {
    position: absolute;
    top: -22px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FF131D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 22px rgba(255, 19, 29, 0.4);
}

.testimonial-clean-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #05151B;
    margin-bottom: 14px;
    text-align: center;
}

.testimonial-clean-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-client-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.testimonial-client-row img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.testimonial-client-row h4 {
    font-size: 16.5px;
    font-weight: 800;
    color: #05151B;
    margin: 0 0 2px 0;
}

.testimonial-client-row span {
    font-size: 13.5px;
    color: #94A3B8;
    font-weight: 500;
}

.review-page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.review-page-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 1.5px solid #cbd5e1;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-page-dot.active {
    background: #FF131D;
    border-color: #FF131D;
    transform: scale(1.25);
    box-shadow: 0 2px 8px rgba(255, 19, 29, 0.4);
}

/* Quote Form Background Framing (Keeps Driver Head 100% In View On All Screens) */
.quote-form-bg-section {
    background-image: url('../images/Form_old_van.jpeg?v=11.0') !important;
    background-position: top center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

@media (min-width: 992px) {
    .quote-form-bg-section {
        background-position: top left !important;
        min-height: 720px !important;
    }
}

@media (min-width: 1400px) {
    .quote-form-bg-section {
        background-position: top center !important;
        background-size: cover !important;
        min-height: 760px !important;
    }
}

/* Dual Overlapping Pill Images System (Matches Reference Design) */
.transpi_animation-img {
    position: relative;
    max-width: 540px;
    width: 100%;
    min-height: 560px;
    margin: 0 auto;
}

.transpi_animation-img .about__img-item {
    position: relative;
    z-index: 2;
    width: 325px;
    height: 495px;
}

.transpi_animation-img .about__img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5% !important;
    border-radius: 180px !important;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.transpi_animation-img .about__img-item.item-two {
    position: absolute !important;
    top: 55px !important;
    right: 0 !important;
    width: 310px;
    height: 495px;
    z-index: 1 !important;
}

.transpi_animation-img .about__img-item.item-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8% !important;
    border-radius: 180px !important;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
    .transpi_animation-img {
        min-height: 440px;
    }

    .transpi_animation-img .about__img-item {
        width: 230px;
        height: 360px;
    }

    .transpi_animation-img .about__img-item.item-two {
        width: 220px;
        height: 360px;
        top: 40px !important;
    }
}

/* ==================== 8-SERVICES SHOWCASE CAROUSEL ==================== */
.services-showcase-section {
    position: relative !important;
    background: #05151B !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    overflow: hidden !important;
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-carousel-wrap {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-carousel-slide {
    flex: 0 0 25% !important;
    width: 25% !important;
    min-width: 25% !important;
    max-width: 25% !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 1199px) {
    .services-carousel-slide {
        flex: 0 0 50% !important;
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 767px) {
    .services-carousel-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

.project__item-box {
    position: relative !important;
    min-height: 520px !important;
    overflow: hidden !important;
    background: #05151B !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}

.project__item-box .project__item-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.project__item-box .project__item-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    filter: brightness(0.65) contrast(1.1) !important;
}

.project__item-box:hover .project__item-img img,
.project__item-box.active .project__item-img img {
    transform: scale(1.08) !important;
    filter: brightness(0.75) contrast(1.1) !important;
}

.project__item-box .project__item-img::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(5, 21, 27, 0.95) 0%, rgba(5, 21, 27, 0.5) 50%, rgba(5, 21, 27, 0.3) 100%) !important;
    z-index: 2 !important;
}

.project__item-box .project__item-contetn {
    position: relative !important;
    z-index: 5 !important;
    padding: 40px 30px !important;
    height: 100% !important;
    min-height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: transparent !important;
}

.project__item-contetn .count {
    width: 54px !important;
    height: 54px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 50% !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: auto !important;
    align-self: flex-end !important;
    transition: all 0.3s ease !important;
}

.project__item-box:hover .count,
.project__item-box.active .count {
    border-color: #FF131D !important;
    background: #FF131D !important;
    box-shadow: 0 0 15px rgba(255, 19, 29, 0.5) !important;
}

.project__item-box .content__top {
    margin-bottom: 20px !important;
    margin-top: auto !important;
}

.content__top .cate {
    display: inline-block !important;
    padding: 6px 14px !important;
    background: rgba(255, 19, 29, 0.15) !important;
    border: 1px solid rgba(255, 19, 29, 0.4) !important;
    color: #ff6b72 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 20px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.project__item-box:hover .content__top .cate {
    background: #FF131D !important;
    color: #ffffff !important;
    border-color: #FF131D !important;
}

.project__item-box h1,
.project__item-box h2,
.project__item-box h3,
.project__item-box .content__top h1 {
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease !important;
}

.project__item-box:hover h1,
.project__item-box.active h1,
.project__item-box:hover .content__top h1,
.project__item-box.active .content__top h1 {
    color: #FF131D !important;
}

.project__item-contetn a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(8px) !important;
}

.project__item-contetn a svg path {
    stroke: #ffffff !important;
    transition: stroke 0.3s ease !important;
}

.project__item-box:hover .project__item-contetn a,
.project__item-box.active .project__item-contetn a {
    background: #FF131D !important;
    border-color: #FF131D !important;
    transform: translateX(6px) !important;
    box-shadow: 0 4px 15px rgba(255, 19, 29, 0.5) !important;
}

/* Nav Buttons */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 21, 27, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.services-nav-btn:hover {
    background: #FF131D;
    border-color: #FF131D;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 19, 29, 0.5);
}

.services-nav-prev {
    left: 20px;
}

.services-nav-next {
    right: 20px;
}

/* Carousel Dots */
.services-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 22px 0 26px 0;
    background: #05151B;
}

.services-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-carousel-dot.active {
    width: 28px;
    border-radius: 12px;
    background: #FF131D;
    box-shadow: 0 0 10px rgba(255, 19, 29, 0.6);
}

/* ==========================================================================
   Spotlight CTA Banner Component (2-Column Image + Content Card)
   ========================================================================== */
.spotlight-banner-wrap {
    background: #05151B !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 40px rgba(5, 21, 27, 0.12) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    max-width: 1040px !important;
    margin: 0 auto !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.spotlight-img-col {
    flex: 0 0 44% !important;
    min-height: 320px !important;
    position: relative !important;
}

.spotlight-img-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
}

.spotlight-text-col {
    flex: 0 0 56% !important;
    padding: 38px 40px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.spotlight-text-col h2 {
    font-size: 27px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    margin: 12px 0 14px 0 !important;
    letter-spacing: -0.3px !important;
}

.spotlight-text-col p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    margin-bottom: 22px !important;
}

.btn-pill-red {
    background: #FF131D !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    padding: 13px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14.5px !important;
    box-shadow: 0 4px 15px rgba(255, 19, 29, 0.35) !important;
    transition: all 0.25s ease !important;
    border: none !important;
}

.btn-pill-red:hover {
    background: #d60b14 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 19, 29, 0.5) !important;
    color: #ffffff !important;
}

.btn-pill-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    padding: 11px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14.5px !important;
    transition: all 0.25s ease !important;
}

.btn-pill-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   HIGH-QUALITY IMAGE RENDERING & HD CRISP PRESERVATION
   ========================================================================== */
img, picture, .hero-carousel-bg img, .service-card-img, .about__img-item img, .hub-card-thumb-wrap img, .project__item-img img, .faq-image-showcase-container img {
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: high-quality !important;
    -ms-interpolation-mode: bicubic !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

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


/* ==========================================================================
   RESTORED SECTION DESIGNS (HOW IT WORKS, COMPETENCE RED RIBBON, BLOG NEWS)
   ========================================================================== */

/* 1. HOW WE DELIVER YOUR PARCEL / PROCESS STEPS (Exact Image 4 Match) */
.transpi__delivery-wrapper {
    position: relative;
    padding: 30px 0;
}

.transpi__delivery-item {
    text-align: center;
    padding: 0 15px;
    position: relative;
    margin-bottom: 30px;
}

.transpi__delivery-item .icon {
    position: relative !important;
    border: 1.5px solid #FF131D !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    background: #ffffff !important;
    transition: all 0.35s ease !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.transpi__delivery-item .icon svg {
    width: 42px !important;
    height: 42px !important;
    transition: transform 0.3s ease;
}

.transpi__delivery-item:hover .icon {
    background: #FF131D !important;
    border-color: #FF131D !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 19, 29, 0.3) !important;
}

.transpi__delivery-item:hover .icon svg path {
    fill: #ffffff !important;
}

.transpi__delivery-item .icon span {
    position: absolute !important;
    right: -4px !important;
    bottom: -2px !important;
    background: #FF131D !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(255, 19, 29, 0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 2;
}

.transpi__delivery-item:hover .icon span {
    background: #0d1017 !important;
    color: #ffffff !important;
}

.transpi__delivery-item .delivery__content h4 {
    color: #0f172a !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.transpi__delivery-item .delivery__content p {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* 2. INDUSTRY-EXPLICIT COMPETENCE RED RIBBON (Exact Image 2 Match) */
.about__content p {
    margin-bottom: 30px !important;
    color: #718096 !important;
    font-size: 15.5px !important;
    line-height: 1.7 !important;
}

.about__list-content {
    background: #FF131D !important;
    padding: 38px 45px 38px 45px !important;
    border-radius: 0 0 50px 0 !important;
    position: relative !important;
    margin-top: 60px !important;
    margin-left: -50px !important;
    z-index: 10 !important;
    box-shadow: 0 15px 35px rgba(255, 19, 29, 0.25) !important;
}

.about__list-content::before {
    content: "" !important;
    position: absolute !important;
    top: -26px !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border-bottom: 26px solid #B8000A !important;
    border-left: 50px solid transparent !important;
}

.about__list-content ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.about__list-content ul li {
    color: #ffffff !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.about__list-content ul li::before {
    content: "\f14a" !important; /* Square with checkmark */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

@media (max-width: 991px) {
    .about__list-content {
        margin-left: 0 !important;
        margin-top: 40px !important;
        border-radius: 20px !important;
    }
    .about__list-content::before {
        display: none !important;
    }
    .about__list-content ul {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}

/* 3. LATEST FREIGHT & TRUCKING NEWS (Exact Image 3 Match) */
.transpi__blog-item {
    background: #ffffff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06) !important;
    margin-bottom: 30px !important;
    transition: all 0.35s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.transpi__blog-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
}

.transpi__blog-item .blog__image-wrap {
    position: relative !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
}

.transpi__blog-item .blog__img {
    height: 240px !important;
    overflow: hidden !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: 0 !important;
}

.transpi__blog-item .blog__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.transpi__blog-item:hover .blog__img img {
    transform: scale(1.06) !important;
}

.transpi__blog-item .blog__link a {
    position: absolute !important;
    bottom: 14px !important;
    right: 14px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #FF131D !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    filter: none !important;
}

.transpi__blog-item:hover .blog__link a {
    background: #FF131D !important;
    color: #ffffff !important;
    transform: scale(1.08) !important;
}

.transpi__blog-item .blog__content {
    padding: 24px 22px !important;
}

.transpi__blog-item .cate__btn {
    display: inline-block !important;
    margin-bottom: 10px !important;
    text-decoration: none !important;
}

.transpi__blog-item .cate__btn span {
    color: #FF131D !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.transpi__blog-item h3 {
    margin-bottom: 14px !important;
    line-height: 1.35 !important;
}

.transpi__blog-item h3 a {
    color: #0f172a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.transpi__blog-item h3 a:hover {
    color: #FF131D !important;
}

.transpi__blog-item .post__meta {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    font-size: 12.5px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.transpi__blog-item .post__meta span i {
    color: #FF131D !important;
    margin-right: 5px !important;
}


    @media (max-width: 767px) {
        .nav-logo img,
        .paramount-top-navbar .nav-logo img {
            height: 64px !important;
            max-width: 320px !important;
        }
    }
  

/* ==========================================================================
   DELIVERY PROCESS CLEARANCE & TOP CLIPPING FIX
   ========================================================================== */
.elementor-widget-transpi-del-process,
.elementor-widget-transpi-del-process .elementor-widget-container,
.transpi__delivery-wrapper,
.transpi__delivery-item,
.elementor-repeater-item-3d08cf3,
.elementor-repeater-item-cc53c8b,
.elementor-repeater-item-18328c8,
.elementor-repeater-item-27e87dc {
    overflow: visible !important;
}

.transpi__delivery-wrapper {
    position: relative;
    padding: 35px 0 25px 0 !important;
    margin-top: 15px !important;
}

.transpi__delivery-item {
    text-align: center;
    padding: 10px 15px 0 15px !important;
    position: relative;
    margin-top: 15px !important;
}

.elementor-repeater-item-cc53c8b .transpi__delivery-item,
.elementor-repeater-item-27e87dc .transpi__delivery-item {
    margin-top: 45px !important;
}

.transpi__delivery-item .icon {
    position: relative !important;
    border: 1.5px solid #FF131D !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    background: #ffffff !important;
    transition: all 0.35s ease !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}


/* ==========================================================================
   RESTORED ABOUT US / COMPLEX LOGISTICS SECTION (Exact Image 2 Match)
   ========================================================================== */

.transpi__sub-heaind span {
    color: #FF131D !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
}

.transpi__section-heading .transpi__heading-title {
    color: #0b132a !important;
    font-size: clamp(32px, 4vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.5px !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
}

.transpi__section-heading p {
    color: #718096 !important;
    font-size: 15.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* 2-Column List with Light Grey Circular Bullet Dots */
.transpi__list-item.style-1 ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.transpi__list-item.style-1 ul li {
    color: #0f172a !important;
    font-size: 15.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    list-style: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.transpi__list-item.style-1 ul li::before {
    content: "" !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

/* Solid Red Discover More Button */
.btnalign {
    margin-top: 20px !important;
}

.btnalign .thm__btn {
    background: #FF131D !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    padding: 13px 26px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(255, 19, 29, 0.3) !important;
    transition: all 0.25s ease !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border: none !important;
}

.btnalign .thm__btn:hover {
    background: #d60b14 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(255, 19, 29, 0.45) !important;
    color: #ffffff !important;
}

.btnalign .thm__btn svg {
    margin-left: 4px !important;
    transition: transform 0.2s ease !important;
}

.btnalign .thm__btn:hover svg {
    transform: translateX(3px) !important;
}


/* ==========================================================================
   RESTORED LATEST FREIGHT & TRUCKING NEWS (Exact Image 2 Match)
   ========================================================================== */

/* Blog Section Heading */
.elementor-widget-transpi-blog .transpi__sub-heaind span,
.transpi__blog-wrapper .transpi__sub-heaind span,
.section-blog .transpi__sub-heaind span {
    color: #64748b !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
    margin-bottom: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.elementor-widget-transpi-blog .transpi__heading-title,
.transpi__blog-wrapper .transpi__heading-title {
    color: #020E28 !important;
    font-size: clamp(34px, 4vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.5px !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    margin-bottom: 40px !important;
}

/* Blog Cards */
.transpi__blog-item {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 30px !important;
    transition: all 0.35s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.transpi__blog-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1) !important;
}

.transpi__blog-item .blog__image-wrap {
    position: relative !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
}

.transpi__blog-item .blog__img {
    height: 240px !important;
    overflow: hidden !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: 16px 16px 0 0 !important;
}

.transpi__blog-item .blog__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.transpi__blog-item:hover .blog__img img {
    transform: scale(1.06) !important;
}

/* Floating Circular Arrow Button on Bottom-Right of Image */
.transpi__blog-item .blog__link a {
    position: absolute !important;
    bottom: -22px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #FF131D !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    filter: none !important;
    z-index: 10 !important;
}

.transpi__blog-item .blog__link a:hover,
.transpi__blog-item:hover .blog__link a {
    background: #FF131D !important;
    color: #ffffff !important;
    transform: scale(1.06) !important;
}

/* Middle Card Active Glow matching Image 2 */
.col-xl-4:nth-child(2) .transpi__blog-item .blog__link a {
    background: #ff5252 !important;
    color: #ffffff !important;
}

.transpi__blog-item .blog__content {
    padding: 24px 22px 20px 22px !important;
}

/* Category Badge - Plain Bold Red Text (No Box Border per Image 2) */
.transpi__blog-item .cate__btn,
.blog__content .cate__btn,
.blog-item-two .cate__btn {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.transpi__blog-item .cate__btn span,
.blog__content .cate__btn span {
    color: #FF131D !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Card Heading Title */
.transpi__blog-item h3 {
    margin-bottom: 16px !important;
    line-height: 1.35 !important;
    margin-top: 4px !important;
}

.transpi__blog-item h3 a {
    color: #020E28 !important;
    font-size: 18.5px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
}

.transpi__blog-item h3 a:hover {
    color: #FF131D !important;
}

/* Meta Footer */
.transpi__blog-item .post__meta {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    font-size: 12.5px !important;
    color: #64748b !important;
    margin: 0 !important;
    padding-top: 14px !important;
    border-top: 1px solid #f1f5f9 !important;
    font-weight: 500 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.transpi__blog-item .post__meta span i {
    color: #FF131D !important;
    margin-right: 5px !important;
}


/* ==========================================================================
   UNIFIED BOLD SECTION HEADINGS & SUB-TAGS (Matching Reference Images)
   ========================================================================== */

/* Universal Red Sub-Tags */
.transpi__sub-heaind span,
.transpi_sub_title,
.sub-title,
.sub-tag,
.section-sub-title,
.testimonial-clean-section .sub-tag,
.elementor-widget-transpi-del-process .transpi__sub-heaind span,
.elementor-widget-transpi-blog .transpi__sub-heaind span {
    color: #FF131D !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.6px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
}

/* Universal Bold Section Headings (h1, h2, .transpi__heading-title, .spilit__enable) */
.transpi__section-heading .transpi__heading-title,
.elementor-widget-transpi-del-process .transpi__heading-title,
.elementor-widget-transpi-blog .transpi__heading-title,
.transpi__blog-wrapper .transpi__heading-title,
.about__content h1,
.about__content h2,
.about__content .spilit__enable,
.testimonial-clean-section h1,
.testimonial-clean-section h2,
.testimonial-clean-section .section-title,
.section-title-large,
h2.section-heading,
.section-heading-bold {
    color: #020E28 !important;
    font-size: clamp(32px, 4.2vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.5px !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    margin-bottom: 20px !important;
}


/* ==========================================================================
   GLOBAL H1 & H2 EXTRA BOLDNESS (font-weight: 800 across all 5 main sections)
   ========================================================================== */

h1,
h2,
.transpi__heading-title,
.spilit__enable,
.story-headline,
.hero-headline,
.section-title,
.section-title-large,
.about__content h1,
.about__content h2,
.testimonial-clean-section h1,
.testimonial-clean-section h2,
.elementor-widget-transpi-del-process h1,
.elementor-widget-transpi-del-process h2,
.elementor-widget-transpi-blog h1,
.elementor-widget-transpi-blog h2 {
    font-weight: 800 !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    letter-spacing: -0.5px !important;
    line-height: 1.18 !important;
}

/* Specific Light Background H1s (Dark Deep Navy/Black #020E28) */
.transpi__section-heading .transpi__heading-title,
.elementor-widget-transpi-del-process .transpi__heading-title,
.elementor-widget-transpi-blog .transpi__heading-title,
.transpi__blog-wrapper .transpi__heading-title,
.about__content h1,
.about__content h2,
.testimonial-clean-section h1,
.testimonial-clean-section h2 {
    color: #020E28 !important;
    font-weight: 800 !important;
}

/* Specific Dark Background / Hero Slide H1s (#ffffff) */
.hero-carousel-slide .story-headline,
.hero-headline,
.dark-section h1,
.dark-section h2 {
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   COUNTER / STATS SECTION PURE WHITE CONTRAST
   ========================================================================== */
.elementor-element-c3e2b92 {
    position: relative;
    z-index: 2;
}

.elementor-element-c3e2b92 .elementor-background-overlay {
    background-color: rgba(5, 21, 27, 0.85) !important;
    opacity: 0.9 !important;
}

.transpi__counter-item,
.transpi__counter-item * {
    color: #ffffff !important;
}

.transpi__counter-item .counter__content {
    color: #ffffff !important;
}

.transpi__counter-item .counter__content h1,
.transpi__counter-item .counter__content h1 *,
.transpi__counter-item .counter__content .odometer,
.transpi__counter-item .counter__content .odometer *,
.transpi__counter-item .counter__content .odometer-inside,
.transpi__counter-item .counter__content .odometer-digit,
.transpi__counter-item .counter__content .odometer-digit-inner,
.transpi__counter-item .counter__content .odometer-ribbon,
.transpi__counter-item .counter__content .odometer-ribbon-inner,
.transpi__counter-item .counter__content .odometer-value,
.transpi__counter-item .counter__content .odometer-formatting-mark {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-size: clamp(38px, 3.5vw, 48px) !important;
    line-height: 1.1 !important;
}

.transpi__counter-item .counter__content h4 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    line-height: 1.35 !important;
}

.transpi__counter-item .counter__icon:after {
    background: rgba(255, 255, 255, 0.3) !important;
}

