/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #ffffff;
}


/* ===============================
   TOP BAR
================================ */
.top-bar {
    background: #059669;
    color: #ffffff;
    font-size: 14px;
}

.top-bar-inner {
    max-width: 1400px;
    margin: auto;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
}

.top-right a,
.top-right span {
    margin-left: 14px;
    color: #ffffff;
    text-decoration: none;
}


/* ===============================
   HEADER (DESKTOP)
================================ */
.main-header {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* ===============================
   LOGO GROUP
================================ */
.logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-main img {
    height: 60px;
    display: block;
}

.logo-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.35);
}

.logo-sub img {
    height: 70px;
    opacity: 0.85;
    filter: brightness(1.05);
    transition: opacity 0.25s ease;
}

.logo-sub:hover img {
    opacity: 1;
}


/* ===============================
   NAV (DESKTOP)
================================ */
.nav {
    display: flex;
    align-items: center;
}

.nav a {
    position: relative;
    margin: 0 16px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* underline */
.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: #facc15;
    border-radius: 99px;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.nav a:hover {
    color: #facc15;
    transform: translateY(-2px);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: #facc15;
}


/* ===============================
   CTA BUTTON
================================ */
.header-cta {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}


/* ===============================
   HAMBURGER (DEFAULT HIDE)
================================ */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    z-index: 1100;
}


/* ===============================
   HEADER – MOBILE (HAMBURGER ONLY)
================================ */
@media (max-width: 768px) {

    .main-header {
        position: sticky;
        top: 0;
        background: rgba(0, 0, 0, 0.60);
        backdrop-filter: blur(12px);
        z-index: 1200;
    }

    /* susun: burger | logo | CTA */
    .header-inner {
        max-width: 1400px;
        margin: auto;
        padding: 12px 12px;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 10px;
    }

    /* burger kiri */
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        align-items: center;
        justify-content: center;
        position: relative;
        right: auto;
        top: auto;
    }

    .nav-toggle i {
        font-size: 20px;
        color: #ffffff;
    }

    /* logo tengah */
    .logo-group {
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin: 0;
        min-width: 0;
    }

    .logo-main img {
        height: 40px;
    }

    .logo-divider {
        height: 26px;
        opacity: 0.45;
    }

    .logo-sub img {
        height: 26px;
        opacity: 0.90;
    }

    /* CTA kanan */
    .header-cta {
        justify-self: end;
        white-space: nowrap;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 800;
        border: 2px solid rgba(255, 255, 255, 0.90);
    }

    /* ✅ nav hidden dulu */
    .nav {
        display: none;
        grid-column: 1 / -1;
        margin-top: 10px;
        flex-direction: column;
        gap: 6px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
        animation: slideDown 0.2s ease;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        margin: 0;
        padding: 12px 12px;
        text-align: left;
        color: #111827;
        border-radius: 12px;
        font-weight: 700;
        font-size: 15px;
    }

    .nav a:hover {
        color: #f59e0b;
        transform: none;
    }

    .nav a::after {
        display: none;
    }

    .nav a.active {
        background: #fef3c7;
        color: #92400e;
        font-weight: 800;
    }
}

@media (max-width: 420px) {

    /* .header-cta {
        padding: 9px 12px;
        font-size: 13px;
    } */

    .logo-main img {
        height: 36px;
    }

    .logo-sub img {
        height: 24px;
    }
}


/* ===============================
   ANIMATION
================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===============================
   LANGUAGE SWITCH
================================ */
.lang-switch {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.lang-switch a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.25s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
    opacity: 1;
    color: #facc15;
    text-decoration: underline;
}


/* ===============================
   SOCIAL FLOAT
================================ */
.social-float {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-btn i {
    font-size: 20px;
    color: #ffffff !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.social-btn:hover {
    transform: translateX(-6px) scale(1.05);
}

.social-btn:hover i {
    color: #f4b41a !important;
}

.social-btn.portal:hover {
    box-shadow:
        0 0 0 1px rgba(244, 180, 26, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.social-btn.ig:hover {
    box-shadow:
        0 0 0 1px rgba(225, 48, 108, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.social-btn.fb:hover {
    box-shadow:
        0 0 0 1px rgba(24, 119, 242, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.social-btn.tt:hover {
    box-shadow:
        0 0 0 1px rgba(0, 242, 234, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.social-btn.yt:hover {
    box-shadow:
        0 0 0 1px rgba(255, 0, 0, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.social-float.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(40px);
}

@media (max-width: 768px) {

    .social-float {
        right: 12px;
        gap: 12px;
    }

    .social-btn {
        width: 46px;
        height: 46px;
    }

    .social-btn i {
        font-size: 18px;
    }
}


/* ===============================
   HERO
================================ */
.hero {
    min-height: 70vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15, 47, 42, 0.75),
        rgba(15, 47, 42, 0.55)
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: 220px 50px 120px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    color: #ffffff;
}

.hero-tag {
    color: #34d399;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 26px;
}

.hero-source {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.hero-source .line {
    width: 28px;
    height: 3px;
    background: #facc15;
}

.hero-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 44px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.pill {
    display: inline-block;
    background: #059669;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.hero-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.goal {
    font-weight: 600;
    margin-bottom: 14px;
}

.progress {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #e5f5ef;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #064e3b, #047857);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.percent {
    font-weight: 700;
    color: #059669;
}

/* HERO – MOBILE FIX */
@media (max-width: 768px) {

    .hero {
        min-height: unset;
        height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 80px 16px 24px;
        gap: 16px;
    }

    .hero-tag {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .hero-left h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-source {
        font-size: 12px;
    }

    .hero-card {
        padding: 16px;
        border-radius: 16px;
    }

    .pill {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .hero-card h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .hero-card p {
        font-size: 13px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}


/* ===============================
   STATS SECTION
================================ */
.stats-section {
    margin-top: -120px;
    position: relative;
    z-index: 5;
}

.stats-wrapper {
    max-width: 1300px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #059669;
}

.stat-item .line {
    display: block;
    width: 36px;
    height: 3px;
    background: #f59e0b;
    margin: 14px auto;
    border-radius: 10px;
}

.stat-item p {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.stats-cta {
    background: #059669;
    color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-line {
    width: 48px;
    height: 3px;
    background: #f59e0b;
    margin-bottom: 18px;
    border-radius: 10px;
}

.stats-cta h4 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.stats-cta a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stats-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-cta {
        text-align: center;
        align-items: center;
    }
}


/* ===============================
   ABOUT
================================ */
.about-exact {
    position: relative;
    background: #ffffff;
    padding: 120px 40px;
    overflow: hidden;
}

.about-exact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/map_grey-1.png') center / cover no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.about-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-badge {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 64px;
    height: 64px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.about-tag {
    color: #059669;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.about-content-wrap h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f2f2a;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-line {
    display: block;
    width: 48px;
    height: 3px;
    background: #f59e0b;
    border-radius: 10px;
    margin-bottom: 26px;
}

.about-list {
    list-style: none;
    margin-bottom: 24px;
}

.about-list li {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: 800;
}

.about-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
    margin-bottom: 36px;
}

.about-btn {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.about-btn:hover {
    background: #d97706;
}

@media (max-width: 900px) {

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content-wrap h2 {
        font-size: 34px;
    }

    .about-desc {
        max-width: 100%;
    }
}


/* ===============================
   ACTIVITY V2 – SWIPER CARD
================================ */
.activity-v2 {
    background: #ffffff;
    padding: 110px 20px;
}

.activity-v2-inner {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.activity-tag {
    color: #059669;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.activity-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.activity-line {
    width: 48px;
    height: 3px;
    background: #facc15;
    border-radius: 999px;
    margin: 18px auto 60px;
}

.activity-v2-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 26px 22px 30px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease;
}

.activity-v2-card.active {
    transform: scale(1.03);
}

.activity-v2-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.v2-tag {
    background: #059669;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.activity-v2-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.activity-v2-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 26px;
}

.v2-btn {
    width: 100%;
    background: #f59e0b;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.v2-btn:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.45);
}

/* SWIPER OVERRIDES */
.activitySwiper {
    width: 100%;
    padding: 8px 0 48px;
}

.activitySwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.activitySwiper .swiper-slide > .activity-v2-card {
    width: min(980px, 100%);
}

.activitySwiper .swiper-button-prev,
.activitySwiper .swiper-button-next {
    width: 44px;
    height: 44px;
}

.activitySwiper .swiper-button-prev {
    left: 8px;
}

.activitySwiper .swiper-button-next {
    right: 8px;
}

.activitySwiper .swiper-pagination {
    bottom: 8px !important;
}


/* ===============================
   MISSION
================================ */
.mission-exact {
    background: #ffffff;
    padding: 120px 40px;
}

.mission-inner {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-tag {
    color: #059669;
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.mission-left h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f2f2a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.mission-line {
    width: 48px;
    height: 3px;
    background: #f59e0b;
    border-radius: 10px;
    margin-bottom: 24px;
}

.mission-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 420px;
    margin-bottom: 36px;
}

.mission-btn {
    background: #f59e0b;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.mission-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.mission-video img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 26px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.mission-item {
    display: flex;
    gap: 20px;
}

.mission-icon {
    width: 52px;
    height: 52px;
    background: #059669;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.mission-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.mission-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.video-modal.active {
    display: block;
}

.video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-box {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 8% auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-box iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .mission-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-left h2 {
        font-size: 34px;
    }

    .video-box iframe {
        height: 260px;
    }
}


/* ===============================
   CTA VIDEO
================================ */
.cta-video {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(15, 47, 42, 0.65),
            rgba(15, 47, 42, 0.65)
        ),
        url('../images/cta-bg.jpg') center / cover no-repeat;
    background-attachment: fixed;
}

.cta-video-panel {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    color: #ffffff;
}

.cta-video-panel h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-video-panel p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-video-line {
    width: 64px;
    height: 4px;
    background: #f59e0b;
    border-radius: 20px;
    margin-bottom: 36px;
}

.cta-video-btn {
    background: #f59e0b;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-video-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .cta-video {
        height: 420px;
    }

    .cta-video-panel h2 {
        font-size: 32px;
    }

    .cta-video-panel p {
        font-size: 16px;
    }
}


/* ===============================
   NEWS & ARTICLES
================================ */
.news-section {
    background: #ffffff;
    padding: 120px 40px;
}

.news-inner {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.news-tag {
    color: #059669;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.news-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.news-line {
    width: 46px;
    height: 3px;
    background: #f59e0b;
    border-radius: 10px;
    margin: 0 auto 70px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    text-align: left;
    text-decoration: none;
    color: inherit;
}

.news-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #059669;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
}

.news-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 12px;
}

.news-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-meta {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
}

@media (max-width: 900px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 32px;
    }

    .news-image img {
        height: 200px;
    }
}


/* ===============================
   SCROLL REVEAL
================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.activity-v2-card.reveal:nth-child(1) {
    transition-delay: 0s;
}

.activity-v2-card.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.activity-v2-card.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-item.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.mission-item.reveal:nth-child(1) {
    transition-delay: 0s;
}

.mission-item.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.mission-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}


/* ===============================
   FOOTER
================================ */
.site-footer {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/FAZ6685 (1).jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    opacity: 0.25;
    transform: scale(1.1);
    z-index: 0;
}

.site-footer > * {
    position: relative;
    z-index: 2;
}

.footer-top {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 0;
}

.footer-top-inner {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.footer-top-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top-logo img {
    width: 140px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-top-logo.muip img {
    width: 220px;
    max-height: 110px;
    opacity: 1;
}

.footer-top-logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-main {
    padding: 90px 20px;
}

.footer-inner {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 120px;
    align-items: flex-start;
}

.footer-brand img {
    width: 260px;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.footer-social a {
    font-size: 18px;
    color: #f59e0b;
    margin-right: 18px;
    text-decoration: none;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 42px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.footer-contact h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.footer-bottom {
    background: #059669;
    padding: 24px 40px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom nav a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    margin: 0 6px;
}

.footer-bottom nav span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 900px) {

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-contact {
        justify-self: start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-top-logo.muip img {
        width: 180px;
    }

    .footer-top-logo img {
        width: 120px;
    }
}

/* ======================================================
   MOBILE CLEANUP (GLOBAL OVERRIDE)
   Paste at the VERY BOTTOM of style.css
====================================================== */
@media (max-width: 768px) {

    /* -----------------------------
       Global spacing & typography
    ------------------------------ */
    body {
        font-size: 14px;
        line-height: 1.55;
    }

    h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    p {
        font-size: 14px;
        line-height: 1.7;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* -----------------------------
       Top bar (kecilkan)
    ------------------------------ */
    .top-bar {
        font-size: 12px;
    }

    .top-bar-inner {
        padding: 8px 12px;
        gap: 10px;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .top-left span {
        margin-right: 0;
        opacity: 0.95;
    }

    .lang-switch {
        gap: 8px;
        font-size: 12px;
    }

    /* -----------------------------
       Header mobile: kemaskan tinggi
       (burger | logo | CTA)
    ------------------------------ */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1200;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(12px);
    }

    .header-inner {
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 10px;
    }

    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        align-items: center;
        justify-content: center;
    }

    .logo-group {
        justify-content: center;
        gap: 10px;
        min-width: 0;
    }

    .logo-main img {
        height: 34px;
    }

    .logo-divider {
        height: 22px;
        opacity: 0.45;
    }

    .logo-sub img {
        height: 22px;
        opacity: 0.9;
    }

    /* .header-cta {
        padding: 9px 12px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
    } */

    /* -----------------------------
       Mobile nav dropdown (hidden by default)
    ------------------------------ */
    .nav {
        display: none;
        grid-column: 1 / -1;
        margin-top: 8px;
        flex-direction: column;
        gap: 6px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
        animation: slideDown 0.2s ease;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        margin: 0;
        padding: 12px 12px;
        width: 100%;
        text-align: left;
        color: #111827;
        border-radius: 12px;
        font-weight: 800;
        font-size: 15px;
    }

    .nav a::after {
        display: none;
    }

    .nav a.active {
        background: #fef3c7;
        color: #92400e;
    }

    /* -----------------------------
       HERO: elak text jadi terlalu besar
    ------------------------------ */
    .hero-inner {
        padding: 76px 14px 22px;
        gap: 14px;
    }

    .hero-left h1 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;

        /* clamp to avoid huge headings */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-card {
        padding: 14px;
        border-radius: 16px;
    }

    .hero-card h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .hero-card p {
        font-size: 13px;
        margin-bottom: 10px;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* -----------------------------
       Section paddings: padatkan
    ------------------------------ */
    .about-exact,
    .activity-v2,
    .mission-exact,
    .news-section {
        padding: 60px 14px;
    }

    .activity-line,
    .about-line,
    .news-line {
        margin-bottom: 28px;
    }

    /* -----------------------------
       Info page / banner heading (prevent huge "2026")
       (fallback untuk apa-apa tajuk yang besar)
    ------------------------------ */
    .page-title,
    .banner-title,
    .info-title,
    .hero-title,
    .title,
    .heading,
    .display-title {
        font-size: 28px !important;
        line-height: 1.1 !important;
        word-break: break-word;
    }

    /* Kalau ada element nombor besar (contoh "2026") */
    .year,
    .big-year,
    .display-year,
    .super-title {
        font-size: 56px !important;
        line-height: 0.95 !important;
        letter-spacing: -1px !important;
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 420px) {
    /* .header-cta {
        padding: 8px 10px;
        font-size: 12px;
    } */

    .logo-main img {
        height: 32px;
    }

    .logo-sub img {
        height: 20px;
    }
}

/* ======================================================
   MOBILE NAV DROPDOWN – PREMIUM THEME (GLASS GREEN)
   Paste at the VERY BOTTOM of style.css
====================================================== */
@media (max-width: 768px) {

  /* panel dropdown */
  .nav {
    background: linear-gradient(
      180deg,
      rgba(5, 150, 105, 0.20),
      rgba(15, 47, 42, 0.55)
    ) !important;

    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(14px) !important;

    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.30),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;

    padding: 6px !important;
  }

  /* item link */
  .nav a {
    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px !important;

    padding: 10px 12px !important;
    font-weight: 800 !important;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
  }

  /* active item (gold premium) */
  .nav a.active {
    color: #1f2937 !important;
    background: linear-gradient(135deg, #f59e0b, #facc15) !important;
    border-color: rgba(250, 204, 21, 0.55) !important;

    box-shadow:
      0 10px 26px rgba(245, 158, 11, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.25) !important;
  }

  /* optional: divider kecil (kalau nak nampak lebih kemas) */
  .nav a + a {
    margin-top: 5px;
  }
}


/* ======================================================
   HEADER CTA — FINAL OVERRIDE (LETak PALING BAWAH style.css)
   Fix: CTA kekal hujung kanan atas, tak jatuh/terpotong bila nav buka
====================================================== */

/* GLOBAL CTA (desktop & umum) */
header.main-header .header-cta{
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

header.main-header .header-cta:hover{
  background: #f59e0b;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}

/* MOBILE LOCK */
@media (max-width: 768px){

  header.main-header,
  header.main-header .header-inner{
    overflow: visible !important;
  }

  /* grid row explicit supaya tak "shift" bila .nav open */
  header.main-header .header-inner{
    display: grid !important;
    grid-template-columns: 44px 1fr auto !important;
    grid-auto-rows: auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* ✅ lock item row 1 */
  header.main-header .nav-toggle{ grid-column: 1; grid-row: 1; z-index: 6; }
  header.main-header .logo-group{ grid-column: 2; grid-row: 1; min-width: 0; }
  header.main-header .header-cta{
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    z-index: 7;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
    border: 2px solid rgba(255,255,255,.90);
  }

  /* ✅ nav duduk row 2 full width */
  header.main-header .nav{
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 10px;
    z-index: 5;
  }
}

/* EXTRA SMALL */
@media (max-width: 420px){
  header.main-header .header-cta{
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* ======================================================
   VIDEO FEATURE – BRIGHT PREMIUM (CLEAN WHITE)
   Paste at VERY BOTTOM of style.css
====================================================== */

.video-feature{
  position: relative;
  isolation: isolate;
  padding: 70px 0;
  overflow: hidden;

  /* ✅ CERAH + premium */
  background:
    radial-gradient(900px 380px at 18% 25%, rgba(245,158,11,.18), transparent 60%),
    radial-gradient(900px 380px at 82% 15%, rgba(16,185,129,.14), transparent 58%),
    radial-gradient(1200px 520px at 55% 110%, rgba(59,130,246,.10), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

/* glow layer halus */
.video-feature-bg{
  position:absolute;
  inset:-90px -50px -90px -50px;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(700px 280px at 22% 30%, rgba(245,158,11,.22), transparent 62%),
    radial-gradient(700px 280px at 78% 22%, rgba(16,185,129,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.6));
  filter: blur(2px);
  opacity: .95;
}

.video-feature-inner{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items:center;
  position: relative;
  z-index: 1;
}

/* ================= LEFT ================= */

.vf-left{ padding: 6px 0; }

.vf-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;

  /* ✅ pill putih glass */
  color: #0f172a;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  backdrop-filter: blur(10px);
}

.video-feature h2{
  margin: 14px 0 10px;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.video-feature p{
  margin: 0 0 16px;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
  max-width: 56ch;
}

.vf-points{
  display:grid;
  gap: 10px;
  margin: 14px 0 20px;
}

.vf-point{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: rgba(15,23,42,.78);
  font-size: 13px;
}

.vf-point .dot{
  width:10px; height:10px;
  margin-top: 5px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245,158,11,.18);
}

/* Buttons */
.vf-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.vf-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  color:#0b1220;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border: 1px solid rgba(245,158,11,.35);
  box-shadow: 0 18px 45px rgba(245,158,11,.28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.vf-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 26px 60px rgba(245,158,11,.34);
}

.vf-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  color: rgba(15,23,42,.86);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 14px 36px rgba(2,6,23,.10);
  backdrop-filter: blur(10px);
  cursor:pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.vf-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,42,.16);
}

/* ================= RIGHT (CARD) ================= */

.vf-video-card{
  width:100%;
  border:0;
  padding:0;
  background: transparent;
  cursor:pointer;
  text-align:left;
}

/* Thumbnail card: putih premium + glass */
.vf-thumb{
  position: relative;
  border-radius: 20px;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  overflow:hidden;

  border: 1px solid rgba(15,23,42,.10);
  box-shadow:
    0 24px 70px rgba(2,6,23,.14),
    inset 0 0 0 1px rgba(255,255,255,.35);
}

/* overlay lebih cerah & clean */
.vf-shine{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(2,6,23,.22));
  pointer-events:none;
}

/* Play button */
.vf-play{
  position:absolute;
  left: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#0b1220;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border: 1px solid rgba(245,158,11,.35);
  box-shadow: 0 20px 55px rgba(245,158,11,.28);
}

.vf-play i{ font-size: 18px; margin-left: 2px; }

.vf-play-ring{
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  border: 1px solid rgba(245,158,11,.35);
  animation: vfPulse 1.8s ease-in-out infinite;
}

@keyframes vfPulse{
  0%{ transform: scale(.92); opacity:.55; }
  60%{ transform: scale(1.02); opacity:.20; }
  100%{ transform: scale(1.08); opacity:0; }
}

/* Badge */
.vf-badge{
  position:absolute;
  top: 14px;
  left: 14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;

  color: rgba(15,23,42,.90);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 12px 34px rgba(2,6,23,.10);
  backdrop-filter: blur(10px);
}

/* Meta card bawah thumbnail */
.vf-meta{
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  backdrop-filter: blur(12px);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.vf-meta h3{
  margin:0 0 4px;
  font-size: 15px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}

.vf-meta p{
  margin:0;
  font-size: 12px;
  color: rgba(15,23,42,.62);
}

.vf-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,.86);
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.35);
}

/* Modal (kekal ok) */
.vf-modal{ position: fixed; inset:0; display:none; z-index: 9999; }
.vf-modal.show{ display:block; }

.vf-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}

.vf-modal-box{
  position: relative;
  width: min(980px, calc(100% - 28px));
  margin: 8vh auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.vf-x{
  position:absolute; top: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  z-index:2;
}

.vf-iframe-wrap{ width:100%; aspect-ratio:16/9; background:#000; }
.vf-iframe-wrap iframe{ width:100%; height:100%; border:0; display:block; }

/* Responsive */
@media (max-width: 900px){
  .video-feature-inner{ grid-template-columns: 1fr; }
  .vf-thumb{ min-height: 240px; }
}

/* ✅ reveal jangan fade hilang */
.video-feature .reveal{
  opacity: 1 !important;
  transform: none !important;
}
/* ===============================
   VIDEO MODAL FIX (CENTER + CLEAN)
================================ */

.vf-modal{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 999999;
}

.vf-modal.show{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.vf-backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}

.vf-modal-box{
  position:relative;
  z-index:2;
  width: min(980px, 100%);
  border-radius:18px;
  overflow:hidden;
  background: rgba(15,23,42,.72);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.vf-x{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  z-index:5;
}

.vf-iframe-wrap{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
}

.vf-iframe-wrap video{
  width:100%;
  height:100%;
  display:block;
}

/* mobile: bagi lebih turun sikit */
@media (max-width: 768px){
  .vf-modal-box{ margin-top: 10vh; }
}
/* ✅ ensure close button clickable */
.vf-modal { z-index: 99999 !important; }
.vf-modal-box { position: relative; z-index: 2; }
.vf-x { z-index: 5; pointer-events: auto; }
.vf-backdrop { z-index: 1; pointer-events: auto; }
.vf-iframe-wrap { position: relative; z-index: 2; }