/* =========================================================
   BASA AFRICA — PAGE LAYOUTS
   File: assets/css/pages.css
   ========================================================= */


/* =========================================================
   1. GLOBAL PAGE SECTIONS
   ========================================================= */

.v3-services,
.v3-projects,
.v3-map,
.v3-video,
.v3-testimonials,
.v3-partners,
.v3-news,
.v3-about,
.v3-milestones,
.v3-why-us,
.v3-values,
.v3-timeline,
.v3-leadership,
.v3-divisions,
.v3-impact,
.public-gallery-section,
.v3-featured-gallery,
.public-careers-section,
.job-details-section,
.job-application-section,
.public-downloads-section,
.v3-contact-map {
    position: relative;

    width: 100%;
    max-width: 100%;
}


/* =========================================================
   2. HOMEPAGE HERO
   ========================================================= */

.v3-hero {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    color: var(--basa-white);

    background-color: var(--basa-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.v3-hero .container {
    position: relative;
    z-index: 2;
}

.v3-hero .row {
    position: relative;
    z-index: 2;
}

.v3-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244, 116, 33, 0.28),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(21, 188, 188, 0.28),
            transparent 25%
        );
}

.v3-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    max-width: 100%;

    margin-bottom: 28px;
    padding: 11px 20px;

    color: var(--basa-white);

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--basa-radius-pill);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

    font-size: 14px;
    font-weight: 900;
}

.v3-hero h1 {
    max-width: 1050px;

    margin-bottom: 28px;

    color: var(--basa-white);

    font-size: clamp(3rem, 6vw, 5.15rem);
    font-weight: 900;
    line-height: 0.98;

    letter-spacing: -2px;
}

.v3-hero p {
    max-width: 790px;

    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 20px;
    line-height: 1.8;
}

.v3-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}


/* =========================================================
   3. HOMEPAGE MARQUEE
   ========================================================= */

.v3-marquee {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    padding: 25px 0;

    color: var(--basa-white);
    background: var(--basa-dark);
}

.v3-marquee-track {
    display: flex;
    align-items: center;

    gap: 60px;

    width: max-content;
    min-width: max-content;

    white-space: nowrap;

    animation: basaMarquee 28s linear infinite;
    will-change: transform;
}

.v3-marquee-track span {
    flex: 0 0 auto;

    color: var(--basa-secondary);

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   4. HOMEPAGE ABOUT
   ========================================================= */

.v3-about {
    padding: 120px 0;

    background: var(--basa-white);
}

.v3-about-image {
    position: relative;

    width: 100%;
    max-width: 100%;
}

.v3-about-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    border-radius: 34px;

    box-shadow: var(--basa-shadow-lg);
}

.v3-about-card {
    position: absolute;

    right: 20px;
    bottom: 20px;

    z-index: 3;

    width: 220px;
    max-width: calc(100% - 40px);

    padding: 28px;

    color: var(--basa-white);
    background: var(--basa-primary);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(36, 60, 125, 0.35);
}

.v3-about-card h3 {
    margin-bottom: 8px;

    color: var(--basa-secondary);

    font-size: 52px;
    font-weight: 900;
}

.v3-about-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 15px;
    line-height: 1.55;
}

.v3-about h2 {
    margin: 18px 0 24px;

    color: var(--basa-dark);

    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
}

.v3-about p {
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   5. HOMEPAGE SERVICES
   ========================================================= */

.v3-services {
    padding: 120px 0;

    background: var(--basa-soft);
}


/* =========================================================
   6. HOMEPAGE PROJECTS
   ========================================================= */

.v3-projects {
    padding: 120px 0;

    background: var(--basa-white);
}


/* =========================================================
   7. REGIONAL MAP SECTION
   ========================================================= */

.v3-map {
    padding: 120px 0;

    color: var(--basa-white);

    background:
        linear-gradient(
            135deg,
            var(--basa-dark),
            var(--basa-primary)
        );
}

.v3-map .v2-title h2,
.v3-map .v2-title p {
    color: var(--basa-white);
}


/* =========================================================
   8. VIDEO SECTION
   ========================================================= */

.v3-video {
    padding: 120px 0;

    background: var(--basa-white);
}

.v3-video-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    min-height: 520px;

    padding: 55px;

    color: var(--basa-white);

    background:
        linear-gradient(
            rgba(6, 16, 31, 0.35),
            rgba(6, 16, 31, 0.88)
        ),
        url("../images/backgrounds/video-cover.jpg");

    background-size: cover;
    background-position: center;

    border-radius: 38px;

    box-shadow: var(--basa-shadow-lg);
}

.v3-video-box span {
    color: var(--basa-accent);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.v3-video-box h2 {
    max-width: 760px;

    margin: 15px 0;

    color: var(--basa-white);

    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 900;
}

.v3-video-box p {
    color: rgba(255, 255, 255, 0.86);
}

.v3-play {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 88px;
    height: 88px;

    color: var(--basa-white);
    background: var(--basa-accent);

    border-radius: 50%;

    font-size: 30px;

    box-shadow:
        0 20px 45px rgba(244, 116, 33, 0.38);
}

.v3-play:hover {
    color: var(--basa-white);
    background: var(--basa-secondary);

    transform: scale(1.05);
}


/* =========================================================
   9. TESTIMONIALS
   ========================================================= */

.v3-testimonials {
    padding: 120px 0;

    background: var(--basa-white);
}


/* =========================================================
   10. PARTNERS
   ========================================================= */

.v3-partners {
    padding: 120px 0;

    background: var(--basa-soft);
}


/* =========================================================
   11. NEWS
   ========================================================= */

.v3-news {
    padding: 120px 0;

    background: var(--basa-white);
}


/* =========================================================
   12. CTA
   ========================================================= */

.v3-cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    color: var(--basa-white);

    background:
        linear-gradient(
            135deg,
            var(--basa-primary),
            var(--basa-secondary)
        );

    background-size: cover;
    background-position: center;
}

.v3-cta h2 {
    margin-bottom: 16px;

    color: var(--basa-white);

    font-size: clamp(2.2rem, 4vw, 3.1rem);
    font-weight: 900;
}

.v3-cta p {
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   13. INNER PAGE HERO
   ========================================================= */

.v3-page-hero {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    color: var(--basa-white);

    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 31, 0.95),
            rgba(36, 60, 125, 0.80)
        ),
        url("../images/backgrounds/page-hero.jpg");

    background-size: cover;
    background-position: center;
}

.v3-page-hero h1 {
    margin-bottom: 16px;

    color: var(--basa-white);

    font-size: clamp(2.5rem, 5vw, 3.65rem);
    font-weight: 900;
}

.v3-page-hero p {
    max-width: 720px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: 19px;
    line-height: 1.75;
}


/* =========================================================
   14. ABOUT PAGE — MILESTONES
   ========================================================= */

.v3-milestones {
    padding: 120px 0;

    background: var(--basa-light);
}


/* =========================================================
   15. ABOUT PAGE — WHY CHOOSE US
   ========================================================= */

.v3-why-us {
    padding: 120px 0;

    background: var(--basa-white);
}


/* =========================================================
   16. ABOUT PAGE — CORE VALUES
   ========================================================= */

.v3-values {
    padding: 120px 0;

    background: var(--basa-soft);
}


/* =========================================================
   17. ABOUT PAGE — TIMELINE
   ========================================================= */

.v3-timeline {
    padding: 130px 0;

    background: var(--basa-white);
}


/* =========================================================
   18. ABOUT PAGE — LEADERSHIP
   ========================================================= */

.v3-leadership {
    padding: 120px 0;

    background: var(--basa-soft);
}

.leader-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    border-radius: 34px;

    box-shadow: var(--basa-shadow-lg);
}

.v3-leadership h2 {
    margin: 18px 0 24px;

    color: var(--basa-dark);

    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 900;
}

.v3-leadership p {
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   19. ABOUT PAGE — DIVISIONS
   ========================================================= */

.v3-divisions {
    padding: 130px 0;

    background: var(--basa-light);
}


/* =========================================================
   20. ABOUT PAGE — IMPACT
   ========================================================= */

.v3-impact {
    padding: 125px 0;

    color: var(--basa-white);

    background:
        linear-gradient(
            135deg,
            rgba(6, 16, 31, 0.96),
            rgba(36, 60, 125, 0.92)
        ),
        url("../images/backgrounds/impact-bg.jpg");

    background-size: cover;
    background-position: center;
}

.v3-impact .v2-title h2,
.v3-impact .v2-title p {
    color: var(--basa-white);
}

.impact-card {
    height: 100%;

    padding: 40px;

    text-align: center;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    transition: var(--basa-transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.18);

    transform: translateY(-10px);
}

.impact-card i {
    margin-bottom: 18px;

    color: var(--basa-secondary);

    font-size: 42px;
}

.impact-card h3 {
    color: var(--basa-accent);

    font-size: 50px;
    font-weight: 900;
}

.impact-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.90);

    font-weight: 800;
}


/* =========================================================
   21. PUBLIC GALLERY PAGE
   ========================================================= */

.public-gallery-section {
    padding: 110px 0;

    background: #f7f9fc;
}


/* =========================================================
   22. FEATURED GALLERY
   ========================================================= */

.v3-featured-gallery {
    padding: 110px 0;

    background: var(--basa-white);
}


/* =========================================================
   23. CAREERS PAGE
   ========================================================= */

.public-careers-section {
    padding: 110px 0;

    background: #f7f9fc;
}

.careers-empty-state {
    padding: 65px 24px;

    text-align: center;

    background: var(--basa-white);

    border-radius: 24px;

    box-shadow: var(--basa-shadow-sm);
}

.careers-empty-state i {
    margin-bottom: 20px;

    color: var(--basa-secondary);

    font-size: 54px;
}

.careers-empty-state h3 {
    color: var(--basa-dark);
}

.careers-empty-state p {
    margin: 0;

    color: var(--basa-text-light);
}


/* =========================================================
   24. JOB DETAILS PAGE
   ========================================================= */

.job-details-section {
    padding: 110px 0;

    background: #f7f9fc;
}

.job-details-category {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--basa-secondary);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* =========================================================
   25. JOB APPLICATION PAGE
   ========================================================= */

.job-application-section {
    padding: 110px 0;

    background: #f7f9fc;
}


/* =========================================================
   26. DOWNLOADS PAGE
   ========================================================= */

.public-downloads-section {
    padding: 110px 0;

    background: #f7f9fc;
}

.downloads-toolbar {
    margin-bottom: 42px;
}

.downloads-empty-result {
    padding: 60px 22px;

    text-align: center;

    background: var(--basa-white);

    border-radius: 24px;

    box-shadow: var(--basa-shadow-sm);
}

.downloads-empty-result i {
    margin-bottom: 18px;

    color: var(--basa-secondary);

    font-size: 48px;
}

.downloads-empty-result h3 {
    color: var(--basa-dark);
}

.downloads-empty-result p {
    margin: 0;

    color: var(--basa-text-light);
}



/* =========================================================
   DOWNLOAD CARDS — PREMIUM DESIGN
   ========================================================= */

.downloads-grid {
    align-items: stretch;
}

.download-item {
    display: flex;
}

.download-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(15, 30, 60, 0.08);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(15, 30, 60, 0.14);
    border-color: rgba(21, 188, 188, 0.35);
}

.download-card-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(36, 60, 125, 0.12),
        rgba(21, 188, 188, 0.16)
    );
    color: #243c7d;
    font-size: 30px;
}

.download-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #f47421;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 0 0 14px;
    color: #081528;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
}

.download-card p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.download-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 22px;
    padding-top: 18px;
    border-top: 1px solid #edf1f6;
}

.download-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8491a3;
    font-size: 12px;
    font-weight: 700;
}

.download-card-meta i {
    color: #15bcbc;
}

.download-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #243c7d,
        #15bcbc
    );
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.download-card-button:hover {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #f47421,
        #243c7d
    );
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 60, 125, 0.22);
}


/* DOWNLOAD FILTER BUTTONS */

.downloads-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.download-filter-btn {
    padding: 11px 20px;
    background: #ffffff;
    color: #243c7d;
    border: 1px solid #dce3ed;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
}

.download-filter-btn:hover,
.download-filter-btn.active {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #243c7d,
        #15bcbc
    );
    border-color: transparent;
}


/* DOWNLOADS MOBILE */

@media (max-width: 767.98px) {

    .downloads-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .download-filter-btn {
        flex: 0 0 auto;
    }

    .download-card {
        padding: 24px;
    }

    .download-card h3 {
        font-size: 20px;
    }

}




/* =========================================================
   27. CONTACT PAGE
   ========================================================= */

.contact-section {
    padding: 110px 0;

    background: var(--basa-white);
}

.contact-info-card {
    height: 100%;

    padding: 32px;

    background: var(--basa-white);

    border: 1px solid var(--basa-border);
    border-radius: 26px;

    box-shadow: var(--basa-shadow-sm);
}

.contact-info-card i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 18px;

    color: var(--basa-white);

    background:
        linear-gradient(
            135deg,
            var(--basa-primary),
            var(--basa-secondary)
        );

    border-radius: 18px;

    font-size: 22px;
}

.contact-info-card h4 {
    color: var(--basa-dark);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--basa-text-light);
}

.v3-contact-map {
    padding: 0 0 110px;

    background: var(--basa-white);
}


/* =========================================================
   28. SERVICES PAGE
   ========================================================= */

.services-page-section {
    padding: 110px 0;

    background: var(--basa-soft);
}

.service-details-section {
    padding: 110px 0;

    background: var(--basa-white);
}

.service-details-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: var(--basa-shadow-lg);
}

.service-details-content h2 {
    margin-bottom: 22px;

    color: var(--basa-dark);
}

.service-details-content p {
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   29. PROJECTS PAGE
   ========================================================= */

.projects-page-section {
    padding: 110px 0;

    background: var(--basa-white);
}

.project-details-section {
    padding: 110px 0;

    background: var(--basa-white);
}

.project-details-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow: var(--basa-shadow-lg);
}

.project-details-meta {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin: 30px 0;
}

.project-meta-item {
    padding: 20px;

    background: var(--basa-light);

    border: 1px solid var(--basa-border);
    border-radius: 18px;
}

.project-meta-item span {
    display: block;

    margin-bottom: 4px;

    color: var(--basa-muted);

    font-size: 13px;
}

.project-meta-item strong {
    color: var(--basa-primary);
}


/* =========================================================
   30. BLOG PAGE
   ========================================================= */

.blog-page-section {
    padding: 110px 0;

    background: var(--basa-soft);
}

.blog-card {
    height: 100%;

    overflow: hidden;

    background: var(--basa-white);

    border-radius: 26px;

    box-shadow: var(--basa-shadow-sm);

    transition: var(--basa-transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--basa-shadow-lg);
}

.blog-card-image {
    height: 260px;

    overflow: hidden;

    background: var(--basa-dark);
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 26px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 12px;

    color: var(--basa-muted);

    font-size: 13px;
}

.blog-card h3 {
    color: var(--basa-dark);
}

.blog-details-section {
    padding: 110px 0;

    background: var(--basa-white);
}

.blog-details-image img {
    width: 100%;
    max-height: 620px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow: var(--basa-shadow-lg);
}

.blog-content {
    color: var(--basa-text);

    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   31. QUOTATION PAGE
   ========================================================= */

.quotation-section {
    padding: 110px 0;

    background: var(--basa-soft);
}


/* =========================================================
   32. COMMODITIES PAGE
   ========================================================= */

.commodities-section {
    padding: 110px 0;

    background: var(--basa-soft);
}

.commodity-card {
    height: 100%;

    padding: 32px;

    background: var(--basa-white);

    border: 1px solid var(--basa-border);
    border-radius: 26px;

    box-shadow: var(--basa-shadow-sm);

    transition: var(--basa-transition);
}

.commodity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--basa-shadow-lg);
}

.commodity-card i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin-bottom: 22px;

    color: var(--basa-white);

    background:
        linear-gradient(
            135deg,
            var(--basa-primary),
            var(--basa-secondary)
        );

    border-radius: 22px;

    font-size: 28px;
}


/* =========================================================
   33. ERROR PAGE
   ========================================================= */

.error-page-section {
    display: flex;
    align-items: center;

    min-height: 70vh;

    padding: 100px 0;

    text-align: center;

    background: var(--basa-light);
}

.error-page-section h1 {
    color: var(--basa-primary);

    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 900;
}

.error-page-section h2 {
    color: var(--basa-dark);
}


/* =========================================================
   34. TABLET ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {

    .v3-hero {
        min-height: auto;

        padding: 95px 0 80px;
    }

    .v3-hero .min-vh-100 {
        min-height: auto !important;
    }

    .v3-hero h1 {
        font-size: clamp(2.8rem, 7vw, 4.2rem);
        line-height: 1.03;
    }

    .v3-about,
    .v3-services,
    .v3-projects,
    .v3-map,
    .v3-video,
    .v3-testimonials,
    .v3-partners,
    .v3-news,
    .v3-milestones,
    .v3-why-us,
    .v3-values,
    .v3-timeline,
    .v3-leadership,
    .v3-divisions,
    .v3-impact {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .v3-about-image {
        margin-bottom: 45px;
    }

    .v3-about-image img,
    .leader-image img {
        height: 480px;
    }

    .v3-video-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 38px;
    }

    .v3-play {
        width: 74px;
        height: 74px;

        font-size: 25px;
    }

    .v3-cta {
        padding: 80px 0;
    }

    .project-details-meta {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   35. MOBILE ADJUSTMENTS
   ========================================================= */

@media (max-width: 767.98px) {

    .v3-hero {
        padding: 65px 0 60px;

        background-position: center;
    }

    .v3-hero .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .v3-hero h1 {
        margin-bottom: 20px;

        font-size: clamp(2.35rem, 10vw, 3.25rem);
        line-height: 1.04;

        letter-spacing: -1px;
    }

    .v3-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .v3-badge {
        padding: 9px 13px;

        font-size: 11px;
        line-height: 1.4;

        white-space: normal;
    }

    .v3-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .v3-marquee {
        padding: 19px 0;
    }

    .v3-marquee-track {
        gap: 32px;

        animation-duration: 22s;
    }

    .v3-about {
        padding: 70px 0;
    }

    .v3-about .row {
        row-gap: 40px;
    }

    .v3-about-image {
        margin-bottom: 0;
    }

    .v3-about-image img {
        height: 320px;

        border-radius: 22px;
    }

    .v3-about-card {
        right: 12px;
        bottom: 12px;

        width: 185px;

        padding: 20px;

        border-radius: 22px;
    }

    .v3-about-card h3 {
        font-size: 42px;
    }

    .v3-about-card p {
        font-size: 13px;
    }

    .v3-about h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .v3-about p {
        font-size: 16px;
    }

    .v3-services,
    .v3-projects,
    .v3-map,
    .v3-video,
    .v3-testimonials,
    .v3-partners,
    .v3-news,
    .v3-milestones,
    .v3-why-us,
    .v3-values,
    .v3-timeline,
    .v3-leadership,
    .v3-divisions,
    .v3-impact,
    .public-gallery-section,
    .v3-featured-gallery,
    .public-careers-section,
    .job-details-section,
    .job-application-section,
    .public-downloads-section,
    .contact-section,
    .services-page-section,
    .service-details-section,
    .projects-page-section,
    .project-details-section,
    .blog-page-section,
    .blog-details-section,
    .quotation-section,
    .commodities-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .v3-video-box {
        min-height: 430px;

        padding: 28px;

        border-radius: 26px;
    }

    .v3-video-box h2 {
        font-size: 30px;
    }

    .v3-page-hero {
        padding: 78px 0;
    }

    .v3-page-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.1rem);
    }

    .v3-page-hero p {
        font-size: 16px;
    }

    .leader-image img {
        height: 360px;

        border-radius: 24px;
    }

    .impact-card {
        padding: 30px;
    }

    .service-details-image img,
    .project-details-image img {
        height: 340px;

        border-radius: 24px;
    }

    .blog-card-image {
        height: 230px;
    }

    .blog-details-image img {
        border-radius: 24px;
    }

    .contact-info-card,
    .commodity-card {
        padding: 24px;
    }

}


/* =========================================================
   36. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .v3-hero {
        padding: 55px 0 50px;
    }

    .v3-hero h1 {
        font-size: 2.25rem;
    }

    .v3-about-image img {
        height: 270px;
    }

    .v3-about-card {
        width: 170px;

        padding: 18px;
    }

    .v3-about-card h3 {
        font-size: 38px;
    }

    .v3-video-box {
        min-height: 390px;

        padding: 24px;
    }

    .v3-video-box h2 {
        font-size: 27px;
    }

    .v3-cta {
        padding: 70px 0;
    }

    .project-details-image img,
    .service-details-image img {
        height: 280px;
    }

}



/* =========================================================
   BASA AFRICA — PUBLIC PROJECTS PAGE
   ========================================================= */

.public-projects-section {
    position: relative;
    padding: 90px 0;
    background: #f7f9fc;
}

.project-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.project-filter-btn {
    appearance: none;
    border: 1px solid #dce3ed;
    border-radius: 999px;
    padding: 11px 20px;
    background: #ffffff;
    color: #243c7d;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
    border-color: #243c7d;
    background: #243c7d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 60, 125, 0.2);
}

.project-grid {
    align-items: stretch;
}

.project-item {
    display: flex;
}

.public-project-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4e9f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 30, 60, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.public-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(15, 30, 60, 0.15);
}

.public-project-image {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: #e9eef5;
}

.public-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.public-project-card:hover .public-project-image img {
    transform: scale(1.06);
}

.public-project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(5, 16, 37, 0.85) 100%
        );
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.public-project-card:hover .public-project-overlay {
    opacity: 1;
}

.public-project-overlay span {
    font-size: 14px;
    font-weight: 800;
}

.public-project-overlay i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f47421;
    color: #ffffff;
}

.public-project-featured {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #f47421;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(244, 116, 33, 0.3);
}

.public-project-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.public-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.public-project-meta span {
    color: #15bcbc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.public-project-meta time {
    color: #7b8799;
    font-size: 12px;
    font-weight: 600;
}

.public-project-content h3 {
    margin: 0 0 13px;
    color: #081528;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
}

.public-project-content h3 a {
    color: inherit;
    text-decoration: none;
}

.public-project-content h3 a:hover {
    color: #243c7d;
}

.public-project-content p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.public-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #edf1f6;
}

.public-project-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.public-project-footer > span i {
    color: #15bcbc;
}

.public-project-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #243c7d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.public-project-footer > a:hover {
    color: #f47421;
}

/* =========================================================
   PROJECT DETAILS PAGE
   ========================================================= */

.project-details-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.project-details-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 28px;
    background: #e9eef5;
    box-shadow: 0 24px 65px rgba(15, 30, 60, 0.13);
}

.project-details-image img {
    display: block;
    width: 100%;
    min-height: 470px;
    object-fit: cover;
}

.project-details-featured {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    background: #f47421;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.project-details-content {
    padding: 35px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 30, 60, 0.07);
}

.project-details-content h2 {
    margin: 12px 0 20px;
    color: #081528;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
}

.project-description {
    color: #5f6f82;
    font-size: 16px;
    line-height: 1.9;
}

.project-details-sidebar {
    position: sticky;
    top: 110px;
}

.project-info-card,
.project-contact-card {
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 30, 60, 0.08);
}

.project-info-card {
    margin-bottom: 24px;
}

.project-info-card h3,
.project-contact-card h3 {
    margin: 0 0 22px;
    color: #081528;
    font-size: 22px;
    font-weight: 800;
}

.project-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #edf1f6;
}

.project-info-row:last-child {
    border-bottom: 0;
}

.project-info-row i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(21, 188, 188, 0.12);
    color: #15bcbc;
}

.project-info-row div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-info-row span {
    color: #8491a3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-info-row strong {
    color: #17243a;
    font-size: 14px;
}

.project-contact-card {
    background:
        linear-gradient(
            145deg,
            #081528 0%,
            #243c7d 100%
        );
    color: #ffffff;
}

.project-contact-card > span {
    color: #f47421;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-contact-card h3 {
    margin-top: 10px;
    color: #ffffff;
}

.project-contact-card p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.related-projects-section {
    padding: 90px 0;
    background: #ffffff;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .public-projects-section,
    .project-details-section,
    .related-projects-section {
        padding: 65px 0;
    }

    .project-details-sidebar {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .project-filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .project-filter-btn {
        flex: 0 0 auto;
        padding: 9px 16px;
        font-size: 12px;
    }

    .public-project-image {
        height: 230px;
    }

    .public-project-content {
        padding: 20px;
    }

    .public-project-content h3 {
        font-size: 20px;
    }

    .project-details-image img {
        min-height: 300px;
    }

    .project-details-content {
        padding: 24px;
    }

    .project-details-content h2 {
        font-size: 26px;
    }

    .project-info-card,
    .project-contact-card {
        padding: 22px;
    }

}



/* =========================================================
   BASA AFRICA — DOWNLOADS PAGE FINAL FIX
   ========================================================= */

.downloads-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.downloads-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.downloads-filter-btn {
    border: 1px solid #dce3ed;
    border-radius: 999px;
    padding: 11px 20px;
    background: #ffffff;
    color: #243c7d;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.downloads-filter-btn:hover,
.downloads-filter-btn.active {
    border-color: #243c7d;
    background: linear-gradient(
        135deg,
        #243c7d,
        #15bcbc
    );
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 60, 125, 0.18);
}

.downloads-grid {
    align-items: stretch;
}

.download-item {
    display: flex;
}

.download-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 30, 60, 0.08);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 30, 60, 0.14);
}

.download-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.download-file-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(36, 60, 125, 0.12),
        rgba(21, 188, 188, 0.18)
    );
    color: #243c7d;
    font-size: 30px;
}

.download-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f47421;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.download-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.download-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #f47421;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 0 0 14px;
    color: #081528;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.download-card p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #edf1f6;
}

.download-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8491a3;
    font-size: 12px;
    font-weight: 700;
}

.download-meta i {
    color: #15bcbc;
}

.download-card-footer {
    margin-top: 24px;
}

.download-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #243c7d,
        #15bcbc
    );
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.download-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #f47421,
        #243c7d
    );
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 60, 125, 0.22);
}

@media (max-width: 767.98px) {

    .downloads-section {
        padding: 65px 0;
    }

    .downloads-filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .downloads-filter-btn {
        flex: 0 0 auto;
        padding: 9px 16px;
        font-size: 12px;
    }

    .download-card {
        padding: 22px;
    }

    .download-card h3 {
        font-size: 20px;
    }

}


/* =========================================================
   ABOUT PAGE - WHY CHOOSE US MOBILE FIX
========================================================= */

@media (max-width: 991.98px) {

    .v3-why-us {
        overflow: hidden !important;
    }

    .v3-why-us .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .v3-why-us .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .why-image {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 0 !important;
    }

    .why-image > img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        object-fit: cover !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .experience-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        transform: none !important;

        width: calc(100% - 30px) !important;
        max-width: 320px !important;

        margin: -55px auto 0 !important;
        padding: 22px !important;

        z-index: 5;
    }
}



/* =========================================================
   ABOUT PAGE WHY IMAGE - FINAL FIX
========================================================= */

.v3-why-us .why-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    overflow: visible;
}

.v3-why-us .why-image > img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
}

.v3-why-us .experience-card {
    position: absolute;
    left: -45px;
    bottom: 35px;
    z-index: 5;
}

@media (max-width: 991.98px) {

    .v3-why-us .why-image {
        min-height: 0;
        margin-top: 30px;
    }

    .v3-why-us .why-image > img {
        width: 100%;
        height: auto;
        min-height: 360px;
        object-fit: cover;
        border-radius: 24px;
    }

    .v3-why-us .experience-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;

        width: calc(100% - 40px);
        max-width: 320px;

        margin: -55px auto 0;
    }
}


/* =========================================================
   BASA AFRICA
   FINAL HOMEPAGE VIDEO + REGIONAL MAP RESPONSIVE FIX
   ADD AT THE VERY BOTTOM OF pages.css
========================================================= */


/* =========================================================
   VIDEO SECTION — GLOBAL SAFETY
========================================================= */

.v3-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.v3-video .container {
    position: relative;
    width: 100%;
    max-width: 100%;
}


/* Prevent video section from creating horizontal overflow */

.v3-video *,
.v3-map * {
    box-sizing: border-box;
}


/* =========================================================
   VIDEO BOX
========================================================= */

.v3-video-box {
    position: relative;

    display: flex;
    align-items: flex-end;

    width: 100%;
    max-width: 100%;

    min-height: 580px;

    padding: 55px;

    overflow: hidden;

    border-radius: 38px;

    background: #06101f;

    isolation: isolate;

    box-shadow:
        0 30px 80px
        rgba(6, 16, 31, 0.18);
}


/* =========================================================
   REAL BACKGROUND VIDEO
========================================================= */

.v3-video-box > video,
.v3-video-box .video-background,
.v3-video-box .v3-video-background {
    position: absolute;

    top: 0;
    left: 0;

    z-index: -3;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    pointer-events: none;
}


/* =========================================================
   VIDEO DARK OVERLAY
========================================================= */

.v3-video-box::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 31, 0.90) 0%,
            rgba(6, 16, 31, 0.70) 48%,
            rgba(6, 16, 31, 0.38) 100%
        );
}


/* Additional bottom gradient */

.v3-video-box::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,
            rgba(6, 16, 31, 0.75) 0%,
            transparent 55%
        );
}


/* =========================================================
   VIDEO CONTENT
========================================================= */

.v3-video-box > *:not(video) {
    position: relative;
    z-index: 2;
}

.v3-video-box h2 {
    width: 100%;
    max-width: 760px;

    margin: 15px 0 18px;

    color: #ffffff;

    font-size: clamp(
        2.2rem,
        4.2vw,
        4rem
    );

    font-weight: 900;

    line-height: 1.04;

    letter-spacing: -1.5px;

    overflow-wrap: normal;
    word-break: normal;
}

.v3-video-box p {
    width: 100%;
    max-width: 680px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   VIDEO SOUND / PLAY BUTTON
========================================================= */

.v3-play {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    padding: 0;

    overflow: hidden;

    color: #ffffff;

    background: #f47421;

    border: 0;
    border-radius: 50%;

    font-size: 25px;

    cursor: pointer;

    box-shadow:
        0 18px 45px
        rgba(244, 116, 33, 0.38);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.v3-play:hover {
    color: #ffffff;

    background: #15bcbc;

    transform: scale(1.06);
}


/* =========================================================
   REGIONAL MAP — GLOBAL FIX
========================================================= */

.v3-map {
    position: relative;

    width: 100%;
    max-width: 100%;

    overflow: hidden;
}

.v3-map .container {
    position: relative;

    width: 100%;
    max-width: 100%;
}

.v3-map .row {
    max-width: 100%;

    margin-left: 0;
    margin-right: 0;
}

.v3-map img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .v3-video {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .v3-video-box {
        display: flex;

        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-end;

        gap: 28px;

        min-height: 600px;

        padding: 42px;

        border-radius: 30px;
    }

    .v3-video-box h2 {
        max-width: 650px;

        font-size: clamp(
            2.3rem,
            7vw,
            3.8rem
        );
    }

    .v3-map {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    /*
     * VIDEO SECTION
     */

    .v3-video {
        padding:
            24px
            0
            55px;
    }

    .v3-video .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .v3-video-box {
        display: flex;

        flex-direction: column;

        align-items: flex-start;
        justify-content: flex-end;

        gap: 22px;

        width: 100%;

        min-height: 550px;

        padding:
            34px
            24px;

        overflow: hidden;

        border-radius: 24px;
    }


    /*
     * Mobile video position
     */

    .v3-video-box > video,
    .v3-video-box .video-background,
    .v3-video-box .v3-video-background {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center center;
    }


    /*
     * Stronger overlay for mobile readability
     */

    .v3-video-box::before {
        background:
            linear-gradient(
                180deg,
                rgba(
                    6,
                    16,
                    31,
                    0.30
                )
                0%,

                rgba(
                    6,
                    16,
                    31,
                    0.62
                )
                38%,

                rgba(
                    6,
                    16,
                    31,
                    0.96
                )
                100%
            );
    }


    /*
     * Subtitle
     */

    .v3-video-box span {
        display: block;

        margin-bottom: 10px;

        font-size: 11px;

        line-height: 1.4;

        letter-spacing: 1.5px;
    }


    /*
     * Main heading
     */

    .v3-video-box h2 {
        width: 100%;
        max-width: 100%;

        margin:
            8px
            0
            16px;

        font-size:
            clamp(
                2rem,
                9.5vw,
                2.85rem
            );

        line-height: 1.05;

        letter-spacing: -1px;

        overflow-wrap: normal;

        word-break: normal;
    }


    /*
     * Description
     */

    .v3-video-box p {
        width: 100%;
        max-width: 100%;

        margin-bottom: 0;

        font-size: 15px;

        line-height: 1.65;
    }


    /*
     * Sound button
     */

    .v3-play {
        width: 58px;
        height: 58px;

        font-size: 20px;

        flex-shrink: 0;
    }


    /*
     * REGIONAL MAP
     */

    .v3-map {
        padding:
            65px
            0;

        overflow: hidden;
    }

    .v3-map .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .v3-map .row {
        width: 100%;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .v3-map .row > * {
        max-width: 100%;

        padding-left: 0;
        padding-right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .v3-video-box {
        min-height: 520px;

        padding:
            30px
            20px;

        border-radius: 22px;
    }

    .v3-video-box h2 {
        font-size:
            clamp(
                1.85rem,
                9vw,
                2.35rem
            );

        line-height: 1.06;

        letter-spacing: -0.7px;
    }

    .v3-video-box p {
        font-size: 14px;

        line-height: 1.6;
    }

    .v3-play {
        width: 54px;
        height: 54px;

        font-size: 18px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .v3-video-box {
        min-height: 500px;

        padding:
            26px
            18px;
    }

    .v3-video-box h2 {
        font-size: 1.75rem;
    }

}

/* =========================================================
   CONTACT PAGE — MODERN DESIGN
========================================================= */

/* =========================================================
   MODERN CONTACT PAGE
========================================================= */

.contact-modern {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.contact-modern-grid {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 65px;

    align-items: stretch;
}


/* IMAGE */

.contact-modern-image {
    position: relative;

    min-height: 750px;

    overflow: hidden;

    border-radius: 34px;

    box-shadow:
        0 35px 90px rgba(15, 23, 42, 0.16);
}

.contact-modern-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.contact-modern-image-card {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 24px;

    color: #ffffff;

    background: rgba(6, 16, 31, 0.90);

    border-radius: 20px;

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.contact-modern-image-card span {
    display: block;

    margin-bottom: 8px;

    color: #f47421;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-modern-image-card strong {
    font-size: 22px;
    line-height: 1.4;
}


/* CONTENT */

.contact-modern-content {
    padding: 20px 0;
}

.contact-modern-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #f47421;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-modern-content h1 {
    max-width: 700px;

    margin-bottom: 20px;

    color: #06101f;

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.02;

    letter-spacing: -2px;
}

.contact-modern-intro {
    max-width: 680px;

    margin-bottom: 35px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}


/* CONTACT INFO */

.contact-modern-info {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 18px;
}

.contact-info-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #243c7d,
            #15bcbc
        );

    border-radius: 14px;
}

.contact-info-item span,
.contact-info-item strong,
.contact-info-item small {
    display: block;
}

.contact-info-item span {
    margin-bottom: 4px;

    color: #64748b;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}

.contact-info-item strong {
    color: #06101f;

    font-size: 14px;
}

.contact-info-item small {
    margin-top: 4px;

    color: #64748b;

    font-size: 12px;
}


/* FORM */

.contact-modern-form {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5eaf2;
    border-radius: 26px;

    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.09);
}

.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 14px;
}

.contact-modern-form input,
.contact-modern-form textarea {
    width: 100%;

    padding: 17px 18px;

    color: #06101f;

    background: #f8fafc;

    border: 1px solid #e5eaf2;
    border-radius: 14px;

    outline: none;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
    border-color: #15bcbc;

    box-shadow:
        0 0 0 4px rgba(21, 188, 188, 0.10);
}

.contact-modern-form textarea {
    resize: vertical;

    margin-bottom: 16px;
}

.contact-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 14px 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f47421,
            #ff922f
        );

    border: 0;
    border-radius: 999px;

    font-weight: 900;
}


/* MAP */

.contact-map-section {
    margin-top: 90px;
}

.contact-map-heading {
    margin-bottom: 28px;
}

.contact-map-heading span {
    display: block;

    margin-bottom: 9px;

    color: #f47421;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-map-heading h2 {
    color: #06101f;

    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 900;
}

.contact-map-wrapper {
    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.16);
}

.contact-map-wrapper iframe {
    display: block;

    width: 100%;
    height: 520px;

    border: 0;
}


/* TABLET */

@media (max-width: 991.98px) {

    .contact-modern {
        padding: 80px 0;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-modern-image {
        min-height: 600px;
    }

}


/* MOBILE */

@media (max-width: 767.98px) {

    .contact-modern {
        padding: 65px 0;
    }

    .contact-modern-image {
        min-height: 470px;

        border-radius: 24px;
    }

    .contact-modern-content h1 {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .contact-modern-info {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-modern-form {
        padding: 20px;
    }

    .contact-map-section {
        margin-top: 60px;
    }

    .contact-map-wrapper iframe {
        height: 420px;
    }

}

/* CONTACT PAGE NAVBAR SPACING FIX */

.contact-modern {
    padding-top: 160px !important;
}

.contact-modern-heading {
    margin-bottom: 50px;
}

.contact-modern-heading > span {
    display: block;
    margin-bottom: 14px;

    color: #f47421;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-modern-heading h1 {
    max-width: 850px;

    margin: 0 0 20px;

    color: #06101f;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.02;

    letter-spacing: -2px;
}

.contact-modern-heading p {
    max-width: 900px;
    margin: 0;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {

    .contact-modern {
        padding-top: 130px !important;
    }

}

@media (max-width: 767.98px) {

    .contact-modern {
        padding-top: 110px !important;
    }

    .contact-modern-heading h1 {
        font-size: 2.7rem;
    }

}



/* CONTACT PAGE NAVBAR SPACING FIX */

.contact-modern {
    padding-top: 160px !important;
}

.contact-modern-heading {
    margin-bottom: 50px;
}

.contact-modern-heading > span {
    display: block;
    margin-bottom: 14px;

    color: #f47421;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-modern-heading h1 {
    max-width: 850px;

    margin: 0 0 20px;

    color: #06101f;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.02;

    letter-spacing: -2px;
}

.contact-modern-heading p {
    max-width: 900px;
    margin: 0;

    color: #64748b;

    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {

    .contact-modern {
        padding-top: 130px !important;
    }

}

@media (max-width: 767.98px) {

    .contact-modern {
        padding-top: 110px !important;
    }

    .contact-modern-heading h1 {
        font-size: 2.7rem;
    }

}




/* =========================================================
   FINAL REGIONAL OPERATIONS SECTION SPACING FIX
========================================================= */

.v4-regional-operations {
    padding-top: 120px !important;
}

@media (max-width: 991.98px) {

    .v4-regional-operations {
        padding-top: 90px !important;
    }

}

/* =========================================================
   BASA AFRICA — PREMIUM TEAM PAGE
   ========================================================= */

.team-page-hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(21, 188, 188, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071426 0%,
            #0b1c34 100%
        );
}

.team-page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    bottom: -230px;
    border-radius: 50%;
    border: 70px solid rgba(244, 116, 33, 0.08);
}

.team-page-hero .container {
    position: relative;
    z-index: 2;
}

.team-page-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #f47421;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-page-hero h1 {
    max-width: 850px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}

.team-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}


/* MAIN TEAM SECTION */

.team-page-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.team-page-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 60px;
}

.team-page-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #071426;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.team-page-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* TEAM GRID */

.team-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.team-page-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7ecf2;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.team-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}


/* TEAM IMAGE */

.team-page-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #e9eef5;
}

.team-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.team-page-card:hover .team-page-image img {
    transform: scale(1.05);
}

.team-page-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 20, 38, 0.92),
            rgba(7, 20, 38, 0.05)
        );
    transition: opacity 0.35s ease;
}

.team-page-card:hover .team-page-overlay {
    opacity: 1;
}

.team-profile-button {
    width: 100%;
    padding: 14px 22px;
    color: #ffffff;
    background: #f47421;
    border: 0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.team-profile-button:hover {
    background: #15bcbc;
}


/* PLACEHOLDER */

.team-page-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #94a3b8;
    background: #e9eef5;
    font-size: 90px;
}


/* CARD CONTENT */

.team-page-content {
    padding: 28px;
}

.team-page-content h3 {
    margin: 0 0 7px;
    color: #071426;
    font-size: 23px;
    font-weight: 900;
}

.team-page-position {
    display: block;
    margin-bottom: 16px;
    color: #15bcbc;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-page-content p {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}


/* SOCIAL LINKS */

.team-social-links {
    display: flex;
    gap: 9px;
}

.team-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #243c7d;
    background: #f1f5f9;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.team-social-links a:hover {
    color: #ffffff;
    background: #15bcbc;
    transform: translateY(-3px);
}


/* PROFILE MODAL */

.team-profile-modal {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.team-modal-close {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

.team-modal-image {
    height: 100%;
    min-height: 520px;
    background: #e9eef5;
}

.team-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
}

.team-modal-content {
    padding: 60px 45px;
}

.team-modal-content h2 {
    margin: 0 0 7px;
    color: #071426;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
}

.team-modal-content h4 {
    margin-bottom: 25px;
    color: #15bcbc;
    font-size: 16px;
    font-weight: 800;
}

.team-modal-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.team-modal-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.team-modal-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #243c7d;
    font-weight: 700;
    text-decoration: none;
}

.team-modal-contact i {
    color: #f47421;
}



/* =========================================================
   TEAM PAGE CTA — COMPACT PREMIUM VERSION
========================================================= */

.team-page-cta {
    padding: 60px 0;
    background: #071426;
}

.team-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.team-page-cta-inner span {
    display: block;
    margin-bottom: 10px;

    color: #15bcbc;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-page-cta-inner h2 {
    max-width: 720px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        3.3rem
    );

    font-weight: 900;
    line-height: 1.08;

    letter-spacing: -1.5px;
}

.team-page-cta-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 17px 30px;

    color: #ffffff;
    background: #f47421;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 15px 35px
        rgba(
            244,
            116,
            33,
            0.28
        );

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.team-page-cta-button:hover {
    color: #ffffff;

    background: #15bcbc;

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 40px
        rgba(
            21,
            188,
            188,
            0.25
        );
}

.team-page-cta-button i {
    transition:
        transform 0.3s ease;
}

.team-page-cta-button:hover i {
    transform:
        translateX(5px);
}


/* MOBILE */

@media (
    max-width:
    767.98px
) {

    .team-page-cta {
        padding:
            50px 0;
    }

    .team-page-cta-inner {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            28px;
    }

    .team-page-cta-button {
        width:
            100%;
    }

}


/* EMPTY STATE */

.team-empty-state {
    grid-column: 1 / -1;
    padding: 80px 30px;
    text-align: center;
}

.team-empty-state i {
    margin-bottom: 20px;
    color: #15bcbc;
    font-size: 60px;
}

.team-empty-state h3 {
    color: #071426;
    font-weight: 800;
}


/* TABLET */

@media (max-width: 991.98px) {

    .team-page-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* MOBILE */

@media (max-width: 767.98px) {

    .team-page-hero {
        padding: 90px 0 70px;
    }

    .team-page-hero h1 {
        letter-spacing: -2px;
    }

    .team-page-section {
        padding: 75px 0;
    }

    .team-page-grid {
        grid-template-columns: 1fr;
    }

    .team-page-image {
        height: 430px;
    }

    .team-page-overlay {
        opacity: 1;
        background:
            linear-gradient(
                to top,
                rgba(7, 20, 38, 0.72),
                transparent 55%
            );
    }

    .team-modal-image,
    .team-modal-image img {
        min-height: 400px;
    }

    .team-modal-content {
        padding: 40px 25px;
    }

.team-page-cta {
    padding: 50px 0;
}

.team-page-cta-button {
    width: 100%;
    justify-content: center;
}
