/* =========================================================
  01. VARIABLES
   ========================================================= */

:root {
    /* Brand colors */
    --primary: #062534;
    --primary-dark: #062534;
    --primary-deep: #062534;
    --accent: #EAF6FC;

    /* Background colors */
    --cream: #F4FAFD;
    --paper: #FFFFFF;

    /* Text colors */
    --text: #16232C;
    --text-muted: #5C7A8A;
    --text-light: #D9EFF8;

    /* Borders & effects */
    --border: rgba(14, 76, 107, 0.13);
    --border-light: rgba(255, 255, 255, 0.18);
    --shadow: 0 18px 45px rgba(14, 76, 107, 0.10);

    /* Layout */
    --container: 1160px;
    --radius: 22px;
    --radius-large: 30px;

    /* Fonts */
    --font-body: "Montserrat", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;

    /* Transition */
    --transition: 0.25s ease;
}


/* =========================================================
    02. RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.7;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}


/* =========================================================
   03. REUSABLE COMPONENTS
   ========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
}

.section h2 em,
.impact h2 em,
.hero h1 em {
    color: #6EC1E4;
    font-style: italic;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}

.section-intro {
    max-width: 460px;
    margin: 0;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-primary {
    color: #093549;
    background: var(--accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.47);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}


/* =========================================================
   04. HEADER & NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition), backdrop-filter var(--transition);
}

.nav {
    display: flex;
    height: 84px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    letter-spacing: 0.05em;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.brand-logo {
    display: block;
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.15;
}

.brand strong {
    font-size: 14px;
}

.brand small {
    margin-top: 4px;
    opacity: 0.8;
    font-size: 9px;
    letter-spacing: 0.24em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.nav-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #6EC1E4;
    opacity: 1;
}

.nav-links a.active {
    color: #6EC1E4;
    opacity: 1;
}

.nav-cta {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
}

/* Dropdown submenu (Profil: Pendiri / Organisasi / Pengurus) */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 84px;
}

.nav-item-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle {
    display: none;
    padding: 4px;
    color: inherit;
    background: transparent;
    border: 0;
}

.dropdown-toggle svg {
    display: block;
    transition: transform var(--transition);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    padding: 8px 0;
    background: var(--paper);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 50;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
}

.nav-dropdown a:hover {
    background: var(--accent);
    color: var(--primary);
}

.menu-btn {
    display: none;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 25px;
}


/* =========================================================
   05. HERO
   ========================================================= */

.hero {
     position: relative;
    display: flex;
    min-height: 760px;
    overflow: hidden;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255, 255, 255, 0.035),
            transparent 35%
        ),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero::after {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.03),
        0 0 0 140px rgba(255, 255, 255, 0.02);
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0 55%,
        rgba(110, 193, 228, 0.06) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 1.03;
    font-weight: 700;
}

.hero-copy {
    max-width: 570px;
    color: #D9EFF8;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.75;
    font-size: 9px;
    letter-spacing: 0.2em;
}

.hero-scroll span {
    margin-left: 8px;
    font-size: 16px;
}


/* =========================================================
   05b. PAGE HERO (untuk halaman terpisah: Pengurus, Partnership)
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 168px 0 76px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(110, 193, 228, 0.28), transparent 40%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.page-hero .eyebrow {
    color: #6EC1E4;
}

.page-hero h1 {
    max-width: 720px;
    margin: 14px auto 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 560px;
    margin: 16px auto 0;
    color: #D9EFF8;
    font-size: 15px;
}

/* =========================================================
   05c. PAGE ENTRANCE ANIMATION (Pengurus & Partnership)
   ========================================================= */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero .container > * {
    opacity: 0;
    animation: fadeSlideUp 0.7s ease forwards;
}

.page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.25s; }
.page-hero .container > *:nth-child(4) { animation-delay: 0.35s; }

.management-card,
.partner-card {
    opacity: 0;
    animation: fadeSlideUp 0.6s ease forwards;
}

.management-card:nth-child(1) { animation-delay: 0.45s; }
.management-card:nth-child(2) { animation-delay: 0.55s; }
.management-card:nth-child(3) { animation-delay: 0.65s; }
.management-card:nth-child(4) { animation-delay: 0.75s; }

.partner-card:nth-child(1) { animation-delay: 0.45s; }
.partner-card:nth-child(2) { animation-delay: 0.55s; }
.partner-card:nth-child(3) { animation-delay: 0.65s; }
.partner-card:nth-child(4) { animation-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
    .page-hero .container > *,
    .management-card,
    .partner-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.profile-nav {
    padding: 28px 0 0;
}

.profile-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.profile-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.profile-nav-list a span {
    font-size: 10px;
    color: var(--text-muted);
}

.profile-nav-list a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.profile-nav-list a:hover span {
    color: #fff;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.page-breadcrumb a:hover {
    color: #fff;
}


/* =========================================================
   06. PROGRAM SECTION
   ========================================================= */

.program {
    background: var(--cream);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.program-card.featured {
    color: #fff;
    background: var(--primary);
}

.program-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.program-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.program-card:hover .program-photo img {
    transform: scale(1.06);
}

.program-body {
    position: relative;
    flex: 1;
    padding: 26px 28px 28px;
}

.card-number {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 11px;
    color: #fff;
    background: rgba(9, 53, 73, 0.72);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    font-size: 11px;
    font-weight: 800;
}

.program-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-top: -54px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    place-items: center;
    color: var(--primary);
    background: var(--paper);
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(20, 30, 30, 0.18);
}

.program-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 25px;
}

.program-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

.program-card.featured p {
    color: #D9EFF8;
}

.program-card a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.program-card.featured a {
    color: #6EC1E4;
}


/* =========================================================
   07. FOUNDER SECTION
   ========================================================= */

.founder {
    background: var(--paper);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.portrait {
    position: relative;
    display: grid;
    min-height: 500px;
    overflow: hidden;
    place-items: center;
    background: linear-gradient(
        145deg,
        var(--primary-dark),
        var(--primary)
    );
    border-radius: 28px;
}

.portrait::before {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03);
    content: "";
}

.portrait-photo {
    position: relative;
    z-index: 1;
    align-self: end;
    width: 82%;
    max-width: 360px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

.portrait-caption {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 25px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.portrait-caption strong {
    font-size: 13px;
}

.founder-copy .lead {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 18px;
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.facts small,
.facts strong {
    display: block;
}

.facts small {
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.facts strong {
    margin-top: 5px;
    font-size: 13px;
}


/* =========================================================
   08. VISION & MISSION
   ========================================================= */

.vision {
    background: var(--cream);
}

.vision-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    padding: 60px;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-large);
}

.vision-box h2 {
    max-width: 480px;
}

.vision-text {
    align-self: center;
    padding-left: 45px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.vision-text p {
    margin: 0;
    color: #E3F1F8;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.5;
}

.mission {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
}

.mission ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.mission li:last-child {
    border-bottom: 1px solid var(--border);
}

.mission li span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.mission li p {
    margin: 0;
    font-weight: 600;
}


/* =========================================================
   09. ORGANIZATION
   ========================================================= */

.organization {
    background: var(--paper);
}

.org-list {
    border-top: 1px solid var(--border);
}

.org-list > div {
    display: grid;
    grid-template-columns: 60px 1fr 180px;
    gap: 20px;
    padding: 22px 0;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.org-list span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.org-list strong {
    font-size: 14px;
}

.org-list small {
    color: var(--text-muted);
    font-size: 11px;
    text-align: right;
}


/* =========================================================
   09b. MANAGEMENT / PENGURUS
   ========================================================= */

.management {
    background: var(--cream);
}

.org-group {
    margin-bottom: 58px;
}

.org-group:last-child {
    margin-bottom: 0;
}

.org-group-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 26px;
}

.org-group-head::before,
.org-group-head::after {
    content: "";
    height: 1px;
    background: var(--border);
    flex: 1;
}

.org-group-label {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 24px;
    text-align: center;
    white-space: nowrap;
}

.org-group-count {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.org-group-line {
    display: none;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(2, 385px);
    gap: 30px;
    justify-content: center;
}

.management-grid-2 {
    grid-template-columns: repeat(2, 385px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.management-card {
    padding: 28px;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.management-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.management-photo {
    width: 108px;
    height: 108px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-display);
    font-size: 34px;
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
}

.management-card small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   09c. PARTNER MARQUEE
   ========================================================= */

.partner-marquee {
    padding-bottom: 60px;
    background: var(--cream);
}

.partner-marquee .section-head {
    margin-bottom: 40px;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 40px;
    animation: marqueeScroll 22s linear infinite;
    will-change: transform;
}

.marquee + .marquee {
    margin-top: 24px;
}

.marquee-track-reverse {
    animation-name: marqueeScrollReverse;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 170px;
    height: 105px;
    padding: 18px;

    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.marquee-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 125px;
    max-height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.08);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 800px) {
    .marquee-track {
        gap: 28px;
        animation-duration: 20s;
    }

    .marquee-item {
        width: 145px;
        height: 95px;
        padding: 15px;
        border-radius: 16px;
    }

    .marquee-item img {
        max-width: 110px;
        max-height: 58px;
    }
}

@media (max-width: 520px) {
    .marquee-track {
        gap: 22px;
        animation-duration: 18s;
    }

    .marquee-item {
        width: 125px;
        height: 85px;
        padding: 12px;
        border-radius: 14px;
    }

    .marquee-item img {
        max-width: 95px;
        max-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}


/* =========================================================
   10. IMPACT / CTA
   ========================================================= */

.impact {
    padding: 100px 0;
    color: #fff;
    background: var(--primary-dark);
    text-align: center;
}

.impact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact h2 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
}

.impact p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 0 28px;
    color: #C7DCE8;
}


/* =========================================================
   11. FOOTER
   ========================================================= */

footer {
    position: relative;
    padding: 70px 0 20px;
    overflow: hidden;
    color: var(--text-light);
    background: var(--primary-deep);
}

footer::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 50%;
    width: 620px;
    height: 320px;
    background: radial-gradient(closest-side, rgba(110, 193, 228, 0.16), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col-contact {
    padding: 0 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-nav {
    justify-self: end;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-tagline {
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
}

.footer-grid p.eyebrow {
    text-align: inherit;
}

.footer-grid p {
    color: #AEC9D8;
    font-size: 12px;
}

.footer-grid a:not(.brand) {
    display: block;
    margin: 8px 0;
    font-size: 12px;
}

.footer-contact-title {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
}

.footer-contact-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 12px !important;
    padding: 12px 20px;
    max-width: 290px;
    color: var(--text-light) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--primary-deep) !important;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-contact-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-col-brand .footer-social,
.footer-col-nav .footer-social {
    justify-content: flex-start;
}

.footer-social a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-deep);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.copyright {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    color: #7B9AAE;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 10px;
    text-align: center;
}


/* =========================================================
   12. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 800px) {
    .nav-links {
        position: absolute;
        top: 84px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        background: var(--primary-dark);
        border-radius: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .nav-links a.nav-cta {
        display: block;
        margin-top: 10px;
        padding: 12px 16px;
        text-align: center;
    }

    .menu-btn {
        display: block;
    }

    .nav-item {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item-row {
        justify-content: space-between;
    }

    .nav-item-row a {
        flex: 1;
        padding: 12px 0;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
    }

    .nav-item.open .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 16px;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }

    .nav-item.open .nav-dropdown {
        max-height: 160px;
        padding: 0 0 4px 16px;
    }

    .nav-dropdown a {
        padding: 8px 0;
        color: var(--text-light);
        font-size: 11px;
        opacity: 0.85;
    }

    .hero {
        min-height: 700px;
    }

    .section {
        padding: 80px 0;
    }

    .section-head,
    .founder-grid,
    .vision-box,
    .mission,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .portrait {
        min-height: 430px;
    }

    .vision-box {
        padding: 38px;
    }

    .vision-text {
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

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

    .org-list > div {
        grid-template-columns: 40px 1fr;
    }

    .org-list small {
        grid-column: 2;
        text-align: left;
    }

    .footer-grid {
        gap: 40px;
        text-align: center;
    }

    .footer-col-contact {
        order: -1;
        padding: 0 0 30px;
        border-top: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-col-brand .brand,
    .footer-col-brand .footer-social,
    .footer-col-nav .footer-social {
        justify-content: center;
    }

    .footer-col-nav {
        justify-self: center;
    }

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

    .management-grid-2 {
        max-width: none;
    }

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

    .partner-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


/* =========================================================
   13. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

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

    .hero h1 {
        font-size: 49px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .section-head {
        margin-bottom: 35px;
    }

    .management-grid,
    .management-grid-2,
    .management-grid-4,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .org-group-head {
        gap: 10px;
    }

    .org-group-label {
        font-size: 20px;
    }

    .management-photo {
        aspect-ratio: 1 / 1.1;
    }

    .partner-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}