:root {
    --jungle: #176b4d;
    --jungle-dark: #0b3d2e;
    --leaf: #2f7a58;
    --lime: #a9c96b;
    --cream: #f6f3e8;
    --white: #fff;
    --ink: #18352b;
    --muted: #60736b;
    --line: #dfe8e2;

    --shadow: 0 18px 50px rgba(11, 61, 46, .10);

    --radius: 20px;
    --pill: 999px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #fff;
    color: var(--ink);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

p {
    margin: 0 0 18px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1160px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(23, 107, 77, .12);
}

.nav-wrap {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;

    min-width: 0;
}

.brand-logo {
    width: 170px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    display: flex;
    align-items: center;

    gap: 24px;

    font-size: 14px;
    font-weight: 700;
}

.nav a {
    text-decoration: none;

    color: var(--ink);

    padding: 10px 0;
}

.nav a:hover,
.nav a.active {
    color: var(--jungle);
}

.nav-cta {
    background: var(--jungle) !important;
    color: #fff !important;

    padding: 11px 17px !important;

    border-radius: var(--pill);

    box-shadow:
        0 8px 22px rgba(23, 107, 77, .18);
}

.menu-btn {
    display: none;

    border: 0;
    background: none;

    font-size: 27px;

    color: var(--jungle);

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(11, 61, 46, .55),
            rgba(23, 107, 77, .35)
        ),
        url("off2.jpg") center / cover no-repeat;
}

.hero-inner {
    padding: 95px 0;

    color: #fff;

    max-width: 780px;
}

.eyebrow {
    display: inline-block;

    text-transform: uppercase;

    letter-spacing: .16em;

    font-size: 11px;
    font-weight: 800;

    color: var(--lime);

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);

    line-height: 1.05;

    margin-bottom: 20px;

    letter-spacing: -.035em;
}

.hero h1 span,
.hero h2 span {
    color: var(--lime);
}

.hero p {
    max-width: 700px;

    color: rgba(255, 255, 255, .82);

    font-size: 18px;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: var(--pill);

    padding: 13px 20px;

    font-weight: 800;

    font-size: 13px;
}

.btn-primary {
    background: var(--lime);

    color: var(--jungle-dark);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .45);

    color: #fff;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 85px 0;
}

.section.alt {
    background: var(--cream);
}

.section.dark {
    background: var(--jungle-dark);

    color: #fff;
}

.section-head {
    max-width: 760px;

    margin-bottom: 42px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section h2 {
    font-size: clamp(28px, 4vw, 45px);

    line-height: 1.12;

    letter-spacing: -.025em;

    margin-bottom: 16px;
}

.section h3 {
    line-height: 1.25;

    margin-bottom: 12px;
}

.section p {
    color: var(--muted);
}

.dark p {
    color: rgba(255, 255, 255, .73);
}

.lead {
    font-size: 18px;
}


/* =========================================================
   GRIDS
========================================================= */

.grid {
    display: grid;

    gap: 22px;
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


/* =========================================================
   CARDS
========================================================= */

.card {
    background: #fff;

    border: 1px solid var(--line);

    border-radius: var(--radius);

    padding: 27px;

    box-shadow:
        0 8px 30px rgba(11, 61, 46, .04);
}

.alt .card {
    background: #fff;
}

.card .icon {
    width: 46px;
    height: 46px;

    border-radius: 14px;

    background:
        rgba(47, 122, 88, .10);

    display: grid;
    place-items: center;

    color: var(--jungle);

    font-size: 20px;

    margin-bottom: 18px;
}

.number {
    font-size: 12px;

    font-weight: 900;

    letter-spacing: .14em;

    color: var(--leaf);

    margin-bottom: 10px;
}


/* =========================================================
   SPLIT CONTENT
========================================================= */

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}

.photo {
    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow);
}

.photo img {
    width: 100%;

    height: 420px;

    object-fit: cover;
}


/* =========================================================
   LISTS
========================================================= */

.list {
    padding-left: 20px;

    color: var(--muted);
}

.list li {
    margin: 7px 0;
}


/* =========================================================
   QUOTE
========================================================= */

.quote {
    border-left: 4px solid var(--lime);

    padding: 18px 22px;

    background:
        rgba(169, 201, 107, .09);

    font-size: 20px;

    font-weight: 700;

    color: var(--jungle-dark);

    border-radius:
        0 14px 14px 0;
}


/* =========================================================
   FLOW
========================================================= */

.flow {
    display: grid;

    gap: 12px;
}

.flow-item {
    display: flex;

    gap: 18px;

    align-items: center;

    padding: 18px 20px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 16px;
}

.flow-item .num {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--jungle);

    color: #fff;

    font-weight: 900;

    font-size: 12px;
}

.arrow {
    text-align: center;

    color: var(--lime);

    font-size: 22px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            var(--jungle-dark),
            var(--jungle)
        );

    color: #fff;
}

.cta .section-head {
    margin-bottom: 25px;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    padding: 75px 0;

    background: var(--cream);
}

.page-title h1 {
    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.05;

    margin-bottom: 12px;
}

.page-title p {
    max-width: 760px;

    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.gallery img {
    width: 100%;

    height: 210px;

    object-fit: cover;

    border-radius: 14px;
}


/* =========================================================
   ADVANCED GALLERY
========================================================= */
/* =========================================================
   PHOTO GALLERY
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
    position: relative;

    width: 100%;

    margin: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #eee;

    aspect-ratio: 4 / 5;

    isolation: isolate;
}


/*
   Larger featured cards
*/

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
    grid-column: span 2;

    aspect-ratio: 16 / 9;
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-card img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .45s ease;
}


/*
   Prevent the images from becoming excessively cropped
   on the larger featured cards.
*/

.gallery-card:nth-child(1) img,
.gallery-card:nth-child(6) img {
    object-position: center;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.gallery-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   CAPTION
========================================================= */

.gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 50px 16px 15px;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, .18) 25%,
            rgba(0, 0, 0, .72) 100%
        );

    color: #fff;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 700;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, .5);
}


/* =========================================================
   IMAGE SOURCE
========================================================= */

.gallery-source {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    line-height: 1.35;

    font-weight: 500;

    opacity: .82;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

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

        gap: 16px;
    }


    /*
       Featured images remain wider.
    */

    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        grid-column: span 2;

        aspect-ratio: 16 / 10;
    }


    .gallery-card {
        aspect-ratio: 4 / 5;
    }


    .gallery-caption {
        font-size: 14px;

        padding:
            45px 14px 13px;
    }

}


/* =========================================================
   SMALL TABLET / LARGE MOBILE
========================================================= */

@media (max-width: 768px) {

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

        gap: 14px;
    }


    /*
       All cards become equal-width on smaller screens.
       This prevents narrow/cut-off images.
    */

    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        grid-column: span 1;

        aspect-ratio: 4 / 5;
    }


    .gallery-card img,
    .gallery-card:nth-child(1) img,
    .gallery-card:nth-child(6) img {
        object-fit: cover;

        object-position: center;
    }


    .gallery-caption {
        padding:
            42px 12px 12px;

        font-size: 13px;
    }


    .gallery-source {
        font-size: 9px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /*
       One large image per row on phones.
       This gives the photos enough width to be properly seen.
    */

    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        grid-column: span 1;

        aspect-ratio: 16 / 11;

        min-height: 0;
    }


    .gallery-card img,
    .gallery-card:nth-child(1) img,
    .gallery-card:nth-child(6) img {
        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;
    }


    .gallery-caption {
        padding:
            55px 14px 14px;

        font-size: 14px;
    }


    .gallery-source {
        margin-top: 4px;

        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .gallery-grid {
        gap: 12px;
    }


    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        aspect-ratio: 4 / 3;
    }


    .gallery-caption {
        padding:
            45px 12px 12px;

        font-size: 13px;
    }

}
/* =========================================================
   SUPPORT
========================================================= */

.support-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 26px;

    align-items: stretch;
}

.support-panel {
    padding: 34px;

    border-radius: var(--radius);

    background: #fff;

    border: 1px solid var(--line);

    box-shadow: var(--shadow);
}

.support-panel.featured {
    background:
        linear-gradient(
            135deg,
            var(--jungle-dark),
            var(--jungle)
        );

    color: #fff;

    border: 0;
}

.support-panel.featured p {
    color: rgba(255, 255, 255, .78);
}

.support-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 24px;
}

.support-option {
    padding: 18px;

    border: 1px solid var(--line);

    border-radius: 16px;

    background: var(--cream);
}

.support-option i {
    font-size: 21px;

    color: var(--jungle);

    margin-bottom: 9px;
}

.support-option h3 {
    font-size: 16px;
}

.support-option p {
    font-size: 13px;

    margin: 0;
}

.donate-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 22px;
}


/* =========================================================
   PARTNER LOGOS
========================================================= */

.partner-logos {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.partner-logo-card {
    min-height: 150px;

    padding: 24px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(11, 61, 46, .05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.partner-logo-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.partner-logo-card img {
    width: min(190px, 85%);

    height: 64px;

    object-fit: contain;

    margin-bottom: 13px;
}

.partner-logo-card .logo-text {
    font-size: 18px;

    font-weight: 900;

    letter-spacing: -.02em;

    color: var(--jungle-dark);
}

.partner-logo-card small {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.45;
}

.partner-logo-card a {
    font-size: 11px;

    color: var(--leaf);

    font-weight: 800;

    text-decoration: none;

    margin-top: 6px;
}


/* =========================================================
   SOCIAL BUNDLE
========================================================= */

.social-bundle {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 28px;
}

.social-card {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 18px;

    border: 1px solid var(--line);

    border-radius: 16px;

    text-decoration: none;

    background: #fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.social-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}

.social-card i {
    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: var(--cream);

    display: grid;
    place-items: center;

    font-size: 19px;

    color: var(--jungle);
}

.social-card strong {
    display: block;

    font-size: 13px;
}

.social-card span {
    display: block;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--jungle-dark);

    color: #fff;

    padding: 65px 0 22px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr .8fr 1fr 1fr;

    gap: 42px;
}

.footer-brand img {
    width: 180px;

    max-height: 75px;

    object-fit: contain;
}

.footer p,
.footer a,
.footer span {
    color: rgba(255, 255, 255, .68);

    font-size: 13px;
}

.footer a {
    display: block;

    text-decoration: none;

    margin: 8px 0;
}

.footer a:hover {
    color: #fff;
}

.footer h4 {
    color: var(--lime);

    text-transform: uppercase;

    letter-spacing: .14em;

    font-size: 11px;

    margin-bottom: 18px;
}


/* =========================================================
   FOOTER SOCIALS
========================================================= */

.footer-socials {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 50%;

    display: grid;

    place-items: center !important;

    margin: 0;
}

.footer-socials a:hover {
    background: var(--lime);

    color: var(--jungle-dark);
}

.footer-socials a.whatsapp {
    color: #25d366;
}

.footer-socials a.email,
.footer-socials a.website {
    color: var(--lime);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, .1);

    margin-top: 42px;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 11px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.contact-item {
    display: flex;

    gap: 15px;

    align-items: flex-start;

    padding: 20px;

    border: 1px solid var(--line);

    border-radius: 16px;
}

.contact-item i {
    color: var(--leaf);

    font-size: 20px;

    margin-top: 4px;
}


/* =========================================================
   UTILITY CLASSES
========================================================= */

.badge-row {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.badge {
    padding: 8px 12px;

    border-radius: var(--pill);

    background:
        rgba(47, 122, 88, .10);

    color: var(--jungle);

    font-weight: 800;

    font-size: 12px;
}

.small {
    font-size: 13px;
}

.muted {
    color: var(--muted);
}

.center {
    text-align: center;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   DARK SOCIAL CARDS
========================================================= */

.section.dark .social-card {
    background: rgba(255, 255, 255, .08);

    border-color:
        rgba(255, 255, 255, .14);

    color: #fff;
}

.section.dark .social-card span {
    color: rgba(255, 255, 255, .65);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .nav {
        position: absolute;

        left: 4%;
        right: 4%;

        top: 78px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        background: #fff;

        padding: 18px;

        border: 1px solid var(--line);

        border-radius: 18px;

        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 11px 8px;
    }

    .menu-btn {
        display: block;
    }

    .grid-4 {
        grid-template-columns:
            repeat(2, 1fr);
    }

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

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

    .gallery {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-card:nth-child(n) {
        grid-column: span 6;
    }

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

    .partner-logos {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .social-bundle {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-inner {
        padding: 70px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

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

    .gallery img {
        height: 160px;
    }

    .brand-logo {
        width: 145px;
    }

    .support-options {
        grid-template-columns: 1fr;
    }

    .partner-logos,
    .social-bundle {
        grid-template-columns: 1fr;
    }

    .gallery-card:nth-child(n) {
        grid-column: span 12;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 230px;
    }
}


/* =========================================================
   OUR RESPONSE
   VOICE + KNOWLEDGE + LIVELIHOODS + ACTION
========================================================= */

/* Add your remaining "OUR RESPONSE" CSS below this point. */
.section.dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 220, 112, 0.10), transparent 30%),
    linear-gradient(135deg, #0c2c21 0%, #123d2d 55%, #0b2a20 100%);
  color: #fff;
  padding: 110px 0;
}

/* subtle decorative glow */
.section.dark::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 220, 112, 0.10);
  border-radius: 50%;
  right: -180px;
  top: -180px;
  pointer-events: none;
}

.section.dark::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(232, 184, 90, 0.08);
  border-radius: 50%;
  left: -130px;
  bottom: -130px;
  pointer-events: none;
}

/* Main two-column layout */
.section.dark .split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 80px;
  align-items: center;
}

/* Left content */
.section.dark .split > div:first-child {
  max-width: 560px;
}

.section.dark .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section.dark .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 20px;
}

.section.dark h2 {
  margin: 0 0 24px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.section.dark p {
  max-width: 580px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.8;
}

/* Button */
.section.dark .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 14px;
  background: var(--lime);
  color: #123d2d;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(201, 220, 112, 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.section.dark .btn-primary:hover {
  transform: translateY(-3px);
  background: #d8e98a;
  box-shadow: 0 16px 36px rgba(201, 220, 112, 0.24);
}

/* =========================================================
   FLOW
   ========================================================= */

.section.dark .flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Vertical connecting line */
.section.dark .flow::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  bottom: 25px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(201, 220, 112, 0.45),
    rgba(201, 220, 112, 0.04)
  );
  z-index: 0;
}

/* Flow card */
.section.dark .flow-item {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.section.dark .flow-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 220, 112, 0.45);
  background: rgba(201, 220, 112, 0.09);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

/* Number circle */
.section.dark .flow-item .num {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 220, 112, 0.35);
  border-radius: 50%;
  background: #123d2d;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 5px rgba(18, 61, 45, 0.7);
}

/* Flow text */
.section.dark .flow-item strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 750;
}

/* Highlight final step */
.section.dark .flow-item:last-child {
  border-color: rgba(232, 184, 90, 0.35);
  background:
    linear-gradient(
      135deg,
      rgba(232, 184, 90, 0.12),
      rgba(201, 220, 112, 0.07)
    );
}

.section.dark .flow-item:last-child .num {
  border-color: rgba(232, 184, 90, 0.5);
  color: var(--gold);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .section.dark {
    padding: 85px 0;
  }

  .section.dark .split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section.dark .split > div:first-child {
    max-width: 720px;
  }

  .section.dark h2 {
    max-width: 700px;
  }

  .section.dark p {
    max-width: 700px;
  }

  .section.dark .flow {
    max-width: 760px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .section.dark {
    padding: 70px 0;
  }

  .section.dark .split {
    gap: 38px;
  }

  .section.dark h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .section.dark p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .section.dark .flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section.dark .flow::before {
    left: 24px;
  }

  .section.dark .flow-item {
    min-height: 78px;
    padding: 14px 15px;
    border-radius: 15px;
  }

  .section.dark .flow-item .num {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 0.72rem;
  }

  .section.dark .flow-item strong {
    font-size: 0.9rem;
  }

  .section.dark .btn-primary {
    width: 100%;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .section.dark {
    padding: 60px 0;
  }

  .section.dark .flow-item {
    gap: 12px;
    padding: 12px;
  }

  .section.dark .flow-item .num {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .section.dark .flow-item strong {
    font-size: 0.84rem;
  }
}
/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;

    gap: 12px;

    z-index: 9999;
}


/* =========================================================
   BUTTON
========================================================= */

.floating-btn {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.floating-btn i {
    font-size: 24px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    background: #25D366;
}


/* =========================================================
   CALL
========================================================= */

.call-float {
    background: #2f7a58;
}


/* =========================================================
   HOVER
========================================================= */

.floating-btn:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.30);
}


/* =========================================================
   LABEL
========================================================= */

.floating-btn span {

    position: absolute;

    right: 64px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(8px);

    opacity: 0;

    visibility: hidden;

    white-space: nowrap;

    padding: 8px 12px;

    border-radius: 7px;

    background: var(--jungle-dark, #123d2c);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


.floating-btn:hover span {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================================
   WHATSAPP PULSE
========================================================= */

.whatsapp-float::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgba(37,211,102,.45);

    animation:
        whatsappPulse 2s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .floating-contact {

        right: 15px;
        bottom: 15px;

        gap: 10px;
    }

    .floating-btn {

        width: 50px;
        height: 50px;
    }

    .floating-btn i {

        font-size: 22px;
    }

    /* Hide text labels on small screens */

    .floating-btn span {

        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .floating-btn,
    .floating-btn span {

        transition: none;
    }

    .whatsapp-float::before {

        animation: none;
    }

}
/* =========================================================
   FOOTER SOCIAL ICONS — CLEAN & VISIBLE
   ========================================================= */

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07) !important;

  color: rgba(255, 255, 255, 0.88) !important;

  text-decoration: none !important;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Make the actual icons clearly visible */
.footer-socials a i {
  display: block;
  font-size: 17px;
  line-height: 1;
}

/* Remove the overwhelming lime hover */
.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.40) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

/* =========================================================
   INDIVIDUAL SOCIAL BRAND HOVERS
   ========================================================= */

/* X */
.footer-socials a[aria-label="X / Twitter"]:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

/* Facebook */
.footer-socials a[aria-label="Facebook"]:hover {
  background: rgba(24, 119, 242, 0.16) !important;
  color: #5b9df9 !important;
  border-color: rgba(24, 119, 242, 0.45) !important;
}

/* YouTube */
.footer-socials a[aria-label="YouTube"]:hover {
  background: rgba(255, 0, 0, 0.13) !important;
  color: #ff5555 !important;
  border-color: rgba(255, 70, 70, 0.42) !important;
}

/* Email */
.footer-socials a.email:hover {
  background: rgba(169, 201, 107, 0.14) !important;
  color: var(--lime) !important;
  border-color: rgba(169, 201, 107, 0.42) !important;
}

/* Website */
.footer-socials a.website:hover {
  background: rgba(47, 122, 88, 0.18) !important;
  color: #79c99e !important;
  border-color: rgba(121, 201, 158, 0.42) !important;
}

/* WhatsApp if you add it later */
.footer-socials a.whatsapp:hover {
  background: rgba(37, 211, 102, 0.13) !important;
  color: #4ee889 !important;
  border-color: rgba(37, 211, 102, 0.42) !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .footer-socials {
    gap: 9px;
    margin-top: 18px;
  }

  .footer-socials a {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
  }

  .footer-socials a i {
    font-size: 16px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .footer-socials {
    gap: 8px;
  }

  .footer-socials a {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
  }
}
