/* =========================================================
   BASA AFRICA — HOMEPAGE V4
   MODULE 1: HERO AND ABOUT
   ========================================================= */


/* =========================================================
   SHARED V4 COMPONENTS
   ========================================================= */

.v4-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #f47421;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.v4-btn-primary,
.v4-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 14px 28px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 900;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.v4-btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f47421,
            #ff922f
        );

    box-shadow:
        0 16px 38px rgba(244, 116, 33, 0.28);
}

.v4-btn-primary:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    transform: translateY(-3px);

    box-shadow:
        0 22px 48px rgba(36, 60, 125, 0.30);
}

.v4-btn-outline {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.45);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.v4-btn-outline:hover {
    color: #243c7d;
    background: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   HERO
   ========================================================= */

.v4-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: calc(100vh - 85px);

    overflow: hidden;

    color: #ffffff;

    background-color: #06101f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    isolation: isolate;
}

.v4-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(21, 188, 188, 0.20),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(244, 116, 33, 0.16),
            transparent 30%
        );
}

.v4-hero-glow {
    position: absolute;

    z-index: -1;

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}

.v4-hero-glow-one {
    top: 10%;
    right: 8%;

    width: 300px;
    height: 300px;

    background: rgba(21, 188, 188, 0.15);

    animation:
        basaFloat 7s ease-in-out infinite;
}

.v4-hero-glow-two {
    left: 7%;
    bottom: 8%;

    width: 240px;
    height: 240px;

    background: rgba(244, 116, 33, 0.13);

    animation:
        basaFloatSmall 5.5s ease-in-out infinite;
}

.v4-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    align-items: center;

    gap: 70px;

    width: 100%;

    padding: 100px 0 115px;
}

.v4-hero-content {
    min-width: 0;
    max-width: 850px;
}

.v4-hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 25px;
    padding: 10px 17px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.v4-hero-badge i {
    color: #15bcbc;
}

.v4-hero h1 {
    max-width: 850px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.98;

    letter-spacing: -3px;

    text-shadow:
        0 18px 45px rgba(0, 0, 0, 0.26);
}

.v4-hero-description {
    max-width: 730px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 19px;
    line-height: 1.8;
}

.v4-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

.v4-hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 13px 24px;

    margin-top: 32px;
}

.v4-trust-item {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 700;
}

.v4-trust-item i {
    color: #15bcbc;
}


/* HERO SERVICE PANEL */

.v4-hero-panel {
    padding: 25px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 28px;

    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.24);
}

.v4-panel-label {
    display: block;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.v4-panel-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.v4-panel-grid a {
    display: flex;
    flex-direction: column;

    gap: 12px;

    padding: 22px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    font-size: 14px;
    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.v4-panel-grid a:hover {
    color: #ffffff;
    background: rgba(21, 188, 188, 0.23);

    transform: translateY(-4px);
}

.v4-panel-grid i {
    color: #f47421;

    font-size: 24px;
}


/* SCROLL INDICATOR */

.v4-scroll-down {
    position: absolute;

    left: 50%;
    bottom: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    transform: translateX(-50%);

    animation:
        basaFloatSmall 2.5s ease-in-out infinite;
}

.v4-scroll-down:hover {
    color: #15bcbc;
}


/* =========================================================
   ABOUT
   ========================================================= */

.v4-about {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background: #ffffff;
}

.v4-about::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    background: rgba(21, 188, 188, 0.06);

    border-radius: 50%;
}

.v4-about-visual {
    position: relative;

    padding-right: 40px;
    padding-bottom: 75px;
}

.v4-about-image {
    overflow: hidden;

    border-radius: 34px;

    box-shadow:
        0 35px 90px rgba(15, 23, 42, 0.16);
}

.v4-about-image img {
    display: block;

    width: 100%;
    height: 610px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.v4-about-image:hover img {
    transform: scale(1.04);
}

.v4-about-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 220px;

    padding: 26px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #243c7d,
            #172755
        );

    border-radius: 26px;

    box-shadow:
        0 28px 70px rgba(36, 60, 125, 0.32);
}

.v4-about-experience strong {
    display: block;

    margin-bottom: 7px;

    color: #15bcbc;

    font-size: 50px;
    font-weight: 900;
    line-height: 1;
}

.v4-about-experience span {
    color: rgba(255, 255, 255, 0.83);

    font-size: 14px;
    line-height: 1.55;
}

.v4-about-quality {
    position: absolute;

    left: -25px;
    bottom: 42px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 17px 20px;

    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(15, 23, 42, 0.14);
}

.v4-about-quality > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;
    background: #f47421;

    border-radius: 14px;
}

.v4-about-quality strong,
.v4-about-quality span {
    display: block;
}

.v4-about-quality strong {
    color: #06101f;

    font-size: 14px;
}

.v4-about-quality span {
    color: #64748b;

    font-size: 12px;
}


/* ABOUT TEXT */

.v4-about-content {
    position: relative;
    z-index: 2;
}

.v4-about-content h2 {
    margin-bottom: 23px;

    color: #06101f;

    font-size: clamp(2.3rem, 4.5vw, 3.7rem);
    font-weight: 900;
    line-height: 1.08;

    letter-spacing: -1.5px;
}

.v4-about-description {
    margin-bottom: 25px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.85;
}

.v4-about-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px 20px;

    margin-bottom: 28px;
}

.v4-about-points > div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #243c7d;

    font-size: 14px;
    font-weight: 800;
}

.v4-about-points i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color: #ffffff;
    background: #15bcbc;

    border-radius: 50%;

    font-size: 11px;
}


/* STATISTICS */

.v4-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 34px;
}

.v4-stat-card {
    position: relative;

    min-width: 0;

    padding: 22px;

    overflow: hidden;

    background: #f8fafc;

    border: 1px solid #e5eaf2;
    border-radius: 20px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.v4-stat-card:hover {
    background: #ffffff;

    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10);
}

.v4-stat-card > i {
    margin-bottom: 10px;

    color: #15bcbc;

    font-size: 23px;
}

.v4-stat-card strong {
    display: block;

    margin-bottom: 4px;

    color: #243c7d;

    font-size: 32px;
    font-weight: 900;
}

.v4-stat-card span {
    color: #64748b;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .v4-hero {
        min-height: auto;
    }

    .v4-hero-layout {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 90px 0 85px;
    }

    .v4-hero-panel {
        max-width: 620px;
    }

    .v4-scroll-down {
        display: none;
    }

    .v4-about {
        padding: 90px 0;
    }

    .v4-about-visual {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .v4-hero-layout {
        padding: 68px 0 65px;
    }

    .v4-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.6rem);
        line-height: 1.02;

        letter-spacing: -1.5px;
    }

    .v4-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .v4-hero-actions {
        flex-direction: column;
    }

    .v4-btn-primary,
    .v4-btn-outline {
        width: 100%;

        text-align: center;
    }

    .v4-hero-trust {
        flex-direction: column;

        gap: 10px;
    }

    .v4-hero-panel {
        padding: 18px;

        border-radius: 22px;
    }

    .v4-panel-grid a {
        padding: 18px;
    }

    .v4-about {
        padding: 75px 0;
    }

    .v4-about-visual {
        padding: 0 0 80px;
    }

    .v4-about-image {
        border-radius: 24px;
    }

    .v4-about-image img {
        height: 380px;
    }

    .v4-about-experience {
        right: 10px;
        bottom: 0;

        width: 190px;

        padding: 22px;
    }

    .v4-about-experience strong {
        font-size: 42px;
    }

    .v4-about-quality {
        left: 10px;
        bottom: 38px;

        padding: 14px;
    }

    .v4-about-content h2 {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
    }

    .v4-about-points {
        grid-template-columns: 1fr;
    }

    .v4-stat-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .v4-panel-grid {
        grid-template-columns: 1fr;
    }

    .v4-about-image img {
        height: 310px;
    }

    .v4-about-visual {
        padding-bottom: 95px;
    }

    .v4-about-experience {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 15px;
    }

    .v4-about-quality {
        display: none;
    }

}



/* =========================================================
   HOMEPAGE V4 — MODULE 2
   SERVICES AND WHY CHOOSE US
   ========================================================= */


/* =========================================================
   SHARED SECTION HEADING
   ========================================================= */

.v4-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.65fr);

    align-items: end;

    gap: 60px;

    margin-bottom: 60px;
}

.v4-section-heading h2 {
    max-width: 760px;

    margin-bottom: 0;

    color: #06101f;

    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.06;

    letter-spacing: -1.5px;
}

.v4-section-heading p {
    margin-bottom: 18px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.8;
}

.v4-section-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #f47421;

    font-size: 14px;
    font-weight: 900;
}

.v4-section-link:hover {
    gap: 12px;

    color: #243c7d;
}


/* =========================================================
   SERVICES
   ========================================================= */

.v4-services {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f1f5f9 100%
        );
}

.v4-services::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -180px;

    width: 430px;
    height: 430px;

    background: rgba(21, 188, 188, 0.08);

    border-radius: 50%;
}

.v4-services .container {
    position: relative;
    z-index: 2;
}


/* SERVICES GRID */

.v4-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* SERVICE CARD */

.v4-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 390px;

    padding: 34px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(36, 60, 125, 0.08);
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.v4-service-card::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 220px;
    height: 220px;

    background:
        linear-gradient(
            135deg,
            rgba(21, 188, 188, 0.16),
            rgba(36, 60, 125, 0.03)
        );

    border-radius: 50%;

    transition:
        width 0.5s ease,
        height 0.5s ease;
}

.v4-service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            #243c7d,
            #15bcbc,
            #f47421
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease;
}

.v4-service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(21, 188, 188, 0.30);

    box-shadow:
        0 34px 85px rgba(15, 23, 42, 0.14);
}

.v4-service-card:hover::before {
    width: 300px;
    height: 300px;
}

.v4-service-card:hover::after {
    transform: scaleX(1);
}

.v4-service-card > * {
    position: relative;
    z-index: 2;
}


/* SERVICE NUMBER */

.v4-service-number {
    position: absolute;

    top: 25px;
    right: 27px;

    color: rgba(36, 60, 125, 0.10);

    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}


/* SERVICE ICON */

.v4-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    margin-bottom: 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    border-radius: 23px;

    font-size: 29px;

    box-shadow:
        0 17px 40px rgba(36, 60, 125, 0.24);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.v4-service-card:hover
.v4-service-icon {
    transform:
        translateY(-4px)
        rotate(-3deg);

    box-shadow:
        0 22px 48px rgba(21, 188, 188, 0.30);
}


/* SERVICE TEXT */

.v4-service-card h3 {
    margin-bottom: 14px;

    color: #06101f;

    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
}

.v4-service-card p {
    flex-grow: 1;

    margin-bottom: 24px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}

.v4-service-link {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 8px;

    color: #f47421;

    font-size: 14px;
    font-weight: 900;
}

.v4-service-link:hover {
    gap: 12px;

    color: #243c7d;
}


/* EMPTY STATE */

.v4-empty-state {
    padding: 60px 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.07);
}

.v4-empty-state i {
    margin-bottom: 18px;

    color: #15bcbc;

    font-size: 48px;
}

.v4-empty-state h3 {
    color: #06101f;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.v4-why-choose {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background: #ffffff;
}

.v4-why-choose::before {
    content: "";

    position: absolute;

    left: -170px;
    bottom: -170px;

    width: 420px;
    height: 420px;

    background: rgba(36, 60, 125, 0.05);

    border-radius: 50%;
}

.v4-why-choose .container {
    position: relative;
    z-index: 2;
}


/* WHY CONTENT */

.v4-why-content h2 {
    margin-bottom: 22px;

    color: #06101f;

    font-size: clamp(2.3rem, 4.3vw, 3.55rem);
    font-weight: 900;
    line-height: 1.08;

    letter-spacing: -1.4px;
}

.v4-why-content > p {
    margin-bottom: 28px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.85;
}


/* WHY HIGHLIGHT */

.v4-why-highlight {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    margin-bottom: 30px;
    padding: 21px;

    background: #f8fafc;

    border: 1px solid #e5eaf2;
    border-radius: 20px;
}

.v4-why-highlight-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    color: #ffffff;
    background: #f47421;

    border-radius: 17px;

    font-size: 21px;
}

.v4-why-highlight strong,
.v4-why-highlight span {
    display: block;
}

.v4-why-highlight strong {
    margin-bottom: 5px;

    color: #243c7d;

    font-size: 15px;
}

.v4-why-highlight span {
    color: #64748b;

    font-size: 13px;
    line-height: 1.65;
}


/* WHY GRID */

.v4-why-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.v4-why-card {
    position: relative;

    min-width: 0;
    min-height: 280px;

    padding: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc
        );

    border: 1px solid rgba(36, 60, 125, 0.09);
    border-radius: 25px;

    box-shadow:
        0 17px 45px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.v4-why-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 170px;
    height: 170px;

    background: rgba(21, 188, 188, 0.10);

    border-radius: 50%;
}

.v4-why-card:hover {
    transform: translateY(-8px);

    border-color: rgba(21, 188, 188, 0.30);

    box-shadow:
        0 30px 72px rgba(15, 23, 42, 0.12);
}

.v4-why-card > * {
    position: relative;
    z-index: 2;
}

.v4-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-bottom: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    border-radius: 20px;

    font-size: 25px;
}

.v4-why-card h3 {
    margin-bottom: 12px;

    color: #06101f;

    font-size: 20px;
    font-weight: 900;
}

.v4-why-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}


/* WHY CTA */

.v4-why-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 50px;
    padding: 32px 36px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #06101f,
            #243c7d
        );

    border-radius: 28px;

    box-shadow:
        0 27px 70px rgba(15, 23, 42, 0.20);
}

.v4-why-cta span,
.v4-why-cta strong {
    display: block;
}

.v4-why-cta span {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}

.v4-why-cta strong {
    color: #ffffff;

    font-size: 21px;
    font-weight: 900;
}

.v4-why-cta .v4-btn-primary {
    flex: 0 0 auto;

    white-space: nowrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .v4-services,
    .v4-why-choose {
        padding: 90px 0;
    }

    .v4-section-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 48px;
    }

    .v4-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .v4-why-content {
        margin-bottom: 20px;
    }

    .v4-why-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .v4-services,
    .v4-why-choose {
        padding: 75px 0;
    }

    .v4-section-heading h2 {
        font-size: clamp(2.1rem, 9vw, 2.9rem);
    }

    .v4-services-grid {
        grid-template-columns: 1fr;
    }

    .v4-service-card {
        min-height: auto;

        padding: 28px;

        border-radius: 23px;
    }

    .v4-service-number {
        font-size: 43px;
    }

    .v4-service-icon {
        width: 68px;
        height: 68px;

        font-size: 25px;
    }

    .v4-why-content h2 {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
    }

    .v4-why-grid {
        grid-template-columns: 1fr;
    }

    .v4-why-card {
        min-height: auto;

        padding: 26px;
    }

    .v4-why-cta {
        padding: 25px;

        border-radius: 22px;
    }

    .v4-why-cta strong {
        font-size: 18px;
    }

    .v4-why-cta .v4-btn-primary {
        width: 100%;
    }

}

/* =========================================================
   CORPORATE VIDEO — FINAL CLEAN VERSION
   ========================================================= */

.v4-video {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* =========================================================
   VIDEO CARD
   ========================================================= */

.v4-video-card {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #06101f;
    border-radius: 32px;
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.20);
}


/* =========================================================
   ACTUAL VIDEO
   ========================================================= */

.v4-video-card video,
.v4-video-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* =========================================================
   DARK OVERLAY
   ========================================================= */

.v4-video-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 27, 0.92) 0%,
            rgba(4, 13, 27, 0.78) 38%,
            rgba(4, 13, 27, 0.38) 68%,
            rgba(4, 13, 27, 0.20) 100%
        );

    pointer-events: none;
}


/* =========================================================
   VIDEO CONTENT
   ========================================================= */

.v4-video-content {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    width: 100%;
    max-width: 720px;

    min-height: 620px;

    padding: 60px;
}


/* =========================================================
   LABEL
   ========================================================= */

.v4-video-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #f47421;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   HEADING
   ========================================================= */

.v4-video-content h2 {
    max-width: 650px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(
        2.5rem,
        4.5vw,
        4.6rem
    );

    font-weight: 900;
    line-height: 1.03;

    letter-spacing: -2px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.v4-video-content p {
    max-width: 610px;

    margin: 0 0 32px;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   VIDEO SOUND / PLAY BUTTON
   ========================================================= */

.v4-video-play {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    flex-shrink: 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f47421,
            #ff9638
        );

    border: 0;
    border-radius: 50%;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 14px 35px
        rgba(
            244,
            116,
            33,
            0.35
        );

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.v4-video-play::before,
.v4-video-play::after {
    content: "";

    position: absolute;

    inset: -10px;

    border:
        1px solid
        rgba(
            244,
            116,
            33,
            0.40
        );

    border-radius: 50%;

    pointer-events: none;

    animation:
        v4VideoPulse
        2s
        ease-out
        infinite;
}


.v4-video-play::after {
    animation-delay: 1s;
}


.v4-video-play:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    transform: scale(1.05);
}


/* =========================================================
   PULSE ANIMATION
   ========================================================= */

@keyframes v4VideoPulse {

    0% {
        opacity: 0.8;

        transform:
            scale(0.82);
    }

    100% {
        opacity: 0;

        transform:
            scale(1.35);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (
    max-width: 991.98px
) {

    .v4-video {
        padding:
            70px
            0;
    }

    .v4-video-card {
        min-height:
            580px;

        border-radius:
            28px;
    }

    .v4-video-content {
        min-height:
            580px;

        max-width:
            680px;

        padding:
            50px;
    }

    .v4-video-content h2 {
        font-size:
            clamp(
                2.5rem,
                7vw,
                4rem
            );
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (
    max-width: 767.98px
) {

    .v4-video {
        padding:
            45px
            0;
    }

    .v4-video .container {
        padding-left:
            16px;

        padding-right:
            16px;
    }

    .v4-video-card {
        min-height:
            620px;

        border-radius:
            24px;
    }

    .v4-video-card video,
    .v4-video-bg {
        object-position:
            center;
    }

    .v4-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(
                    4,
                    13,
                    27,
                    0.38
                )
                0%,

                rgba(
                    4,
                    13,
                    27,
                    0.72
                )
                40%,

                rgba(
                    4,
                    13,
                    27,
                    0.96
                )
                100%
            );
    }

    .v4-video-content {
        justify-content:
            flex-end;

        min-height:
            620px;

        max-width:
            100%;

        padding:
            32px
            26px
            42px;
    }

    .v4-video-label {
        margin-bottom:
            12px;

        font-size:
            10px;

        letter-spacing:
            1.6px;
    }

    .v4-video-content h2 {
        max-width:
            100%;

        margin-bottom:
            16px;

        font-size:
            clamp(
                2.15rem,
                10vw,
                3.2rem
            );

        line-height:
            1.02;

        letter-spacing:
            -1.4px;
    }

    .v4-video-content p {
        margin-bottom:
            26px;

        font-size:
            15px;

        line-height:
            1.65;
    }

    .v4-video-play {
        width:
            56px;

        height:
            56px;

        font-size:
            18px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (
    max-width: 420px
) {

    .v4-video-card {
        min-height:
            580px;

        border-radius:
            22px;
    }

    .v4-video-content {
        min-height:
            580px;

        padding:
            28px
            22px
            36px;
    }

    .v4-video-content h2 {
        font-size:
            2.35rem;
    }

}


/* =========================================================
   FEATURED PROJECTS
   ========================================================= */

.v4-projects {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background: #ffffff;
}

.v4-projects::before {
    content: "";

    position: absolute;

    top: -170px;
    left: -170px;

    width: 410px;
    height: 410px;

    background: rgba(36, 60, 125, 0.05);

    border-radius: 50%;
}

.v4-projects .container {
    position: relative;
    z-index: 2;
}


/* GRID */

.v4-projects-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* CARD */

.v4-project-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 520px;

    overflow: hidden;

    color: #ffffff;
    background: #06101f;

    border-radius: 30px;

    box-shadow:
        0 26px 74px rgba(15, 23, 42, 0.18);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.v4-project-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 42px 105px rgba(15, 23, 42, 0.28);
}

.v4-project-featured {
    grid-row: span 2;

    min-height: 720px;
}


/* IMAGE */

.v4-project-image {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.v4-project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.75s ease;
}

.v4-project-card:hover
.v4-project-image img {
    transform: scale(1.08);
}

.v4-project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6, 16, 31, 0.98) 0%,
            rgba(6, 16, 31, 0.79) 44%,
            rgba(6, 16, 31, 0.12) 100%
        );
}


/* CONTENT */

.v4-project-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    height: 100%;

    margin-top: auto;
    padding: 35px;

    pointer-events: none;
}

.v4-project-content a {
    pointer-events: auto;
}

.v4-project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-top: auto;
    margin-bottom: 15px;
}

.v4-project-category,
.v4-project-year {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.v4-project-category {
    color: #ffffff;
    background: rgba(21, 188, 188, 0.92);
}

.v4-project-year {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.18);

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.v4-project-content h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.16;
}

.v4-project-content p {
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.75;
}

.v4-project-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 20px;

    margin-bottom: 22px;
}

.v4-project-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 13px;
}

.v4-project-meta i {
    color: #15bcbc;
}

.v4-project-link {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 8px;

    color: #f47421;

    font-size: 14px;
    font-weight: 900;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.v4-project-link:hover {
    gap: 12px;

    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .v4-video,
    .v4-projects {
        padding: 90px 0;
    }

    .v4-video-card,
    .v4-video-content {
        min-height: 500px;
    }

    .v4-video-content {
        padding: 48px;
    }

    .v4-projects-grid {
        grid-template-columns: 1fr;
    }

    .v4-project-featured {
        grid-row: auto;

        min-height: 620px;
    }

    .v4-project-card {
        min-height: 520px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .v4-video,
    .v4-projects {
        padding: 75px 0;
    }

    .v4-video-card,
    .v4-video-content {
        min-height: 430px;
    }

    .v4-video-card {
        border-radius: 25px;
    }

    .v4-video-content {
        padding: 28px;
    }

    .v4-video-content h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    .v4-video-content p {
        font-size: 15px;
    }

    .v4-video-play {
        width: 70px;
        height: 70px;

        font-size: 22px;
    }

    .v4-projects-grid {
        gap: 22px;
    }

    .v4-project-card,
    .v4-project-featured {
        min-height: 470px;

        border-radius: 24px;
    }

    .v4-project-content {
        padding: 26px;
    }

    .v4-project-content h3 {
        font-size: 1.8rem;
    }

    .v4-project-content p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .v4-video-card,
    .v4-video-content {
        min-height: 390px;
    }

    .v4-video-content {
        padding: 24px;
    }

    .v4-project-card,
    .v4-project-featured {
        min-height: 430px;
    }

    .v4-project-content {
        padding: 22px;
    }

    .v4-project-top {
        flex-direction: column;
        align-items: flex-start;
    }

}





/* =========================================================
   TESTIMONIALS
   ========================================================= */

.v4-testimonials {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.v4-testimonials::before {
    content: "";

    position: absolute;

    top: -160px;
    left: -160px;

    width: 390px;
    height: 390px;

    background: rgba(21, 188, 188, 0.06);

    border-radius: 50%;
}

.v4-testimonials .container {
    position: relative;
    z-index: 2;
}


/* TESTIMONIAL SLIDER */

.v4-testimonials-slider {
    overflow: visible;
}

.v4-testimonials-slider .swiper-slide {
    height: auto;
}


/* TESTIMONIAL CARD */

.v4-testimonial-card {
    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 390px;

    padding: 34px;

    background: #ffffff;

    border: 1px solid rgba(36, 60, 125, 0.09);
    border-radius: 28px;

    box-shadow:
        0 20px 58px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.v4-testimonial-card:hover {
    transform: translateY(-8px);

    border-color: rgba(21, 188, 188, 0.28);

    box-shadow:
        0 34px 84px rgba(15, 23, 42, 0.14);
}

.v4-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 24px;
}

.v4-testimonial-quote {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    border-radius: 18px;

    font-size: 23px;
}

.v4-testimonial-rating {
    display: flex;

    gap: 4px;

    color: #f59e0b;

    font-size: 13px;
}

.v4-testimonial-message {
    flex-grow: 1;

    margin-bottom: 28px;

    color: #475569;

    font-size: 16px;
    line-height: 1.85;
}

.v4-testimonial-client {
    display: flex;
    align-items: center;

    gap: 14px;

    padding-top: 20px;

    border-top: 1px solid #e5eaf2;
}

.v4-testimonial-client img,
.v4-client-placeholder {
    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    border-radius: 50%;
}

.v4-testimonial-client img {
    object-fit: cover;

    border: 3px solid rgba(21, 188, 188, 0.18);
}

.v4-client-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );
}

.v4-testimonial-client strong,
.v4-testimonial-client span {
    display: block;
}

.v4-testimonial-client strong {
    margin-bottom: 4px;

    color: #06101f;

    font-size: 15px;
    font-weight: 900;
}

.v4-testimonial-client span {
    color: #64748b;

    font-size: 12px;
}


/* CONTROLS */

.v4-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 38px;
}

.v4-testimonial-prev,
.v4-testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    color: #243c7d;
    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.08);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.v4-testimonial-prev:hover,
.v4-testimonial-next:hover {
    color: #ffffff;
    background: #243c7d;

    transform: translateY(-2px);
}

.v4-testimonial-pagination {
    position: static !important;

    width: auto !important;
}

.v4-testimonial-pagination
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    background: #94a3b8;

    opacity: 0.55;
}

.v4-testimonial-pagination
.swiper-pagination-bullet-active {
    width: 25px;

    background: #15bcbc;

    border-radius: 999px;

    opacity: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .v4-operations,
    .v4-testimonials {
        padding: 90px 0;
    }

    .v4-operations-heading {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .v4-operations-map {
        min-height: 620px;
    }

    .v4-africa-map {
        right: 20px;

        width: 70%;
    }

    .v4-map-summary {
        left: 28px;

        width: 300px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .v4-operations,
    .v4-testimonials {
        padding: 75px 0;
    }

    .v4-operations-heading h2 {
        font-size: clamp(2.1rem, 9vw, 2.9rem);
    }

    .v4-operations-map {
        display: flex;
        flex-direction: column;

        min-height: 620px;

        padding: 25px;

        border-radius: 25px;
    }

    .v4-africa-map {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        min-height: 380px;

        opacity: 0.30;
    }

    .v4-map-route {
        display: none;
    }

    .v4-map-pin {
        display: none;
    }

    .v4-map-summary {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;
        max-width: 100%;

        padding: 24px;

        transform: none;
    }

    .v4-testimonial-card {
        min-height: 360px;

        padding: 27px;

        border-radius: 23px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .v4-operations-map {
        min-height: auto;

        padding: 18px;
    }

    .v4-africa-map {
        min-height: 310px;
    }

    .v4-map-summary-grid {
        grid-template-columns: 1fr;
    }

}





/* =========================================================
   HOMEPAGE V4 — MODULE 5
   INSIGHTS, CTA AND PARTNERS
   ========================================================= */


/* =========================================================
   INSIGHTS
   ========================================================= */

.v4-insights {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background: #ffffff;
}

.v4-insights::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -170px;

    width: 410px;
    height: 410px;

    background: rgba(21, 188, 188, 0.06);

    border-radius: 50%;
}

.v4-insights .container {
    position: relative;
    z-index: 2;
}

.v4-insights-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.v4-insight-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(36, 60, 125, 0.09);
    border-radius: 27px;

    box-shadow:
        0 20px 58px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.v4-insight-card:hover {
    transform: translateY(-9px);

    border-color: rgba(21, 188, 188, 0.28);

    box-shadow:
        0 35px 88px rgba(15, 23, 42, 0.15);
}

.v4-insight-image {
    position: relative;

    display: block;

    height: 260px;

    overflow: hidden;

    background: #06101f;
}

.v4-insight-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.v4-insight-card:hover
.v4-insight-image img {
    transform: scale(1.08);
}

.v4-insight-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 12px;

    color: #ffffff;
    background: rgba(21, 188, 188, 0.94);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.v4-insight-content {
    padding: 27px;
}

.v4-insight-date {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;
}

.v4-insight-date i {
    color: #f47421;
}

.v4-insight-content h3 {
    margin-bottom: 13px;

    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
}

.v4-insight-content h3 a {
    color: #06101f;
}

.v4-insight-content h3 a:hover {
    color: #15bcbc;
}

.v4-insight-content p {
    margin-bottom: 20px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}

.v4-insight-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #f47421;

    font-size: 14px;
    font-weight: 900;
}

.v4-insight-link:hover {
    gap: 12px;

    color: #243c7d;
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.v4-cta {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #06101f 0%,
            #243c7d 65%,
            #15bcbc 100%
        );

    background-size: cover;
    background-position: center;

    isolation: isolate;
}

.v4-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            135deg,
            rgba(6, 16, 31, 0.20),
            rgba(36, 60, 125, 0.25)
        );
}

.v4-cta-glow {
    position: absolute;

    top: -160px;
    right: 5%;

    z-index: -1;

    width: 380px;
    height: 380px;

    background: rgba(244, 116, 33, 0.18);

    border-radius: 50%;

    filter: blur(35px);
}

.v4-cta-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, 0.55fr);

    align-items: center;

    gap: 70px;
}

.v4-cta-content > span {
    display: inline-block;

    margin-bottom: 13px;

    color: #f47421;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.v4-cta-content h2 {
    max-width: 800px;

    margin-bottom: 17px;

    color: #ffffff;

    font-size: clamp(2.4rem, 4.6vw, 4rem);
    font-weight: 900;
    line-height: 1.06;

    letter-spacing: -1.5px;
}

.v4-cta-content p {
    max-width: 720px;

    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 17px;
    line-height: 1.8;
}

.v4-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.v4-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 58px;

    padding: 16px 28px;

    color: #243c7d;
    background: #ffffff;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 900;

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.20);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.v4-cta-button:hover {
    color: #ffffff;
    background: #f47421;

    transform: translateY(-4px);
}

.v4-cta-action > span {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
}


/* =========================================================
   PARTNERS
   ========================================================= */

.v4-partners {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.v4-partners-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}

.v4-partners-heading h2 {
    margin-bottom: 15px;

    color: #06101f;

    font-size: clamp(2.2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.1;
}

.v4-partners-heading p {
    margin: 0;

    color: #64748b;

    font-size: 16px;
    line-height: 1.8;
}

.v4-partners-slider {
    overflow: hidden;
}

.v4-partners-slider .swiper-wrapper {
    align-items: stretch;
}

.v4-partners-slider .swiper-slide {
    height: auto;
}

.v4-partner-card {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 130px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 21px;

    box-shadow:
        0 14px 40px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.v4-partner-card:hover {
    transform: translateY(-6px);

    border-color: rgba(21, 188, 188, 0.28);

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.11);
}

.v4-partner-card a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.v4-partner-card img {
    width: auto;
    max-width: 100%;
    max-height: 68px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.72;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.v4-partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.04);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .v4-insights {
        padding: 90px 0;
    }

    .v4-insights-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .v4-cta-layout {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .v4-cta-action {
        max-width: 420px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .v4-insights {
        padding: 75px 0;
    }

    .v4-insights-grid {
        grid-template-columns: 1fr;
    }

    .v4-insight-image {
        height: 230px;
    }

    .v4-cta {
        padding: 75px 0;
    }

    .v4-cta-content h2 {
        font-size: clamp(2.1rem, 9vw, 2.9rem);
    }

    .v4-cta-content p {
        font-size: 15px;
    }

    .v4-cta-action {
        max-width: 100%;
    }

    .v4-partners {
        padding: 75px 0;
    }

}

/* =========================================================
   HOMEPAGE V4 — FINAL CLEAN RESPONSIVE LAYER
   ========================================================= */

.v4-hero-image-panel {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.v4-hero-image-placeholder {
    position: relative;
    width: min(100%, 520px);
    height: clamp(480px, 58vw, 640px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 32px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.v4-hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.v4-hero-image-frame {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,.7);
    text-align: center;
}

.v4-hero-image-frame i {
    font-size: 46px;
}

.v4-operations-map {
    position: relative;
    isolation: isolate;
}

.v4-africa-map {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 58%;
    height: 86%;
    transform: translateY(-50%);
    opacity: .28;
    filter: none;
    pointer-events: none;
    z-index: 1;
    background: none;
}

.v4-africa-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v4-map-route { z-index: 2; }
.v4-map-pin { z-index: 5; }
.v4-map-summary { z-index: 7; }

@media (max-width: 1199.98px) {
    .v4-hero-layout {
        grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr);
        gap: 40px;
    }

    .v4-hero-image-placeholder {
        height: 540px;
    }

    .v4-africa-map {
        right: 1%;
        width: 64%;
    }
}

@media (max-width: 991.98px) {
    .v4-hero-layout {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 80px 0 75px;
    }

    .v4-hero-content {
        max-width: 760px;
    }

    .v4-hero-image-panel {
        justify-content: center;
    }

    .v4-hero-image-placeholder {
        width: min(100%,620px);
        height: 560px;
    }

    .v4-about .row {
        row-gap: 52px;
    }

    .v4-operations-map {
        min-height: 680px;
    }

    .v4-africa-map {
        right: -2%;
        width: 70%;
    }

    .v4-map-summary {
        left: 28px;
        width: 300px;
    }
}

@media (max-width: 767.98px) {
    .v4-hero {
        min-height: auto;
    }

    .v4-hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 58px 0;
    }

    .v4-hero h1 {
        font-size: clamp(2.35rem,11vw,3.2rem);
        line-height: 1.02;
        letter-spacing: -1.4px;
    }

    .v4-hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .v4-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .v4-hero-actions .v4-btn-primary,
    .v4-hero-actions .v4-btn-outline {
        width: 100%;
    }

    .v4-hero-image-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 540px;
        border-radius: 24px;
    }

    .v4-about {
        padding: 76px 0;
    }

    .v4-about-visual {
        max-width: 520px;
        margin: 0 auto;
        padding: 0 0 125px;
    }

    .v4-about-image img {
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .v4-about-experience {
        left: 0;
        right: auto;
        bottom: 12px;
        width: calc(50% - 8px);
        min-height: 110px;
        padding: 17px;
        border-radius: 19px;
    }

    .v4-about-experience strong {
        font-size: 36px;
    }

    .v4-about-experience span {
        font-size: 11px;
    }

    .v4-about-quality {
        left: auto;
        right: 0;
        bottom: 12px;
        width: calc(50% - 8px);
        min-height: 110px;
        padding: 15px;
        border-radius: 19px;
    }

    .v4-about-quality > i {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .v4-about-quality strong {
        font-size: 11px;
    }

    .v4-about-quality span {
        font-size: 9px;
    }

    .v4-section-heading,
    .v4-operations-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v4-operations-map {
        display: block;
        min-height: 0;
        padding: 20px;
        overflow: hidden;
        border-radius: 26px;
    }

    .v4-africa-map {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 390px;
        transform: none;
        margin: 0 auto;
        opacity: .28;
    }

    .v4-map-route {
        display: none;
    }

    .v4-map-pin {
        position: absolute;
        display: flex;
        gap: 5px;
        transform: translate(-50%,-50%) scale(.72);
        transform-origin: center;
    }

    .v4-pin-label {
        padding: 6px 8px;
        border-radius: 9px;
    }

    .v4-pin-label strong {
        font-size: 10px;
    }

    .v4-pin-label small {
        display: none;
    }

    .v4-pin-pulse {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .v4-pin-tanzania { top: 215px; left: 57%; }
    .v4-pin-kenya { top: 160px; left: 60%; }
    .v4-pin-uganda { top: 158px; left: 50%; }
    .v4-pin-rwanda { top: 190px; left: 46%; }
    .v4-pin-zambia { top: 250px; left: 48%; }
    .v4-pin-southafrica { top: 330px; left: 48%; }

    .v4-map-summary {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-top: 12px;
        padding: 24px;
        transform: none;
    }

    .v4-map-summary-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 480px) {
    .v4-hero-layout {
        padding: 48px 0 50px;
    }

    .v4-hero-image-placeholder {
        max-height: 470px;
    }

    .v4-about-visual {
        padding-bottom: 118px;
    }

    .v4-about-experience,
    .v4-about-quality {
        min-height: 102px;
        padding: 13px;
    }

    .v4-africa-map {
        height: 330px;
    }

    .v4-pin-tanzania { top: 183px; left: 57%; }
    .v4-pin-kenya { top: 136px; left: 60%; }
    .v4-pin-uganda { top: 134px; left: 50%; }
    .v4-pin-rwanda { top: 161px; left: 45%; }
    .v4-pin-zambia { top: 211px; left: 47%; }
    .v4-pin-southafrica { top: 278px; left: 47%; }

    .v4-map-pin {
        transform: translate(-50%,-50%) scale(.66);
    }

    .v4-map-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .v4-about-experience,
    .v4-about-quality {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        margin-top: 12px;
    }

    .v4-about-visual {
        padding-bottom: 0;
    }

    .v4-africa-map {
        height: 300px;
    }

    .v4-pin-tanzania { top: 166px; }
    .v4-pin-kenya { top: 124px; }
    .v4-pin-uganda { top: 122px; }
    .v4-pin-rwanda { top: 147px; }
    .v4-pin-zambia { top: 192px; }
    .v4-pin-southafrica { top: 254px; }
}

/* =========================================================
   CORPORATE VIDEO POPUP
========================================================= */

.v4-video-play {
    border: 0;
    cursor: pointer;
}

.v4-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.v4-video-modal.is-active {
    visibility: visible;
    opacity: 1;
}

.v4-video-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(3, 10, 22, 0.92);

    backdrop-filter: blur(8px);
}

.v4-video-modal-dialog {
    position: relative;
    z-index: 2;

    width: min(1100px, 100%);

    transform:
        translateY(25px)
        scale(0.97);

    transition:
        transform 0.3s ease;
}

.v4-video-modal.is-active
.v4-video-modal-dialog {
    transform:
        translateY(0)
        scale(1);
}

.v4-video-modal-player {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 24px;

    background: #000;

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.55);
}

.v4-video-modal-player iframe,
.v4-video-modal-player video {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    object-fit: contain;
}

.v4-video-modal-close {
    position: absolute;

    top: -52px;
    right: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.10);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.v4-video-modal-close:hover {
    background: #15bcbc;

    transform: rotate(90deg);
}

body.v4-video-modal-open {
    overflow: hidden;
}


@media (max-width: 767.98px) {

    .v4-video-modal {
        padding: 18px;
    }

    .v4-video-modal-player {
        border-radius: 16px;
    }

    .v4-video-modal-close {
        top: -50px;
        right: 0;
    }
}



/* =========================================================
   PREMIUM HERO ANIMATIONS
========================================================= */

/* Hero text entrance */
.v4-hero-content {
    animation: v4HeroContentIn 1s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes v4HeroContentIn {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Right hero area entrance */
.v4-hero-image-placeholder,
.v4-hero-portrait,
.v4-hero-image-frame {
    animation:
        v4HeroImageIn 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes v4HeroImageIn {
    from {
        opacity: 0;
        transform: translateX(70px) scale(.94);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* Actual hero image - premium floating movement */
.v4-hero-image-placeholder img,
.v4-hero-portrait img,
.v4-hero-image-frame img {
    animation:
        v4HeroImageFloat 6s ease-in-out infinite;

    transform-origin: center;
    will-change: transform;
}

@keyframes v4HeroImageFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.015);
    }
}


/* Decorative glow behind hero image */
.v4-hero-image-placeholder::before,
.v4-hero-portrait::before,
.v4-hero-image-frame::before {
    content: "";
    position: absolute;

    width: 65%;
    height: 65%;

    top: 20%;
    left: 20%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21, 188, 188, 0.22) 0%,
            rgba(36, 60, 125, 0.12) 45%,
            transparent 72%
        );

    filter: blur(35px);

    z-index: -1;

    animation:
        v4HeroGlow 5s ease-in-out infinite;
}

@keyframes v4HeroGlow {
    0%,
    100% {
        transform: scale(.9);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


/* Hero badge/card animation */
.v4-hero-badge,
.v4-hero-stat,
.v4-hero-quality {
    animation:
        v4HeroBadgeFloat 4.5s ease-in-out infinite;
}

@keyframes v4HeroBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* Hero buttons */
.v4-hero-actions {
    animation:
        v4HeroButtonsIn 1s .45s
        cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes v4HeroButtonsIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MOBILE ANIMATION OPTIMIZATION
========================================================= */

@media (max-width: 767.98px) {

    .v4-hero-image-placeholder img,
    .v4-hero-portrait img,
    .v4-hero-image-frame img {
        animation-duration: 7s;
    }

    @keyframes v4HeroImageFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-7px);
        }
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .v4-hero-content,
    .v4-hero-image-placeholder,
    .v4-hero-portrait,
    .v4-hero-image-frame,
    .v4-hero-image-placeholder img,
    .v4-hero-portrait img,
    .v4-hero-image-frame img,
    .v4-hero-badge,
    .v4-hero-stat,
    .v4-hero-quality,
    .v4-hero-actions {
        animation: none !important;
    }
}



/* =========================================================
   ANIMATED HERO BACKGROUND
========================================================= */

.v4-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #06101f;
}

/* Moving background image */
.v4-hero::before {
    content: "";

    position: absolute;
    inset: -6%;

    z-index: -3;

    background-image:
        var(--v4-hero-bg);

    background-size: cover;
    background-position: center;

    transform:
        scale(1.05);

    animation:
        v4HeroBackgroundMove
        16s ease-in-out
        infinite alternate;

    will-change:
        transform,
        background-position;
}


/* Premium gradient overlay */
.v4-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 31, 0.97) 0%,
            rgba(15, 31, 58, 0.90) 48%,
            rgba(36, 60, 125, 0.60) 100%
        );

    pointer-events: none;
}


/* Slow cinematic movement */
@keyframes v4HeroBackgroundMove {

    0% {
        transform:
            scale(1.05)
            translate3d(
                0,
                0,
                0
            );

        background-position:
            50% 50%;
    }

    50% {
        transform:
            scale(1.10)
            translate3d(
                -1%,
                -1%,
                0
            );

        background-position:
            54% 48%;
    }

    100% {
        transform:
            scale(1.14)
            translate3d(
                1%,
                -2%,
                0
            );

        background-position:
            48% 52%;
    }
}


/* Subtle moving light over hero */
.v4-hero-overlay {
    animation:
        v4HeroOverlayGlow
        8s ease-in-out
        infinite alternate;
}

@keyframes v4HeroOverlayGlow {

    0% {
        opacity: 0.72;
    }

    100% {
        opacity: 1;
    }
}


/* Mobile - reduce movement */
@media (max-width: 767.98px) {

    .v4-hero::before {
        inset: -3%;

        animation-duration:
            20s;
    }

}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .v4-hero::before,
    .v4-hero-overlay {
        animation:
            none !important;
    }

}/* =========================================================
   CORPORATE VIDEO — CINEMATIC CENTERED VERSION
========================================================= */

.v4-video {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #eef2f6 0%,
            #f7f9fb 100%
        );
}


.v4-video-card {
    position: relative;

    width: 100%;
    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 0;

    background: #06101f;

    isolation: isolate;
}


/* VIDEO */

.v4-video-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;
}


/* FALLBACK */

.v4-video-fallback {
    position: absolute;
    inset: 0;

    z-index: -3;

    background:
        linear-gradient(
            135deg,
            #06101f,
            #243c7d
        );
}


/* CINEMATIC OVERLAY */

.v4-video-shade {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(6, 16, 31, 0.58) 0%,
            rgba(6, 16, 31, 0.72) 48%,
            rgba(6, 16, 31, 0.82) 100%
        );

    pointer-events: none;
}


/* CONTENT */

.v4-video-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 900px;

    padding:
        80px
        30px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* LABEL */

.v4-video-label {
    display: inline-block;

    margin-bottom: 18px;

    padding:
        8px
        14px;

    color: #f47421;

    background: #ffffff;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* TITLE */

.v4-video-title {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            5.4rem
        );

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -3px;

    text-transform: uppercase;
}


.v4-video-title span {
    display: block;

    margin-top: 8px;

    color: #f47421;
}


/* DESCRIPTION */

.v4-video-description {
    width: 100%;
    max-width: 720px;

    margin:
        26px
        auto
        34px;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 16px;

    line-height: 1.7;
}


/* BUTTON */

.v4-video-play {
    position: relative;

    width: 70px;
    height: 70px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        2px solid
        rgba(
            255,
            255,
            255,
            0.85
        );

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(
            6,
            16,
            31,
            0.18
        );

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.v4-video-play:hover {
    transform: scale(1.08);

    background: #f47421;

    border-color: #f47421;
}


/* ICON */

.v4-video-play-icon {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: transparent;

    box-shadow: none;

    font-size: 22px;
}


/* REMOVE OLD PULSE */

.v4-video-play-icon::before,
.v4-video-play-icon::after {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .v4-video-card {
        min-height: 520px;
    }

    .v4-video-content {
        padding:
            70px
            28px;
    }

    .v4-video-title {
        font-size:
            clamp(
                2.8rem,
                8vw,
                4.5rem
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .v4-video {
        padding:
            50px
            0
            70px;
    }

    .v4-video .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .v4-video-card {
        min-height: 560px;

        border-radius: 0;
    }

    .v4-video-background {
        object-position: center;
    }

    .v4-video-content {
        padding:
            70px
            24px;
    }

    .v4-video-label {
        margin-bottom: 16px;

        font-size: 10px;
    }

    .v4-video-title {
        font-size:
            clamp(
                2.6rem,
                12vw,
                3.8rem
            );

        line-height: 0.95;

        letter-spacing: -2px;
    }

    .v4-video-description {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.65;
    }

    .v4-video-play {
        width: 62px;
        height: 62px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .v4-video-card {
        min-height: 520px;
    }

    .v4-video-content {
        padding:
            60px
            20px;
    }

    .v4-video-title {
        font-size:
            2.65rem;
    }

}


/* =========================================================
   FINAL CORPORATE VIDEO MEDIA FIX
   ========================================================= */

.v4-video-background,
.v4-video-fallback {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.v4-video-background {
    z-index: 0;

    display: block;

    object-fit: cover;
    object-position: center;
}

.v4-video-fallback {
    z-index: 0;

    background:
        url("../images/backgrounds/video-cover.jpg")
        center / cover
        no-repeat;
}

.v4-video-shade {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 31, 0.94) 0%,
            rgba(6, 16, 31, 0.76) 48%,
            rgba(6, 16, 31, 0.25) 100%
        );

    pointer-events: none;
}

.v4-video-content {
    position: relative;
    z-index: 2;
}

.v4-video-play {
    width: auto;
    min-width: 88px;
    min-height: 88px;

    padding: 18px 24px;

    gap: 12px;

    border: 0;

    cursor: pointer;
}

.v4-video-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* =========================================
   NAVBAR BRAND - LOGO + COMPANY NAME
========================================= */

.v3-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.v3-brand-logo {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

.v3-brand-text {
    color: #243c7d;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

@media (max-width: 767.98px) {

    .v3-brand-logo {
        height: 40px;
    }

    .v3-brand-text {
        font-size: 18px;
    }
}


/* =========================================================
   BASA AFRICA NAVBAR BRAND
========================================================= */

.v3-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    text-decoration: none !important;
}

.v3-brand-logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 65px;
    flex-shrink: 0;
    object-fit: contain;
}

.v3-brand-text {
    display: block;
    color: #243c7d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.3px;
    white-space: nowrap;
}


/* TABLET */

@media (max-width: 1199.98px) {

    .v3-brand {
        gap: 9px;
        max-width: 280px;
    }

    .v3-brand-logo {
        height: 44px;
    }

    .v3-brand-text {
        font-size: 15px;
    }

}


/* MOBILE */

@media (max-width: 767.98px) {

    .v3-brand {
        gap: 8px;
        max-width: calc(100% - 70px);
    }

    .v3-brand-logo {
        height: 40px;
        max-width: 52px;
    }

    .v3-brand-text {
        font-size: 14px;
        white-space: normal;
        line-height: 1.1;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 420px) {

    .v3-brand-logo {
        height: 36px;
    }

    .v3-brand-text {
        font-size: 12px;
        max-width: 190px;
    }

}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .v4-operations-map {
        display: block !important;

        min-height: auto !important;
    }

    .v4-map-summary {
        width: 100% !important;

        margin-bottom: 40px !important;
    }

    .v4-africa-map {
        min-height: 520px !important;
    }

    .v4-africa-map-img {
        width: 480px !important;

        max-width: 90% !important;
    }

}

/* =========================================================
   REGIONAL OPERATIONS — FINAL CLEAN VERSION
   ========================================================= */

.v4-operations {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #f8fafc;
}

.v4-operations .container {
    position: relative;
    z-index: 2;
}

.v4-operations-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 42px;
}

.v4-operations-heading h2 {
    margin: 0;
    color: #06101f;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.v4-operations-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.v4-operations-map {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 320px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 64px !important;
    width: 100% !important;
    min-height: 470px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.v4-map-summary {
    position: relative !important;
    top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
    z-index: 30 !important;
    width: 320px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 36px !important;
    color: #ffffff;
    background: #0b1729;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 28px 70px rgba(15,23,42,.22);
}

.v4-map-summary, .v4-map-summary * { opacity: 1 !important; }
.v4-map-summary-label { display:block; margin-bottom:14px; color:#15bcbc !important; font-size:13px; font-weight:900; }
.v4-map-summary h3 { margin:0 0 18px; color:#fff !important; font-size:32px; font-weight:900; line-height:1.12; letter-spacing:-.8px; }
.v4-map-summary p { margin:0 0 24px; color:rgba(255,255,255,.76) !important; font-size:15px; line-height:1.72; }
.v4-map-summary-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.v4-map-summary-grid strong, .v4-map-summary-grid span { display:block; }
.v4-map-summary-grid strong { margin-bottom:5px; color:#15bcbc !important; font-size:24px; font-weight:900; }
.v4-map-summary-grid span { color:rgba(255,255,255,.68) !important; font-size:12px; line-height:1.4; }

.v4-africa-map {
    position: relative !important;
    top:auto !important; right:auto !important; bottom:auto !important; left:auto !important;
    width:100% !important; max-width:none !important;
    min-height:430px !important; height:auto !important;
    margin:0 !important; aspect-ratio:auto !important;
    transform:none !important; opacity:1 !important; overflow:visible !important;
    pointer-events:none;
}

.v4-africa-map-img {
    position:absolute !important; top:50% !important; left:50% !important;
    display:block; width:470px !important; max-width:82% !important;
    height:auto !important; max-height:420px !important; object-fit:contain !important;
    transform:translate(-50%,-50%) !important; opacity:.42 !important; pointer-events:none;
}

.v4-dynamic-map-pin, .v4-africa-map .v4-map-pin {
    position:absolute !important; z-index:20 !important; display:flex !important; align-items:center;
    opacity:1 !important; transform:translate(-50%,-50%) !important; pointer-events:none;
}

.v4-map-dot { display:block; flex:0 0 auto; width:15px; height:15px; background:#f47421; border:4px solid #fff; border-radius:50%; box-shadow:0 0 0 7px rgba(244,116,33,.20); }
.v4-pin-label { position:absolute !important; top:50% !important; left:28px !important; width:max-content; min-width:105px; white-space:nowrap; opacity:1 !important; transform:translateY(-50%) !important; }
.v4-pin-label strong { display:block; color:#06101f !important; font-size:14px; font-weight:900; line-height:1.2; }
.v4-pin-label small { display:block; margin-top:3px; color:#64748b !important; font-size:11px; line-height:1.2; }

.v4-pin-kampala .v4-pin-label { top:-18px !important; left:26px !important; transform:none !important; }
.v4-pin-kigali .v4-pin-label { top:20px !important; left:22px !important; transform:none !important; }
.v4-pin-nairobi .v4-pin-label { top:-6px !important; left:30px !important; transform:none !important; }
.v4-pin-dar-es-salaam .v4-pin-label { top:24px !important; left:24px !important; transform:none !important; }

@media (max-width: 991.98px) {
    .v4-operations { padding:65px 0; }
    .v4-operations-heading { grid-template-columns:1fr; gap:20px; margin-bottom:34px; }
    .v4-operations-map { display:flex !important; flex-direction:column !important; gap:28px !important; min-height:0 !important; }
    .v4-map-summary { order:1; width:100% !important; margin:0 !important; }
    .v4-africa-map { order:2; width:100% !important; min-height:460px !important; }
    .v4-africa-map-img { width:500px !important; max-width:88% !important; max-height:430px !important; }
}

@media (max-width: 767.98px) {
    .v4-operations { padding:55px 0; }
    .v4-operations .container { padding-left:16px; padding-right:16px; }
    .v4-operations-heading { margin-bottom:28px; }
    .v4-operations-heading h2 { font-size:clamp(2rem,9vw,2.75rem); line-height:1.08; }
    .v4-operations-heading p { font-size:15px; line-height:1.7; }
    .v4-operations-map { gap:20px !important; }
    .v4-map-summary { padding:26px !important; border-radius:22px; }
    .v4-map-summary h3 { font-size:27px; }
    .v4-africa-map { min-height:380px !important; }
    .v4-africa-map-img { width:430px !important; max-width:94% !important; max-height:360px !important; }
    .v4-africa-map .v4-map-pin { transform:translate(-50%,-50%) scale(.78) !important; }
    .v4-pin-label small { display:none; }
}

@media (max-width: 480px) {
    .v4-operations { padding:48px 0; }
    .v4-map-summary { padding:23px !important; }
    .v4-map-summary h3 { font-size:24px; }
    .v4-map-summary-grid { grid-template-columns:1fr 1fr; }
    .v4-africa-map { min-height:330px !important; }
    .v4-africa-map-img { width:380px !important; max-height:315px !important; }
    .v4-africa-map .v4-map-pin { transform:translate(-50%,-50%) scale(.68) !important; }
}

/* =========================================================
   REGIONAL OPERATIONS — FINAL HEIGHT FIX
   ========================================================= */

.v4-operations {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.v4-operations-heading {
    margin-bottom: 30px !important;
}

.v4-operations-map {
    min-height: 420px !important;
}

.v4-africa-map {
    min-height: 400px !important;
}

/* Regional Operations top spacing fix */
.v4-operations {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
}

.v4-operations-heading {
    margin-bottom: 25px !important;
}
