   :root {
            --navy-primary: #061525;
            --navy-secondary: #0B243B;
            --brand-blue: #006EDB;
            --accent-blue: #1597FF;
            --white: #FFFFFF;
            --off-white: #F5F7F9;
            --tech-grey: #647180;
            --border-grey: #DCE3E9;
            --font-head: 'Manrope', sans-serif;
            --font-body: 'Inter', sans-serif;
            --header-h: 80px;
        }

        * { box-sizing: border-box; }

        body {
            font-family: var(--font-body);
            color: var(--navy-primary);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-head);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .eyebrow {
            font-family: var(--font-body);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .btn {
            font-family: var(--font-body);
            font-weight: 600;
            padding: 0.85rem 1.75rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--brand-blue);
            border: 1px solid var(--brand-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--navy-secondary);
            border-color: var(--navy-secondary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 110, 219, 0.2);
        }

        .btn-outline-light {
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
        }

        .btn-outline-light:hover {
            background-color: var(--white);
            color: var(--navy-primary);
            border-color: var(--white);
        }

        .theme-txt{color: var(--brand-blue);}
        /* =========================================
           HEADER & NAVIGATION (WP Friendly)
        ========================================= */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.3s ease;
            background-color: #01172969;
        }

        header.scrolled {
            background-color: var(--navy-primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .navbar {
            height: var(--header-h);
            padding: 0;
        }

        .navbar-brand {
            font-family: var(--font-head);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
        }
a.navbar-brand {
    max-width: 150px;
}
a.navbar-brand img{width: 100%;}
        .navbar-brand span { color: var(--brand-blue); }

        /* Custom Ul Li Menu Structure */
        .main-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .main-menu > li {
            position: relative;
            margin: 0 1rem;
        }

        .main-menu > li > a {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            font-size: 1.1rem;
            text-decoration: none;
            padding: 10px 0;
            display: block;
            position: relative;
            transition: color 0.2s;
        }

        .main-menu > li > a:hover, 
        .main-menu > li > a.active {
            color: var(--white);
        }

        .main-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--brand-blue);
            transition: width 0.3s;
        }

        .main-menu > li > a:hover::after, 
        .main-menu > li > a.active::after {
            width: 100%;
        }

        /* Dropdown (menu-has-children) */
        /* .menu-has-children > a::before {
            content: '\F282'; 
            font-family: "bootstrap-icons";
            font-size: 0.7rem;
            margin-left: 5px;
            float: right;
            margin-top: 3px;
            transition: transform 0.3s;
        }

        .menu-has-children:hover > a::before {
            transform: rotate(180deg);
        } */

        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--navy-secondary);
            min-width: 220px;
            list-style: none;
            padding: 1rem 0;
            margin: 0;
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .menu-has-children:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .sub-menu li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            padding: 0.6rem 1.5rem;
            display: block;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }

        .sub-menu li a:hover {
            background-color: var(--navy-primary);
            color: var(--accent-blue);
        }

        .btn-quote {
            background-color: var(--brand-blue);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-quote:hover {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.5);
            padding: 0.4rem 0.6rem;
        }
        .navbar-toggler:focus { box-shadow: none; }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* =========================================
           MOBILE OFFCANVAS MENU
        ========================================= */
        .offcanvas {
            background-color: var(--navy-primary);
            color: var(--white);
            width: 320px;
        }
        .offcanvas-header {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 1.5rem;
        }
        .offcanvas-title {
            color: var(--white);
            font-family: var(--font-head);
            font-weight: 800;
        }
        .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .mobile-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu > li {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-menu > li > a {
            color: var(--white);
            text-decoration: none;
            padding: 1.1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .mobile-menu .menu-has-children > a {
            cursor: pointer;
        }

        .mobile-menu .menu-has-children > a .chevron {
            transition: transform 0.3s;
            font-size: 1.2rem;
        }

        .mobile-menu .menu-has-children.active > a .chevron {
            transform: rotate(180deg);
        }

        .mobile-sub-menu {
            list-style: none;
            padding: 0; /* Remove padding so it collapses fully to 0 height */
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease; /* Smooth transition */
            background-color: rgba(0, 0, 0, 0.1); /* Subtle background for sub-menu */
        }

        .mobile-menu .menu-has-children.active > .mobile-sub-menu {
            max-height: 1000px; 
            padding: 0.5rem 0 1rem 1rem; /* Add padding ONLY when active */
        }

        /* Ensure the offcanvas body scrolls properly if menu gets long */
        .offcanvas-body {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 1.5rem; 
        }

        /* Highlight active parent link */
        .mobile-menu > li.menu-has-children.active > a {
            color: var(--accent-blue);
        }

        .mobile-sub-menu li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            padding: 0.7rem 1.5rem; /* Better touch target spacing */
            display: block;
            font-size: 0.95rem;
            border-left: 1px solid rgba(255,255,255,0.1); /* Subtle indent line */
            margin-left: 0.5rem;
            transition: color 0.2s;
        }

        .mobile-sub-menu li a:hover {
            color: var(--brand-blue);
        }

        .mobile-sub-menu li a:hover {
            color: var(--brand-blue);
        }

        /* =========================================
           HERO VIDEO SLIDER
        ========================================= */
        .hero {
            height: 100svh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            background-color: var(--navy-primary);
        }

        .hero .swiper {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Fully responsive video */
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, rgba(6, 21, 37, 0.9) 0%, rgba(6, 21, 37, 0.5) 60%, rgba(6, 21, 37, 0.8) 100%);
            z-index: 2;
        }

        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 3;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            color: var(--white);
            max-width: 900px;
            padding-top: var(--header-h);
        }

        .hero-content h1 {
            color: var(--white);
            font-size: clamp(2.2rem, 6vw, 4.5rem); /* Responsive typography */
            line-height: 1.05;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            color: rgba(255,255,255,0.85);
            font-size: clamp(1rem, 2vw, 1.25rem); /* Responsive typography */
            max-width: 600px;
            margin-bottom: 2.5rem;
        }

        .vertical-contact {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: right center;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .vertical-contact a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--brand-blue);
            padding-bottom: 5px;
        }

        @media (max-width: 991px) {
            .vertical-contact { display: none; }
            .mobile-sticky-contact {
                display: flex !important;
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 1000;
                background: var(--brand-blue);
                color: white;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 15px rgba(0,110,219,0.4);
                text-decoration: none;
            }
        }
        .mobile-sticky-contact { display: none; }

        /* Credibility Bar */
          .credibility-bar {
            position: relative;
            /* bottom: 0; */
            /* left: 0; */
            width: 100%;
            /* z-index: 5; */
            background: rgb(6 21 37);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 1.25rem 0;
        }
        

        .cred-item {
            text-align: center;
            color: var(--white);
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .cred-item:last-child { border-right: none; }
        .cred-item h4 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 0;
        }
        .cred-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: rgba(255,255,255,0.4);
            opacity: 1;
            width: 10px;
            height: 10px;
        }
        .swiper-pagination-bullet-active {
            background: var(--brand-blue);
            width: 30px;
            border-radius: 4px;
        }

        /* =========================================
           FOOTER
        ========================================= */
        footer {
            background-color: var(--navy-primary);
            color: rgba(255,255,255,0.7);
            padding: 5rem 0 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--brand-blue);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 4rem;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-right: 1rem;
        }
        .footer-bottom a:hover { color: var(--white); }

        .footer-social a {
            color: rgba(255,255,255,0.7);
            margin-left: 1rem;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .footer-social a:hover { color: var(--white); }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
    
    /* =========================================
       ABOUT SECTION
    ========================================== */
    .about-section {
        padding: 6rem 0;
        background-color: var(--white);
        position: relative;
    }

    .about-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--navy-primary);
    }

    .about-section p {
        color: var(--tech-grey);
        margin-bottom: 1.2rem;
        font-size: 1.05rem;
    }

    .about-features {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-grey);
    }

    .about-feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
        color: var(--navy-primary);
        font-size: 0.95rem;
    }

    .about-feature-item i {
        color: var(--brand-blue);
        font-size: 1.3rem;
    }

    .about-image-wrapper {
        position: relative;
        border-radius: 8px;
        overflow: visible; /* Allows the stat card to pop out */
    }

    .about-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(6, 21, 37, 0.08);
        border: 1px solid var(--border-grey);
    }

    .about-stat-card {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background-color: var(--navy-primary);
        color: var(--white);
        padding: 1.5rem 2rem;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        border-left: 4px solid var(--brand-blue);
    }

    .about-stat-card h3 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
        line-height: 1;
    }

    .about-stat-card p {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .about-image-wrapper {
            margin-top: 3rem;
        }
        .about-stat-card {
            left: 50%;
            transform: translateX(-50%);
            bottom: -25px;
            padding: 1.2rem 1.5rem;
        }
        .about-stat-card h3 {
            font-size: 2rem;
        }
        .about-img {
            height: 400px;
        }
        .about-features {
            flex-wrap: wrap;
            gap: 1rem;
        }
    }

    @media (max-width: 576px) {
        .about-section {
            padding: 4rem 0;
        }
        .about-img {
            height: 300px;
        }
    }

        /* =========================================
       PRODUCTS SECTION (DARK)
    ========================================== */
    .dark-section {
        background-color: var(--navy-primary);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }
    
    /* Subtle technical grid background */
    .dark-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
        background-size: 80px 80px;
        pointer-events: none;
        z-index: 0;
    }

    .dark-section .container {
        position: relative;
        z-index: 1;
    }

    .dark-section h2, 
    .dark-section h4 {
        color: var(--white);
    }

    .dark-section p {
        color: rgba(255,255,255,0.7);
    }

    .dark-section .eyebrow {
        color: var(--accent-blue);
    }

    /* Section Header */
    .section-header {
        margin-bottom: 3rem;
        max-width: 800px;
    }
    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.1;
    }

    /* Product Card Styles */
    .product-card-dark {
        background: var(--navy-secondary);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .product-card-dark:hover {
        border-color: var(--brand-blue);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .product-img {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .product-img::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 50%;
        background: linear-gradient(to top, var(--navy-secondary), transparent);
        z-index: 1;
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card-dark:hover .product-img img {
        transform: scale(1.08);
    }

    .product-body {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }

    .product-cat {
        font-size: 0.8rem;
        color: var(--accent-blue);
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .product-body h4 {
        font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    }

    .product-card-dark:hover .product-body h4 {
        color: var(--brand-blue);
    }

    .product-body p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .product-link {
        color: var(--white);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        transition: gap 0.3s ease;
    }

    .product-card-dark:hover .product-link {
        gap: 1rem;
        color: var(--accent-blue);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .dark-section {
            padding: 4rem 0;
        }
        .product-img {
            height: 200px;
        }
    }

        /* =========================================
       WHAT WE OFFER SECTION (LIGHT)
    ========================================== */
    .offer-section {
        background-color: var(--off-white); /* Slight contrast against pure white */
        padding: 6rem 0;
        position: relative;
    }

    .offer-section .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--navy-primary);
    }

    .offer-card {
        background: var(--white);
        border: 1px solid var(--border-grey);
        border-radius: 8px;
        padding: 2.5rem 1.75rem;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    /* Subtle blue top border on hover */
    .offer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--brand-blue);
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.4s ease;
    }

    .offer-card:hover {
        border-color: transparent;
        box-shadow: 0 15px 40px rgba(6, 21, 37, 0.08);
        transform: translateY(-5px);
    }

    .offer-card:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(0, 110, 219, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-blue);
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .offer-card:hover .offer-icon {
        background-color: var(--brand-blue);
        color: var(--white);
    }

    .offer-card h4 {
        font-size: 1.15rem;
        color: var(--navy-primary);
        margin-bottom: 0.85rem;
        font-weight: 700;
        line-height: 1.4;
    }

    .offer-card p {
        color: var(--tech-grey);
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .offer-section {
            padding: 4rem 0;
        }
        .offer-card {
            padding: 2rem 1.5rem;
        }
    }


    /* =========================================================
   JASCH INTERNATIONAL LOCATIONS
   ========================================================= */

.jasch-locations {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    color: #061525;

    padding: 120px 0;
}


/* CONTAINER */

.jasch-locations-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.jasch-locations-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.jasch-locations-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #006EDB;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.jasch-locations-eyebrow::before {
    content: "";

    width: 32px;
    height: 2px;

    background: #006EDB;
}

.jasch-locations-title {
    margin: 0;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.jasch-locations-title span {
    color: #006EDB;
}

.jasch-locations-intro {
    max-width: 620px;

    margin: 24px 0 0;

    color: #536270;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.jasch-location-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(390px, 0.65fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   MAP VISUAL
   ========================================================= */

.jasch-location-visual {
    position: relative;

    min-height: 500px;

    background: #f5f8fa;

    overflow: hidden;

    border: 1px solid #e3e9ed;
}


/* TECHNICAL GRID */

.jasch-map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(6, 21, 37, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(6, 21, 37, 0.045) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


/* WORLD MAP */

.jasch-world-map {
    position: absolute;

    width: 90%;
    left: 5%;
    top: 14%;

    color: #dfe8ed;

    transition:
        transform 800ms ease,
        opacity 500ms ease;
}

.jasch-world-map svg {
    width: 100%;
    height: auto;
}


/* MAP MARKERS */

.jasch-location-marker {
    position: absolute;

    left: var(--x);
    top: var(--y);

    width: 34px;
    height: 34px;

    padding: 0;

    transform: translate(-50%, -50%);

    border: 0;
    background: transparent;

    cursor: pointer;

    z-index: 5;
}


.jasch-marker-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 11px;
    height: 11px;

    transform: translate(-50%, -50%);

    background: #006EDB;

    border: 3px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px #006EDB,
        0 5px 15px rgba(0, 110, 219, 0.35);

    transition:
        transform 250ms ease,
        background 250ms ease;
}


.jasch-marker-pulse {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 28px;
    height: 28px;

    transform: translate(-50%, -50%);

    border: 1px solid #006EDB;

    border-radius: 50%;

    opacity: 0;

    animation:
        jaschLocationPulse 2.4s infinite;
}


.jasch-location-marker.active .jasch-marker-dot,
.jasch-location-marker:hover .jasch-marker-dot {
    background: #1597FF;

    transform:
        translate(-50%, -50%)
        scale(1.25);
}


@keyframes jaschLocationPulse {

    0% {
        transform:
            translate(-50%, -50%)
            scale(0.6);

        opacity: 0.7;
    }

    70% {
        transform:
            translate(-50%, -50%)
            scale(1.5);

        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* MAP LABEL */

.jasch-map-label {
    position: absolute;

    left: 30px;
    bottom: 26px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #7a8995;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}


.jasch-map-label-line {
    width: 28px;
    height: 1px;

    background: #006EDB;
}


/* =========================================================
   LOCATION LIST
   ========================================================= */

.jasch-location-list {
    border-top: 1px solid #dfe6ea;
}


/* LOCATION ITEM */

.jasch-location-item {
    width: 100%;

    min-height: 94px;

    display: grid;

    grid-template-columns:
        38px
        48px
        1fr
        35px;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border: 0;
    border-bottom: 1px solid #dfe6ea;

    background: transparent;

    color: #061525;

    text-align: left;

    cursor: pointer;

    transition:
        background 250ms ease,
        padding 250ms ease;
}


.jasch-location-item:hover,
.jasch-location-item.active {
    background: #f5f8fa;

    padding-left: 15px;
    padding-right: 15px;
}


/* NUMBER */

.jasch-location-number {
    color: #9aa7b0;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.jasch-location-item.active
.jasch-location-number {
    color: #006EDB;
}


/* FLAG */

.jasch-location-flag {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e0e6ea;

    font-size: 21px;

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(6, 21, 37, 0.06);
}


/* LOCATION INFO */

.jasch-location-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.jasch-location-info strong {
    color: #061525;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.01em;
}


.jasch-location-info small {
    color: #71808b;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ARROW */

.jasch-location-arrow {
    color: #8c9aa4;

    font-size: 18px;

    transition:
        color 200ms ease,
        transform 200ms ease;
}


.jasch-location-item:hover
.jasch-location-arrow,
.jasch-location-item.active
.jasch-location-arrow {
    color: #006EDB;

    transform: translateX(4px);
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.jasch-locations-bottom {
    margin-top: 65px;
}


.jasch-locations-line {
    width: 100%;
    height: 1px;

    background: #dfe6ea;
}


.jasch-locations-bottom-content {
    min-height: 75px;

    display: grid;

    grid-template-columns:
        180px
        1fr
        auto;

    align-items: center;

    gap: 30px;
}


.jasch-locations-bottom-content span {
    color: #8b98a1;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.jasch-locations-bottom-content strong {
    color: #061525;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.jasch-locations-bottom-content a {
    color: #006EDB;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;

    transition: color 200ms ease;
}


.jasch-locations-bottom-content a:hover {
    color: #1597FF;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .jasch-locations {
        padding: 90px 0;
    }

    .jasch-location-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .jasch-location-visual {
        min-height: 420px;
    }

    .jasch-location-list {
        max-width: 700px;
    }

}


@media (max-width: 767px) {

    .jasch-locations {
        padding: 70px 0;
    }

    .jasch-locations-container {
        width: calc(100% - 32px);
    }

    .jasch-locations-heading {
        margin-bottom: 45px;
    }

    .jasch-locations-title {
        font-size: 43px;
    }

    .jasch-locations-intro {
        font-size: 13px;
    }

    .jasch-location-visual {
        min-height: 320px;
    }

    .jasch-location-item {
        grid-template-columns:
            28px
            40px
            1fr
            25px;

        min-height: 80px;

        gap: 8px;
    }

    .jasch-location-item:hover,
    .jasch-location-item.active {
        padding-left: 10px;
        padding-right: 10px;
    }

    .jasch-location-flag {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }

    .jasch-location-info strong {
        font-size: 13px;
    }

    .jasch-location-info small {
        font-size: 7px;
    }

    .jasch-locations-bottom-content {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 20px 0;
    }

    .jasch-locations-bottom-content strong {
        line-height: 1.5;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .jasch-marker-pulse {
        animation: none;
    }

    .jasch-location-item,
    .jasch-location-arrow,
    .jasch-marker-dot {
        transition: none;
    }

}

    /* =========================================
       CTA SPLIT SECTION
    ========================================== */
    .cta-split-section {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .cta-content {
        background-color: var(--navy-primary);
        color: var(--white);
        padding: 6rem 4rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Technical Grid Pattern for Left Side */
    .cta-content::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 0;
    }

    .cta-content > * {
        position: relative;
        z-index: 1;
    }

    .cta-content .eyebrow {
        color: var(--accent-blue);
    }

    .cta-content h2 {
        color: var(--white);
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        color: rgba(255,255,255,0.8);
        font-size: 1.15rem;
        max-width: 500px;
        margin-bottom: 2.5rem;
    }

    .cta-image {
        position: relative;
        height: 100%;
        min-height: 450px;
        overflow: hidden;
    }

    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease; /* Slow zoom effect */
    }

    .cta-split-section:hover .cta-image img {
        transform: scale(1.05);
    }

    /* Subtle dark gradient overlay to blend image with dark side */
    .cta-image-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(6, 21, 37, 0.4) 0%, rgba(6, 21, 37, 0) 50%);
        pointer-events: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .cta-content {
            padding: 4rem 2rem;
            text-align: center;
            align-items: center;
        }
        .cta-content p {
            margin-left: auto;
            margin-right: auto;
        }
        .cta-image {
            min-height: 300px;
        }
        /* Flip image below content on mobile */
        .cta-split-section .row {
            display: flex;
            flex-direction: column-reverse;
        }
    }

        /* =========================================
       FOOTER OPTIMIZED
    ========================================== */
    footer {
        background-color: var(--navy-primary);
        color: rgba(255,255,255,0.7);
        padding: 5rem 0 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-about .navbar-brand {
        max-width: 140px;
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .footer-about .navbar-brand img {
        width: 100%;
        height: auto;
    }

    .footer-about p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.6);
    }

    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255,255,255,0.8);
    }

    .footer-contact-list li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-contact-list li a:hover {
        color: var(--accent-blue);
    }

    .footer-contact-list i {
        color: var(--brand-blue);
        font-size: 1rem;
        margin-top: 3px;
    }

    .footer-col h5 {
        color: var(--white);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        font-family: var(--font-body);
        font-weight: 600;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 0.85rem;
    }

    .footer-col ul li a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease, padding-left 0.2s ease;
        position: relative;
    }

    .footer-col ul li a:hover {
        color: var(--accent-blue);
        padding-left: 5px;
    }

    /* Footer Bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 4rem;
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.6);
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
    }

    .footer-bottom-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom-links a:hover { 
        color: var(--white); 
    }

    .footer-social a {
        color: rgba(255,255,255,0.6);
        margin-left: 1.25rem;
        font-size: 1.1rem;
        transition: color 0.2s, transform 0.2s;
        display: inline-block;
    }

    .footer-social a:hover { 
        color: var(--accent-blue); 
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
        footer {
            padding: 4rem 0 2rem 0;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-bottom-links {
            gap: 1rem;
        }
        .footer-social a {
            margin: 0 0.5rem;
        }
    }