/* ============================================================
   SIFA BREED
   PREMIUM GLOBAL DESIGN SYSTEM
   ============================================================ */

:root {
    --green-950: #08251b;
    --green-900: #0b3325;
    --green-800: #104a34;
    --green-700: #176440;
    --green-600: #1e7a4e;
    --green-500: #29965f;

    --lime: #b7d83d;

    --cream: #f5f1e8;
    --white: #ffffff;
    --black: #07110d;

    --text: #26352f;
    --muted: #718078;

    --border: rgba(13, 55, 38, 0.12);

    --shadow-sm:
        0 8px 25px rgba(5, 34, 23, 0.06);

    --shadow-lg:
        0 25px 70px rgba(5, 34, 23, 0.14);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --container: 1240px;

    --transition:
        220ms cubic-bezier(.2,.8,.2,1);
}


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
    background: var(--green-950);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
}

.topbar__inner {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.topbar__links {
    display: flex;
    gap: 20px;
}

.topbar a {
    transition: color var(--transition);
}

.topbar a:hover {
    color: var(--lime);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 40px;
    left: 0;
    width: 100%;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        top var(--transition);
}

/* Header over hero */
.site-header:not(.scrolled) .main-nav a {
    color: rgba(255, 255, 255, 0.88);
}

.site-header:not(.scrolled) .main-nav a:hover {
    color: var(--lime);
    background: rgba(255, 255, 255, 0.10);
}

.site-header:not(.scrolled) .logo__name {
    color: #ffffff;
}

.site-header:not(.scrolled) .logo__sub {
    color: rgba(255, 255, 255, 0.68);
}

.site-header.scrolled {
    top: 0;

    background:
        rgba(255,255,255,.94);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.08);
}

.header__inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ============================================================
   LOGO
   ============================================================ */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-weight: 900;
    letter-spacing: -.04em;
}

.logo__mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--lime),
            #75b936
        );

    color: var(--green-950);

    font-size: 1.3rem;
}

.logo__text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.logo__name {
    font-size: 1.05rem;
}

.logo__sub {
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 10px 12px;

    border-radius: 10px;

    font-size: .88rem;
    font-weight: 650;

    color: var(--text);

    transition:
        background var(--transition),
        color var(--transition);
}

.main-nav a:hover {
    color: var(--green-700);
    background: rgba(41,150,95,.08);
}

.nav-cta {
    margin-left: 8px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: .9rem;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green-600),
            var(--green-800)
        );

    box-shadow:
        0 12px 30px rgba(23,100,64,.2);
}

.btn-primary:hover {
    box-shadow:
        0 18px 40px rgba(23,100,64,.28);
}

.btn-light {
    color: var(--green-900);
    background: var(--white);
}

.btn-outline {
    color: var(--green-800);
    border-color: var(--border);
    background: rgba(255,255,255,.72);
}

.btn-dark {
    color: var(--white);
    background: var(--green-950);
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 12px;

    background: rgba(255,255,255,.9);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 4px auto;

    background: var(--green-900);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(5,28,20,.94) 0%,
            rgba(5,28,20,.78) 43%,
            rgba(5,28,20,.28) 100%
        ),
        url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=85")
        center/cover no-repeat;
}

.hero::after {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 180px;

    background:
        linear-gradient(
            to top,
            rgba(255,255,255,.12),
            transparent
        );

    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;

    width: min(780px, 100%);

    padding-top: 100px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    color: var(--lime);

    font-size: .82rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .14em;
}

.hero__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--lime);
}

.hero h1 {
    margin: 0;

    max-width: 850px;

    font-size:
        clamp(3.2rem, 7vw, 6.5rem);

    line-height: .96;

    letter-spacing: -.065em;
}

.hero h1 span {
    color: var(--lime);
}

.hero__text {
    max-width: 690px;

    margin: 28px 0 34px;

    color: rgba(255,255,255,.78);

    font-size:
        clamp(1rem, 1.6vw, 1.18rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
    position: relative;
    z-index: 5;

    margin-top: -50px;
}

.trust-strip__inner {
    padding: 22px 28px;

    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: var(--radius-lg);

    background:
        rgba(255,255,255,.94);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;

    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #edf6dd;

    color: var(--green-700);
}

.trust-item strong {
    display: block;
    font-size: .88rem;
}

.trust-item span {
    display: block;
    font-size: .75rem;
    color: var(--muted);
}


/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: 110px 0;
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    color: var(--white);
    background: var(--green-950);
}

.section-heading {
    max-width: 780px;

    margin-bottom: 55px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green-600);

    font-size: .75rem;
    font-weight: 850;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;

    font-size:
        clamp(2.2rem, 4.5vw, 4rem);

    line-height: 1.02;

    letter-spacing: -.055em;

    color: var(--green-950);
}

.section--dark h2 {
    color: var(--white);
}

.section-heading p {
    margin-top: 20px;

    color: var(--muted);

    font-size: 1.05rem;
}

.section--dark .section-heading p {
    color: rgba(255,255,255,.65);
}


/* ============================================================
   INTRO
   ============================================================ */

.intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.intro-image {
    min-height: 600px;

    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            to top,
            rgba(5,35,23,.32),
            transparent
        ),
        url("https://images.unsplash.com/photo-1499529112087-3cb3b73cec95?auto=format&fit=crop&w=1200&q=85")
        center/cover;

    box-shadow: var(--shadow-lg);
}

.intro-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    margin: 30px 0;
    padding: 0;

    list-style: none;
}

.check-list li {
    position: relative;

    padding-left: 32px;

    margin: 14px 0;

    font-weight: 650;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--green-800);
    background: #e9f3cf;

    font-size: .72rem;
    font-weight: 900;
}


/* ============================================================
   PROGRAM GRID
   ============================================================ */

.program-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.program-card,
.project-card,
.product-card,
.news-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.program-card:hover,
.project-card:hover,
.product-card:hover,
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.program-card__image,
.project-card__image,
.product-card__image,
.news-card__image {
    position: relative;

    min-height: 240px;

    background:
        linear-gradient(
            135deg,
            #174f37,
            #5e8f3e
        )
        center/cover;
}

.program-card__category,
.project-card__status {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 11px;

    border-radius: 999px;

    color: var(--white);

    background: rgba(5,35,23,.72);

    backdrop-filter: blur(10px);

    font-size: .7rem;
    font-weight: 800;
}

.program-card__body,
.project-card__body,
.product-card__body,
.news-card__body {
    padding: 28px;
}

.program-card h3,
.project-card h3,
.product-card h3,
.news-card h3 {
    margin: 0 0 12px;

    color: var(--green-950);

    font-size: 1.35rem;

    line-height: 1.15;

    letter-spacing: -.025em;
}

.program-card p,
.project-card p,
.product-card p,
.news-card p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: .92rem;
}


/* ============================================================
   IMPACT
   ============================================================ */

.impact-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--green-950),
            var(--green-800)
        );

    color: var(--white);
}

.impact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    margin-top: 50px;

    background: rgba(255,255,255,.15);
}

.impact-card {
    padding: 42px 28px;

    background:
        rgba(255,255,255,.035);
}

.impact-card strong {
    display: block;

    margin-bottom: 8px;

    color: var(--lime);

    font-size:
        clamp(2.5rem, 4vw, 4rem);

    line-height: 1;

    letter-spacing: -.06em;
}

.impact-card span {
    color: rgba(255,255,255,.72);

    font-size: .9rem;
}


/* ============================================================
   CTA
   ============================================================ */

.cta {
    padding: 100px 0;
}

.cta__box {
    position: relative;

    overflow: hidden;

    padding:
        clamp(45px, 7vw, 90px);

    border-radius: var(--radius-xl);

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green-800),
            var(--green-950)
        );

    box-shadow: var(--shadow-lg);
}

.cta__box::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    bottom: -200px;

    border-radius: 50%;

    background:
        rgba(183,216,61,.12);
}

.cta__box h2 {
    max-width: 700px;

    margin: 0 0 20px;

    color: var(--white);

    font-size:
        clamp(2.3rem, 5vw, 4.7rem);

    line-height: .98;

    letter-spacing: -.055em;
}

.cta__box p {
    max-width: 670px;

    color: rgba(255,255,255,.7);
}

.cta__actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* ============================================================
   EVENTS
   ============================================================ */

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.event-card {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 24px;

    padding: 26px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.event-card__date {
    display: grid;
    place-items: center;

    min-height: 100px;

    padding: 10px;

    border-radius: 16px;

    color: var(--green-800);

    background: #eef5df;

    text-align: center;

    font-weight: 850;
}


/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
    padding: 35px;

    border-radius: var(--radius-lg);

    background: #eef5df;
}

.newsletter form {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.newsletter input {
    min-width: 0;
    flex: 1;

    height: 50px;

    padding: 0 18px;

    border: 1px solid var(--border);

    border-radius: 999px;

    outline: none;

    background: var(--white);
}

.newsletter input:focus {
    border-color: var(--green-500);
}

.form-message {
    margin-top: 10px;

    color: var(--green-700);

    font-size: .82rem;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding-top: 80px;

    color: rgba(255,255,255,.68);

    background: #061a13;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 55px;

    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 380px;
}

.footer-title {
    margin-bottom: 18px;

    color: var(--white);

    font-size: .9rem;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 9px;

    font-size: .88rem;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: .76rem;
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 3px;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}

/* =========================================================
   DONATION SUCCESS - HOMEPAGE BUTTON
   ========================================================= */

.success-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 13px 24px;
    border-radius: 8px;
    background: #006b55;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.success-home-button:hover {
    background: #005541;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 107, 85, 0.18);
}

.success-home-button:focus-visible {
    outline: 3px solid rgba(0, 107, 85, 0.25);
    outline-offset: 3px;
}

/* =========================================================
   SIFA BREED — ABOUT PAGE
   ========================================================= */

/* ---------- ABOUT HERO ---------- */

.about-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(0, 92, 70, 0.96),
            rgba(0, 58, 46, 0.88)
        ),
        url("../images/about-farm.jpg") center / cover no-repeat;
}

.about-hero-content {
    max-width: 850px;
    padding: 110px 0 100px;
}

.about-hero .section-eyebrow {
    color: #d8ee48;
}

.about-hero h1 {
    margin: 18px 0 24px;
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.about-hero h1 span {
    color: #d8ee48;
}

.about-hero p {
    max-width: 760px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------- INTRODUCTION ---------- */

.about-introduction {
    background: #ffffff;
}

.about-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 22px;
    background: #edf5f1;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.about-introduction-content h2 {
    margin: 12px 0 22px;
    color: #064f3f;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.12;
}

.about-introduction-content p {
    margin-bottom: 18px;
    color: #526b65;
    line-height: 1.8;
}

.about-location-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid #dcebe5;
    border-radius: 14px;
    background: #f5faf7;
}

.location-icon {
    font-size: 1.5rem;
}

.about-location-card strong {
    display: block;
    margin-bottom: 4px;
    color: #064f3f;
}

.about-location-card p {
    margin: 0;
}


/* ---------- PILLARS ---------- */

.about-pillars {
    background: #f5f9f7;
}

.section-heading.centered {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading.centered h2 {
    margin: 12px 0 16px;
    color: #064f3f;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.section-heading.centered p {
    color: #61766f;
    line-height: 1.8;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-pillar-card {
    padding: 30px;
    border: 1px solid #dcebe5;
    border-radius: 18px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 65, 50, 0.08);
}

.pillar-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #edf8d5;
    font-size: 1.55rem;
}

.about-pillar-card h3 {
    margin-bottom: 12px;
    color: #064f3f;
    font-size: 1.25rem;
}

.about-pillar-card p {
    margin: 0;
    color: #63766f;
    line-height: 1.75;
}


/* ---------- MISSION & VISION ---------- */

.about-mission-vision {
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mission-card,
.vision-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 50px;
    border-radius: 22px;
}

.mission-card {
    background: #064f3f;
}

.vision-card {
    background: #edf7d6;
}

.mission-number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.12;
}

.mission-card .section-eyebrow {
    color: #d8ee48;
}

.vision-card .section-eyebrow {
    color: #0a7358;
}

.mission-card h2,
.vision-card h2 {
    max-width: 570px;
    margin: 15px 0 22px;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.15;
}

.mission-card h2 {
    color: #ffffff;
}

.vision-card h2 {
    color: #064f3f;
}

.mission-card p,
.vision-card p {
    max-width: 600px;
    line-height: 1.8;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.82);
}

.vision-card p {
    color: #526b65;
}


/* ---------- VALUES ---------- */

.about-values {
    background: #f5f9f7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dcebe5;
}

.value-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #edf8d5;
    color: #0a7358;
    font-size: 1.15rem;
    font-weight: 800;
}

.value-card h3 {
    margin-bottom: 10px;
    color: #064f3f;
}

.value-card p {
    margin: 0;
    color: #63766f;
    line-height: 1.7;
}


/* ---------- OPPORTUNITIES ---------- */

.about-opportunities {
    background: #ffffff;
}

.about-opportunities-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.about-opportunities-content h2 {
    max-width: 650px;
    margin: 12px 0 20px;
    color: #064f3f;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.about-opportunities-content p {
    max-width: 680px;
    color: #5e716b;
    line-height: 1.8;
}

.about-check-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #365b51;
    font-weight: 600;
}

.about-check-list li span {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf8d5;
    color: #087456;
    font-size: 0.8rem;
    font-weight: 800;
}

.about-opportunities-panel {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #064f3f,
            #08745a
        );
}

.opportunity-panel-inner {
    width: 100%;
}

.panel-label {
    display: block;
    margin-bottom: 6px;
    color: #d8ee48;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.opportunity-panel-inner strong {
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.5rem;
}

.panel-arrow {
    display: block;
    margin: 4px 0 22px;
    color: #d8ee48;
    font-size: 1.7rem;
}


/* ---------- INTERNSHIP ---------- */

.about-internships {
    background: #f5f9f7;
}

.internship-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 24px;
    background: #edf7d6;
}

.internship-content {
    max-width: 700px;
}

.internship-content h2 {
    margin: 12px 0 16px;
    color: #064f3f;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.internship-content p {
    margin: 0;
    color: #526b65;
    line-height: 1.8;
}


/* ---------- FINAL CTA ---------- */

.about-final-cta {
    background: #064f3f;
}

.final-cta-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content .section-eyebrow {
    color: #d8ee48;
}

.final-cta-content h2 {
    margin: 14px 0 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.final-cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------- ABOUT PAGE BUTTONS ---------- */

.about-hero .btn-secondary,
.about-final-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}


/* ---------- PAGE LOADER ---------- */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #064f3f;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #d8ee48;
    border-radius: 50%;
    animation: sifa-loader-spin 0.8s linear infinite;
}

@keyframes sifa-loader-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ---------- BACK TO TOP ---------- */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #064f3f;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

