:root {
    --green: #0b6b3a;
    --green-dark: #07522d;
    --green-light: #eaf6ef;

    --navy: #06283f;
    --navy-dark: #031b2c;

    --white: #ffffff;
    --soft-bg: #f6f8fa;

    --text: #17202b;
    --muted: #667085;

    --border: #e4e7ec;

    --shadow:
        0 18px 45px rgba(15, 23, 42, 0.10);

    --radius: 16px;
}

/* =========================================
   GENERAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;
}

a {
    color: inherit;

    text-decoration: none;
}

img {
    display: block;

    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, 92%);

    margin: 0 auto;
}

.section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.section-label.light {
    color: #8de5b1;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar {
    background: var(--green-dark);

    color: var(--white);
}

.top-bar-inner {
    min-height: 36px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}

.top-bar-left,
.top-bar-right {
    display: flex;

    align-items: center;

    gap: 26px;
}

.top-bar a,
.top-bar span {
    color: #ffffff;
}

.top-bar i {
    margin-right: 6px;
}

.language {
    display: flex;

    align-items: center;

    gap: 5px;

    cursor: pointer;
}

.language i {
    margin: 0;

    font-size: 9px;
}

/* =========================================
   MAIN HEADER
========================================= */

.main-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: var(--white);

    border-bottom: 1px solid #eef0f3;
}

.navbar {
    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 28px;
}

/* =========================================
   LOGO
========================================= */

.logo {
    margin-right: auto;

    display: flex;

    align-items: center;

    gap: 11px;
}

.logo-icon {
    width: 47px;

    height: 47px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background: var(--green-light);

    font-size: 27px;
}

.logo-name {
    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--navy);

    font-size: 21px;

    letter-spacing: 0.02em;
}

.logo-name strong {
    color: var(--green);
}

.logo-text small {
    display: block;

    margin-top: -2px;

    color: #7a8793;

    font-size: 9px;

    letter-spacing: 0.03em;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 27px;
}

.nav-links > a,
.nav-dropdown > a {
    position: relative;

    padding: 27px 0;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #344054;

    font-size: 13px;

    font-weight: 600;

    transition: 0.2s ease;
}

.nav-links > a:hover,
.nav-dropdown > a:hover,
.nav-links > a.active,
.nav-dropdown > a.active {
    color: var(--green);
}

.nav-links > a.active::after,
.nav-dropdown > a.active::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 18px;

    height: 2px;

    border-radius: 2px;

    background: var(--green);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a i {
    font-size: 9px;
}

/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% - 8px);

    left: -20px;

    width: 245px;

    padding: 10px 0;

    visibility: hidden;

    opacity: 0;

    transform: translateY(8px);

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    box-shadow: var(--shadow);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

    z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 11px 17px;

    color: #435160;

    font-size: 12px;

    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--green);

    background: var(--green-light);
}

/* =========================================
   GET STARTED BUTTON
========================================= */

.nav-get-started {
    flex: none;

    padding: 12px 21px;

    border-radius: 6px;

    color: var(--white);

    background: var(--green);

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.nav-get-started:hover {
    background: var(--green-dark);

    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 23px;

    cursor: pointer;
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 500px;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(3, 27, 44, 0.98) 0%,
            rgba(6, 40, 63, 0.94) 48%,
            rgba(6, 40, 63, 0.68) 100%
        ),
        url("../images/hero.jpg")
        center / cover no-repeat;
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -150px;

    top: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(24, 180, 91, 0.25),
            transparent 65%
        );
}

.hero-inner {
    position: relative;

    z-index: 2;

    min-height: 500px;

    display: flex;

    align-items: center;
}

.hero-content {
    max-width: 700px;

    padding: 70px 0 100px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #88dba9;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.hero h1 {
    margin: 0;

    font-size: 60px;

    line-height: 1.03;

    letter-spacing: -0.04em;
}

.hero h1 span {
    color: #28a85e;
}

.hero h2 {
    margin: 14px 0;

    font-size: 32px;

    font-weight: 600;
}

.hero p {
    max-width: 640px;

    margin: 0 0 28px;

    color: #d5e0e7;

    font-size: 15px;

    line-height: 1.75;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 13px 23px;

    border-radius: 6px;

    color: var(--white);

    background: var(--green);

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--green-dark);

    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 23px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 6px;

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.btn-outline:hover {
    color: var(--navy);

    background: var(--white);
}

/* =========================================
   BUSINESS NEEDS PANEL
========================================= */

.business-needs {
    position: relative;

    z-index: 5;

    margin-top: -54px;
}

.business-needs-card {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(6, 1fr);

    overflow: hidden;

    border-radius: 14px;

    background: var(--white);

    box-shadow: var(--shadow);
}

.business-needs-title {
    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.business-needs-title span {
    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;
}

.business-needs-title h2 {
    margin: 6px 0 0;

    font-size: 18px;

    line-height: 1.2;
}

.need-card {
    min-height: 132px;

    padding: 20px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-left: 1px solid var(--border);

    transition: 0.2s ease;
}

.need-card:hover {
    background: var(--green-light);
}

.need-card i {
    margin-bottom: 11px;

    color: var(--green);

    font-size: 25px;
}

.need-card strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
}

.need-card small {
    max-width: 110px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.45;
}

/* =========================================
   GREEN TRUST STRIP
========================================= */

.trust-strip {
    margin-top: 19px;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            var(--green-dark),
            var(--green)
        );
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 78px;

    padding: 16px 22px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item i {
    width: 36px;

    color: #ffffff;

    font-size: 26px;
}

.trust-item strong {
    display: block;

    font-size: 13px;
}

.trust-item small {
    display: block;

    margin-top: 2px;

    color: #d3ede0;

    font-size: 9px;
}

/* =========================================
   STANDARD SECTIONS
========================================= */

.section {
    padding: 70px 0;
}

.section-soft {
    background: #f5f8f6;
}

.section-dark {
    color: var(--white);

    background: var(--navy-dark);
}

.section-heading {
    margin-bottom: 28px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;
}

.section-heading h2 {
    margin: 0;

    max-width: 700px;

    color: var(--navy);

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -0.025em;
}

.section-heading p {
    color: var(--muted);
}

.view-all {
    flex: none;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;
}

/* =========================================
   POPULAR SERVICES
========================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.service-card {
    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.service-icon {
    width: 42px;

    height: 42px;

    margin-bottom: 14px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color: var(--green);

    background: var(--green-light);

    font-size: 18px;
}

.service-card h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-size: 15px;
}

.service-card p {
    min-height: 55px;

    margin: 0 0 13px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.55;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}

/* =========================================
   HOME TWO COLUMN AREA
========================================= */

.home-content-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.08fr;

    gap: 38px;
}

/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
    padding: 21px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);
}

.how-it-works h2 {
    margin: 0 0 19px;

    color: var(--navy);

    font-size: 22px;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 6px;
}

.process-step {
    position: relative;

    text-align: center;
}

.process-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 23px;

    left: 67%;

    width: 68%;

    height: 1px;

    background: #dce3df;
}

.step-number {
    position: relative;

    z-index: 2;

    width: 46px;

    height: 46px;

    margin: 0 auto 11px;

    display: grid;

    place-items: center;

    border: 2px solid var(--green);

    border-radius: 50%;

    color: var(--green);

    background: var(--white);

    font-size: 14px;

    font-weight: 800;
}

.process-step strong {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;
}

.process-step small {
    color: var(--muted);

    font-size: 8px;
}

/* =========================================
   DARK CTA CARD
========================================= */

.application-cta {
    margin-top: 14px;

    padding: 24px 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    border-radius: 10px;

    color: var(--white);

    background:
        linear-gradient(
            105deg,
            var(--navy-dark),
            #0b3c51
        );
}

.application-cta h3 {
    margin: 0 0 4px;

    font-size: 18px;
}

.application-cta p {
    margin: 0;

    color: #bfd0d9;

    font-size: 9px;
}

/* =========================================
   BENEFITS STRIP
========================================= */

.benefits-strip {
    margin: 0 auto 35px;

    width: min(1180px, 94%);

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border: 1px solid var(--border);

    border-radius: 8px;

    background: var(--white);

    overflow: hidden;
}

.benefit-item {
    min-height: 75px;

    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-right: 1px solid var(--border);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-item i {
    color: var(--green);

    font-size: 20px;
}

.benefit-item strong {
    display: block;

    color: var(--navy);

    font-size: 10px;
}

.benefit-item small {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;
}

/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(30, 170, 91, 0.20),
            transparent 27%
        ),
        linear-gradient(
            110deg,
            var(--navy-dark),
            var(--navy)
        );
}

.page-hero-inner {
    min-height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px 0;
}

.page-hero h1 {
    max-width: 800px;

    margin: 0;

    font-size: 45px;

    line-height: 1.12;

    letter-spacing: -0.03em;
}

.page-hero p {
    max-width: 700px;

    margin: 15px 0 0;

    color: #cbd8df;

    font-size: 14px;

    line-height: 1.7;
}

/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    padding: 45px 0;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            var(--green-dark),
            var(--green)
        );
}

.footer-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-cta h2 {
    margin: 0 0 6px;

    font-size: 28px;
}

.footer-cta p {
    margin: 0;

    color: #d7efe2;

    font-size: 11px;
}

.footer-cta-button {
    flex: none;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 20px;

    border-radius: 6px;

    color: var(--green-dark);

    background: var(--white);

    font-size: 11px;

    font-weight: 800;
}

/* =========================================
   MAIN FOOTER
========================================= */

.main-footer {
    padding: 48px 0 20px;

    color: var(--white);

    background: var(--navy-dark);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 40px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-logo-icon {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #69d28f;

    background: rgba(255, 255, 255, 0.08);

    font-size: 23px;
}

.footer-logo-name {
    font-size: 17px;

    letter-spacing: 0.02em;
}

.footer-logo-name strong {
    color: #6fd797;
}

.footer-logo small {
    color: #9db2bf;

    font-size: 8px;
}

.footer-company > p {
    max-width: 360px;

    margin: 16px 0;

    color: #a8bac5;

    font-size: 10px;

    line-height: 1.7;
}

.footer-socials {
    display: flex;

    gap: 8px;
}

.footer-socials a {
    width: 32px;

    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    font-size: 11px;

    transition: 0.2s ease;
}

.footer-socials a:hover {
    background: var(--green);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column h3 {
    margin: 0 0 8px;

    font-size: 12px;
}

.footer-column > a {
    color: #a8bac5;

    font-size: 10px;
}

.footer-column > a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #a8bac5;

    font-size: 10px;
}

.footer-contact-item i {
    margin-top: 3px;

    color: #68d592;
}

.footer-bottom {
    margin-top: 35px;

    padding-top: 17px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    color: #76909f;

    font-size: 9px;
}

.footer-legal {
    display: flex;

    gap: 18px;
}

/* =========================================
   RESPONSIVE - TABLETS
========================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 17px;
    }

    .business-needs-card {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .business-needs-title {
        grid-column: 1 / -1;

        text-align: center;

        align-items: center;
    }

    .need-card {
        border-top: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefits-strip {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* =========================================
   RESPONSIVE - MOBILE NAV
========================================= */

@media (max-width: 850px) {

    .office-text,
    .nav-get-started {
        display: none;
    }

    .main-header .navbar {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 76px;

        left: 0;

        right: 0;

        display: none;

        padding: 18px 4%;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: var(--shadow);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links > a,
    .nav-dropdown {
        width: 100%;
    }

    .nav-links > a,
    .nav-dropdown > a {
        width: 100%;

        padding: 12px 0;
    }

    .nav-links > a.active::after,
    .nav-dropdown > a.active::after {
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        visibility: visible;

        opacity: 1;

        transform: none;

        box-shadow: none;

        border: 0;

        padding: 0 0 8px 15px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .home-content-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}

/* =========================================
   RESPONSIVE - SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    .hero {
        min-height: 470px;
    }

    .hero-inner {
        min-height: 470px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 13px;
    }

    .business-needs {
        margin-top: -25px;
    }

    .business-needs-card {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-grid,
    .services-grid,
    .process-grid,
    .benefits-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .section {
        padding: 55px 0;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .application-cta {
        align-items: flex-start;

        flex-direction: column;
    }

    .benefit-item {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

/* =========================================
   COUNTRIES PAGE
========================================= */

.countries-hero {
    position: relative;
    overflow: hidden;
}

.countries-hero::before {
    content: "\f57d";

    position: absolute;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: rgba(255, 255, 255, 0.045);

    font-size: 260px;
}

.countries-hero .page-hero-inner {
    position: relative;
    z-index: 2;
}


/* COUNTRY CARDS */

.countries-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.country-card {
    position: relative;

    min-height: 350px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: 13px;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.country-card:hover {
    transform: translateY(-5px);

    border-color: #bddfca;

    box-shadow: var(--shadow);
}

.country-card-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.country-code {
    padding: 5px 9px;

    border-radius: 5px;

    color: var(--green);

    background: var(--green-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.country-arrow {
    color: #b0b8bf;

    font-size: 12px;

    transition: 0.2s ease;
}

.country-card:hover .country-arrow {
    color: var(--green);

    transform: translateX(3px);
}

.country-icon {
    width: 48px;
    height: 48px;

    margin: 24px 0 16px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background: var(--green-light);

    font-size: 19px;
}

.country-card h3 {
    margin: 0 0 9px;

    color: var(--navy);

    font-size: 19px;
}

.country-card > p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.7;
}

.country-services-preview {
    margin-bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.country-services-preview span {
    color: #475467;

    font-size: 10px;
}

.country-services-preview i {
    width: 18px;

    color: var(--green);

    font-size: 8px;
}

.country-card-link {
    margin-top: auto;

    padding-top: 15px;

    display: flex;

    align-items: center;

    gap: 7px;

    border-top: 1px solid var(--border);

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================
   AFRICA SUPPORT
========================================= */

.africa-support-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 65px;

    align-items: center;
}

.africa-support-content h2 {
    max-width: 650px;

    margin: 0 0 18px;

    color: var(--navy);

    font-size: 36px;

    line-height: 1.2;

    letter-spacing: -0.025em;
}

.africa-support-content > p {
    max-width: 680px;

    margin: 0 0 13px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

.africa-support-list {
    margin: 25px 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.africa-support-list div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #344054;

    font-size: 11px;

    font-weight: 600;
}

.africa-support-list i {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background: var(--green-light);

    font-size: 8px;
}


/* =========================================
   AFRICA VISUAL
========================================= */

.africa-visual {
    position: relative;

    min-height: 390px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    border-radius: 20px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(54, 194, 109, 0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            #074e43
        );

    box-shadow: var(--shadow);
}

.africa-visual::after {
    content: "\f57d";

    position: absolute;

    right: -40px;
    bottom: -65px;

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: rgba(255, 255, 255, 0.055);

    font-size: 280px;
}

.africa-visual > * {
    position: relative;

    z-index: 2;
}

.africa-visual-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 20px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: #86dda5;

    background: rgba(255, 255, 255, 0.08);

    font-size: 31px;
}

.africa-visual > span {
    margin-bottom: 8px;

    color: #7ad89d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.africa-visual h3 {
    margin: 0;

    font-size: 34px;

    line-height: 1.15;
}

.africa-visual p {
    max-width: 300px;

    margin: 14px 0 25px;

    color: #bfd1d6;

    font-size: 11px;

    line-height: 1.7;
}

.africa-visual-points {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.africa-visual-points span {
    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 20px;

    color: #dce8e7;

    background: rgba(255, 255, 255, 0.05);

    font-size: 9px;
}

.africa-visual-points i {
    margin-right: 5px;

    color: #78d99d;
}


/* =========================================
   COUNTRIES RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .countries-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .africa-support-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}

@media (max-width: 600px) {

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .country-card {
        min-height: auto;
    }

    .africa-support-content h2 {
        font-size: 29px;
    }

    .africa-support-list {
        grid-template-columns: 1fr;
    }

    .africa-visual {
        min-height: 340px;
        padding: 30px;
    }

    .africa-visual h3 {
        font-size: 29px;
    }

}


/* =====================================================
   CONTACT FORM - CORRECTED LAYOUT
===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 55px;
    align-items: start;
}

.contact-content {
    min-width: 0;
}

.contact-content h2 {
    margin: 6px 0 10px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.15;
}

.contact-intro {
    max-width: 680px;
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form {
    width: 100%;
    padding: 30px;
    margin-top: 20px;

    display: block;

    border: 1px solid #e1e7ea;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);
}


/* =====================================================
   TWO COLUMN ROW
===================================================== */

.contact-form .form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   FORM GROUP
===================================================== */

.contact-form .form-group {
    width: 100%;
    margin: 0 0 19px;
    display: block;
}


/* =====================================================
   LABELS
===================================================== */

.contact-form .form-group label {
    display: block;

    margin: 0 0 7px;

    color: #233642;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;
}

.contact-form .form-group label span {
    color: #0b6b3a;
}


/* =====================================================
   INPUTS
===================================================== */

.contact-form input,
.contact-form select,
.contact-form textarea {
    box-sizing: border-box;

    display: block;

    width: 100%;

    margin: 0;

    border: 1px solid #d5dde2;
    border-radius: 8px;

    outline: none;

    color: #243642;

    background: #ffffff;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* TEXT INPUT */

.contact-form input {
    height: 47px;
    padding: 0 14px;
}


/* SELECT */

.contact-form select {
    height: 47px;

    padding: 0 40px 0 14px;

    cursor: pointer;
}


/* TEXTAREA */

.contact-form textarea {
    width: 100% !important;

    min-height: 150px;

    padding: 14px;

    resize: vertical;

    line-height: 1.6;
}


/* PLACEHOLDERS */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #98a2aa;
    opacity: 1;
}


/* FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0b6b3a;

    box-shadow:
        0 0 0 3px rgba(11, 107, 58, 0.10);
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-form .contact-submit {
    min-height: 48px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;
    border-radius: 7px;

    cursor: pointer;

    color: #ffffff;

    background: var(--green);

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-form .contact-submit:hover {
    background: var(--green-dark);

    transform: translateY(-1px);
}


/* =====================================================
   SERVICE / COUNTRY SELECTION NOTICE
===================================================== */

.contact-selection {
    width: 100%;

    box-sizing: border-box;

    margin: 0 0 12px;

    padding: 14px 16px;

    display: flex;
    align-items: center;

    gap: 13px;

    border: 1px solid #c8e2d1;
    border-radius: 9px;

    background: #f0f9f3;
}

.contact-selection-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: #ffffff;

    background: var(--green);
}

.contact-selection small {
    display: block;

    margin-bottom: 3px;

    color: var(--green);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.contact-selection strong {
    display: block;

    color: var(--navy);

    font-size: 12px;
}


/* =====================================================
   ALERTS
===================================================== */

.form-alert {
    width: 100%;

    box-sizing: border-box;

    margin: 0 0 18px;

    padding: 14px 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 8px;

    font-size: 11px;
}

.form-alert-success {
    color: #07522d;

    border: 1px solid #b9dfc7;

    background: #edf9f1;
}

.form-alert-error {
    color: #9b2929;

    border: 1px solid #efc5c5;

    background: #fff2f2;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 650px) {

    .contact-form {
        padding: 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-content h2 {
        font-size: 29px;
    }

}


















