/* ===== BASE ===== */
:root {
    --header-h: 64px;
    --cloud-h: 180px;
    --grass-h: 120px;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_lightitalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_bookitalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_mediumitalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "GothamRnd";
    src: url("../fonts/gothamrnd_bolditalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}


/* Font & base */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "GothamRnd", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
}

/* ===== OVERLAY & DRAWER ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    z-index: 40;
}
.drawer {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 18rem;
    max-width: 85vw;
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s;
}
/* ===== HERO ===== */
.hero-wrap {
    min-height: calc(100vh - var(--header-h));
    background-color: #ffe033;
    background-image: url("../img/hero-clouds.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: contain; 
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: clamp(
        2rem,
        7vh,
        5rem
    ); /* jarak dari atas agar teks & tombol pas */
}

/* ===== Kontainer utama ===== */
.hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 1rem;
    position: relative;
    height: calc(100vh - var(--header-h));
}

/* ===== Slide transition (kalau ada carousel) ===== */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;

}
.hero-slide.active {
    opacity: 1;
    z-index: 10;
}
/* ===== Teks & tombol ===== */
.hero-copy {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.5rem, 1vh, 1rem);
    margin: 0 auto;
}

.hero-title {
    color: #9e2d24;
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(34px, 4vw, 38px);
    max-width: 24ch;
    margin: 0 auto;
}
/* ===== Play Badge ===== */
.play-badge {
    top: 0;
    height: clamp(60px, 9vw, 80px); 
    padding-top: clamp(15px, 7vh, 25px);
    width: auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.play-badge:hover {
    transform: scale(1.08); /* hover lebih terasa */
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

/* ===== HP mockup di bawah ===== */
.hero-phone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    max-height: min(70vh, 65%);
    width: auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
    z-index: 1;
}

/* ===== Responsif untuk hero ===== */
@media (min-width: 1440px) {
    .hero-wrap {
        min-height: calc(100vh - var(--header-h));        
        max-height: 767px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(20px, 6vh, 80px);
        background-size: auto 32%;
        background-position: center bottom;
    }

    .hero-phone {
        max-height: 65%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(34px, 8vw, 40px);
        max-width: 28ch;

    }

    .play-badge {
        width: auto;
        height: clamp(90px, 50vw, 90px);
        padding-top: clamp(10px, 8vw, 15px);
    }
}
@media (max-width: 1024px) {
    .hero-wrap {
        min-height: calc(100vh - var(--header-h));        
        max-height: 830px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(20px, 8vh, 30px);
        background-size: auto 30%;
        background-position: center bottom;
    }

    .hero-phone {
        position: absolute;
        bottom: 0;                
        left: 50%;
        transform: translateX(-50%);
        max-height: 70%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(34px, 8vw, 40px);
        max-width: 26ch;

    }

    .play-badge {
        width: auto;
        height: clamp(90px, 50vw, 110px);
        padding-top: clamp(10px, 8vw, 15px);
    }
}
@media (max-width: 1024px) and (max-height: 600px) {
    .hero-wrap {
        min-height: calc(100vh - var(--header-h));        
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(20px, 8vh, 30px);
        background-size: auto 38%;
        background-position: center bottom;
    }

    .hero-phone {
        position: absolute;
        bottom: 0;                
        left: 50%;
        transform: translateX(-50%);
        max-height: 60%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(30px, 8vw, 34px);
        max-width: 22ch;

    }

    .play-badge {
        width: auto;
        height: clamp(60px, 50vw, 60px);
        padding-top: clamp(8px, 8vw, 10px);
    }
}
@media (max-width: 820px) and (max-height: 1500px) {
    .hero-wrap {
        min-height: 600px;
        max-height: 750px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(20px, 8vh, 30px);
        background-size: auto 30%;
        background-position: center bottom;
    }

    .hero-phone {
        position: absolute;
        bottom: 0;                
        left: 50%;
        transform: translateX(-50%);
        max-height: 70%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(34px, 8vw, 40px);
        max-width: 28ch;

    }

    .play-badge {
        width: auto;
        height: clamp(80px, 37vw, 90px);
        padding-top: clamp(4px, 4vw, 6px);
    }
}

@media (max-width: 768px) {
     .hero-wrap {
        min-height: 680px;
        max-height: 700px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(10px, 5vh, 18px);
        background-size: auto 30%;
        background-position: center bottom;
    }
    .hero-phone {
        position: absolute;
        bottom: 0;                
        left: 50%;
        transform: translateX(-50%);
        max-height: 65%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(34px, 6vw, 40px);
        max-width: 28ch;

    }

    .play-badge {
        width: auto;
        height: clamp(80px, 37vw, 90px);
        padding-top: clamp(4px, 4vw, 6px);
    }
}
@media (max-width: 768px) and (max-height: 600px) {
    .hero-wrap {
        min-height: calc(100vh - var(--header-h));
        padding-top: clamp(10px, 5vh, 18px);
        background-size: auto 30%;
        background-position: center bottom;
    }

    .hero-phone {
        max-height: 60%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(26px, 6vw, 28px);
        max-width: 23ch;

    }

    .play-badge {
        width: auto;
        height: clamp(50px, 33vw, 60px);
        padding-top: clamp(4px, 4vw, 6px);
    }
}
/* ===================== HERO MOBILE ≤480px ===================== */

/* Layar super pendek (≤600px tinggi) */
@media (max-width: 480px) and (max-height: 600px) {
    .hero-wrap {
         min-height: calc(100vh - var(--header-h));
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(10px, 5vh, 18px);
        background-size: auto 30%;
        background-position: center bottom;
    }

    .hero-phone {
        max-height: 65%;         
        width: auto;
    }

    .hero-copy {
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(24px, 5vw, 26px);
        max-width: 26ch;

    }

    .play-badge {
        width: auto;
        height: clamp(50px, 33vw, 60px);
        padding-top: clamp(4px, 4vw, 6px);
    }
}

/* Layar sedang (601px–800px tinggi) */
@media (max-width: 480px) and (min-height: 601px) and (max-height: 800px) {
    .hero-wrap {
        min-height: 600px;
        max-height: 620px;
        padding-top: clamp(18px, 5vh, 28px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-size: auto 20%;
        background-position: center bottom;
    }
    .hero-phone {
        max-height: 100vh;
        margin-bottom: 0; 
    }
    .hero-copy {
        gap: 0.5rem; 
        max-width: 30ch; 
    }
     .hero-title {
        font-size: clamp(28px, 8vw, 32px);
    }
    .play-badge {
        width: auto;
        height: clamp(60px, 38vw, 70px); 
        padding-top: clamp(6px, 5vw, 12px);
    }
}

/* Layar tinggi (>800px tinggi) */
@media (max-width: 480px) and (min-height: 801px) {
    .hero-wrap {
        min-height: 560px;
        max-height: 570px;
        padding-top: clamp(22px, 5vh, 32px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-size: auto 20%;
        background-position: center bottom;
    }
    .hero-phone {
        max-height: 70%;
        margin-bottom: 0; 
    }
    .hero-copy {
        gap: 0.5rem; /* jarak teks tombol rapih */
    }
     .hero-title {
        font-size: clamp(24px, 9vw, 28px);
        max-width: 28ch; 

    }
    .play-badge {
        top: 0;
        width: auto;
        height: clamp(50px, 35vw, 60px); 
    }
}

@media (max-width: 375px) {
    .hero-wrap {
        min-height: 400px; 
        max-height: 438px; 
        padding-top: clamp(15px, 5vh, 20px);
        background-size: auto 20%; 
        background-position: center bottom;
        justify-content: flex-start ;
    }
    .hero-phone {
        max-height: 70%;
    }
    .hero-copy {
        max-width: 29ch; 
        
    }
    .hero-title {
        font-size: clamp(20px, 5vw, 24px);
        max-width: 28ch; 
    }
    .play-badge {
        width: auto;
        height: clamp(50px, 22vw,60px); 
        padding-top: clamp(15px, 5vh, 20px);
    }
}

/* ===== BLOG ===== */
#blog {
    overflow-x: hidden;
    background: #fff;
    padding-top: clamp(20px, 3vh, 32px);
    padding-bottom: clamp(54px, 6vh, 80px);
}

.blog-title {
    text-align: center;
    margin-bottom: clamp(28px, 4vh, 36px);
    font-weight: bold;
    color: #52626f;
    font-size: 46px;
}

/* --- viewport & track --- */
.blog-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 0px; 
}

.blog-track {
    display: flex;
    gap: 18px; 
    justify-content: center;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

/* --- wrapper card --- */
.blog-card-wrap {
    flex: 0 0 auto;
}

.blog-card {
    width: 400px;
    height: 380px; 
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
}

/* --- gambar --- */
.blog-card-img {
    height: 13rem;
    object-fit: cover;
    width: 100%;
    flex-shrink: 0;
}

/* --- isi panel --- */
.blog-card-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.4rem 1.4rem;
    color: #fff;
    background: var(--card);
}

/* --- judul --- */
.blog-card-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5; 
    margin-bottom: 0.6rem;
    max-height: 4.5rem; 
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    word-break: break-word; /* mencegah kata terlalu panjang merusak layout */
}

/* --- kategori & tombol baca --- */
.cat-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cat);
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: var(--card);
    background: #fff;
    padding: 12px 18px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 15px;
    margin-top: auto; /* membuat tombol selalu menempel di bawah */
}

.readmore-btn .chev-svg-sm {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform: translateY(1px);
}

/* --- kontrol navigasi bawah --- */
.blog-controls {
    position: relative;
    max-width: auto;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-inline: 1rem;
}

.blog-nav {
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    background: #a6b4c1;
    transition: 0.2s ease;
}
.blog-nav:hover {
    filter: brightness(0.95);
}
.blog-nav .chev-svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* --- tombol "See All" --- */
.see-all-btn {
    --seeall-bg: #a6b4c1;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 6px 12px 6px 28px;
    border-radius: 9999px;
    background: var(--seeall-bg);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.seeall-ico {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #fff;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

.chev-svg-lg {
    width: 26px;
    height: 26px;
    stroke: var(--seeall-bg);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.see-all-btn:hover {
    --seeall-bg: #64748b;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .blog-viewport {
        padding-inline: 8px;
    }

    .blog-track {
        gap: 16px;
    }

    .blog-card {
        width: 320px;
        height: 310px;
    }
    .blog-card-panel{
        padding: 1rem 1rem 1.1rem;
    }
    .blog-card-img {
        height: 11rem;
    }

    .blog-card-title {
        font-size: 19px;
                -webkit-line-clamp: 2; /* hanya 2 baris */

    }

    .readmore-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .blog-title {
        font-size: 36px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 12px 22px;
    }

    .blog-nav {
        width: 52px;
        height: 52px;
    }

    .seeall-ico {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 940px) {
    .blog-viewport {
        padding-inline: 2px;
    }

    .blog-track {
        gap: 20px;
        justify-content: flex-start !important;
    }

    .blog-card {
        width: 390px;
        height: 330px;
    }
    .blog-card-panel{
        padding: 1rem 1rem 1.2rem;
    }
    .blog-card-img {
        height: 8.5rem;
    }

    .blog-card-title {
        font-size: 26px;
    }
    .cat-text {
        font-size: 18px;
    }
    .blog-title {
        font-size: 28px;
    }

    .readmore-btn {
        font-size: 18px;
        padding: 8px 12px;
    }

    .blog-nav {
        width: 44px;
        height: 44px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 10px 16px;
    }

    .seeall-ico {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 840px) {
    .blog-viewport {
        padding-inline: 2px;
    }

    .blog-track {
        gap: 20px;
        justify-content: flex-start !important;
    }

    .blog-card {
        width: 390px;
        height: 330px;
    }
    .blog-card-panel{
        padding: 1rem 1rem 1.2rem;
    }
    .blog-card-img {
        height: 8.5rem;
    }

    .blog-card-title {
        font-size: 26px;
    }
    .cat-text {
        font-size: 18px;
    }
    .blog-title {
        font-size: 28px;
    }

    .readmore-btn {
        font-size: 18px;
        padding: 8px 12px;
    }

    .blog-nav {
        width: 44px;
        height: 44px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 10px 16px;
    }

    .seeall-ico {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 768px) {
    .blog-viewport {
        padding-inline: 0;
    }

    .blog-track {
        gap: 18px;
        justify-content: flex-start !important;
    }

    .blog-card {
        width: 360px;
        height: 330px;
    }
    .blog-card-panel{
        padding: 1rem 1rem 1.2rem;
    }
    .blog-card-img {
        height: 8.5rem;
    }

    .blog-card-title {
        font-size: 25px;
        -webkit-line-clamp: 2;
    }
    .cat-text {
        font-size: 20px;
    }
    .readmore-btn {
        font-size: 15px;
        padding: 10px 14px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-nav {
        width: 36px;
        height: 36px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 8px 12px;
    }

    .seeall-ico {
        width: 28px;
        height: 28px;
    }

}

@media (max-width: 480px) {
      .blog-viewport {
        padding-inline: 0;
    }

    .blog-track {
        gap: 18px;
        justify-content: flex-start !important;
    }

    .blog-card {
        width: 360px;
        height: 300px;
        margin: 10px;
    }
 .blog-card-panel{
        padding: 1rem 1rem 1.1rem;
    }
    .blog-card-img {
        height: 9rem;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-title {
        font-size: 26px;
    }

    .blog-nav {
        width: 40px;
        height: 40px;
    }

    .readmore-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 10px 14px;
    }

    .seeall-ico {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 375px) {
    .blog-viewport {
        padding-inline: 0;
    }

    .blog-track {
        gap: 18px;
        justify-content: flex-start !important;
    }

    .blog-card {
        width: calc(100vw - 32px);
        height: 270px;
    }
    .blog-card-panel{
        padding: 1rem 1rem 1.2rem;
    }
    .blog-card-img {
        height: 8.5rem;
    }

    .blog-card-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .readmore-btn {
        font-size: 11px;
        padding: 7px 10px;
    }

    .blog-title {
        font-size: 22px;
    }

    .blog-nav {
        width: 36px;
        height: 36px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 8px 12px;
    }

    .seeall-ico {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 340px) {
    .blog-card {
        width: calc(100vw - 26px);
        height: 260px;
    }

    .blog-card-title {
        font-size: 14px;
        
    }

    .readmore-btn {
        font-size: 10px;
        padding: 6px 10px;
    }

    .blog-nav {
        width: 34px;
        height: 34px;
    }

    .see-all-btn {
        font-size: 24px;
        padding: 7px 10px;
    }

    .seeall-ico {
        width: 26px;
        height: 26px;
    }
}
/* ===== ALL BLOG (SAMA DENGAN BLOG LANDING) ===== */
.all-blog-section {
    padding-top: clamp(20px, 3vh, 32px);
    padding-bottom: clamp(54px, 6vh, 80px);
    background: #fff;
}

.all-blog-title {
    text-align: center;
    font-weight: bold;
    color: #52626f;
    font-size: 46px;
    margin-bottom: clamp(28px, 4vh, 36px);
}

/* --- grid --- */
.all-blog-grid {
    display: grid;
    gap: 18px;
    justify-content: center; /* card selalu di tengah */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* card sama seperti blog */
}

/* --- card --- */
.all-blog-card {
    width: 400px;
    height: 380px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
}

.all-blog-card-img {
    height: 13rem;
    object-fit: cover;
    width: 100%;
    flex-shrink: 0;
}

.all-blog-card-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.4rem 1.4rem;
    color: #fff;
    background: var(--card);
}
.readmore-btn {
    margin-top: auto; /* selalu menempel di bawah */
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: var(--card);
    background: #fff;
    padding: 12px 18px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 15px;
}

.all-blog-card-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    max-height: 4.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.cat-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cat);
}

/* ===== MEDIA QUERIES RESPONSIVE GRID ===== */
@media (max-width: 1024px) {
    .all-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 360px)); 
        justify-content: center;
        gap: 16px;
    }

    .all-blog-card {
        width: 100%;   
        height: 330px; 
        max-width: 360px; 

    }
    .all-blog-card-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 0.6rem;
        max-height: 3rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }

    .readmore-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    .all-blog-card-panel{
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .all-blog-grid {
        grid-template-columns: repeat(2, 360px); /* 2 card tetap */
        gap: 16px;
        justify-content: center;
    }

    .all-blog-card {
        width: 360px;
        height: 330px;
    }

    .all-blog-card-img {
        height: 8.5rem;
    }

    .all-blog-card-title {
        font-size: 20px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .all-blog-grid {
        grid-template-columns: 1fr; /* 1 card/HP */
        gap: 12px;
        justify-items: center;
        padding-inline: 8px;
    }

    .all-blog-card {
        width: 100%;
        max-width: 360px;
        height: 300px;
    }

    .all-blog-card-img {
        height: 9rem;
    }

    .all-blog-card-title {
        font-size: 16px;
    }

    .readmore-btn {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 375px) {
    .all-blog-grid {
        grid-template-columns: 1fr; /* full width */
        padding-inline: 8px;
    }

    .all-blog-card {
        width: 100%;
        max-width: 100%;
        height: 270px;
    }

    .all-blog-card-img {
        height: 8.5rem;
    }

    .all-blog-card-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .readmore-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 340px) {
    .all-blog-card {
        height: 260px;
    }

    .all-blog-card-title {
        font-size: 14px;
    }

    .readmore-btn {
        font-size: 0.65rem;
        padding: 5px 8px;
    }
}

/* ===== ABOUT ===== */
.about-section {
    background: #7d05f8;
    color: #fff;
    padding: 4rem 0;
}
.about-container {
    margin: 0 auto;      
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4px;
    width: fit-content;  
}
.about-text {
    max-width: 420px;  
}

.about-cta {
    --seeall-bg: #4c1d95;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 6px 12px 6px 28px;
    border-radius: 26px;
    background: #4c1d95;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-ico {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background: #fff;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}
.about-cta:hover {
    background: #581c87;
}

/* ==== VIDEO CARD FIX  ==== */
.about-video-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 12px;
    width: 100%;       
    max-width: 300px;  
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.about-video-card img {
    height: 32px;              
    margin-bottom: 10px;
}


/* VIDEO PORTRAIT  */
.portrait-box {
    width: 100%;
    aspect-ratio: 4 / 5;       
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.video-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-inner iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Text bawah video */
.about-video-card p {
    margin-top: 14px;
    font-size: 0.95rem;
}

@media (max-width: 1280px) {
    .about-container {
        max-width: 1000px;
    }

    .about-cta {
        font-size: 24px;
    }

    .cta-ico {
        width: 36px;
        height: 36px;
    }
}


/* =====================================
   1024px — TABLET LANDSCAPE
===================================== */
@media (max-width: 1024px) {
    .about-container {
        max-width: 900px;
        gap: 28px;
    }

    .about-cta {
        font-size: 24px;
        gap: 18px;
    }

    .about-video-card {
        max-width: 260px;
        padding: 12px;
    }

    .portrait-box {
        aspect-ratio: 4 / 5;
    }
}


/* =====================================
   768px — TABLET PORTRAIT
===================================== */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-inline: 20px;
    }

    .about-text {
        max-width: none;
    }

    .about-cta {
        font-size: 24px;
        padding: 10px 18px;
        gap: 14px;
    }

    .cta-ico {
        width: 34px;
        height: 34px;
    }

    .about-video-card {
        max-width: 300px;
        margin: 0 auto;
    }
}


/* =====================================
   480px — MOBILE MEDIUM
===================================== */
@media (max-width: 480px) {
    .about-section {
        padding: 2.4rem 0;
    }

    .about-container {
        gap: 22px;
    }

    .about-video-card {
        max-width: 240px;
    }

    .about-cta {
        font-size: 24px;
        padding: 8px 14px;
        gap: 12px;
    }

    .cta-ico {
        width: 30px;
        height: 30px;
    }

    .about-video-card img {
        height: 26px;
    }

    .about-video-card p {
        font-size: 0.88rem;
    }
}


/* =====================================
   360px — MOBILE KECIL BANGET
===================================== */
@media (max-width: 375px) {
    .about-video-card {
        max-width: 210px;
    }

    .about-cta {
        font-size: 24px;
        padding: 8px 12px;
        gap: 10px;
    }

    .cta-ico {
        width: 28px;
        height: 28px;
    }
}
    /* ===== GAMES MARQUEE ===== */
.games-marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* wrapper animasi */
.games-marquee {
    display: flex;
    width: max-content;
    animation: games-scroll 25s linear infinite;
    pointer-events: none;
}

/* tiap track */
.games-track {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}

.games-track > a {
    flex: 0 0 auto;
    pointer-events: auto;
}

@keyframes games-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

#games h2 {
    font-weight: bold;
    font-size: 46px;
    line-height: auto;
    letter-spacing: -0.02em;
    color: #52626f;
    margin-bottom: 35px;
}

#games p {
    font-size: 26px; 
    line-height: 1.5;
    color: #a6b4c1; 
    max-width: 1200px;
    text-align: center;
    margin: 1.5rem auto 0; 
}

/* Tombol "Lihat Semua" */
#games .see-all-btn {
    all: unset; 
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 6px 12px 6px 28px;
    margin-top: 24px;
    border-radius: 9999px;
    background: #f2612c;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}
#games .seeall-ico {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: #ffe033;
    color: #f2612c;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}
#games .chev-svg-lg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform: translateY(1px);
}
#games .see-all-btn:hover {
    filter: brightness(1.05);
}
#games .see-all-btn:hover .seeall-ico {
    color: #d94f1f;
}
/* ===== MITRA / PARTNERSHIP ===== */
#mitra {
    background: #fffbea;
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
}

#mitra h2 {
    font-weight: 800;
    font-size: 46px;
    color: #52626f;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* marquee efek sama seperti games */
.mitra-marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mitra-marquee {
    display: flex;
    width: max-content;
    animation: mitra-scroll 25s linear infinite;
    pointer-events: none;
}

.mitra-track {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
}

.mitra-track > a {
    flex: 0 0 auto;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mitra-track > a:hover img {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

@keyframes mitra-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   REVIEW — Background & Layout
================================ */
.review-section {
    position: relative;
    background: url("../img/review-bg.png") no-repeat center top; 
    background-size: cover;
    padding-top: 2rem;
    padding-bottom: 20px;
    min-height: 400px;    
}


/* VIEWPORT — tempat track & nav */
.review-viewport {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center; /* vertikal center track */
}

.review-track {
    display: flex;
    gap:2rem;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* CARD — ukuran tidak diubah (biarkan dari HTML) */
.review-card {
    flex: 0 0 16%; /* pas 2 card */
    max-width: 16%;
    background: #fff;
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 24px; /* lebih nyaman */

}
/* Text clamp */
.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* ===============================
   NAV BUTTON
================================ */
.review-nav {
    position: absolute;
    top: 68%; /* dari 50% → 58% agar lebih turun */
    transform: translateY(-50%);
    width: 40px;   /* DARI 60px → 74px (lebih besar dan mantap) */
    height: 40px; 
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #09a843;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 3; /* biar gak ketimpa card */
}

/* Tambah jarak dari card kiri & kanan */
   .review-prev { left: -20px; }
    .review-next { right: -4px; }

/* Hover */
.review-nav:hover {
    filter: brightness(1.05);
    transition: 0.2s;
}
.review-nav svg{
    width: 30px;
    height: 30px;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
/* ===============================
   TYPOGRAPHY
================================ */
#review .review-title {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 46px);
    color: #52626f;
    text-align: center;
    margin-bottom: 20px;
}

.review-stars {
    font-size: 22px;
    color: #f59e0b;
}

.review-text {
    font-size: 18px;
    line-height: 1.75;
}

.review-user {
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
}

/* === MOBILE SMALL LANDSCAPE (320) === */
@media (max-width: 320px) {
     .review-track {
        gap: 1rem;
    }

      .review-card {
        flex: 0 0 13%;
        max-width: 13%;
        margin: 0 auto;
        padding: 14px 16px;
        border-radius: 18px;
        min-height: 170px;
        max-height: none; /* biar gak kepotong */
    }

    .review-text {
        font-size: 15px;
        -webkit-line-clamp: 3; /* potong 3 baris biar pendek */
        line-height: 1.45;
    }

    .review-stars {
        font-size: 18px;
    }

    .review-user {
        font-size: 13px;
    }

    .review-nav {
        width: 36px;
        height: 36px;
    }

    .review-prev { left: 6px; }
    .review-next { right: 6px; }
}
/* === MOBILE SMALL LANDSCAPE (325–480px) === */
/* === 320px devices === */
@media (min-width: 320px) and (max-width: 320px) {
    .review-card {
        flex: 0 0 13%;
        max-width: 13%;
        padding: 14px 16px;
        min-height: 170px;
    }

    .review-text {
        font-size: 15px;
        -webkit-line-clamp: 3;
    }

    .review-stars {
        font-size: 18px;
    }

    .review-user {
        font-size: 13px;
    }

    .review-nav {
        width: 36px;
        height: 36px;
    }
         .review-prev { left: 6px; }
    .review-next { right: 6px; }
}

/* === 375px devices === */
@media (min-width: 375px) and (max-width: 375px) {
    .review-card {
        flex: 0 0 14%;
        max-width: 14%;
        padding: 15px 16px;
        min-height: 180px;
    }

    .review-text {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .review-stars {
        font-size: 19px;
    }

    .review-user {
        font-size: 14px;
    }

    .review-nav {
        width: 38px;
        height: 38px;
    }
      .review-prev { left: 6px; }
    .review-next { right: 24px; }
}

/* === 481px → 767px=== */
@media (min-width: 376px) and (max-width: 767px) {
    .review-card {
        flex: 0 0 15%;
        max-width: 15%;
        min-height: 200px;
        max-height: 220px;
    }

    .review-prev { left: 4px; }
    .review-next { right: 4px; }
}
/* === 768px → 1023px === */
@media (min-width: 768px) and (max-width: 1023px) {
    .review-card {
        flex: 0 0 16%;
    }
    .mx-auto{
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
    .review-prev { left: 2px; }
    .review-next { right: 12px; }

    .review-nav {
        width: 42px;
        height: 42px;
    }
}
}
/* === DESKTOP 1024px  === */
@media (min-width: 1024px) {

 .review-card {
    flex: 0 0 16%; /* pas 2 card */
    max-width: 16%;
}
}

/* ===== PROGRAM CARDS ===== */
#program .program-title {
    font-weight: 700;
    font-size: 46px;
    line-height: auto;
    letter-spacing: auto;
    color: #52626f;
    text-align: center;
    margin-bottom: 24px;
}
.card-icon {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    
    margin-top: 1.25rem;
    color: #fff;
    padding: 6px 12px 6px 28px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(80% - 2rem);
}

.card-cta-ico {
    display: inline-grid;
    place-items: center;
    height: 1.75rem;
    width: 1.75rem;
    border-radius: 9999px;
    background: #facc15;
    color: #ea580c;
}

#program .grid > div {
    position: relative;
    padding-bottom: 80px; 
}
@media (min-width: 1024px) and (max-height: 650px) {
       .card-cta {
        width: calc(100% - 2rem); /* lebih lebar & fleksibel */
        padding: 6px 12px 6px 20px;
        bottom: 20px;
        left: 20px;
        font-size: 15px;
    }
}
/* ===== TABLET (768px – 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {

    #program .program-title {
        font-size: 44px; /* lebih kecil sedikit */
        margin-bottom: 20px;
        align-items: center;
    }

    .card-icon {
        height: 2.4rem; /* mengecil sedikit */
        top: 1rem;
        right: 1rem;
    }

    .card-cta {
        width: calc(95% - 2rem); /* lebih lebar & fleksibel */
        padding: 6px 12px 6px 20px;
        bottom: 20px;
        left: 20px;
        font-size: 15px;
    }

    .card-cta-ico {
        height: 1.6rem;
        width: 1.6rem;
    }

    /* Tambah ruang bawah untuk CTA */
    #program .grid > div {
        padding-bottom: 90px;
    }
}


/* ===== MOBILE (≤767px) — BIARKAN KODE KAMU TADI ===== */
@media (max-width: 767px) {
    #program .program-title {
        font-size: 44px;
        margin-bottom: 16px;
        text-align: center; 
    }

    .card-cta {
        bottom: 16px; 
        left: 16px;
        padding: 6px 12px;
        width: calc(100% - 32px);
        font-size: 24px;
        gap: 6px;
    }

    .card-cta-ico {
        height: 1.5rem;
        width: 1.5rem;
    }

    #program .grid > div {
        padding-bottom: 100px;
    }
}
@media (max-width: 375px) {
    /*===== Card CTA di Program Section =====*/
    .card-cta {
        bottom: 16px; 
        left: 16px;
        padding: 6px 12px;
        width: calc(100% - 32px); /* Selalu full tapi ada padding */
        font-size: 20px;
        gap: 6px;
    }

    .card-cta-ico {
        height: 1.5rem;
        width: 1.5rem;
    }

    /* Jarak space untuk card-cta */
    #program .grid > div {
        padding-bottom: 100px; /* Tambah ruang untuk card-cta */
    }
}


/* ===== CONTACT ===== */
.contact-section {
    position: relative;
    background: #fff;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    background-image: url("../img/contact-bg.png");
}
#contact .contact-title {
    font-weight: 700;
    font-size: 46px;
    line-height: auto;
    letter-spacing: auto;
    color: #52626f;
    text-align: center;
    margin-bottom: 24px;
}
.contact-form {
    display: block;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    padding: 0.5rem;
}
.contact-input {
    width: 100%;
    border-radius: 1rem;
    background: #f3f4f6;
    padding: 0.75rem 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.contact-input::placeholder {
    color: #94a3b8;
}
.contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #facc15;
}
.contact-submit {
    width: 100%;
    border: 2px solid #facc15;
    color: #eab308;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-top: 0.25rem;
}
.contact-submit:hover {
    background: #fef9c3;
}
.contact-bottom-spacer {
    height: 10rem;
}
@media (min-width: 768px) {
    .contact-bottom-spacer {
        height: 15rem;
    }
}
@media (min-width: 1024px) {
    .contact-bottom-spacer {
        height: 20rem;
    }
}

/* ===== DOWNLOAD ===== */
.download-section {
    position: relative;
    overflow: hidden;
    min-height: 280px; /* BIKIN TIDAK ADA PUTIH */
}
.download-bg {
    position: absolute;
    inset: 0;
    background: #faaa15;
}

.download-pattern {
    position: absolute;
    inset: 0;
    background-image: url("../img/download-bg.png");
    background-position: center ; /* fokuskan tengah */
    background-size: 100%; /* PERKECIL gambar (bisa 60–80%) */
}
.download-content {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.download-title {
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 8vw, 4rem);
}
.lang-en .download-title {
    font-size: clamp(2.25rem, 9vw, 5rem);
}

.badge-link {
    display: inline-block;
    border-radius: 0.5rem;
    outline: none;
    transition: transform 0.05s;
}
.badge-link:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}
.badge-link:active {
    transform: scale(0.97);
}
.badge-img {
    height: 5rem;
    width: auto;
    display: block;
}
.badge-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(154, 52, 18, 0.6);
    font-weight: 500;
}
.download-badges {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 1.5rem;
}
/* === MOBILE & TABLET (max 1023px) === */
@media (max-width: 1023px) {
    .download-badges {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .badge-link {
        width: 160px;   
        max-width: 100%;
    }

    .badge-img {
        width: 100%;
        height: auto;
    }
}
/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #f1f5f9;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}
.btn-outline-yellow {
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 2px solid #facc15;
    background: #fff;
    color: #ca8a04;
    font-weight: 600;
}
.btn-outline-yellow:hover {
    background: #fef9c3;
}

@media (max-width: 1920px) and (min-width: 1600px) {
    .hero-wrap {
        min-height: calc(100vh - var(--header-h));        
        max-height: 767px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-top: clamp(20px, 6vh, 80px);
        background-size: auto 280px;
        padding-top: clamp(20px, 8vh, 30px);
        background-position: center bottom;
        background-repeat: repeat-x;
    }

    .hero-inner {
        min-height: 800px; 
        padding-top: 2rem;
        padding-bottom: 4rem;
        gap: 2rem;
    }
    .hero-phone {
        max-width: 600px;
        width: 100%;
        height: auto;
        max-height: 100vh;
    }
        .hero-title {
        font-size: clamp(34px, 8vw, 48px);
        max-width: 28ch;

    }
}
/* ===== CONTACT SECTION — khusus layar 1920x1080 ===== */
@media (max-width: 1920px) and (min-width: 1600px) {
    .contact-section {
        min-height: 1080px; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 6rem 2rem;
    }

    .contact-form {
        max-width: 800px;
        width: 100%;
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
    }
}

@media (max-width: 1024px) {
     /* NAVBAR */
    header .max-w-7xl { padding-left: 16px; padding-right: 16px; height: 54px; }
    header a img { height: 30px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 5px 10px; font-size: 13px; }
    #langBtn {padding: 5px 12px; font-size: 13px; gap: 4px}
    #langBtn svg {height: 12px; width: 12px;}
    #currentLang {display: inline-block;}
}


/* NEST HUB MAX (1280 × 800) – large landscape tablet */
@media (max-width: 1280px) and (max-height: 820px) {
    /* navbar landing page */
    header .max-w-7xl { padding-left: 20px; padding-right: 20px; height: 56px; }
    header a img { height: 28px; }
    header .flex.items-center.gap-3 > a, 
    header .flex.items-center.gap-3 > button { padding: 6px 12px; font-size: 14px; }
}

/* iPad Air / Tablet besar 820px — 1024px */
@media (max-width: 900px) {
     /* NAVBAR */
    header .max-w-7xl { padding-left: 14px; padding-right: 14px; height: 52px; }
    header a img { height: 28px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 4px 10px; font-size: 12px; }
    #langBtn {padding: 4px 10px; font-size: 12px; gap: 4px}
    #langBtn svg {height: 12px; width: 12px;}
    #currentLang {display: inline-block;}
}

@media (max-width: 768px) {
        /* NAVBAR */
    header .max-w-7xl { padding-left: 12px; padding-right: 12px; height: 50px; }
    header a img { height: 24px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 4px 10px; font-size: 12px; }
    #menuBtn img { height: 20px; width: 20px; }
    #langBtn {padding: 4px 10px; font-size: 12px; gap: 4px}
    #langBtn svg {height: 12px; width: 12px;}
    #currentLang {display: inline-block;}
}
/* Surface Duo / small-wide phones (500–600px) */
@media (max-width: 600px) {
    /* NAVBAR */
    header .max-w-7xl { padding-left: 10px; padding-right: 10px; height: 48px; }
    header a img { height: 22px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 3px 6px; font-size: 11px; }
    #menuBtn img { height: 18px; width: 18px; }
}

@media (max-width: 480px) {
    /* NAVBAR */
    header .max-w-7xl { padding-left: 8px; padding-right: 8px; height: 46px; }
    header a img { height: 20px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 3px 6px; font-size: 10px; }
    #menuBtn img { height: 18px; width: 18px; }
}



/* ================================
   MOBILE SUPER KECIL – max-width 360px
================================= */
@media (max-width: 375px) {
     /* NAVBAR */
    header .max-w-7xl { padding-left: 6px; padding-right: 6px; height: 44px; }
    header a img { height: 18px; }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 2px 4px; font-size: 9px; }
    #menuBtn img { height: 16px; width: 16px; }
}
/* ================================
   MOBILE SUPER KECIL – max-width 320px
================================= */
@media (max-width: 350px) {
    /* NAVBAR */
    header .max-w-7xl { padding-left: 8px; padding-right: 4px; height: 42px; justify-content: space-between; }
    header a img { height: 14px; }
     header .flex.items-center.gap-3 {
        gap: 4px;              /* jarak antar tombol */
    }
    header .flex.items-center.gap-3 > a,
    header .flex.items-center.gap-3 > button { padding: 3px 8px; font-size: 8px; }
    #menuBtn img { height: 14px; width: 14px; }
    #langBtn {padding: 3px 12px; font-size: 8px; gap: 4px}
    #langBtn svg {height: 6px; width: 6px;}
    #currentLang {display: inline-block;}
}


