/* =========================================================
   KUPFERMAN FOUNDATION AFRICA
   MAIN WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   GOOGLE FONT FALLBACKS
========================================================= */

:root {
    --primary-green: #0b6b4f;
    --primary-green-dark: #074c39;
    --primary-green-light: #dff5ed;

    --secondary-green: #13a06f;
    --accent-green: #75d8b4;

    --soft-cream: #f8faf8;
    --soft-green: #eef8f4;
    --soft-grey: #f3f6f5;

    --white: #ffffff;
    --black: #101d18;

    --heading-color: #10281f;
    --text-color: #5f6f68;
    --light-text: #83918b;

    --border-color: #dfe9e4;
    --footer-color: #071f18;

    --shadow-sm:
        0 8px 24px rgba(10, 61, 45, 0.08);

    --shadow-md:
        0 18px 50px rgba(10, 61, 45, 0.12);

    --shadow-lg:
        0 30px 80px rgba(10, 61, 45, 0.16);

    --transition:
        all 0.3s ease;

    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text-color);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: "DM Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--heading-color);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.18;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    outline: none;
}

button {
    border: 0;
}

.container {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 88px 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(19, 160, 111, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.top-contact-bar {
    position: relative;
    z-index: 1050;
    background: var(--primary-green-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.top-contact-wrapper {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-contact-left a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
}

.top-contact-left a:hover {
    color: var(--white);
}

.top-contact-left i {
    color: var(--accent-green);
    font-size: 14px;
}

.top-contact-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.top-contact-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.top-contact-socials a:hover {
    color: var(--primary-green-dark);
    background: var(--accent-green);
    transform: translateY(-2px);
}


/* =========================================================
   NAVBAR
========================================================= */

.foundation-navbar {
    min-height: 86px;
    padding: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(11, 107, 79, 0.08);
    box-shadow: 0 6px 24px rgba(6, 51, 38, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.foundation-navbar .container {
    min-height: 86px;
}

.foundation-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 0;
}

.brand-logo-wrapper {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    color: var(--heading-color);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.brand-location {
    margin-top: 3px;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.foundation-navbar .navbar-nav {
    gap: 7px;
}

.foundation-navbar .nav-link {
    position: relative;
    padding: 31px 12px;
    color: #3f514a;
    font-size: 14px;
    font-weight: 700;
}

.foundation-navbar .nav-link:hover,
.foundation-navbar .nav-link.active {
    color: var(--primary-green);
}

.foundation-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--secondary-green);
    transform: translateX(-50%);
    transition: var(--transition);
}

.foundation-navbar .nav-link:hover::after,
.foundation-navbar .nav-link.active::after {
    width: 24px;
}

.foundation-navbar .dropdown-toggle::after {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    background: transparent;
    transform: none;
}

.foundation-navbar .dropdown-toggle:hover::after {
    width: auto;
}

.foundation-dropdown {
    min-width: 245px;
    padding: 12px;
    margin-top: 0;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.foundation-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 11px;
    color: #42534c;
    font-size: 14px;
    font-weight: 700;
}

.foundation-dropdown .dropdown-item i {
    color: var(--secondary-green);
    font-size: 17px;
}

.foundation-dropdown .dropdown-item:hover {
    color: var(--primary-green-dark);
    background: var(--soft-green);
}

.nav-donate-item {
    margin-left: 8px;
}

.foundation-donate-btn {
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--secondary-green)
        );
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 10px 22px rgba(11, 107, 79, 0.22);
}

.foundation-donate-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(11, 107, 79, 0.28);
}

.foundation-toggler {
    width: 47px;
    height: 47px;
    padding: 11px;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--soft-green);
    box-shadow: none;
}

.foundation-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary-green-dark);
}


/* =========================================================
   HERO SECTION
========================================================= */

.foundation-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: var(--primary-green-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 26, 0.96) 0%,
            rgba(4, 35, 26, 0.88) 37%,
            rgba(4, 35, 26, 0.52) 68%,
            rgba(4, 35, 26, 0.18) 100%
        );
}

.hero-decoration {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-decoration-one {
    top: -170px;
    left: -170px;
    width: 460px;
    height: 460px;
    background:
        radial-gradient(
            circle,
            rgba(117, 216, 180, 0.24),
            transparent 70%
        );
}

.hero-decoration-two {
    right: 2%;
    bottom: -220px;
    width: 530px;
    height: 530px;
    background:
        radial-gradient(
            circle,
            rgba(19, 160, 111, 0.24),
            transparent 68%
        );
}

.hero-container {
    height: 100%;
}

.min-vh-hero {
    min-height: 620px;
}

.hero-content {
    max-width: 650px;
    padding: 62px 0 95px;
}

.hero-badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 15px 8px 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.hero-badge-icon {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    background: var(--accent-green);
    font-size: 13px;
}

.hero-content h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(42px, 4.6vw, 62px);
    letter-spacing: -0.045em;
}

.hero-content h1 span {
    display: block;
    color: var(--accent-green);
}

.hero-description {
    max-width: 570px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.hero-primary-btn {
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary-green-dark);
    background: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.18);
}

.hero-primary-btn:hover {
    color: var(--primary-green-dark);
    background: var(--accent-green);
    transform: translateY(-3px);
}

.hero-primary-btn i {
    transition: var(--transition);
}

.hero-primary-btn:hover i {
    transform: translateX(4px);
}

.hero-secondary-btn {
    min-height: 55px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--white);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
}

.hero-secondary-btn:hover {
    color: var(--accent-green);
}

.hero-play-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    background: var(--accent-green);
    box-shadow:
        0 0 0 7px rgba(117, 216, 180, 0.13);
}

.hero-play-icon i {
    margin-left: 2px;
    font-size: 20px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.hero-child-avatars {
    display: flex;
    align-items: center;
}

.hero-child-avatars img,
.avatar-more {
    width: 43px;
    height: 43px;
    margin-left: -10px;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-green);
}

.hero-child-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--secondary-green);
    font-size: 11px;
    font-weight: 800;
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.45;
}

.hero-trust-text strong {
    color: var(--white);
    font-size: 13px;
}

.hero-trust-text span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 31px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll-indicator i {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    animation: heroScroll 1.8s infinite;
}

@keyframes heroScroll {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   IMPACT STATISTICS
========================================================= */

.impact-section {
    position: relative;
    z-index: 10;
    margin-top: -55px;
}

.impact-card {
    overflow: hidden;
    border: 1px solid rgba(11, 107, 79, 0.09);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.impact-item {
    min-height: 118px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    position: relative;
}

.impact-item::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: 1px;
    height: calc(100% - 60px);
    background: var(--border-color);
}

.impact-card .col-lg-3:last-child .impact-item::after {
    display: none;
}

.impact-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 23px;
}

.impact-details h2 {
    color: var(--primary-green-dark);
    font-size: 26px;
    letter-spacing: -0.04em;
}

.impact-details p {
    margin-top: 4px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}


/* =========================================================
   SHARED SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 690px;
}

.section-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-label i {
    font-size: 13px;
}

.section-heading h2,
.gallery-heading h2 {
    color: var(--heading-color);
    font-size: clamp(32px, 3.3vw, 44px);
    letter-spacing: -0.045em;
}

.section-heading h2 span,
.gallery-heading h2 span {
    color: var(--primary-green);
}

.section-lead {
    margin-top: 17px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
}

.section-side-description {
    max-width: 450px;
    margin-left: auto;
    padding-bottom: 6px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.section-title-row {
    margin-bottom: 48px;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.home-about-section {
    background:
        linear-gradient(
            180deg,
            var(--white),
            #fbfdfc
        );
}

.about-image-layout {
    position: relative;
    min-height: 510px;
    padding-right: 60px;
    padding-bottom: 55px;
}

.about-main-image {
    position: relative;
    width: 86%;
    height: 445px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 35, 27, 0.17),
            transparent 42%
        );
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 195px;
    height: 195px;
    overflow: hidden;
    border: 9px solid var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-card {
    position: absolute;
    left: 30px;
    bottom: 25px;
    z-index: 4;
    max-width: 245px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    background: rgba(7, 76, 57, 0.93);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.experience-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    background: var(--accent-green);
}

.about-experience-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.about-experience-card strong {
    font-size: 14px;
}

.about-experience-card span:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.about-pattern {
    position: absolute;
    top: 35px;
    right: 24px;
    z-index: 0;
    width: 145px;
    height: 145px;
    opacity: 0.38;
    background-image:
        radial-gradient(
            var(--secondary-green) 1.6px,
            transparent 1.6px
        );
    background-size: 15px 15px;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    gap: 17px;
}

.about-feature-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 21px;
}

.about-feature h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.about-feature p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.65;
}

.about-button-wrapper {
    margin-top: 26px;
}

.section-primary-btn {
    min-height: 53px;
    padding: 14px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--primary-green);
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 13px 28px rgba(11, 107, 79, 0.2);
}

.section-primary-btn:hover {
    color: var(--white);
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.section-primary-btn i {
    transition: var(--transition);
}

.section-primary-btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   PROGRAMS SECTION
========================================================= */

.programs-section {
    position: relative;
    overflow: hidden;
    background: var(--soft-grey);
}

.programs-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(117, 216, 180, 0.22),
            transparent 67%
        );
}

.program-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 107, 79, 0.09);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(10, 61, 45, 0.07);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-md);
}

.program-card-image {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.program-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(6, 47, 35, 0.37),
            transparent 55%
        );
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.07);
}

.program-number {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    background: rgba(255, 255, 255, 0.9);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.program-card-body {
    position: relative;
    padding: 34px 25px 27px;
}

.program-icon {
    position: absolute;
    top: -29px;
    left: 24px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 6px solid var(--white);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.program-card-body h3 {
    margin-top: 11px;
    margin-bottom: 12px;
    font-size: 20px;
}

.program-card-body p {
    min-height: 92px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.72;
}

.program-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
}

.program-card-body a:hover {
    color: var(--primary-green-dark);
}

.program-card-body a i {
    transition: var(--transition);
}

.program-card-body a:hover i {
    transform: translateX(5px);
}

.programs-footer {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.programs-footer p {
    color: var(--text-color);
    font-size: 14px;
}

.programs-view-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-green-dark);
    font-size: 14px;
    font-weight: 800;
}

.programs-view-link span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-green);
    transition: var(--transition);
}

.programs-view-link:hover span {
    transform: translateX(4px);
    background: var(--secondary-green);
}


/* =========================================================
   FEATURED STORY
========================================================= */

.featured-story-section {
    background: var(--white);
}

.featured-story-card {
    overflow: hidden;
    border-radius: 30px;
    background: var(--primary-green-dark);
    box-shadow: var(--shadow-lg);
}

.featured-story-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.featured-story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 35, 25, 0.4),
            transparent 55%
        );
}

.featured-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
    padding: 10px 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--heading-color);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.featured-story-content {
    height: 100%;
    min-height: 450px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.light-label {
    color: var(--accent-green);
    background: rgba(255, 255, 255, 0.09);
}

.featured-story-content h2 {
    color: var(--white);
    font-size: clamp(31px, 3.2vw, 42px);
    letter-spacing: -0.045em;
}

.featured-story-content > p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.featured-story-content blockquote {
    position: relative;
    margin: 26px 0 0;
    padding: 20px 0 20px 21px;
    border-left: 3px solid var(--accent-green);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

.story-button {
    width: fit-content;
    min-height: 52px;
    margin-top: 29px;
    padding: 14px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--primary-green-dark);
    background: var(--accent-green);
    font-size: 14px;
    font-weight: 800;
}

.story-button:hover {
    color: var(--primary-green-dark);
    background: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   GALLERY PREVIEW
========================================================= */

.gallery-preview-section {
    background:
        linear-gradient(
            180deg,
            #fbfdfc,
            var(--soft-grey)
        );
}

.gallery-heading {
    max-width: 750px;
    margin: 0 auto 48px;
}

.gallery-heading .section-label {
    margin-left: auto;
    margin-right: auto;
}

.gallery-heading p {
    max-width: 620px;
    margin: 19px auto 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 18px;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.gallery-preview-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 42, 31, 0.7),
            transparent 65%
        );
    opacity: 0.78;
    transition: var(--transition);
}

.gallery-preview-item:hover::after {
    opacity: 1;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.07);
}

.gallery-large {
    grid-row: 1 / 3;
}

.gallery-wide {
    grid-column: 2 / 4;
}

.gallery-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 19px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.gallery-overlay i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    background: var(--white);
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-overlay i {
    transform: rotate(45deg);
    background: var(--accent-green);
}


/* =========================================================
   SUPPORT CTA SECTION
========================================================= */

.support-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    isolation: isolate;
    background: var(--primary-green-dark);
}

.support-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.support-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.support-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(3, 40, 29, 0.97),
            rgba(3, 40, 29, 0.87),
            rgba(3, 40, 29, 0.75)
        );
}

.support-content {
    max-width: 730px;
}

.support-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--accent-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-content h2 {
    color: var(--white);
    font-size: clamp(31px, 3.3vw, 44px);
    letter-spacing: -0.045em;
}

.support-content p {
    max-width: 650px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.support-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 17px;
}

.support-primary-btn {
    min-height: 57px;
    padding: 16px 25px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--primary-green-dark);
    background: var(--accent-green);
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.16);
}

.support-primary-btn:hover {
    color: var(--primary-green-dark);
    background: var(--white);
    transform: translateY(-3px);
}

.support-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
}

.support-secondary-link:hover {
    color: var(--accent-green);
}

.support-secondary-link i {
    transition: var(--transition);
}

.support-secondary-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    position: relative;
    z-index: 5;
    padding: 0 0 80px;
    background: var(--soft-grey);
}

.newsletter-card {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    padding: 39px 44px;
    border: 1px solid rgba(11, 107, 79, 0.09);
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.newsletter-decoration {
    position: absolute;
    top: -90px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(117, 216, 180, 0.32),
            transparent 65%
        );
}

.newsletter-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.newsletter-icon {
    width: 59px;
    height: 59px;
    flex: 0 0 59px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 25px;
}

.newsletter-heading h2 {
    margin-bottom: 6px;
    font-size: 23px;
}

.newsletter-heading p {
    color: var(--text-color);
    font-size: 13px;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-input-wrapper {
    min-height: 58px;
    padding: 6px 6px 6px 18px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    display: flex;
    align-items: center;
    background: var(--soft-grey);
}

.newsletter-input-wrapper > i {
    color: var(--primary-green);
    font-size: 18px;
}

.newsletter-input-wrapper input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 13px;
    border: 0;
    color: var(--heading-color);
    background: transparent;
    font-size: 14px;
}

.newsletter-input-wrapper input::placeholder {
    color: #8a9993;
}

.newsletter-input-wrapper button {
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    background: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.newsletter-input-wrapper button:hover {
    background: var(--primary-green-dark);
}

.newsletter-form small {
    display: block;
    margin-top: 9px;
    padding-left: 17px;
    color: var(--light-text);
    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.foundation-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    background: var(--footer-color);
}

.footer-main {
    padding: 68px 0 48px;
}

.footer-brand {
    max-width: 390px;
}

.footer-logo-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.footer-logo-link img {
    width: 57px;
    height: 57px;
    object-fit: contain;
    padding: 4px;
    border-radius: 15px;
    background: var(--white);
}

.footer-logo-link div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-link strong {
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.footer-logo-link span {
    margin-top: 3px;
    color: var(--accent-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand > p {
    max-width: 370px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

.footer-socials a {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    color: var(--primary-green-dark);
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-links a:hover {
    padding-left: 6px;
    color: var(--accent-green);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
}

.footer-contact-item > span {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
}

.footer-contact-item strong {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    min-height: 76px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-legal-links a:hover {
    color: var(--accent-green);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 23px;
    bottom: 23px;
    z-index: 1080;
    min-height: 52px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: #20b85a;
    font-size: 12px;
    font-weight: 800;
    box-shadow:
        0 16px 35px rgba(22, 153, 72, 0.3);
}

.floating-whatsapp i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #20b85a;
    background: var(--white);
    font-size: 19px;
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-3px);
    background: #159b49;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 90px;
    z-index: 1070;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-green-dark);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .container {
        max-width: 1220px;
    }

    .foundation-hero,
    .min-vh-hero {
        min-height: 650px;
    }

    .hero-content {
        max-width: 680px;
        padding: 70px 0 100px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .section-padding {
        padding: 94px 0;
    }

}


/* =========================================================
   LAPTOPS AND SMALL DESKTOPS
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .container {
        max-width: 960px;
    }

    .section-padding {
        padding: 72px 0;
    }

    .foundation-navbar,
    .foundation-navbar .container {
        min-height: 76px;
    }

    .brand-logo-wrapper {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .brand-name {
        font-size: 15px;
    }

    .foundation-navbar .nav-link {
        padding: 27px 8px;
        font-size: 12px;
    }

    .foundation-navbar .nav-link::after {
        bottom: 19px;
    }

    .foundation-donate-btn {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .foundation-hero,
    .min-vh-hero {
        min-height: 560px;
    }

    .hero-content {
        max-width: 570px;
        padding: 52px 0 82px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        max-width: 520px;
        font-size: 15px;
    }

    .hero-badge {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .hero-play-icon {
        width: 38px;
        height: 38px;
    }

    .hero-trust-row {
        margin-top: 25px;
    }

    .impact-section {
        margin-top: -42px;
    }

    .impact-item {
        min-height: 105px;
        padding: 20px 15px;
        gap: 12px;
    }

    .impact-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 18px;
    }

    .impact-details h2 {
        font-size: 23px;
    }

    .impact-details p {
        font-size: 11px;
    }

    .section-heading h2,
    .gallery-heading h2 {
        font-size: 39px;
    }

    .section-lead,
    .section-side-description {
        font-size: 14px;
    }

    .about-image-layout {
        min-height: 440px;
        padding-right: 45px;
    }

    .about-main-image {
        width: 87%;
        height: 390px;
    }

    .about-small-image {
        width: 170px;
        height: 170px;
    }

    .about-experience-card {
        max-width: 215px;
        padding: 14px 16px;
    }

    .program-card-image {
        height: 165px;
    }

    .program-card-body {
        padding: 31px 18px 22px;
    }

    .program-card-body h3 {
        font-size: 17px;
    }

    .program-card-body p {
        min-height: 82px;
        font-size: 12px;
    }

    .featured-story-image,
    .featured-story-content {
        min-height: 405px;
    }

    .featured-story-content {
        padding: 40px 36px;
    }

    .featured-story-content h2 {
        font-size: 35px;
    }

    .featured-story-content > p,
    .featured-story-content blockquote {
        font-size: 14px;
    }

    .gallery-preview-grid {
        grid-template-rows: 195px 195px;
    }

    .support-section {
        padding: 62px 0;
    }

    .support-content h2 {
        font-size: 38px;
    }

    .newsletter-card {
        padding: 32px 36px;
    }

    .footer-main {
        padding: 58px 0 42px;
    }

}


/* =========================================================
   TABLETS AND NAVBAR COLLAPSE
========================================================= */

@media (max-width: 991.98px) {

    .section-padding {
        padding: 85px 0;
    }

    .top-contact-bar {
        display: none;
    }

    .foundation-navbar,
    .foundation-navbar .container {
        min-height: 76px;
    }

    .brand-logo-wrapper {
        width: 51px;
        height: 51px;
        flex-basis: 51px;
        border-radius: 14px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-location {
        font-size: 10px;
    }

    .foundation-toggler {
        display: flex;
    }

    .foundation-navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 1px);
        left: 12px;
        right: 12px;
        padding: 17px;
        border: 1px solid var(--border-color);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

    .foundation-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 4px;
    }

    .foundation-navbar .nav-link {
        padding: 12px 13px;
        border-radius: 10px;
    }

    .foundation-navbar .nav-link:hover,
    .foundation-navbar .nav-link.active {
        background: var(--soft-green);
    }

    .foundation-navbar .nav-link::after {
        display: none;
    }

    .foundation-navbar .dropdown-toggle::after {
        display: inline-block;
        float: right;
        margin-top: 8px;
    }

    .foundation-dropdown {
        min-width: 100%;
        margin-top: 4px;
        border-radius: 13px;
        box-shadow: none;
        background: var(--soft-grey);
    }

    .nav-donate-item {
        margin: 9px 0 0;
    }

    .foundation-donate-btn {
        width: 100%;
    }

    .foundation-hero,
    .min-vh-hero {
        min-height: 690px;
    }

    .hero-background img {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 35, 26, 0.96) 0%,
                rgba(4, 35, 26, 0.83) 56%,
                rgba(4, 35, 26, 0.42) 100%
            );
    }

    .hero-content {
        max-width: 660px;
        padding: 88px 0 120px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .impact-section {
        margin-top: -45px;
    }

    .impact-item {
        justify-content: flex-start;
        padding-left: 31px;
    }

    .impact-card .col-6:nth-child(2) .impact-item::after,
    .impact-card .col-6:nth-child(4) .impact-item::after {
        display: none;
    }

    .impact-card .col-6:nth-child(1),
    .impact-card .col-6:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    .about-image-layout {
        max-width: 680px;
        margin: 0 auto 15px;
    }

    .about-main-image {
        width: 89%;
        height: 570px;
    }

    .about-small-image {
        width: 240px;
        height: 240px;
    }

    .section-side-description {
        max-width: 100%;
        margin: 19px 0 0;
    }

    .featured-story-image {
        min-height: 470px;
    }

    .featured-story-content {
        min-height: auto;
        padding: 58px 48px;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 240px 240px;
    }

    .gallery-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-wide {
        grid-column: 1 / 3;
    }

    .support-actions {
        margin-top: 26px;
        align-items: flex-start;
    }

    .newsletter-card {
        padding: 34px;
    }

    .footer-main {
        padding-top: 70px;
    }

}


/* =========================================================
   MOBILE DEVICES
========================================================= */

@media (max-width: 767.98px) {

    body {
        font-size: 15px;
    }

    .section-padding {
        padding: 72px 0;
    }

    .foundation-navbar,
    .foundation-navbar .container {
        min-height: 70px;
    }

    .foundation-brand {
        max-width: calc(100% - 58px);
        gap: 9px;
    }

    .brand-logo-wrapper {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
    }

    .brand-name {
        max-width: 210px;
        overflow: hidden;
        font-size: 13px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-location {
        font-size: 9px;
    }

    .foundation-toggler {
        width: 43px;
        height: 43px;
        border-radius: 11px;
    }

    .foundation-hero,
    .min-vh-hero {
        min-height: 680px;
    }

    .hero-background img {
        object-position: 66% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 31, 23, 0.96) 0%,
                rgba(3, 31, 23, 0.88) 62%,
                rgba(3, 31, 23, 0.67) 100%
            );
    }

    .hero-content {
        padding: 75px 0 110px;
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .hero-content h1 {
        max-width: 540px;
        font-size: clamp(39px, 11vw, 52px);
        line-height: 1.12;
    }

    .hero-description {
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 27px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-secondary-btn {
        justify-content: flex-start;
        padding-left: 4px;
    }

    .hero-trust-row {
        margin-top: 32px;
    }

    .hero-child-avatars img,
    .avatar-more {
        width: 39px;
        height: 39px;
    }

    .hero-trust-text span {
        font-size: 10px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .impact-section {
        margin-top: -37px;
    }

    .impact-card {
        border-radius: 19px;
    }

    .impact-item {
        min-height: 125px;
        padding: 23px 14px;
        gap: 12px;
    }

    .impact-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px;
        font-size: 19px;
    }

    .impact-details h2 {
        font-size: 24px;
    }

    .impact-details p {
        font-size: 11px;
    }

    .section-heading h2,
    .gallery-heading h2 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .section-lead,
    .section-side-description,
    .gallery-heading p {
        font-size: 14px;
    }

    .section-title-row {
        margin-bottom: 34px;
    }

    .about-image-layout {
        min-height: auto;
        padding: 0 0 80px;
    }

    .about-main-image {
        width: 100%;
        height: 430px;
        border-radius: 23px;
    }

    .about-small-image {
        right: 8px;
        bottom: 0;
        width: 165px;
        height: 165px;
        border-width: 6px;
        border-radius: 20px;
    }

    .about-experience-card {
        left: 13px;
        bottom: 15px;
        max-width: 220px;
        padding: 13px 15px;
    }

    .experience-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }

    .about-pattern {
        display: none;
    }

    .about-feature-list {
        gap: 20px;
    }

    .about-feature-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .program-card-image {
        height: 235px;
    }

    .program-card-body p {
        min-height: auto;
    }

    .programs-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-story-card {
        border-radius: 23px;
    }

    .featured-story-image {
        min-height: 380px;
    }

    .featured-story-content {
        padding: 43px 27px;
    }

    .featured-story-content h2 {
        font-size: 34px;
    }

    .featured-story-content > p,
    .featured-story-content blockquote {
        font-size: 14px;
    }

    .gallery-preview-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .gallery-preview-item,
    .gallery-large,
    .gallery-wide {
        width: 100%;
        height: 290px;
    }

    .support-section {
        padding: 74px 0;
    }

    .support-content h2 {
        font-size: 34px;
    }

    .support-content p {
        font-size: 14px;
    }

    .support-actions {
        width: 100%;
    }

    .support-primary-btn {
        width: 100%;
    }

    .newsletter-section {
        padding-bottom: 65px;
    }

    .newsletter-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .newsletter-heading {
        align-items: flex-start;
    }

    .newsletter-icon {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
        border-radius: 14px;
        font-size: 20px;
    }

    .newsletter-heading h2 {
        font-size: 19px;
    }

    .newsletter-input-wrapper {
        padding: 10px;
        border-radius: 18px;
        flex-wrap: wrap;
    }

    .newsletter-input-wrapper > i {
        margin-left: 6px;
    }

    .newsletter-input-wrapper input {
        min-width: calc(100% - 38px);
    }

    .newsletter-input-wrapper button {
        width: 100%;
        margin-top: 5px;
    }

    .newsletter-form small {
        padding-left: 6px;
    }

    .footer-main {
        padding: 62px 0 45px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal-links {
        gap: 16px;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 8px;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp i {
        width: 36px;
        height: 36px;
    }

    .back-to-top {
        right: 19px;
        bottom: 79px;
        width: 41px;
        height: 41px;
    }

}


/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 575.98px) {

    .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .foundation-navbar .navbar-collapse {
        left: 9px;
        right: 9px;
    }

    .brand-name {
        max-width: 175px;
    }

    .foundation-hero,
    .min-vh-hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 63px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-trust-row {
        align-items: flex-start;
    }

    .hero-trust-text {
        padding-top: 3px;
    }

    .impact-item {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .impact-item::after {
        top: 20px;
        height: calc(100% - 40px);
    }

    .impact-details h2 {
        font-size: 23px;
    }

    .about-main-image {
        height: 365px;
    }

    .about-small-image {
        width: 145px;
        height: 145px;
    }

    .about-experience-card {
        max-width: 195px;
    }

    .about-experience-card strong {
        font-size: 12px;
    }

    .about-experience-card span:last-child {
        font-size: 9px;
    }

    .featured-story-image {
        min-height: 325px;
    }

    .featured-story-content h2 {
        font-size: 30px;
    }

    .gallery-preview-item,
    .gallery-large,
    .gallery-wide {
        height: 250px;
    }

    .support-content h2 {
        font-size: 30px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 390px) {

    .brand-name {
        max-width: 145px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-badge {
        padding-right: 12px;
    }

    .hero-badge-icon {
        width: 26px;
        height: 26px;
    }

    .hero-trust-text strong {
        font-size: 11px;
    }

    .impact-item {
        min-height: 133px;
    }

    .impact-details p {
        font-size: 10px;
    }

    .about-main-image {
        height: 330px;
    }

    .about-small-image {
        width: 125px;
        height: 125px;
    }

    .about-experience-card {
        left: 8px;
        max-width: 178px;
        gap: 8px;
    }

    .experience-icon {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   PRINT STYLES
========================================================= */

@media print {

    .top-contact-bar,
    .foundation-navbar,
    .hero-scroll-indicator,
    .floating-whatsapp,
    .back-to-top,
    .newsletter-section {
        display: none !important;
    }

    body {
        color: #000000;
        background: #ffffff;
    }

    .foundation-hero,
    .support-section,
    .featured-story-card {
        color: #000000;
        background: #ffffff;
    }
    

}
/* =========================================================
   PUBLIC REVIEWS PAGE
   Paste this at the END of your main style.css file.
========================================================= */

.public-reviews-page {
    overflow: hidden;
    background: var(--white);
}


/* ================= HERO ================= */

.public-reviews-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 145px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-green-dark) 0%,
            #075f46 52%,
            var(--primary-green) 100%
        );
}

.public-reviews-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );
    background-size: 27px 27px;
}

.public-reviews-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.glow-one {
    top: -240px;
    right: -170px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow:
        0 0 0 85px rgba(255, 255, 255, 0.025),
        0 0 0 170px rgba(255, 255, 255, 0.018);
}

.glow-two {
    left: -180px;
    bottom: -300px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(
            circle,
            rgba(117, 216, 180, 0.27),
            transparent 68%
        );
}

.public-reviews-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.public-reviews-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--accent-green);
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.public-reviews-hero-content h1 {
    color: var(--white);
    font-size: clamp(43px, 5vw, 66px);
    letter-spacing: -0.055em;
}

.public-reviews-hero-content h1 span {
    display: block;
    color: var(--accent-green);
}

.public-reviews-hero-content > p {
    max-width: 600px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.8;
}

.public-reviews-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.public-reviews-main-btn,
.public-reviews-outline-btn {
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}

.public-reviews-main-btn {
    color: var(--primary-green-dark);
    background: var(--accent-green);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.17);
}

.public-reviews-main-btn:hover {
    color: var(--primary-green-dark);
    background: var(--white);
    transform: translateY(-3px);
}

.public-reviews-outline-btn {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
}

.public-reviews-outline-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}


/* ================= RATING CARD ================= */

.public-rating-card {
    position: relative;
    z-index: 2;
    max-width: 410px;
    margin-left: auto;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.public-rating-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.public-rating-top span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.public-rating-top i {
    color: var(--accent-green);
    font-size: 20px;
}

.public-rating-number {
    display: block;
    margin-top: 13px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
}

.public-rating-stars {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    color: #ffd66b;
    font-size: 18px;
}

.public-rating-card > p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.public-rating-card > p strong {
    color: var(--white);
}

.public-rating-message {
    margin-top: 26px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    gap: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
}

.public-rating-message i {
    color: var(--accent-green);
    font-size: 27px;
    line-height: 1;
}


/* ================= OVERVIEW ================= */

.public-review-overview {
    position: relative;
    z-index: 8;
    margin-top: -55px;
}

.public-review-overview-card {
    overflow: hidden;
    border: 1px solid rgba(11, 107, 79, 0.08);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.public-review-overview-item {
    position: relative;
    min-height: 118px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.public-review-overview-item::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    width: 1px;
    height: calc(100% - 54px);
    background: var(--border-color);
}

.public-review-overview-card
.col-md-4:last-child
.public-review-overview-item::after {
    display: none;
}

.public-review-overview-item > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 21px;
}

.public-review-overview-item div {
    display: flex;
    flex-direction: column;
}

.public-review-overview-item strong {
    color: var(--primary-green-dark);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.public-review-overview-item small {
    margin-top: 7px;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 700;
}


/* ================= REVIEWS LIST ================= */

.public-reviews-list {
    background:
        linear-gradient(
            180deg,
            #fbfdfc,
            var(--soft-grey)
        );
}

.public-review-heading-row {
    margin-bottom: 45px;
}

.public-review-heading-text {
    max-width: 470px;
    margin-left: auto;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.public-review-card {
    height: 100%;
    min-height: 350px;
    padding: 29px;
    border: 1px solid rgba(11, 107, 79, 0.09);
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow:
        0 13px 35px rgba(10, 61, 45, 0.07);
    transition: var(--transition);
}

.public-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(19, 160, 111, 0.22);
    box-shadow: var(--shadow-md);
}

.public-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.public-review-quote {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 25px;
}

.public-review-stars {
    display: flex;
    gap: 4px;
    color: #efb632;
    font-size: 13px;
}

.public-review-card > p {
    flex: 1;
    margin-top: 25px;
    color: #53655e;
    font-size: 15px;
    line-height: 1.85;
}

.public-review-author {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.public-review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--secondary-green)
        );
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.public-review-author div {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.public-review-author strong {
    overflow: hidden;
    color: var(--heading-color);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-review-author small {
    margin-top: 3px;
    color: var(--light-text);
    font-size: 11px;
}

.public-review-check {
    color: var(--secondary-green);
    font-size: 18px;
}


/* ================= EMPTY ================= */

.public-review-empty {
    max-width: 680px;
    margin: 0 auto;
    padding: 65px 35px;
    border: 1px dashed rgba(11, 107, 79, 0.25);
    border-radius: 26px;
    text-align: center;
    background: var(--white);
}

.public-review-empty > span {
    width: 76px;
    height: 76px;
    margin: 0 auto 23px;
    border-radius: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: var(--soft-green);
    font-size: 32px;
}

.public-review-empty h3 {
    font-size: 25px;
}

.public-review-empty p {
    max-width: 460px;
    margin: 12px auto 24px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.75;
}


/* ================= PAGINATION ================= */

.public-review-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
}

.public-review-pagination a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    background: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.public-review-pagination a:hover,
.public-review-pagination a.active {
    color: var(--white);
    border-color: var(--primary-green);
    background: var(--primary-green);
    transform: translateY(-2px);
}


/* ================= FORM ================= */

.public-review-form-section {
    background: var(--white);
}

.public-review-form-card {
    overflow: hidden;
    border: 1px solid rgba(11, 107, 79, 0.09);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.public-review-form-intro {
    position: relative;
    height: 100%;
    min-height: 610px;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--primary-green-dark),
            var(--primary-green)
        );
}

.public-review-form-intro::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(117, 216, 180, 0.3),
            transparent 67%
        );
}

.public-review-form-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 15px;
    color: var(--accent-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.public-review-form-intro h2 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: clamp(31px, 3.5vw, 44px);
    letter-spacing: -0.045em;
}

.public-review-form-intro > p {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

.public-review-form-note {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    gap: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
}

.public-review-form-note i {
    color: var(--accent-green);
    font-size: 21px;
}

.public-review-form-wrapper {
    height: 100%;
    min-height: 610px;
    padding: 52px;
    display: flex;
    align-items: center;
    background: var(--white);
}

.public-review-form {
    width: 100%;
}

.public-review-form label,
.public-review-rating-label {
    display: block;
    margin-bottom: 9px;
    color: var(--heading-color);
    font-size: 12px;
    font-weight: 800;
}

.public-review-input {
    min-height: 55px;
    padding: 0 17px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--soft-grey);
    transition: var(--transition);
}

.public-review-input:focus-within {
    border-color: rgba(19, 160, 111, 0.5);
    background: var(--white);
    box-shadow:
        0 0 0 4px rgba(19, 160, 111, 0.08);
}

.public-review-input > i {
    color: var(--primary-green);
    font-size: 17px;
}

.public-review-input input,
.public-review-input textarea {
    width: 100%;
    border: 0;
    color: var(--heading-color);
    background: transparent;
    font-size: 13px;
}

.public-review-input input {
    min-height: 53px;
}

.public-review-input textarea {
    min-height: 145px;
    padding: 16px 0;
    resize: vertical;
}

.public-review-input input::placeholder,
.public-review-input textarea::placeholder {
    color: #92a099;
}

.public-review-textarea {
    align-items: flex-start;
}

.public-review-textarea > i {
    margin-top: 18px;
}

.public-review-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 7px;
}

.public-review-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.public-review-rating label {
    margin: 0;
    color: #d4ddd8;
    cursor: pointer;
    font-size: 27px;
    transition: var(--transition);
}

.public-review-rating label:hover,
.public-review-rating label:hover ~ label,
.public-review-rating input:checked ~ label {
    color: #efb632;
    transform: translateY(-2px);
}

.public-review-submit {
    min-height: 55px;
    padding: 14px 23px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--secondary-green)
        );
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 14px 30px rgba(11, 107, 79, 0.21);
    transition: var(--transition);
}

.public-review-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
}

.review-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991.98px) {

    .public-reviews-hero {
        padding: 90px 0 125px;
    }

    .public-rating-card {
        max-width: 100%;
        margin: 0;
    }

    .public-review-heading-text {
        max-width: 100%;
        margin: 0;
    }

    .public-review-form-intro,
    .public-review-form-wrapper {
        min-height: auto;
    }

    .public-review-form-intro {
        padding: 50px 42px;
    }

    .public-review-form-wrapper {
        padding: 46px 42px;
    }

}

@media (max-width: 767.98px) {

    .public-reviews-hero {
        padding: 73px 0 110px;
    }

    .public-reviews-hero-content h1 {
        font-size: clamp(38px, 11vw, 51px);
    }

    .public-reviews-hero-content > p {
        font-size: 14px;
    }

    .public-reviews-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .public-reviews-main-btn,
    .public-reviews-outline-btn {
        width: 100%;
    }

    .public-rating-card {
        padding: 29px 25px;
        border-radius: 22px;
    }

    .public-rating-number {
        font-size: 60px;
    }

    .public-review-overview {
        margin-top: -42px;
    }

    .public-review-overview-item {
        justify-content: flex-start;
        min-height: 100px;
        padding: 22px 25px;
    }

    .public-review-overview-item::after {
        top: auto;
        left: 25px;
        right: 25px;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .public-review-overview-card
    .col-md-4:last-child
    .public-review-overview-item::after {
        display: none;
    }

    .public-review-card {
        min-height: auto;
        padding: 25px;
    }

    .public-review-empty {
        padding: 48px 23px;
    }

    .public-review-form-card {
        border-radius: 23px;
    }

    .public-review-form-intro {
        padding: 42px 27px;
    }

    .public-review-form-wrapper {
        padding: 38px 25px;
    }

    .public-review-submit {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .public-reviews-hero {
        padding-top: 62px;
    }

    .public-reviews-hero-content h1 {
        font-size: 38px;
    }

    .public-review-overview-item strong {
        font-size: 22px;
    }

    .public-review-card > p {
        font-size: 14px;
    }

}

/* =========================================================
   PERMANENT STICKY NAVBAR FIX
   Keeps the navbar visible while scrolling on all devices.
========================================================= */

.foundation-navbar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100 !important;

    /* Prevent any scroll animation or old rule from hiding it */
    transform: none !important;
    translate: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    /* Sky-blue navbar background */
    background: #87ceeb !important;
    border-bottom: 1px solid rgba(7, 76, 57, 0.12);
    box-shadow: 0 8px 24px rgba(6, 51, 38, 0.10);
}

/* Keep the navbar's inner container above page content */
.foundation-navbar > .container {
    position: relative;
    z-index: 1101;
}

/* Ensure the mobile dropdown stays attached to the navbar */
@media (max-width: 991.98px) {

    .foundation-navbar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1200 !important;
    }

    .foundation-navbar .navbar-collapse {
        z-index: 1201 !important;
    }

}

/* Remove old legal footer links if any old markup remains */
.footer-legal-links {
    display: none !important;
}