/* =====================================================================
   beranda.css
   ===================================================================== */

/* ====================== Font Face ====================== */
@font-face {
    font-family: 'Poppins';
    src: url('/public/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/public/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/public/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('/public/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800; font-style: normal; font-display: swap;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #000;
    background-color: #fcfcfc;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.main-full-container { width: 100%; overflow-x: hidden; }

/* =====================================================================
   PRE-INIT FLASH PREVENTION
   Semua swiper di beranda disembunyikan sebelum Swiper.js menambahkan
   class .swiper-initialized. Ini mencegah slides tampil full-width
   selama jeda antara HTML render dan JS defer execution.
   ===================================================================== */

/* Membership Swiper (Section 7) */
.membershipSwiper:not(.swiper-initialized) {
    overflow: hidden;
    opacity: 0;
}
.membershipSwiper.swiper-initialized {
    opacity: 1;
    transition: opacity .25s ease;
}

/* Sembunyikan slides sebelum init agar tidak muncul stacked full-width */
.membershipSwiper:not(.swiper-initialized) .swiper-wrapper {
    overflow: hidden;
    /* Paksa lebar per-slide sesuai breakpoint terbesar (3 col) */
    display: flex;
    flex-wrap: nowrap;
}
.membershipSwiper:not(.swiper-initialized) .swiper-slide {
    min-width: 0;
    flex: 0 0 33.333%;
    opacity: 0;
    pointer-events: none;
}

/* Articles Swiper */
.Articles:not(.swiper-initialized) {
    overflow: hidden;
    opacity: 0;
}
.Articles.swiper-initialized {
    opacity: 1;
    transition: opacity .25s ease;
}
.Articles:not(.swiper-initialized) .swiper-slide {
    opacity: 0;
}

/* Review Swiper */
.mySwiper:not(.swiper-initialized) {
    overflow: hidden;
    opacity: 0;
}
.mySwiper.swiper-initialized {
    opacity: 1;
    transition: opacity .25s ease;
}
.mySwiper:not(.swiper-initialized) .swiper-slide {
    opacity: 0;
}

/* Partner Swiper */
.OfficialPartners:not(.swiper-initialized) {
    overflow: hidden;
    opacity: 0;
}
.OfficialPartners.swiper-initialized {
    opacity: 1;
    transition: opacity .25s ease;
}

/* ====================== SVG / FontAwesome Icon ====================== */
.svg-icon {
    width: 70px; height: 70px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-style: normal;
    transition: transform .3s ease;
}
.svg-icon svg { fill: #fff; }

.aboutour .cards:nth-child(1) .svg-icon { background: linear-gradient(135deg,#4a90e2,#357abd); }
.aboutour .cards:nth-child(2) .svg-icon { background: linear-gradient(135deg,#f5a623,#e89a0d); }
.aboutour .cards:nth-child(3) .svg-icon { background: linear-gradient(135deg,#50c878,#3da35d); }
.aboutour .cards:nth-child(4) .svg-icon { background: linear-gradient(135deg,#e94b8c,#d13872); }
.aboutour .cards:hover .svg-icon { transform: scale(1.1) rotate(5deg); }

.news .cards .titles {
    width: 70px; height: 70px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
    margin: 0 auto 25px;
    transition: transform .3s ease;
}
.news .cards:nth-child(1) .titles { background: linear-gradient(135deg,#4a90e2,#357abd); }
.news .cards:nth-child(2) .titles { background: linear-gradient(135deg,#f5a623,#e89a0d); }
.news .cards:nth-child(3) .titles { background: linear-gradient(135deg,#50c878,#3da35d); }
.news .cards:nth-child(4) .titles { background: linear-gradient(135deg,#e94b8c,#d13872); }
.news .cards:hover .titles { transform: scale(1.1) rotate(5deg); }
.news .cards .titles svg { fill: #fff; }

/* ====================== Carousel ====================== */
.main-carousel {
    margin-top: 20px; width: 100%;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
}
@media (max-width: 696px) { .main-carousel { margin-top: 50px; } }
@media (max-width: 576px) { .main-carousel { margin-top: 20px; } }
@media (max-width: 433px) { .main-carousel { margin-top: 50px; } }

.main-carousel .carousel {
    width: 90%; max-width: 1400px; height: 100%;
    position: relative; border-radius: 20px; overflow: hidden;
}
.carousel .CarouselMain { width: 100%; aspect-ratio: 4/1; position: relative; border-radius: 20px; }
.carousel .swiper-slide { position: relative; width: 100%; height: 100%; }
.carousel .swiper-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.carousel .swiper-slide .content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    text-align: center; z-index: 10; width: 90%; padding: 0 10px;
}
.carousel .swiper-slide .content #titles    { font-size: clamp(1.4rem,2.5vw,2.2rem); font-weight: 700; color: #fff; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,.3); }
.carousel .swiper-slide .content #subtitles { font-size: clamp(1.4rem,4.5vw,4rem); font-weight: 800; color: #edd25f; margin-bottom: 30px; text-shadow: 2px 2px 4px rgba(0,0,0,.3); }
.carousel .swiper-slide .content .button { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.carousel .swiper-slide .content .button a { padding: 14px 36px; text-decoration: none; font-weight: 600; font-size: clamp(.95rem,1.2vw,1.25rem); border-radius: 50px; transition: background-color .3s ease, transform .3s ease; }
.carousel .swiper-slide .content .button a:first-child { background-color: #edd25f; color: #193c76; }
.carousel .swiper-slide .content .button a:first-child:hover { background-color: #fff; transform: scale(1.05); }
.carousel .swiper-slide .content .button a:last-child { background-color: transparent; color: #fff; border: 2px solid #fff; }
.carousel .swiper-slide .content .button a:last-child:hover { background-color: #fff; color: #193c76; transform: scale(1.05); }

.carousel .swiper-button-next,
.carousel .swiper-button-prev {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,255,255,.9);
    background-color: rgba(255,255,255,.15);
    border-radius: 50%; color: #fff;
    transition: background-color .3s ease, transform .3s ease;
    opacity: 0; visibility: hidden;
    backdrop-filter: blur(4px);
}
.carousel:hover .swiper-button-next,
.carousel:hover .swiper-button-prev { opacity: 1; visibility: visible; }
.carousel .swiper-button-next:hover,
.carousel .swiper-button-prev:hover { background-color: #edd25f; border-color: #edd25f; color: #193c76; transform: scale(1.1); }
.carousel .swiper-button-next::after,
.carousel .swiper-button-prev::after { font-size: 16px; font-weight: 900; }
.carousel .swiper-button-next { right: 20px; }
.carousel .swiper-button-prev { left: 20px; }
.carousel .swiper-pagination { bottom: 20px; }
.carousel .swiper-pagination-bullet { width: 10px; height: 10px; background-color: rgba(255,255,255,.5); opacity: 1; transition: all .3s ease; }
.carousel .swiper-pagination-bullet-active { background-color: #edd25f; width: 25px; border-radius: 6px; }

/* ====================== Wave Dividers ====================== */
.aboutour::after, .Discover::after, .articles::after,
.news::after, .Partner::after, .review::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 100%; height: 100px; background-size: cover;
    transform: rotate(180deg); pointer-events: none;
}
.aboutour::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23193c76'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.Discover::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.articles::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23193c76'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.news::after      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.Partner::after   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23193c76'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.review::after    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E"); background-repeat: no-repeat; }

/* ====================== About Our Mission ====================== */
.aboutour { padding: 120px 5%; margin-top: 30px; background-color: #fcfcfc; position: relative; }
.aboutour .cards-container { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,300px)); gap: 30px; margin-bottom: 80px; justify-content: center; }
.aboutour .cards { background: #fff; padding: 25px 15px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.08); text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.aboutour .cards:hover { transform: translate3d(0,-20px,0); box-shadow: 0 10px 30px rgba(25,60,118,.15); }
.aboutour .cards .icon { font-size: 3rem; color: #edd25f; }
.aboutour .cards .title p { font-size: 1.4rem; font-weight: 600; color: #193c76; margin-bottom: 10px; }
.aboutour .cards .content { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.aboutour .cards .content .counter {
    font-size: 3.2rem; font-weight: 800; margin: 10px 0;
    background: linear-gradient(135deg,#193c76,#4a90e2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.aboutour .cards .content p { font-size: 1.05rem; color: #555; margin: 0; line-height: 1.5; }

.aboutour .context {
    max-width: 1000px; margin: 0 auto 20px;
    background: #fff; padding: 50px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30,80,159,.08);
    position: relative; overflow: visible;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.aboutour .context:hover { transform: translate3d(0,-8px,0); box-shadow: 0 15px 40px rgba(30,80,159,.15); }
.aboutour .context .images { width: 100%; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }

.context-img {
    height: 120px; width: 120px; background-color: #2d5a99; border-radius: 30%;
    position: absolute; margin-top: -15%; padding: 25px;
    box-shadow: 0 0 0 3px rgba(8,27,51,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.aboutour .context:hover .context-img { transform: scale(1.08) translateY(-5px); box-shadow: 0 0 0 4px rgba(30,80,159,.2); }

@media (max-width: 768px) {
    .context-img { display: none; }
    .aboutour .context { padding-top: 30px; }
}

.aboutour .context .title { text-align: center; margin-bottom: 25px; }
.aboutour .context .title #tite { font-size: 2.2rem; font-weight: 700; color: #2d5a99; margin-bottom: 15px; transition: color .3s ease; }
.aboutour .context:hover .title #tite { color: #1e509f; }
.aboutour .context .title #subtitles { font-size: 1.35rem; color: #d4af37; margin-bottom: 25px; font-weight: 600; }
.aboutour .context .content p { font-size: 1.1rem; color: #5a6c7d; line-height: 1.9; text-align: justify; transition: color .3s ease; }
.aboutour .context:hover .content p { color: #495057; }

/* ====================== Discover ====================== */
.Discover { padding: 120px 5%; background: #193c76; color: #fff; position: relative; }
.Discover .titles { text-align: center; margin-bottom: 50px; }
.Discover .titles #titles   { font-size: 2.8rem; font-weight: 700; margin-bottom: 15px; }
.Discover .titles #subtitles { font-size: 1.35rem; opacity: .9; }

.discover-mascot {
    position: absolute; top: 120px; left: 65%; z-index: 5;
    width: 120px; height: auto; transform: translate(-50%,-50%);
    background: #193c76; border-radius: 30%;
    border: 4px solid rgba(255,255,255,.95); padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transition: transform .3s ease;
}
.discover-mascot:hover { transform: translate(-50%,-55%) scale(1.05); }

@media (max-width: 768px) {
    .discover-mascot { display: none; }
    .Discover .titles { margin-top: 0; }
}

.Discover .content { max-width: 900px; margin: 0 auto; text-align: center; }
.Discover .content p { font-size: 1.2rem; line-height: 1.8; opacity: .95; text-align: justify; margin-top: 24px; }

.yt-facade {
    position: relative; width: 100%; max-width: 800px;
    margin: 0 auto; border-radius: 15px; overflow: hidden;
    cursor: pointer; background: #000; aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
.yt-facade:focus-visible { outline: 3px solid #edd25f; }
.yt-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
.yt-facade:hover .yt-thumb { opacity: .8; }
.yt-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: none; border: none; cursor: pointer; padding: 0;
    transition: transform .2s ease;
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%,-50%) scale(1.12); }
.yt-play-bg { fill: #ff0000; opacity: .9; }
.yt-facade:hover .yt-play-bg { opacity: 1; }
.yt-play-icon { fill: #fff; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; border-radius: 15px; }

/* ====================== Articles ====================== */
.articles { padding: 120px 5%; background-color: #fff; position: relative; }
.articles .title { text-align: center; margin-bottom: 60px; }
.articles .title #titles   { font-size: clamp(2rem,4.5vw,2.8rem); font-weight: 700; color: #193c76; margin-bottom: 15px; }
.articles .title #subtitles { font-size: clamp(1rem,2.2vw,1.25rem); color: #666; }
.articles .articles-container { max-width: 1400px; margin: 0 auto; padding: 0 15px; }
.articles .swiper { width: 100%; height: 100%; }
.swiper-pagination { margin-top: 22px; bottom: 0 !important; }

/* ====================== News ====================== */
.news { padding: 120px 5% 150px; background: #193c76; position: relative; }
.news .titles { text-align: center; margin-bottom: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.news .titles .spark { display: inline-block; margin-bottom: 20px; background-color: #fff; color: #193c76; border-radius: 10px; padding: 10px; }
.news .titles #titles   { font-size: 2.8rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.news .titles #subtitle { font-size: 1.2rem; color: rgba(255,255,255,.9); line-height: 1.8; text-align: justify; }
.news .cards-container { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.news .cards {
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    padding: 45px 35px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.news .cards:hover { background: rgba(255,255,255,.15); transform: translate3d(0,-8px,0); box-shadow: 0 15px 40px rgba(0,0,0,.3); }
.news .cards .contents #titles { font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 15px; text-align: center; }
.news .cards .contents #teks   { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.7; text-align: justify; }

/* ====================== Partner ====================== */
.Partner { padding: 120px 5%; background: #fcfcfc; position: relative; }
.Partner .title { text-align: center; margin-bottom: 60px; }
.Partner .title #titles  { font-size: 2.8rem; font-weight: 700; color: #193c76; margin-bottom: 15px; }
.Partner .title #subtitle { font-size: 1.3rem; color: #666; }
.OfficialPartner { width: 90%; margin: 0 auto; overflow: visible; }
.OfficialPartner .swiper { overflow: visible; margin-bottom: 30px; }
.Partner .swiper-slide { display: flex; justify-content: center; align-items: center; background: rgba(255,255,255,.12); border-radius: 15px; padding: 20px; height: 200px; box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.Partner .swiper-slide img { max-width: 100%; max-height: 100px; object-fit: contain; }

/* ====================== Review ====================== */
.review { padding: 150px 5%; background: #193c76; position: relative; }
.review .title { text-align: center; margin-bottom: 60px; }
.review .title #titles   { font-size: 2.8rem; font-weight: 700; color: #fff; margin-bottom: 15px; }
.review .title #subtitles { font-size: 1.2rem; color: rgba(255,255,255,.9); }
.review .review-container { max-width: 1200px; margin: 0 auto; }
.review .swiper { padding-bottom: 24px; padding-top: 10px; }
.review .swiper-wrapper { display: flex; align-items: stretch; }
.review .swiper-slide { display: flex; justify-content: center; align-items: stretch; height: auto; padding: 0 8px; }
.review .swiper-slide > .review-card-link,
.review .swiper-slide > a { display: flex; width: 100%; justify-content: center; align-items: stretch; text-decoration: none; color: inherit; }
.review .review-card-link .card { width: 100%; max-width: 380px; flex: 1; display: flex; flex-direction: column; }
.review .card {
    width: 100%; max-width: 380px;
    background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px; padding: 26px;
    backdrop-filter: blur(8px);
    transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 16px; flex: 1; min-height: 320px;
}
.review .card:hover { transform: translate3d(0,-6px,0); box-shadow: 0 3px 10px rgba(0,0,0,.35); z-index: 2; }
.review .review-stars { display: flex; gap: 6px; margin-bottom: 6px; align-items: center; }
.review .star {
    width: 22px; height: 22px;
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    background: rgba(255,255,255,.25); position: relative; overflow: hidden;
}
.review .star::after { content:''; position:absolute; inset:0; background:#f7c948; width:var(--fill,0%); }
.review .star.full  { --fill: 100%; }
.review .star.half  { --fill: 50%; }
.review .star.empty { --fill: 0%; }
.review .review-quote { color: rgba(255,255,255,.95); font-size: 1.05rem; line-height: 1.6; flex-grow: 1; overflow: hidden; text-align: left; }
.review .review-author { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.review .review-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.08); flex-shrink: 0; }
.review .review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.review .review-author-name { color: #fff; font-weight: 700; margin: 0; font-size: 1rem; }
.review .review-author-role { color: rgba(255,255,255,.7); margin: 0; margin-top: 4px; font-size: .9rem; }

/* ====================== Package (Section 7) ====================== */
/*
 * Card styles disuplai oleh membership-cards.css.
 * File ini hanya menyediakan wrapper section, judul,
 * dan override Swiper navigation/pagination agar tidak
 * bentrok dengan carousel utama.
 */
.package {
    padding: 80px 5%;
    background-color: #fcfcfc;
}
.package .titles {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}
.package .titles #titles {
    font-size: 2.8rem; font-weight: 700; color: #193c76; margin-bottom: 20px;
}
.package .titles #subtitles {
    font-size: 1.2rem; color: #555; line-height: 1.8; text-align: justify;
}

/* Nav button override — scope ke .package agar tidak kena carousel */
.package .swiper-button-next,
.package .swiper-button-prev {
    width: 40px; height: 40px;
    background-color: #193c76;
    border-radius: 50%;
    color: #fff !important;
    transition: background-color .3s ease, transform .3s ease;
}
.package .swiper-button-next::after,
.package .swiper-button-prev::after { font-size: 14px; font-weight: 900; }
.package .swiper-button-next:hover,
.package .swiper-button-prev:hover { background-color: #edd25f; color: #193c76 !important; transform: scale(1.1); }

/* Jika menggunakan FA icon di dalam button */
.package .membership-next,
.package .membership-prev {
    width: 40px; height: 40px;
    background: #193c76; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px;
    transition: background-color .3s ease, transform .3s ease;
    cursor: pointer;
}
.package .membership-next:hover,
.package .membership-prev:hover { background: #edd25f; color: #193c76; transform: scale(1.1); }

.package .membership-pagination .swiper-pagination-bullet { background-color: #193c76; opacity: .35; }
.package .membership-pagination .swiper-pagination-bullet-active { background-color: #193c76; opacity: 1; width: 20px; border-radius: 6px; }

/* ====================== Staff ====================== */
.Staff { padding: 80px 5%; background-color: #fcfcfc; }
.Staff .title { text-align: center; margin-bottom: 60px; }
.Staff .title #titles   { font-size: 2.8rem; font-weight: 700; color: #193c76; }
.Staff .title #subtitles { font-size: 1.2rem; color: #666; margin-top: 10px; }

/* ====================== Clients ====================== */
.Clients { padding: 80px 5%; background-color: #fcfcfc; }
.Clients .title { text-align: center; margin-bottom: 60px; }
.Clients .title #titles { font-size: 2.8rem; font-weight: 700; color: #193c76; }
.Clients .content { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 20px; align-items: center; justify-items: center; }
.Clients .content img { max-width: 110px; max-height: 85px; object-fit: contain; filter: grayscale(100%); transition: filter .3s ease, transform .3s ease; cursor: default; padding: 8px; }
.Clients .content img:hover { filter: grayscale(0%); transform: scale(1.08); }

/* ====================== Scroll Fade ====================== */
.anim-fade { opacity: 0; transform: translate3d(0,24px,0); transition: opacity .55s ease, transform .55s ease; }
.anim-fade.visible { opacity: 1; transform: translate3d(0,0,0); }

/* ====================== Global Swiper Pagination ====================== */
.swiper-pagination-bullet { background-color: #edd25f; opacity: .5; }
.swiper-pagination-bullet-active { background-color: #edd25f; opacity: 1; }

/* ====================== Responsive ====================== */
@media (max-width: 1350px) {
    .discover-mascot { left: 44%; top: 60px; }
    .Discover .titles { margin-top: 80px; }
}
@media (max-width: 1200px) {
    .aboutour .cards-container,
    .news .cards-container { grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); }
    /* Pada tablet: pre-init membership swiper tampil 2 col */
    .membershipSwiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 50%; }
}
@media (max-width: 768px) {
    body { font-size: 15px; }
    .aboutour .title #titles, .Discover .titles #titles, .articles .title #titles,
    .news .titles #titles, .Partner .title #titles, .review .title #titles,
    .package .titles #titles, .Staff .title #titles, .Clients .title #titles { font-size: 2.2rem; }
    .aboutour, .Discover, .articles, .news, .Partner,
    .review, .package, .Staff, .Clients { padding: 60px 5%; }
    .review { padding-top: 80px; }
    .news   { padding-bottom: 80px; }
    .aboutour .cards-container,
    .news .cards-container { grid-template-columns: 1fr; gap: 20px; }
    .aboutour .context { padding: 30px 20px; }
    .Clients .content { grid-template-columns: repeat(auto-fit,minmax(90px,1fr)); gap: 12px; }
    .Clients .content img { max-width: 75px; max-height: 55px; }
    .review .card { padding: 20px; min-height: 260px; }
    .package .titles { margin-bottom: 40px; }
    /* Pada mobile: pre-init tampil 1 col */
    .membershipSwiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 90%; }
}
@media (max-width: 550px) {
    .aboutour, .Discover, .articles, .news,
    .Partner, .review, .package, .Staff, .Clients { padding: 40px 4%; }
    .review { padding-top: 55px; padding-bottom: 45px; }
    .news   { padding-top: 40px; padding-bottom: 55px; }
    .aboutour::after, .Discover::after, .articles::after,
    .news::after, .Partner::after, .review::after {
        height: 48px !important;
        background-size: 120% 48px !important;
        background-position: center bottom !important;
        left: 50% !important;
        transform: translateX(-50%) rotate(180deg) !important;
        bottom: -6px !important;
        background-repeat: no-repeat !important;
    }
    .aboutour .title #titles, .Discover .titles #titles, .articles .title #titles,
    .news .titles #titles, .Partner .title #titles, .review .title #titles,
    .package .titles #titles, .Staff .title #titles, .Clients .title #titles { font-size: 1.5rem; }
    .aboutour .context { padding: 20px; margin-bottom: 18px; }
    .news .cards { padding: 20px 18px; }
    .review .card { padding: 16px; gap: 12px; }
    .package .swiper-button-next,
    .package .swiper-button-prev,
    .package .membership-next,
    .package .membership-prev { display: none; }
}
@media (max-width: 480px) { body { font-size: 14px; } }
@media (max-width: 360px) {
    .aboutour::after, .Discover::after, .articles::after,
    .news::after, .Partner::after, .review::after { display: none !important; }
    .aboutour, .Discover, .articles, .news, .Partner,
    .review, .package, .Staff, .Clients { padding-bottom: 60px !important; }
}