        :root {
            --brand-primary: #0E4C92;
            --brand-secondary: #1B75BC;
            --brand-accent: #F5A623;
            --brand-bg: #F8F9FA;
            --brand-ink: #0B1C2C;
            --brand-muted: #5B6773;

            /* Re-map Bootstrap variables so existing components inherit the brand palette */
            --bs-primary: var(--brand-primary);
            --bs-primary-rgb: 14, 76, 146;
            --bs-secondary: var(--brand-secondary);
            --bs-secondary-rgb: 27, 117, 188;
            --bs-dark: var(--brand-ink);
            --bs-dark-rgb: 11, 28, 44;
            --bs-light: var(--brand-bg);
            --bs-light-rgb: 248, 249, 250;
            --bs-link-color: var(--brand-secondary);
            --bs-link-hover-color: var(--brand-primary);
            --bs-body-color: #2A333C;
            --bs-body-bg: #ffffff;
        }

        body {
            font-family: 'Inter', var(--bs-font-sans-serif);
            color: var(--bs-body-color);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .navbar-brand,
        .btn {
            font-family: 'Space Grotesk', var(--bs-font-sans-serif);
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--brand-ink);
            letter-spacing: -0.01em;
        }

        a {
            text-decoration: none;
        }

        /* Skip link for keyboard users */
        .skip-link {
            position: absolute;
            left: -999px;
            top: 0;
            background: var(--brand-primary);
            color: #fff;
            padding: 0.6rem 1rem;
            z-index: 2000;
            border-radius: 0 0 0.5rem 0;
        }

        .skip-link:focus {
            left: 0;
        }

        /* Section eyebrow label - used consistently as a section signpost */
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Space Grotesk', var(--bs-font-sans-serif);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--brand-secondary);
            margin-bottom: 0.9rem;
        }

        .section-eyebrow::before {
            content: "";
            display: inline-block;
            width: 2rem;
            height: 3px;
            background: var(--brand-accent);
            border-radius: 2px;
        }

        .section-pad {
            padding: 6rem 0;
        }

        .bg-brand-light {
            background: var(--brand-bg);
        }

        /* Navbar */
        .navbar.brand-nav {
            background: transparent;
            padding-top: 1.4rem;
            padding-bottom: 1.4rem;
            transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.brand-nav.is-scrolled {
            background: var(--brand-ink);
            padding-top: 0.7rem;
            padding-bottom: 0.7rem;
            box-shadow: 0 8px 24px rgba(11, 28, 44, 0.18);
        }

        .navbar.brand-nav .navbar-brand {
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            line-height: 1.25;
            max-width: calc(100% - 4.5rem);
            white-space: normal;
        }

        .navbar.brand-nav .nav-link {
            color: rgba(255, 255, 255, 0.82);
            font-weight: 500;
            margin: 0 0.35rem;
        }

        .navbar.brand-nav .nav-link:hover,
        .navbar.brand-nav .nav-link.active {
            color: #fff;
        }

        .navbar.brand-nav .btn-nav-cta {
            background: var(--brand-accent);
            color: var(--brand-ink);
            font-weight: 600;
            border-radius: 0.5rem;
            padding: 0.5rem 1.2rem;
        }

        .navbar.brand-nav .btn-nav-cta:hover {
            filter: brightness(0.95);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 3px solid rgba(245, 166, 35, 0.75);
            outline-offset: 3px;
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            background:
                linear-gradient(rgba(11, 28, 44, .75), rgba(11, 28, 44, .75)),
                url("../assets/images/hero.webp") center center / cover no-repeat;
            overflow: hidden;
        }

        /* Signature motif: a faint network/route grid evoking global trade lanes */
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0.16;
            background-image:
                radial-gradient(rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
                linear-gradient(115deg, transparent 46%, rgba(245, 166, 35, 0.5) 47%, rgba(245, 166, 35, 0.5) 47.6%, transparent 48.4%),
                linear-gradient(65deg, transparent 68%, rgba(255, 255, 255, 0.35) 69%, rgba(255, 255, 255, 0.35) 69.5%, transparent 70.5%);
            background-size: 26px 26px, 100% 100%, 100% 100%;
            pointer-events: none;
        }

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

        .hero-eyebrow {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--brand-accent);
            margin-bottom: 1rem;
        }

        .hero h1 {
            color: #fff;
            font-weight: 700;
            font-size: clamp(2.1rem, 4.6vw, 3.4rem);
            line-height: 1.15;
            max-width: 46rem;
        }

        .hero p.lead {
            color: rgba(255, 255, 255, 0.86);
            max-width: 48rem;
            font-size: 1.14rem;
            line-height: 1.75;
        }

        .hero-underline {
            width: 4.5rem;
            height: 4px;
            background: var(--brand-accent);
            border-radius: 3px;
            margin: 1.4rem 0 1.6rem;
        }

        .btn-brand-primary {
            background: var(--brand-accent);
            border-color: var(--brand-accent);
            color: var(--brand-ink);
            font-weight: 600;
            border-radius: 0.6rem;
        }

        .btn-brand-primary:hover {
            background: #e0961d;
            border-color: #e0961d;
            color: var(--brand-ink);
        }

        .btn-brand-outline {
            border: 1.5px solid rgba(255, 255, 255, 0.65);
            color: #fff;
            font-weight: 600;
            border-radius: 0.6rem;
            background: transparent;
        }

        .btn-brand-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.65rem;
            max-width: 48rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.55rem 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 0.55rem;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.08);
            font-size: 0.88rem;
            font-weight: 600;
            backdrop-filter: blur(6px);
        }

        .hero-badge i {
            color: var(--brand-accent);
            font-size: 0.95rem;
        }

        /* Route divider - a single, restrained signature element between Hero and About */
        .route-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 1.6rem 0;
            background: var(--brand-ink);
        }

        .route-divider .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-accent);
            opacity: 0.9;
        }

        .route-divider .line {
            width: 5rem;
            height: 2px;
            background: rgba(245, 166, 35, 0.55);
        }

        .route-divider i {
            color: var(--brand-accent);
            font-size: 1rem;
        }

        /* About */
        .about-media {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            min-height: 22rem;
            background: linear-gradient(155deg, var(--brand-primary), var(--brand-secondary));
            box-shadow: 0 20px 45px rgba(14, 76, 146, 0.18);
        }

        .about-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
            background-size: 22px 22px;
            opacity: 0.18;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 1.4rem 0 0;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.55rem 0;
            color: var(--brand-muted);
            font-weight: 500;
        }

        .about-list i {
            color: var(--brand-secondary);
            margin-top: 0.2rem;
        }

        .brand-card {
            border: 1px solid #E7EBEF;
            border-radius: 1rem;
            padding: 2.1rem 1.8rem;
            height: 100%;
            background: #fff;
            box-shadow: 0 10px 26px rgba(11, 28, 44, 0.05);
            border-top: 3px solid transparent;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .brand-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 40px rgba(11, 28, 44, 0.1);
            border-top-color: var(--brand-accent);
        }

        .brand-icon {
            width: 3.4rem;
            height: 3.4rem;
            border-radius: 0.85rem;
            background: linear-gradient(155deg, var(--brand-primary), var(--brand-secondary));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
        }

        .brand-card h2,
        .brand-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.6rem;
        }

        .brand-card p {
            color: var(--brand-muted);
            margin-bottom: 0;
            font-size: 0.96rem;
        }

        .stat-card {
            text-align: center;
            padding: 2.6rem 1.6rem;
            border-top-color: rgba(245, 166, 35, 0.75);
            overflow: hidden;
            position: relative;
        }

        .stat-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(14, 76, 146, 0.06), transparent 55%);
            opacity: 0;
            transition: opacity 0.25s ease;
            pointer-events: none;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 46px rgba(14, 76, 146, 0.14);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card p {
            position: relative;
            color: var(--brand-ink);
            font-weight: 600;
            font-size: 1rem;
        }

        .value-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }

        .value-list li {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            color: var(--brand-muted);
            font-weight: 500;
            padding: 0.25rem 0;
        }

        .value-list i {
            color: var(--brand-secondary);
        }

        .division-card {
            margin-top: 4rem;
        }

        .service-note {
            display: block;
            color: var(--brand-muted);
            font-family: 'Inter', var(--bs-font-sans-serif);
            font-size: 0.86rem;
            font-weight: 500;
            letter-spacing: 0;
            margin-top: 0.15rem;
        }

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

        .service-card {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            padding: 1.65rem;
            border: 1px solid #E7EBEF;
            border-radius: 1rem;
            background: #fff;
            box-shadow: 0 10px 26px rgba(11, 28, 44, 0.05);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .service-card:nth-child(even) {
            transform: translateY(1rem);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(245, 166, 35, 0.65);
            box-shadow: 0 22px 40px rgba(11, 28, 44, 0.1);
        }

        .service-card:nth-child(even):hover {
            transform: translateY(0.35rem);
        }

        .service-card .brand-icon {
            flex: 0 0 auto;
            margin-bottom: 0;
        }

        .service-card h2,
        .service-card h3 {
            font-size: 1.08rem;
            margin-bottom: 0.45rem;
        }

        .service-card p {
            color: var(--brand-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0.65rem 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }

        .service-list li {
            padding: 0.35rem 0.6rem;
            border-radius: 999px;
            background: var(--brand-bg);
            color: var(--brand-muted);
            font-size: 0.82rem;
            font-weight: 600;
        }

        .process-track {
            position: relative;
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 1rem;
        }

        .process-track::before {
            content: "";
            position: absolute;
            top: 2.05rem;
            left: 7%;
            right: 7%;
            height: 2px;
            background: #D7DEE5;
        }

        .process-step {
            position: relative;
            text-align: center;
            padding-top: 0.1rem;
        }

        .process-icon {
            position: relative;
            z-index: 1;
            width: 4.1rem;
            height: 4.1rem;
            margin: 0 auto 1.1rem;
            border: 4px solid #fff;
            border-radius: 50%;
            background: linear-gradient(155deg, var(--brand-primary), var(--brand-secondary));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            box-shadow: 0 12px 24px rgba(14, 76, 146, 0.18);
        }

        .process-number {
            display: block;
            color: var(--brand-accent);
            font-family: 'Space Grotesk', var(--bs-font-sans-serif);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            margin-bottom: 0.35rem;
            text-transform: uppercase;
        }

        .process-step h3 {
            font-size: 0.96rem;
            margin-bottom: 0.45rem;
        }

        .process-step p {
            color: var(--brand-muted);
            font-size: 0.86rem;
            line-height: 1.55;
            margin-bottom: 0;
        }

        .testimonial-card blockquote {
            color: var(--brand-muted);
            font-size: 0.98rem;
            margin-bottom: 1.4rem;
        }

        .testimonial-card h3 {
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Industries */
        .industry-item {
            text-align: center;
            padding: 1.8rem 1rem;
            border-radius: 0.9rem;
            background: #fff;
            border: 1px solid #E7EBEF;
            height: 100%;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }

        .industry-item:hover {
            box-shadow: 0 14px 28px rgba(11, 28, 44, 0.08);
            transform: translateY(-4px);
        }

        .industry-item i {
            font-size: 1.8rem;
            color: var(--brand-primary);
            margin-bottom: 0.7rem;
            display: block;
        }

        .industry-item span {
            font-weight: 600;
            color: var(--brand-ink);
            font-size: 0.95rem;
        }

        /* Why choose us on dark band */
        .why-band {
            background: var(--brand-ink);
        }

        .why-band .section-eyebrow {
            color: var(--brand-accent);
        }

        .why-band h2 {
            color: #fff;
        }

        .why-band p.lead-sub {
            color: rgba(255, 255, 255, 0.7);
        }

        .why-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem 1.6rem;
            height: 100%;
        }

        .why-card .brand-icon {
            background: rgba(245, 166, 35, 0.15);
            color: var(--brand-accent);
        }

        .why-card h3 {
            color: #fff;
            font-size: 1.05rem;
        }

        .why-card p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.94rem;
            margin-bottom: 0;
        }

        /* Partners */
        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 6.5rem;
            border: 1px dashed #D7DEE5;
            border-radius: 0.8rem;
            color: var(--brand-muted);
            font-size: 0.85rem;
            font-weight: 500;
            background: #fff;
        }

        /* Contact */
        .contact-card {
            border: 1px solid #E7EBEF;
            border-radius: 1rem;
            padding: 1rem 1.5rem;
            background: #fff;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1rem;
            align-items: start;
            align-content: center;
            min-height: 100px;
            box-sizing: border-box;
        }

        .contact-card .brand-icon {
            width: 2.8rem;
            height: 2.8rem;
            font-size: 1.15rem;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .contact-card h3 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .contact-card p,
        .contact-card a {
            color: var(--brand-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .contact-info-stack {
            height: 100%;
            align-content: space-between;
            width: 100%;
        }

        .contact-map-card {
            padding: 0 !important;
            overflow: hidden;
            display: block;
            height: 260px;
            min-height: 260px;
        }

        @media (max-width: 991.98px) {
            .contact-map-card {
                height: 220px;
                min-height: 220px;
            }
        }

        @media (max-width: 767.98px) {
            .contact-map-card {
                height: 200px;
                min-height: 200px;
            }
        }

        .contact-info-stack .col-12 {
            display: flex;
        }

        .contact-info-stack .contact-card,
        .contact-info-stack .btn {
            width: 100%;
        }

        .quote-form {
            height: 100%;
        }

        .quote-form .alert:empty {
            display: none;
        }

        .btn.btn-whatsapp {
            background: #25D366;
            color: #fff;
            font-weight: 600;
            border-radius: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.75rem 1.5rem;
            font-size: 1.05rem;
            min-height: 52px;
            border: none;
            transition: background-color 0.2s ease;
        }

        .btn-whatsapp:hover {
            background: #1ebe5b;
            color: #fff;
        }

        .whatsapp-float {
            position: fixed;
            right: 1.4rem;
            bottom: 1.4rem;
            z-index: 1050;
            width: 3.4rem;
            height: 3.4rem;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float:hover {
            color: #fff;
            filter: brightness(0.97);
        }

        /* Footer */
        footer.brand-footer {
            background: linear-gradient(180deg, var(--brand-ink) 0%, #07131e 100%);
            padding: 5.5rem 0 2.5rem;
        }

        footer.brand-footer h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.35rem;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        footer.brand-footer p,
        footer.brand-footer a,
        footer.brand-footer li {
            color: rgba(255, 255, 255, 0.65);
        }

        footer.brand-footer a:hover {
            color: var(--brand-accent);
        }

        footer.brand-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 1.5rem 2rem;
            align-items: start;
        }

        footer.brand-footer .footer-column {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-width: 0;
        }

        footer.brand-footer .footer-column a {
            overflow-wrap: anywhere;
        }

        footer.brand-footer .footer-intro {
            font-size: 0.95rem;
            line-height: 1.75;
            max-width: 20rem;
            overflow-wrap: anywhere;
        }

        footer.brand-footer .footer-links,
        footer.brand-footer .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            min-width: 0;
        }

        footer.brand-footer .footer-links li,
        footer.brand-footer .footer-contact-list li {
            padding: 0;
            font-size: 0.95rem;
            line-height: 1.7;
            overflow-wrap: anywhere;
        }

        footer.brand-footer .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.4rem;
        }

        footer.brand-footer .social-links a {
            width: 2.35rem;
            height: 2.35rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        footer.brand-footer .social-links a:hover {
            border-color: var(--brand-accent);
            color: var(--brand-accent);
        }

        footer.brand-footer .social-link-disabled {
            width: 2.35rem;
            height: 2.35rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.38);
            background: rgba(255, 255, 255, 0.04);
            cursor: not-allowed;
        }

        footer.brand-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            text-align: center;
        }

        @media (prefers-reduced-motion: reduce) {

            .brand-card,
            .service-card,
            .industry-item,
            .navbar.brand-nav {
                transition: none;
            }
        }

        @media (max-width: 1199.98px) {
            .process-track {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                row-gap: 2.5rem;
            }

            .process-track::before {
                display: none;
            }

            footer.brand-footer .footer-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 991.98px) {
            .hero {
                padding: 8rem 0 5rem;
            }

            footer.brand-footer {
                padding: 4.5rem 0 2rem;
            }

            footer.brand-footer .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

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

            .service-card:nth-child(even),
            .service-card:nth-child(even):hover {
                transform: none;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding: 4.5rem 0;
            }

            footer.brand-footer {
                padding: 4rem 0 1.75rem;
            }

            footer.brand-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.35rem;
            }

            .process-track {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .process-step {
                display: grid;
                grid-template-columns: 4.1rem 1fr;
                gap: 1rem;
                text-align: left;
            }

            .process-step:not(:last-child)::after {
                content: "";
                position: absolute;
                left: 2.03rem;
                top: 4.1rem;
                bottom: -1.25rem;
                width: 2px;
                background: #D7DEE5;
            }

            .process-icon {
                margin: 0;
            }
        }

        .object-cover {
            object-fit: cover;
        }

        .partner-logo-img {
            max-height: 60px;
        }

        .map-embed {
            border: 0;
            display: block;
        }

        .page-hero {
            min-height: 48vh;
            padding: 9rem 0 5rem;
        }

        .testimonial-role {
            color: var(--brand-muted);
            font-weight: 600;
            margin-bottom: 0;
            overflow-wrap: anywhere;
        }

        .testimonial-photo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
            border: 2px solid rgba(14, 76, 146, 0.12);
        }

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