/* ===== ADIFA — Laravel 12 Website CSS ===== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;700&display=swap");

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

:root {
    --blue-dark: #003b8e;
    --blue-mid: #1565c0;
    --blue-bright: #1e88e5;
    --blue-light: #42a5f5;
    --yellow: #f5c518;
    --red: #e53935;
    --bg: #f5f8ff;
    --bg2: #eef3fc;
    --white: #ffffff;
    --text: #1a2540;
    --text-mid: #3a4f7a;
    --text-muted: #6b7faa;
    --border: rgba(21, 101, 192, 0.15);
    --border-glow: rgba(21, 101, 192, 0.35);
    --shadow: 0 4px 24px rgba(0, 59, 142, 0.1);
    --shadow-hover: 0 8px 36px rgba(0, 59, 142, 0.18);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
    line-height: 1.65;
}

/* ===== ANIMATED BACKGROUND CANVAS ===== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 59, 142, 0.07);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    height: 46px;
    width: auto;
}
.nav-logo-text {
    font-weight: 800;
    font-size: 1rem;
    color: var(--blue-dark);
    letter-spacing: 0.03em;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav-logo-text span {
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-mid);
    background: rgba(21, 101, 192, 0.08);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 7rem 0 4rem;
    background: linear-gradient(
        135deg,
        var(--blue-dark) 0%,
        var(--blue-mid) 100%
    );
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.page-header p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.8;
}
.breadcrumb {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    color: var(--blue-mid);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 4px;
    padding: 0.4rem 1.1rem;
    margin-bottom: 2rem;
    background: rgba(21, 101, 192, 0.06);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1e88e5;
    box-shadow: 0 0 8px rgba(30, 136, 229, 0.6);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}
.hero h1 {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--blue-dark);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
}
.hero h1 .hl {
    color: var(--blue-bright);
}
.hero-tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.55s;
}
.hero-desc {
    max-width: 580px;
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.7s;
}
.hero-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.9s;
}
.hero-code .code-accent {
    color: var(--blue-bright);
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 59, 142, 0.06);
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat {
    text-align: center;
    padding: 1.8rem 0.5rem;
    border-right: 1px solid var(--border);
}
.stat:last-child {
    border-right: none;
}
.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    display: block;
    line-height: 1.1;
}
.stat-plus {
    color: var(--blue-bright);
}
.stat-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}
.section-bg {
    background: var(--bg2);
}
.section-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.67rem;
    color: var(--blue-bright);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--blue-dark);
    margin-bottom: 0.75rem;
}
.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 560px;
}
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ===== PILAR CARDS ===== */
.pilar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pilar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.pilar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}
.p1::before {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright));
}
.p2::before {
    background: linear-gradient(90deg, var(--blue-bright), var(--yellow));
}
.p3::before {
    background: linear-gradient(90deg, var(--yellow), var(--red));
}
.pilar-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.pilar-card:hover::before {
    opacity: 1;
}
.pilar-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.6rem;
    color: rgba(107, 127, 170, 0.45);
    letter-spacing: 0.1em;
}
.pilar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}
.p1 .pilar-icon {
    background: rgba(0, 59, 142, 0.07);
    border: 1px solid rgba(0, 59, 142, 0.15);
}
.p2 .pilar-icon {
    background: rgba(30, 136, 229, 0.07);
    border: 1px solid rgba(30, 136, 229, 0.18);
}
.p3 .pilar-icon {
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.22);
}
.pilar-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--blue-dark);
}
.pilar-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.82;
}

/* ===== MEMBER GRID ===== */
.member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.member-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.mc-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.member-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.member-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.78;
}

/* ===== CTA ===== */
.cta-section {
    padding: 0 0 6rem;
}
.cta-box {
    background: linear-gradient(
        135deg,
        var(--blue-dark) 0%,
        var(--blue-mid) 100%
    );
    border-radius: 16px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    font-size: 0.97rem;
    line-height: 1.82;
}
.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: var(--blue-dark);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== ABOUT PAGE ===== */
.logo-center {
    text-align: center;
    margin-bottom: 3rem;
}
.logo-center img {
    max-width: 300px;
    width: 100%;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.founded-badge {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    color: var(--blue-bright);
    background: rgba(21, 101, 192, 0.07);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.88;
    margin-bottom: 1.2rem;
}
.about-visual {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: 16px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-visual h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.vm-item {
    margin-bottom: 1.5rem;
}
.vm-item h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}
.vm-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}
.nilai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.nilai-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue-bright);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.nilai-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.nilai-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.nilai-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== STRUKTUR PAGE ===== */
.org-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.67rem;
    color: var(--blue-bright);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.4rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.person-grid {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 0;
}
.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.person-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.person-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.person-card.featured {
    border-top: 4px solid var(--blue-dark);
}
.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.av-dark {
    background: var(--blue-dark);
}
.av-mid {
    background: var(--blue-mid);
}
.person-role {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-bright);
    display: block;
    margin-bottom: 0.35rem;
}
.person-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.2rem;
}
.person-cred {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.dept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.dept-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.dept-card:hover {
    box-shadow: var(--shadow-hover);
}
.dept-header {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: #fff;
}
.dept-header h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.dept-header span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}
.dept-body {
    padding: 1.5rem;
}
.dept-role {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-bright);
    display: block;
    margin-bottom: 0.3rem;
}
.dept-person {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.15rem;
}
.dept-cred {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.dept-anggota {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.dept-anggota-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(21, 101, 192, 0.06);
}
.dept-anggota-item:last-child {
    border-bottom: none;
}
.da-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--blue-mid);
}
.da-name {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}
.da-cred {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== PROGRAM PAGE ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}
.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.program-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.prog-top {
    padding: 2rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: #fff;
}
.prog-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}
.prog-top h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.prog-top p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}
.prog-body {
    padding: 1.5rem 2rem;
}
.prog-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(21, 101, 192, 0.07);
}
.prog-item:last-child {
    border-bottom: none;
}
.prog-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bright);
    flex-shrink: 0;
    margin-top: 8px;
}
.prog-item p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.72;
}
.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.focus-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.focus-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.fc-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}
.focus-card h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.4rem;
}
.focus-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== KONTAK PAGE ===== */
.ketua-card {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: 16px;
    padding: 3rem;
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 59, 142, 0.22);
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}
.ketua-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.ketua-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.ketua-info {
    position: relative;
    z-index: 1;
}
.ketua-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
}
.ketua-info h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.ketua-cred {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}
.ketua-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.ketua-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.kontak-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}
.kontak-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}
.kontak-item:last-child {
    border-bottom: none;
}
.kontak-ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.kontak-detail h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 0.3rem;
}
.kontak-detail p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.pimpinan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pimpinan-header {
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: #fff;
}
.pimpinan-header h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.pimpinan-header p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}
.pl-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(21, 101, 192, 0.07);
}
.pl-item:last-child {
    border-bottom: none;
}
.pl-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
}
.pl-role {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-bright);
    display: block;
    margin-bottom: 1px;
}
.pl-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-dark);
}
.pl-cred {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}
.map-info-bar {
    background: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}
.map-info-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.mic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.mit h5 {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 1px;
}
.mit p {
    font-size: 0.86rem;
    color: var(--text-mid);
}
.mit a {
    font-size: 0.86rem;
    color: var(--blue-mid);
    text-decoration: none;
}
.mit a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 2;
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 80px;
    /* filter: brightness(0) invert(1); */
}
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.932);
    font-family: "JetBrains Mono", monospace;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 0;
    }
    .nav-links.open {
        display: flex;
    }
    .pilar-grid,
    .member-grid,
    .nilai-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .person-grid.cols-3,
    .person-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .dept-grid,
    .program-grid {
        grid-template-columns: 1fr;
    }
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat:nth-child(2) {
        border-right: none;
    }
    .kontak-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ketua-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    .ketua-avatar {
        margin: 0 auto;
    }
    .ketua-badges {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cta-box {
        padding: 3rem 1.5rem;
    }
    .map-info-bar {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .person-grid.cols-3,
    .person-grid.cols-4 {
        grid-template-columns: 1fr;
    }
    .focus-grid {
        grid-template-columns: 1fr;
    }
}
