:root {
    --orange: #ee812c;
    --orange-dark: #df6d18;
    --blue: #1769ff;
    --dark: #0b1220;
    --dark-2: #111a2b;
    --text: #111827;
    --muted: #667085;
    --light: #f7f9fc;
    --border: #e5eaf1;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(15, 23, 42, .07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
}

.navbar-container {
    max-width: 1440px;
    min-height: 72px;
    margin: auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 25px;
    font-weight: 800;
    color: white;
}

.navbar-brand .brand-text span,
.mobile-brand span span,
.footer-brand > span span {
    color: var(--orange);
}

.navbar-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 25px 13px;
    color: #e6eaf1;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.desktop-link:hover,
.desktop-link.active {
    color: var(--orange);
}

.desktop-link.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--orange);
}

.login-button {
    border: 0;
    border-radius: 10px;
    padding: 12px 20px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .25s ease;
}

.login-button:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-size: 25px;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(380px, 82vw);
    height: 100vh;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -15px 0 45px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
}

.mobile-side-menu.show {
    transform: translateX(0);
}

.mobile-side-header {
    min-height: 76px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
}

.mobile-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 9px;
    background: transparent;
    color: white;
    font-size: 18px;
}

.mobile-navigation {
    padding: 15px 12px;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: #e8edf5;
    font-size: 16px;
    font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(238,129,44,.13);
    color: var(--orange);
}

.mobile-nav-icon {
    width: 28px;
    text-align: center;
    color: var(--orange);
}

.mobile-nav-arrow {
    margin-left: auto;
    opacity: .55;
}

.mobile-login-area {
    margin-top: auto;
    padding: 20px 15px 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-login {
    width: 100%;
    padding: 15px;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 26px 0 50px;
    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(238,129,44,.08),
            transparent 32%
        ),
        #fff;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 38px;
    color: #7a8597;
    font-size: 14px;
}

.breadcrumb-custom a:hover {
    color: var(--orange);
}

.breadcrumb-custom i {
    font-size: 11px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.section-label span {
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 10px;
}

.hero-title {
    max-width: 680px;
    margin: 0 0 18px;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.04em;
}

.hero-title span {
    display: block;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 28px;
    color: #5f6b7d;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.secondary-button,
.outline-button {
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.primary-button {
    background: var(--orange);
    color: #fff;
}

.primary-button:hover {
    color: #fff;
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.secondary-button {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.secondary-button:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-image-wrapper {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(238,129,44,.08);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    max-height: 450px;
    object-fit: contain;
}

.floating-icon {
    position: absolute;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4eb;
    color: var(--orange);
    font-size: 25px;
    box-shadow: var(--shadow);
}

.icon-book {
    top: 15%;
    left: 10%;
}

.icon-code {
    top: 20%;
    right: 10%;
}

.icon-chart {
    bottom: 16%;
    right: 2%;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    padding: 0 0 50px;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat-item {
    min-height: 105px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: #fff3e9;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-item strong {
    display: block;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.stat-item span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}


/* =====================================================
   MISSION
===================================================== */

.mission-section {
    padding: 35px 0 70px;
}

.mission-card {
    height: 100%;
    padding: 35px;
    border-radius: 14px;
    display: flex;
    gap: 25px;
}

.mission-card-orange {
    background: linear-gradient(
        135deg,
        #fff8f1,
        #fffdfb
    );
}

.mission-card-blue {
    background: linear-gradient(
        135deg,
        #f2f7ff,
        #fbfdff
    );
}

.mission-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.mission-card-orange .mission-icon {
    background: #ffebdc;
    color: var(--orange);
}

.mission-card-blue .mission-icon {
    background: #e5efff;
    color: var(--blue);
}

.mission-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
}

.mission-card p {
    margin-bottom: 20px;
    color: #596579;
    font-size: 14px;
}

.mission-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mission-card li {
    display: flex;
    gap: 9px;
    margin: 8px 0;
    color: #435066;
    font-size: 14px;
}

.mission-card-orange li i {
    color: var(--orange);
}

.mission-card-blue li i {
    color: var(--blue);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading > span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.section-heading h2 {
    margin: 7px 0;
    font-size: 32px;
    font-weight: 800;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}


/* =====================================================
   VALUES
===================================================== */

.values-section {
    padding: 55px 0 70px;
}

.value-card {
    height: 100%;
    padding: 15px;
    text-align: center;
}

.value-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff4eb;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.value-card h3 {
    margin-bottom: 9px;
    font-size: 18px;
    font-weight: 800;
}

.value-card p {
    max-width: 210px;
    margin: auto;
    color: #697586;
    font-size: 13px;
}


/* =====================================================
   TEAM
===================================================== */

.team-section {
    padding: 60px 0 75px;
    background: #fafbfd;
}

.team-card {
    height: 100%;
    padding: 25px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(15,23,42,.04);
    transition: .25s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-image-wrapper {
    width: 108px;
    height: 108px;
    margin: 0 auto 16px;
    padding: 4px;
    border-radius: 50%;
    background: #eef1f5;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
}

.team-role {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
}

.team-card p {
    min-height: 78px;
    margin: 14px 0;
    color: #687386;
    font-size: 13px;
    line-height: 1.6;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #536074;
    transition: .2s ease;
}

.team-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.team-button-wrapper {
    margin-top: 35px;
    text-align: center;
}

.outline-button {
    color: var(--orange);
    border: 1px solid var(--orange);
    background: #fff;
}

.outline-button:hover {
    background: var(--orange);
    color: #fff;
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 45px 0;
}

.cta-card {
    padding: 28px 30px;
    border-radius: 13px;
    background: linear-gradient(
        90deg,
        #fff5eb,
        #fffaf5
    );
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    border-radius: 50%;
    background: #ffe7d2;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
}

.cta-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.cta-actions {
    display: flex;
    gap: 10px;
}


/* =====================================================
   DONATION
===================================================== */

.donation-section {
    padding: 20px 0 65px;
}

.donation-card {
    padding: 28px;
    border: 1px solid #f5d6be;
    border-radius: 14px;
    background: #fffaf6;
    display: flex;
    align-items: center;
    gap: 20px;
}

.donation-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    background: #ffe8d7;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.donation-card > div:nth-child(2) {
    flex: 1;
}

.donation-label {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.donation-card h2 {
    margin: 4px 0;
    font-size: 20px;
    font-weight: 800;
}

.donation-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.donation-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.donation-actions a {
    min-width: 190px;
    padding: 11px 16px;
    border: 1px solid var(--orange);
    border-radius: 7px;
    text-align: center;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
}

.donation-actions a:first-child {
    background: var(--orange);
    color: white;
}

.donation-actions a:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
}


/* =====================================================
   FOOTER
===================================================== */

.main-footer {
    padding: 60px 0 0;
    background: #070d18;
    color: #dbe2ec;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-description {
    max-width: 340px;
    color: #8e9bad;
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #151f30;
    color: #cdd5df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    background: var(--orange);
    color: #fff;
}

.main-footer h3 {
    margin-bottom: 17px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.main-footer .col-lg-2 a {
    display: block;
    margin-bottom: 8px;
    color: #8f9aac;
    font-size: 12px;
}

.main-footer .col-lg-2 a:hover {
    color: var(--orange);
}

.footer-stat {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-stat > i {
    color: var(--orange);
    font-size: 20px;
}

.footer-stat strong,
.footer-stat span {
    display: block;
}

.footer-stat strong {
    color: #fff;
    font-size: 14px;
}

.footer-stat span {
    color: #8f9aac;
    font-size: 11px;
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #788496;
    font-size: 12px;
}

.footer-bottom i {
    color: var(--orange);
}


/* =====================================================
   MODAL CONNEXION
===================================================== */

.login-modal {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.login-modal .modal-header {
    border: 0;
    padding-bottom: 0;
}

.login-modal .modal-body {
    padding: 20px 35px 35px;
    text-align: center;
}

.login-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff1e7;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.login-modal h2 {
    margin-bottom: 7px;
    font-size: 24px;
    font-weight: 800;
}

.login-modal p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.social-login {
    width: 100%;
    min-height: 52px;
    margin-bottom: 10px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.social-login .bi-chevron-right {
    margin-left: auto;
    color: #8993a3;
}

.google-login:hover,
.facebook-login:hover,
.icloud-login:hover {
    border-color: var(--orange);
}

.login-secure {
    margin-top: 18px;
    color: #718096;
    font-size: 12px;
}

.login-secure i {
    color: #18a56b;
    margin-right: 5px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .desktop-navigation {
        gap: 0;
    }

    .desktop-link {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .stats-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3) {
        border-right: 0;
    }

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-top: 1px solid var(--border);
    }

}


@media (max-width: 991px) {

    .navbar-container {
        padding: 0 20px;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-hero {
        padding-top: 20px;
    }

    .hero-title {
        font-size: 43px;
    }

    .hero-image-wrapper {
        min-height: 350px;
    }

    .cta-card,
    .donation-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cta-content,
    .donation-card > div:nth-child(2) {
        min-width: calc(100% - 90px);
    }

    .cta-actions,
    .donation-actions {
        width: 100%;
        flex-direction: row;
        margin-left: 87px;
    }

}


@media (max-width: 767px) {

    body {
        font-size: 15px;
    }

    .navbar-container {
        min-height: 64px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .about-hero {
        padding-bottom: 25px;
    }

    .breadcrumb-custom {
        margin-bottom: 25px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-image-wrapper {
        min-height: 280px;
    }

    .hero-image {
        max-height: 320px;
    }

    .floating-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .hero-image-glow {
        width: 270px;
        height: 270px;
    }

    .stats-card {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-item:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .mission-card {
        padding: 25px;
        flex-direction: column;
    }

    .mission-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .cta-card,
    .donation-card {
        padding: 22px;
    }

    .cta-content,
    .donation-card > div:nth-child(2) {
        min-width: 100%;
    }

    .cta-actions,
    .donation-actions {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
    }

    .cta-actions a,
    .donation-actions a {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 480px) {

    .navbar-container {
        padding: 0 14px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .navbar-logo {
        width: 27px;
        height: 27px;
    }

    .hero-title {
        font-size: 32px;
    }

    .mission-card p,
    .mission-card li {
        font-size: 13px;
    }

    .login-modal .modal-body {
        padding: 15px 20px 25px;
    }

}