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

:root {
    --red: #D42020;
    --red-dk: #AF1A1A;
    --red-light: #fef2f2;
    --navy: #1E2D45;
    --navy-dk: #162238;
    --dark: #1A1A1A;
    --mid: #555;
    --light: #F6F6F6;
    --border: #E5E5E5;
    --white: #fff
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden
}

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

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 12.5px;
    color: #666
}

.topbar>div {
    padding: 0 32px
}

.tb-left {
    display: flex;
    gap: 24px;
    align-items: center
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.tb-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-dropdown {
    position: relative;
    display: inline-block
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    background: none;
    color: inherit;
    font-family: inherit;
    line-height: 1
}

.lang-btn .caret {
    font-size: 9px;
    opacity: .5;
    transition: transform .2s
}

.lang-dropdown:hover .lang-btn .caret {
    transform: rotate(180deg)
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 6px;
    background: #ffffff;
    min-width: 120px;
    z-index: 999
}

.lang-menu-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    overflow: hidden
}

.lang-dropdown:hover .lang-menu {
    display: block
}

.lang-dropdown:hover .lang-menu {
    display: block
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12.5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: .15s
}

.lang-opt:hover {
    background: #f5f5f5
}

.lang-opt.on {
    background: #fef2f2;
    color: var(--red);
    font-weight: 700
}

.flag-emoji {
    font-size: 18px;
    line-height: 1
}

.btn {
    padding: 7px 22px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .3px;
    border: none;
    transition: .2s
}

.btn-red {
    background: var(--red);
    color: #fff
}

.btn-red:hover {
    background: var(--red-dk)
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red)
}

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

nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 56px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
}

.nav-container {
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .8px;
    text-transform: uppercase;
    padding-left: 2px;
    position: absolute;
    bottom: -4px;
    right: 0px;
}

.mobile-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    border: 2px solid rgba(255, 255, 255, .3)
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--dark)
}

.logo-text span {
    color: var(--red)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-a {
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: .2s
}

.nav-a:hover {
    color: var(--red);
    background: var(--red-light)
}

.nav-a-active {
    color: #D42020 !important;
    background: #fef2f2 !important
}

.nav-dd {
    position: relative
}

.nav-dd-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 4px;
    min-width: 200px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E5E5E5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
    padding: 8px 0;
    z-index: 50
}

.nav-dd:hover .nav-dd-menu {
    opacity: 1;
    visibility: visible
}

.nav-dd-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    transition: all .15s
}

.nav-dd-link:hover {
    color: #D42020;
    background: #fef2f2
}

.nav-dd-link-active {
    color: #D42020 !important;
    background: #fef2f2 !important;
}

.caret {
    font-size: 9px;
    opacity: .55
}

.hero-wrap {
    max-width: 1200px;
    margin: 61px auto 40px;
    padding: 0 32px
}

.hero {
    display: grid;
    grid-template-columns: 451px 1fr;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, .13);
    min-height: 360px;
    max-height: 360px;
    overflow: hidden;
}

.hero-left {
    background: var(--red);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 360px;
    max-height: 360px;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1
}

.hero-sub {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid #fff;
    color: #fff;
    padding: 11px 26px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    width: fit-content;
    margin-top: 6px;
    transition: .2s;
    background: transparent
}

.hero-btn:hover {
    background: #fff;
    color: var(--red)
}

.hero-right {
    background: #1a1a3e;
    position: relative;
    min-height: 360px;
    max-height: 360px;
}

.sim-photo {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(145deg, #1a1a3e 0%, #2d2d6b 55%, #1b2d1b 100%)
}

.sim-banner {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 12px 22px;
    text-align: center
}

.sim-banner-title {
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px
}

.sim-banner-sub {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    margin-top: 3px;
    letter-spacing: 1px
}

.sim-people {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center
}

.sim-row {
    display: flex;
    gap: 8px;
    justify-content: center
}

.sil {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.sil-h {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35)
}

.sil-b {
    width: 20px;
    border-radius: 5px 5px 0 0;
    background: rgba(255, 255, 255, .2)
}

.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .2s
}

.dot.on {
    background: #fff
}

.tentang {
    max-width: 1200px;
    margin: 72px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.vid-wrap {
    position: relative
}

.vid-inner {
    position: relative;
    z-index: 2;
    border-radius: 0px 100px 0px 0px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .14);
    aspect-ratio: 16/10
}

.vid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.sim-field {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, #3a2a1a, #5a3a1a 40%, #2a3a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px
}

.sim-field-figs {
    display: flex;
    gap: 10px;
    align-items: flex-end
}

.play-btn {
    position: absolute;
    top: 44%;
    left: 44%;
    /* transform: translate(-50%, -50%); */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
    cursor: pointer;
    transition: .2s;
    z-index: 2;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1)
}

.play-tri {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 20px solid #1A1A1A;
    margin-left: 4px
}

.vid-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 12px;
    z-index: 1
}

.sec-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px
}

.red-line {
    width: 120px;
    height: 5px;
    background: var(--red);
    border-radius: 0;
    margin-bottom: 24px
}

.tentang-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: #5a5a5a;
    text-align: justify;
    margin-bottom: 26px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 26px
}

.stat {
    background: #f0f0f0;
    border: none;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: .2s;
    cursor: default
}

.stat:hover {
    background: #e8e8e8;
    transform: translateY(-2px)
}

.stat-n {
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    line-height: 1
}

.stat-l {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    margin-top: 6px
}

.btn-sel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .2s
}

.btn-sel:hover {
    background: var(--red-dk);
    transform: translateX(3px)
}

.acara-section {
    background: var(--red);
    padding: 64px 0 72px
}

.acara-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

.acara-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.acara-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff
}

.acara-line {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, .45);
    border-radius: 2px;
    margin-bottom: 36px
}

.btn-ev {
    background: #fff;
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: .2s
}

.btn-ev:hover {
    background: rgba(255, 255, 255, .88)
}

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

.ev-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
}

.ev-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

.ev-img-sim {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .5px
}

.ev-body {
    padding: 18px 20px 20px
}

.ev-meta {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.ev-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px
}

.ev-month {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .5px
}

.ev-day {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-top: 2px
}

.ev-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 6px
}

.ev-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6
}

.berita-section {
    padding: 72px 0
}

.berita-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.btn-selmore {
    background: var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .2s
}

.btn-selmore:hover {
    background: var(--red-dk)
}

.berita-carousel-wrap {
    position: relative;
    margin-top: 32px
}

.berita-grid {
    display: flex;
    gap: 20px
}

.berita-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    flex: 0 0 100%
}

.berita-empty-icon {
    margin-bottom: 16px;
    opacity: .4
}

.berita-empty-text {
    font-size: 15px;
    color: #999;
    font-weight: 500
}

.news-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: .2s
}

.news-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    transform: translateY(-3px)
}

.news-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.news-img-sim {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .5px
}

.news-body {
    padding: 16px
}

.news-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 8px
}

.news-desc {
    font-size: 11.5px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 8px
}

.news-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border)
}

.news-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px
}

.news-time {
    font-size: 11px;
    color: #bbb
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    transition: .2s;
    z-index: 10
}

.carousel-btn:hover {
    border-color: var(--red);
    color: var(--red)
}

.carousel-btn.prev {
    left: -65px
}

.carousel-btn.next {
    right: -65px
}

.carr-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* PILIHAN PROGRAM */
.pro-section {
    padding: 80px 0;
    background: #fff;
}

.pro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.pro-head {
    text-align: center;
    margin-bottom: 50px;
}

.pro-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.pro-head .red-line {
    margin: 0 auto 20px;
}

.pro-sub {
    font-size: 14.5px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pro-card {
    padding: 40px 30px;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.pro-card.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 32, 32, 0.2);
}

.pro-num {
    font-size: 32px;
    font-weight: 900;
    opacity: .15;
    margin-bottom: 20px;
}

.pro-card.active .pro-num {
    opacity: .4;
}

.pro-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

.pro-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: .85;
}

.pro-card:not(.active):hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

/* IKLAN / CTA */
.ads-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.ads-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.ads-content {
    background: var(--navy);
    border-radius: 24px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ads-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 32, 32, 0.1);
    z-index: 1;
}

.ads-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ads-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    max-width: 700px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ads-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.ads-btns {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.ads-btn-p {
    padding: 14px 32px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.ads-btn-s {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.ads-btn-p:hover {
    background: var(--red-dk);
    transform: translateY(-2px);
}

.ads-btn-s:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.testi-section {
    padding: 48px 32px 72px;
    max-width: 1200px;
    margin: 0 auto
}

.testi-card {
    background: var(--red);
    border-radius: 20px;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.testi-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}

.testi-label {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px
}

.testi-intro {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    text-align: justify
}

.testi-right {
    background: #fff;
    border-radius: 14px;
    padding: 28px 28px 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: start
}

.testi-photo {
    width: 160px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    background: #ddd;
    overflow: hidden
}

.testi-photo-sim {
    width: 160px;
    height: 180px;
    border-radius: 10px;
    background: linear-gradient(145deg, #8c9db5, #6a7d95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.testi-info {}

.testi-date {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px
}

.testi-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 4px
}

.testi-role {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 14px
}

.testi-text {
    font-size: 12px;
    color: #666;
    line-height: 1.75;
    text-align: justify
}

.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.testi-nav.l {
    left: 7px
}

.testi-nav.r {
    right: 7px
}

.testi-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s
}

.testi-nav-btn:hover {
    background: rgba(255, 255, 255, .35)
}

.testi-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 22px
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: .2s
}

.t-dot.on {
    background: #fff
}

.mitra-section {
    padding: 64px 32px 72px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto
}

.mitra-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px
}

.mitra-sub {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 48px
}

.mitra-img {
    margin-bottom: 40px;
    text-align: center
}

.mitra-img img {
    max-width: 100%;
    height: auto;
    display: inline-block
}

.btn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: var(--red);
    color: #fff;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .2s;
    gap: 8px
}

.btn-more:hover {
    background: var(--red-dk)
}

.cta-strip {
    background: var(--navy);
    padding: 22px 56px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px
}

.page-footer,
footer {
    background: #243F59;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.foot-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 56px 8px;
    text-align: center
}

.foot-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: .02em
}

@media (min-width: 768px) {
    .foot-cta-title {
        font-size: 26px
    }
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 56px 44px;
    display: grid;
    grid-template-columns: minmax(200px, 1.15fr) repeat(4, minmax(0, 1fr));
    gap: 40px 32px;
    align-items: start
}

.foot-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block
}

.foot-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 18px
}

.foot-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0
}

.foot-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px
}

.foot-logo-tagline {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .8px;
    text-transform: uppercase
}

.foot-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    max-width: 320px
}

.foot-sub-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px
}

.foot-sub-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: .2s
}

.foot-sub-input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.foot-sub-input:focus {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .15)
}

.foot-sub-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: var(--red, #D42020);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap
}

.foot-sub-btn:hover {
    background: #b81c1c
}

.foot-col-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: .3px
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    transition: .2s;
    text-decoration: none
}

.foot-links li a:hover {
    color: #fff
}

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.45
}

.fc-icon-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #DC1F26;
    display: grid;
    place-items: center
}

.fc-icon {
    width: 18px;
    height: 18px
}

.fc-icon--white {
    color: #fff
}

.fc-text {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    flex: 1;
    min-width: 0
}

a.fc-text:hover {
    color: #fff;
    text-decoration: underline
}

.fc-item--address .fc-text {
    line-height: 1.5
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(242, 242, 242, .85);
    display: grid;
    place-items: center;
    color: #F2F2F2;
    cursor: pointer;
    transition: .2s;
    text-decoration: none
}

.soc:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.foot-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 56px 28px;
    border-top: 1px solid rgba(217, 217, 217, .35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #F2F2F2
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-left>* {
    animation: fadeUp .55s ease both
}

.hero-left>*:nth-child(1) {
    animation-delay: .05s
}

.hero-left>*:nth-child(2) {
    animation-delay: .15s
}

.hero-left>*:nth-child(3) {
    animation-delay: .25s
}

@media(max-width:1024px) {
    .berita-grid {
        gap: 16px
    }

    .news-card {
        flex: 0 0 calc(50% - 8px)
    }

    .mitra-img {
        margin-bottom: 28px
    }

    .foot-cta {
        padding: 40px 32px 8px
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .testi-card {
        grid-template-columns: 1fr
    }

    .testi-right {
        grid-template-columns: 1fr
    }

    .testi-photo-sim {
        width: 100%;
        height: 120px
    }

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

@media(max-width:768px) {
    .pro-grid {
        grid-template-columns: 1fr;
    }

    .ads-content {
        padding: 40px 24px;
        text-align: center;
    }

    .ads-btns {
        flex-direction: column;
    }

    .ads-title {
        font-size: 24px;
    }

    .topbar,
    .nav-links {
        display: none
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
        position: relative;
        padding: 10px;
        margin: -10px;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-a {
        width: 100%;
        font-size: 15px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        justify-content: space-between;
    }

    .nav-dd {
        width: 100%;
    }

    .nav-dd-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        padding: 5px 0 10px 15px;
        min-width: 0;
        width: 100%;
    }

    .nav-dd.active .nav-dd-menu {
        display: block;
    }

    .mobile-auth {
        display: flex !important;
    }

    nav {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-wrap,
    .tentang,
    .berita-inner,
    .mitra-section {
        padding: 0 16px
    }

    .hero {
        grid-template-columns: 1fr;
        max-height: none;
        height: auto;
    }

    .hero-left {
        padding: 40px 24px;
        min-height: 0;
        max-height: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-right {
        height: 240px;
        min-height: 0;
        max-height: none;
    }

    .tentang {
        grid-template-columns: 1fr;
        margin: 40px auto;
        gap: 32px
    }

    .acara-grid {
        grid-template-columns: 1fr
    }

    .berita-grid {
        gap: 12px
    }

    .news-card {
        flex: 0 0 100%
    }

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

    .foot-cta {
        padding: 32px 20px 4px
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 28px 20px 36px
    }

    .foot-sub-form {
        flex-wrap: wrap
    }

    .foot-sub-input {
        min-width: 0
    }

    .foot-bottom {
        padding: 16px 20px 24px;
        flex-direction: column;
        gap: 6px;
        text-align: center
    }
}

#preloader {
    overflow: hidden;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    color: #e91010;
    opacity: 1;
    transition: opacity 1s;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}

#preloader .jumper>div {
    background-color: #e91010;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.page-about {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden
}

/* ══ HERO (slider + lengkungan merah) ══ */
.page-hero {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 32px
}

.about-hero-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
    min-height: 400px;
    isolation: isolate
}

.about-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1a1a1a
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .55s ease;
    z-index: 1
}

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

.hero-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-hero-front {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 400px;
    align-items: stretch;
    pointer-events: none
}

.about-hero-front a,
.about-hero-front button {
    pointer-events: auto
}

/* Panel merah + lengkungan besar ke kanan (mirip desain) */
.about-hero-red {
    width: min(48%, 520px);
    min-width: 284px;
    max-width: 525px;
    background: #DC1F26;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    padding: 48px clamp(28px, 4vw, 64px) 48px clamp(32px, 5vw, 72px);
    box-shadow: 8px 0 32px rgba(0, 0, 0, .08);
    border-radius: 0rem 0rem 11rem 0rem;
}

.about-hero-title {
    color: #fff;
    line-height: 1.08;
    margin: 0 0 18px
}

.about-hero-title-line1 {
    display: block;
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -.02em
}

.about-hero-title-line2 {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase
}

.about-hero-crumb {
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    line-height: 1.5
}

.about-hero-crumb a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    transition: opacity .2s
}

.about-hero-crumb a:hover {
    opacity: .85;
    text-decoration: underline
}

.about-hero-crumb .sep {
    margin: 0 .35em;
    color: rgba(255, 255, 255, .45);
    font-weight: 400
}

.about-hero-crumb .current {
    color: rgba(255, 255, 255, .75)
}

.about-hero-spacer {
    flex: 1;
    min-width: 0
}

.hero-img-sim {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a2a1a 0%, #2d3a1a 50%, #1a1a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px
}

.hero-img-figs {
    display: flex;
    gap: 8px;
    align-items: flex-end
}

.fig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.fh {
    width: 15px;
    height: 15px;
    border-radius: 50%
}

.fb {
    width: 20px;
    border-radius: 4px 4px 0 0
}

.about-hero-dots {
    position: absolute;
    bottom: 16px;
    left: 70%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
    pointer-events: auto
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .85);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s
}

.hero-dot.on,
.hero-dot:hover {
    background: #fff
}

/* ══ WRAPPER ══ */
.page-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

/* ══ PROFIL ══ */
.profil-section {
    padding: 56px 0 40px
}

.sec-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px
}

.red-line {
    width: 52px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 24px
}

.profil-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: start
}

.profil-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--mid);
    text-align: justify
}

/* ══ PROFIL VIDEO ══ */
.vid-box {
    border-top-left-radius: 6rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    position: relative;
    aspect-ratio: 16/10;
    background: #1a1a1a;
}

.vid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vid-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--red);
    border-radius: 12px;
    z-index: -1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transition: all .3s ease;
    z-index: 10;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.play-tri {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 22px solid var(--red);
    margin-left: 5px
}

/* ══ GROUP PHOTO BANNER (Red Strip) ══ */
.group-photo-banner-wrap {
    margin: 32px 0 64px;
}

.group-red-strip {
    background: var(--red);
    border-radius: 28px;
    padding: 32px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-photo-inner {
    max-width: 90%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
    background: #eee;
}

.group-photo-inner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ══ STATS ══ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 48px
}

.stat-box {
    background: var(--light);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: .2s
}

.stat-box:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(212, 32, 32, .1);
    transform: translateY(-2px)
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    line-height: 1
}

.stat-lbl {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    font-weight: 600
}

/* ══ TAGLINE ══ */
.tagline {
    text-align: center;
    padding: 8px 80px 56px;
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 500
}

/* ══ VISI MISI ══ */
.visimisi-section {
    margin: 0 0 64px
}

.vm-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    min-height: 360px
}

.vm-photo {
    position: relative;
    overflow: hidden
}

.vm-photo-sim {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(145deg, #2a3a1a 0%, #3a5a20 60%, #1a2a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px
}

.vm-right {
    display: flex;
    flex-direction: column
}

.vm-block {
    padding: 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.vm-block:first-child {
    background: var(--red);
    border-bottom: 2px solid rgba(255, 255, 255, .15)
}

.vm-block:last-child {
    background: #b51a1a
}

.vm-block-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px
}

.vm-block-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    text-align: justify
}

/* ══ LEGALITAS & ACUAN ══ */
.legal-section {
    margin: 0 0 64px
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative
}

.legal-card {
    background: var(--light);
    border-radius: 16px;
    padding: 36px 36px 48px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.legal-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .5px;
    color: var(--dark);
    margin-bottom: 10px
}

.legal-line {
    width: 44px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 22px
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.legal-list li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--mid);
    line-height: 1.65
}

.legal-list li::before {
    content: '\2022';
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: -1px
}

.legal-photo-wrap {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.legal-photo-item {
    position: relative;
    width: 100%
}

.legal-photo-item img {
    width: 100%;
    height: auto;
    display: block
}

.legal-photo-item+.legal-photo-item {
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.legal-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4
}

.legal-photo-sim {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #1a1a2a, #2a2a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .5px
}

.legal-red-accent {
    position: absolute;
    bottom: -12px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: var(--red);
    border-radius: 8px;
    z-index: 0;
    opacity: .9
}

/* ══ STRUKTUR ORGANISASI ══ */
.org-section {
    margin: 0 0 80px
}

.org-chart {
    padding: 32px 0;
    overflow-x: auto
}

.chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

/* nodes */
.node {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .5px;
    text-align: center;
    min-width: 130px;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.clickable-node {
    cursor: pointer;
}

.clickable-node:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.member-modal-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.member-modal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--red);
}

.member-img-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f5f9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-modal-card:hover .member-img-wrap {
    border-color: var(--red-light);
    transform: scale(1.1);
}

.node-person {
    font-size: 10px;
    font-weight: 500;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    opacity: 0.95;
    letter-spacing: 0;
}

.node-yellow .node-person {
    border-top-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.node-red {
    background: var(--red);
    color: #fff
}

.node-navy {
    background: var(--navy);
    color: #fff
}

.node-yellow {
    background: #F5C518;
    color: #1a1a1a
}

/* connector lines */
.connector-v {
    width: 2px;
    height: 28px;
    background: #ccc;
    margin: 0 auto
}

.connector-h {
    height: 2px;
    background: #ccc
}

.row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0
}

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

/* ══ CTA STRIP ══ */
.cta-strip {
    background: var(--navy);
    padding: 22px 56px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px
}

.cta-strip+footer {
    margin-top: 0
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.page-hero .about-hero-red>* {
    animation: fadeUp .5s ease both
}

.page-hero .about-hero-red>*:nth-child(1) {
    animation-delay: .05s
}

.page-hero .about-hero-red>*:nth-child(2) {
    animation-delay: .15s
}

/* ══ RESPONSIVE ══ */
@media(max-width:900px) {

    .page-about .topbar,
    .page-about .nav-links {
        display: none
    }

    .page-hero,
    .page-body {
        padding: 0 16px
    }

    .about-hero-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
        border-radius: 20px;
        box-shadow: none;
        background: transparent;
        width: 100%;
        overflow: hidden;
    }

    .about-hero-front {
        order: 1;
        flex-direction: column;
        min-height: 0;
        width: 100%;
        position: relative;
    }

    .about-hero-red {
        width: 100%;
        max-width: none;
        min-width: 0;
        border-radius: 0;
        padding: 40px 24px;
    }

    .about-hero-title-line1 {
        font-size: 1.75rem
    }

    .about-hero-title-line2 {
        font-size: 2.1rem
    }

    .about-hero-spacer {
        display: none
    }

    .about-hero-slides {
        position: relative;
        order: 2;
        height: 240px;
        width: 100%;
        flex-shrink: 0;
        border-radius: 0;
        overflow: hidden;
        margin: 0;
    }

    .hero-slide {
        width: 100% !important;
        left: 0 !important;
    }

    .about-hero-dots {
        bottom: 12px
    }

    .profil-grid,
    .vm-card,
    .legal-grid {
        grid-template-columns: 1fr
    }

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

    .tagline {
        padding: 8px 20px 40px
    }

    .vm-block {
        padding: 28px 24px
    }

    .legal-card {
        padding: 24px 20px 40px
    }

    .cta-strip {
        padding: 18px 24px
    }
}

@media(max-width:900px) {
    .group-photo-banner-wrap>div:last-child {
        width: 120% !important;
        height: 70% !important;
        top: 3rem !important;
        left: -1rem !important;
        border-radius: 1.5rem 0 0 1.5rem !important;
    }

    .group-photo-banner-wrap>div:first-child {
        padding: 20px 0 !important;
    }

    .group-photo-banner-wrap>div:first-child>div {
        max-width: 95% !important;
    }
}

@media(max-width:500px) {
    .group-photo-banner-wrap>div:last-child {
        width: 110% !important;
        height: 60% !important;
        top: 2.5rem !important;
        left: -0.5rem !important;
    }
}

/* SEJARAH TIMELINE */
/* SEJARAH TIMELINE */
.history-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
    border-radius: 24px;
    margin: 60px 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.history-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.history-line-container {
    position: relative;
    margin-top: 50px;
    padding-bottom: 40px;
}

.history-timeline-track {
    position: absolute;
    top: 153px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.history-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
}

.history-grid::-webkit-scrollbar {
    height: 6px;
}

.history-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.history-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}

.history-year {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.history-icon-wrap {
    position: relative;
    width: 90px;
    height: 45px;
    border: 7px solid;
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 35px;
    background: transparent !important;
}

.history-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -29px;
}

.history-icon-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.history-icon-circle i {
    font-size: 20px !important;
}

.history-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.history-content-box {
    background: #ffffff;
    width: 100%;
    padding: 24px 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 150px;
    border-radius: 12px;
}

.history-content-box::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 12px 12px 12px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.history-item-title {
    color: var(--red);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.history-item-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

/* Colors for nth-child to match the reference image */
.history-item:nth-child(5n+1) .history-year {
    color: #f5b041;
}

.history-item:nth-child(5n+1) .history-icon-wrap {
    border-color: #f5b041;
}

.history-item:nth-child(5n+1) .history-dot {
    background: #f5b041;
}

.history-item:nth-child(5n+1) .history-item-title {
    color: #c0392b;
}

.history-item:nth-child(5n+2) .history-year {
    color: #e74c3c;
}

.history-item:nth-child(5n+2) .history-icon-wrap {
    border-color: #e74c3c;
}

.history-item:nth-child(5n+2) .history-dot {
    background: #e74c3c;
}

.history-item:nth-child(5n+2) .history-item-title {
    color: #c0392b;
}

.history-item:nth-child(5n+3) .history-year {
    color: #3f51b5;
}

.history-item:nth-child(5n+3) .history-icon-wrap {
    border-color: #3f51b5;
}

.history-item:nth-child(5n+3) .history-dot {
    background: #3f51b5;
}

.history-item:nth-child(5n+3) .history-item-title {
    color: #c0392b;
}

.history-item:nth-child(5n+4) .history-year {
    color: #3498db;
}

.history-item:nth-child(5n+4) .history-icon-wrap {
    border-color: #3498db;
}

.history-item:nth-child(5n+4) .history-dot {
    background: #3498db;
}

.history-item:nth-child(5n+4) .history-item-title {
    color: #c0392b;
}

.history-item:nth-child(5n+5) .history-year {
    color: #1abc9c;
}

.history-item:nth-child(5n+5) .history-icon-wrap {
    border-color: #1abc9c;
}

.history-item:nth-child(5n+5) .history-dot {
    background: #1abc9c;
}

.history-item:nth-child(5n+5) .history-item-title {
    color: #c0392b;
}

@media(max-width: 1024px) {
    .history-grid {
        justify-content: flex-start;
    }
}

@media(max-width: 768px) {
    .history-section {
        padding: 40px 20px;
    }

    .history-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .history-timeline-track {
        display: none;
    }

    .history-item {
        width: 100%;
        max-width: 320px;
    }
}