*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}
body{
    overflow-x:hidden;
    padding-top: 64px;
}
.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.hero{
    position:relative;
    height:700px;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    bottom:80px;
    left:80px;

    background:rgba(255,255,255,.95);

    padding:40px;

    max-width:500px;

    border-radius:30px;
}
.posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.post-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
}

.post-card:hover{
    transform:translateY(-8px);
}
@media(max-width:768px){

    .posts-grid,
    .pick-grid{
        grid-template-columns:1fr;
    }

    .hero{
        height:500px;
    }

    .hero-overlay{
        left:20px;
        right:20px;
        bottom:20px;
        max-width:none;
    }
    
}
.popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 24px;
}

/* MAIN BOX - lebih wide, tidak gendut */
.popup-box{
    width: 100%;
    max-width: 1100px;
    height: 500px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    position: relative;
    animation: pop .22s ease;
}

/* LEFT IMAGE */
.popup-image{
    flex: 1.2;
    background: url("../images/self1.webp") center/cover no-repeat;
    position: relative;
}

/* soft overlay biar nggak terlalu tajam */
.popup-image::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        120deg,
        rgba(0,115,235,0.18),
        rgba(255,253,114,0.08)
    );
}

/* RIGHT CONTENT - lebih airy */
.popup-content{
    flex: 1;
    padding: 42px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    background: linear-gradient(
        180deg,
        #ffffff,
        #f7fbff
    );
}

/* subtle label */
.popup-badge{
    font-size: 11px;
    letter-spacing: 0.8px;
    color: #0073eb;
    background: rgba(0,115,235,0.08);
    padding: 5px 10px;
    border-radius: 999px;
    width: fit-content;
}

/* TITLE - lebih natural, tidak terlalu "ad copy" */
.popup-content h2{
    font-size: 20px;
    line-height: 1.35;
    color: #111;
    margin: 0;
    font-weight: 600;
}

/* SUB */
.popup-content h3{
    font-size: 12px;
    color: #0073eb;
    margin: 0;
    font-weight: 500;
}

/* TEXT - lebih ringan, tidak terlalu salesy */
.popup-content p{
    font-size: 12px;
    color: #444;
    line-height: 1.6;
    margin-top: 4px;
}

/* FORM */
.popup-content form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* INPUT - clean minimal */
.popup-content input{
    padding: 11px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    font-size: 13.5px;
    outline: none;
    transition: 0.2s ease;
    background: #fff;
}

.popup-content input:focus{
    border-color: #0073eb;
    box-shadow: 0 0 0 3px rgba(0,115,235,0.12);
}

/* BUTTON - soft, tidak terlalu "wow" */
.popup-content button{
    margin-top: 4px;
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;

    background: linear-gradient(135deg, #cfe2ff, #fff8d6);
    color: #1a1a1a;

    transition: 0.2s ease;
}

.popup-content button:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,115,235,0.15);
}

/* SMALL REJECT TEXT */
.popup-reject{
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.popup-reject:hover{
    color: #000;
}

/* CLOSE BUTTON - lebih subtle */
.popup-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #d7d7d7;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    color: #000;
}

/* ANIMATION - soft, bukan pop keras */
@keyframes pop{
    from { transform: translateY(10px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media(max-width: 768px){
    .popup-box{
        flex-direction: column;
        height: auto;
        max-height: 90vh;
    }

    .popup-image{
        height: 180px;
        flex: none;
    }

    .popup-content{
        padding: 22px;
    }
}
/* LOVE */
.popup-love{
    position:absolute;
    z-index:3;
    font-size:28px;
    pointer-events:none;

    color:#ffbfd8;

    text-shadow:
        0 0 12px rgba(255,191,216,.6),
        0 0 24px rgba(255,191,216,.4);

    opacity:.9;
}

/* posisi */
.love-1{
    top:40px;
    left:40px;
    font-size:24px;
    transform:rotate(-10deg);
}

.love-2{
    bottom:55px;
    left:80px;
    font-size:16px;
}

.love-3{
    top:70px;
    right:35px;
    font-size:18px;
}

/* SPARKLE */
.popup-sparkle{
    position:absolute;
    z-index:2;
    color:#ffe58f;
    pointer-events:none;
}

.sparkle-1{
    top:110px;
    right:90px;
    font-size:18px;
}

.sparkle-2{
    bottom:70px;
    right:60px;
    font-size:14px;
}
.guide-title{
    font-family:'Space Mono', monospace;
    font-size:18px;
    letter-spacing:0.5px;
    font-weight:700;
}

/* =========================
   MOBILE POPUP IMPROVEMENT
========================= */

@media (max-width:768px){

    .popup-overlay{
        padding:16px;
        align-items:center;
    }

    .popup-box{
        width:100%;
        max-width:100%;
        height:auto;
        max-height:90vh;
        overflow-y:auto;
        border-radius:18px;
    }

    .popup-image{
        height:180px;
        min-height:180px;
    }

    .popup-content{
        padding:24px 20px;
        gap:8px;
    }

    .popup-badge{
        font-size:10px;
    }

    .popup-content h2{
        font-size:18px;
        line-height:1.4;
    }

    .popup-content h3{
        font-size:12px;
    }

    .popup-content p{
        font-size:13px;
        line-height:1.6;
    }

    .popup-content input{
        font-size:14px;
        padding:12px 14px;
    }

    .popup-content button{
        padding:16px;
        font-size:14px;
    }

    .popup-reject{
        font-size:11px;
    }

    .popup-close{
        top:10px;
        right:10px;
        width:30px;
        height:30px;
        font-size:15px;
    }

    /* dekorasi tidak berantakan di layar kecil */
    .popup-love,
    .popup-sparkle{
        transform:scale(.8);
    }

    .love-1{
        top:20px;
        left:20px;
    }

    .love-2{
        left:35px;
        bottom:35px;
    }

    .love-3{
        top:25px;
        right:25px;
    }

    .sparkle-1{
        right:50px;
        top:70px;
    }

    .sparkle-2{
        right:35px;
        bottom:35px;
    }
}

@media (max-width:480px){

    .popup-overlay{
        padding:12px;
    }

    .popup-image{
        height:150px;
        min-height:150px;
    }

    .popup-content{
        padding:20px 16px;
    }

    .popup-content h2{
        font-size:16px;
    }

    .popup-content p{
        font-size:12px;
    }

    .guide-title{
        font-size:15px;
    }
}
@media (max-width:768px){

    .popup-close{
        z-index: 99999;
    }

    .popup-box{
        position: relative;
    }
}
/* =========================
   TOP BANNER / HERO
========================= */

.top-banner{
    position:relative;
    width:100%;
    margin:0 0 30px;
    padding:34px 0 0;
    overflow:hidden;
    background:#fff;
}

.top-banner-inner{
    position:relative;
    width:min(1540px, calc(100% - 100px));
    margin:0 auto;
    padding:35px 55px;
    display:grid;
    grid-template-columns:minmax(0, 1.02fr) minmax(0, .98fr);
    align-items:center;
    gap:70px;
    background:#fff;
}

.top-banner-image{
    position:relative;
    z-index:3;
    width:100%;
    aspect-ratio:1016 / 508;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 22px 55px rgba(40,58,80,.13);
}

.top-banner-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,231,143,.06), transparent 45%);
    pointer-events:none;
}

.top-banner-image > img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.top-banner-content{
    position:relative;
    z-index:4;
    width:100%;
    max-width:650px;
    padding:10px 0;
    text-align:left;
}

.top-banner-badge{
    display:inline-block;
    margin:0 0 20px;
    padding:7px 15px;
    border-radius:999px;
    background:#fff7df;
    color:#977400;
    font-size:11px;
    font-weight:600;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.top-banner-content h2{
    margin:0 0 24px;
    font-family:'Playfair Display', serif;
    font-size:clamp(44px, 4.25vw, 68px);
    line-height:1.08;
    font-weight:700;
    letter-spacing:-1.5px;
    color:#111;
}

.top-banner-content p{
    max-width:570px;
    margin:0 0 30px;
    color:#626262;
    font-family:'Poppins', sans-serif;
    font-size:15px;
    line-height:1.9;
}

.top-banner-actions{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
}

.banner-btn-primary{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    min-height:58px;
    padding:15px 24px 15px 28px;
    overflow:hidden;
    border:0;
    border-radius:14px;
    background:linear-gradient(135deg,#0073eb,#268df4);
    color:#fff;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:.15px;
    box-shadow:0 12px 28px rgba(0,115,235,.22);
    transition:transform .25s ease, box-shadow .25s ease;
}

.banner-btn-primary span{
    font-size:24px;
    line-height:1;
    transition:transform .25s ease;
}

.banner-btn-primary::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(255,253,113,.25),transparent 62%);
    opacity:0;
    transition:opacity .3s ease;
}

.banner-btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(0,115,235,.30);
}

.banner-btn-primary:hover span{
    transform:translateX(4px);
}

.banner-btn-primary:hover::after{
    opacity:1;
}

/* Decorative dots / circles, matching the reference hero */
.hero-decor{
    position:absolute;
    z-index:1;
    pointer-events:none;
}

.hero-dot-grid{
    width:92px;
    height:92px;
    opacity:.8;
    background-image:radial-gradient(circle,#ffd96f 3px,transparent 3.5px);
    background-size:23px 23px;
}

.hero-dot-grid-right{
    top:25px;
    right:10px;
}

.hero-dot-grid-left{
    bottom:18px;
    left:15px;
    background-image:radial-gradient(circle,#9eb38d 2.5px,transparent 3px);
}

.hero-circle{
    position:absolute;
    z-index:1;
    border-radius:50%;
    background:#ffdc7b;
    pointer-events:none;
}

.hero-circle-top{
    top:18px;
    left:28px;
    width:28px;
    height:28px;
}

.hero-circle-right{
    top:125px;
    right:30px;
    width:38px;
    height:38px;
}

.hero-circle-bottom{
    right:30px;
    bottom:120px;
    width:17px;
    height:17px;
}

/* Tablet */
@media (max-width:1024px){
    .top-banner{
        padding-top:20px;
        margin-bottom:25px;
    }

    .top-banner-inner{
        width:min(100% - 40px, 900px);
        min-height:auto;
        padding:20px;
        grid-template-columns:1fr;
        gap:35px;
    }

    .top-banner-image{
        aspect-ratio:1016 / 508;
        order:1;
    }

    .top-banner-content{
        order:2;
        max-width:760px;
        padding:5px 10px 25px;
    }

    .top-banner-content h2{
        font-size:48px;
    }

    .hero-dot-grid-right{
        right:0;
    }

    .hero-circle-right{
        right:10px;
    }
}

/* Mobile */
@media (max-width:768px){
    .top-banner{
        padding-top:10px;
        margin-bottom:20px;
    }

    .top-banner-inner{
        width:calc(100% - 28px);
        padding:15px 8px 20px;
        gap:28px;
    }

    .top-banner-image{
        aspect-ratio:1016 / 508;
        border-radius:24px;
    }

    .top-banner-content{
        padding:0 12px 10px;
    }

    .top-banner-badge{
        margin-bottom:14px;
        font-size:9px;
        padding:6px 12px;
    }

    .top-banner-content h2{
        font-size:38px;
        line-height:1.1;
        letter-spacing:-.8px;
        margin-bottom:18px;
    }

    .top-banner-content p{
        font-size:13px;
        line-height:1.75;
        margin-bottom:23px;
    }

    .top-banner-actions{
        width:100%;
    }

    .banner-btn-primary{
        width:100%;
        min-height:54px;
        padding:14px 18px;
        gap:15px;
        font-size:13px;
    }

    .hero-dot-grid-right{
        top:5px;
        right:-18px;
        transform:scale(.75);
    }

    .hero-dot-grid-left{
        bottom:0;
        left:-18px;
        transform:scale(.75);
    }

    .hero-circle-top{
        left:2px;
        top:8px;
    }

    .hero-circle-right{
        right:-2px;
        top:90px;
    }

    .hero-circle-bottom{
        right:2px;
        bottom:80px;
    }
}

@media (max-width:480px){
    .top-banner-image{
        aspect-ratio:1016 / 508;
    }

    .top-banner-content h2{
        font-size:33px;
    }

    .top-banner-content p{
        font-size:12.5px;
    }
}

/* =========================
   COMMUNITY HIGHLIGHT (HERO)
========================= */

.community-highlight{
    margin:0 0 26px;
}

.community-title{
    position:relative;
    display:inline-block;
    padding:8px 18px;
    background:#eaf2ff;
    border-radius:999px;
    font-family:'Poppins', sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:#0073eb;
}

.community-count{
    display:block;
    margin-top:18px;
    font-family:'Playfair Display', serif;
    font-size:clamp(40px, 4.4vw, 64px);
    line-height:1.05;
    font-weight:700;
    letter-spacing:-1px;
    color:#111;
}

.community-count-highlight{
    white-space:nowrap;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-weight:600;
    color:#0073eb;
}

.community-count-plus{
    margin-left:4px;
    color:#f5a623;
    text-shadow:0 4px 14px rgba(245,166,35,.35);
}

.top-banner-content p{
    font-size:16.5px;
}

.top-banner-actions{
    flex-wrap:wrap;
}

.banner-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:15px 26px;
    border:2px solid #0073eb;
    border-radius:14px;
    background:#fff;
    color:#0073eb;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-weight:600;
    transition:transform .25s ease, background .25s ease, color .25s ease;
}

.banner-btn-secondary:hover{
    transform:translateY(-3px);
    background:#0073eb;
    color:#fff;
}

@media(max-width:768px){
    .community-title{
        font-size:11px;
        padding:7px 14px;
    }
    .community-count{
        font-size:clamp(34px, 9vw, 48px);
        margin-top:14px;
    }
    .top-banner-content p{
        font-size:14px;
    }
    .banner-btn-secondary{
        width:100%;
        min-height:54px;
        padding:14px 18px;
        font-size:13px;
    }
}

/* =========================
   FEATURED POSTS
========================= */


   .featured-posts{
    max-width:1600px;
    margin:50px auto 40px;  
    padding:0 150px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.featured-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.3s ease;
}
.featured-card:hover{
    transform:translateY(-8px);
}

.featured-image{
    height:300px;
    overflow:hidden;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;
}

.featured-card:hover img{
    transform:scale(1.06);
}

.featured-content{
    padding:22px;
}

.featured-category{
    display:inline-block;

    background:#fffd70;
    color:#000;

    padding:8px 14px;
    border-radius:999px;

    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:14px;
}

.featured-content h2{
    font-family:'Cormorant Garamond', serif;

    font-size:32px;
    line-height:1.08;

    color:#000;
    margin-bottom:12px;
    font-weight:700;
}

.featured-content p{
    font-family:'Poppins', sans-serif;

    color:#555;
    line-height:1.7;
    font-size:14px;
}

/* subtle accent */
.featured-card:nth-child(2){
    position:relative;
}

.featured-card:nth-child(2)::before{
    content:"";

    position:absolute;
    top:18px;
    right:18px;

    width:70px;
    height:70px;

    background:#0073eb15;
    border-radius:50%;
}

/* TABLET */

@media(max-width:991px){

    .featured-posts{
        grid-template-columns:repeat(2,1fr);
    }

    .featured-image{
        height:340px;
    }

    .featured-content h2{
        font-size:32px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .featured-posts{
        grid-template-columns:1fr;
        padding:0 20px;
    }

    .featured-image{
        height:300px;
    }

    .featured-content h2{
        font-size:34px;
    }
}
.read-post{
    display:inline-flex;
    align-items:center;
    gap:6px;

    margin-top:18px;

    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:600;

    color:#0073eb;
    text-decoration:none;

    transition:.25s ease;
}

.read-post:hover{
    gap:10px;
    color:#005ac0;
}
@media(max-width:991px){

    .featured-posts{
        grid-template-columns:repeat(2,1fr);
        padding:0 50px;
    }

    .featured-image{
        height:260px;
    }

    .featured-content h2{
        font-size:28px;
    }
}
@media(max-width:768px){

    .featured-posts{
        grid-template-columns:1fr;
        padding:0 22px;
    }

    .featured-image{
        height:260px;
    }

    .featured-content h2{
        font-size:30px;
    }
}
.read-post{
    display:inline-flex;
    align-items:center;
    gap:6px;

    margin-top:18px;

    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:600;

    color:#0073eb;
    text-decoration:none;

    transition:.25s ease;
}

.read-post:hover{
    gap:10px;
    color:#005ac0;
}
.blog-more{
    text-align:center;
    margin-top:20px;
}

.blog-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    background:#fff;
    color:#111;

    border:1px solid rgba(0,0,0,.08);
    border-radius:999px;

    text-decoration:none;
    font-weight:600;

    transition:.25s ease;
    margin-bottom: 24px;
}

.blog-more-btn:hover{
    transform:translateY(-2px);
    border-color:#ffdf5d;
    box-shadow:0 10px 25px rgba(255,223,93,.25);
}
/* =========================
   COMING SOON CARD
========================= */

.featured-card.coming-soon{
    position: relative;
}

.featured-card.coming-soon::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18); /* opacity gelap */
    pointer-events:none;
    transition:.3s ease;
}

.featured-card.coming-soon:hover::after{
    background:rgba(0,0,0,.12);
}

.featured-card.coming-soon .featured-category{
    background:#fff;
    color:#111;
}

.featured-card.coming-soon .featured-content{
    position:relative;
    z-index:2;
}

.featured-card.coming-soon .featured-image{
    position:relative;
    z-index:1;
}

.featured-card.coming-soon .read-post{
    color:#888;
    pointer-events:none;
    cursor:default;
}

.featured-card.coming-soon .read-post:hover{
    gap:6px;
    color:#888;
}

.featured-card.coming-soon img{
    filter:brightness(.82);
}

.featured-card.coming-soon:hover img{
    transform:scale(1.06);
    filter:brightness(.9);
}

/* =========================
   FOOTER
========================= */

.footer-modern{
    background: #ffe78f;

    border-top:1px solid rgba(0,0,0,.08);
}

/* =========================
   CTA
========================= */

.footer-cta{
    max-width:1200px;
    margin:auto;
    padding:90px 40px 70px;
    text-align:center;
}

.footer-cta h2{
    font-family:'Cormorant Garamond', serif;
    font-size:72px;
    line-height:0.95;
    font-weight:600;
    color:#1d2430;
    margin:0;
}

.footer-cta p{
    margin-top:22px;
    color:#444;
    font-size:15px;
}

.footer-avatars{
    display:flex;
    justify-content:center;
    margin-top:25px;
}

.footer-avatars img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #e3e3d8;
    margin-left:-10px;
}

.footer-avatars img:first-child{
    margin-left:0;
}

/* CTA BAR */

.waitlist-bar{
    max-width:900px;
    margin:40px auto 0;
    background:#fff;
    border-radius:8px;

    padding:18px 22px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    text-decoration:none;
    color:#111;
    transition:.25s;

    border:1px solid rgba(0,0,0,0.08); /* garis tipis banget */
}

.waitlist-bar:hover{
    transform:translateY(-2px);
}

.waitlist-bar span:first-child{
    font-size:15px;
    font-weight:500;
}

.waitlist-bar span:last-child{
    font-size:18px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
    display:grid;
    grid-template-columns:1fr 1fr;

    min-height:220px;
}

.footer-right{
    padding:60px 80px;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-right a{
    text-decoration:none;
    color:#222;
    font-size:20px;
    transition:.2s;
}

.footer-right a:hover{
    opacity:.6;
}

.footer-privacy{
    margin-top:auto;
    color:#666;
    font-size:14px;
}
.footer-right{
    padding:60px 80px;
    display:flex;
    align-items:center;
}

.footer-form{
    width:100%;
    max-width:420px;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-form input{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(0,0,0,.2);
    color:#1d2430;

    padding:14px 0;

    font-size:16px;
    font-family:'Poppins', sans-serif;

    outline:none;
}

.footer-form input::placeholder{
    color:#666;
}

.footer-form button{
    margin-top:16px;

    border:none;
    background:none;

    text-align:left;

    font-size:18px;
    font-weight:500;

    color:#111;

    cursor:pointer;

    padding:0;
    transition:.25s;
}

.footer-form button:hover{
    opacity:.65;
    transform:translateX(4px);
}
.footer-left{
    padding:60px 80px;
    border-right:1px solid rgba(0,0,0,.12);
}

.footer-label{
    display:block;

    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    font-weight:600;

    color:#1d2430;

    margin-bottom:24px;
}

.footer-disclaimer{
    font-size:13px;
    line-height:1.9;
    color:#555;

    max-width:720px;
}

.footer-disclaimer-secondary{
    margin-top:22px;
    padding-top:22px;

    border-top:1px solid rgba(0,0,0,.08);
}
.footer-social{
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icon{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.social-icon:hover{
    transform: translateY(-3px);
}

.social-icon.instagram:hover{ background:#3390FF; color:#000; }
.social-icon.twitter:hover{ background:#3390FF; color:#000; }
.social-icon.x:hover{ background:#3390FF; color:#000; }
.social-icon.email:hover{ background:#3390FF; color:#000; }
/* =========================
   RESPONSIVE FOOTER
========================= */

/* TABLET (<=1024px) */
@media (max-width: 1024px) {

    .footer-cta {
        padding: 70px 28px 60px;
    }

    .footer-cta h2 {
        font-size: 54px;
    }

    .waitlist-bar {
        max-width: 100%;
        margin: 35px 20px 0;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-left,
    .footer-right {
        padding: 50px 40px;
    }

    .footer-left {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,.12);
    }

    .footer-right {
        align-items: flex-start;
    }
}

/* MOBILE LARGE (<=768px) */
@media (max-width: 768px) {

    .footer-cta {
        padding: 60px 20px 50px;
    }

    .footer-cta h2 {
        font-size: 40px;
        line-height: 1.05;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .footer-avatars img {
        width: 42px;
        height: 42px;
    }

    .waitlist-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 18px;
    }

    .waitlist-bar span:first-child {
        font-size: 14px;
    }

    .waitlist-bar span:last-child {
        font-size: 16px;
    }

    .footer-label {
        font-size: 28px;
    }

    .footer-disclaimer {
        font-size: 12.5px;
    }

    .footer-right a {
        font-size: 18px;
    }
}

/* MOBILE (<=480px) */
@media (max-width: 480px) {

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-cta {
        padding: 50px 16px 40px;
    }

    .footer-avatars {
        flex-wrap: wrap;
        gap: 6px;
    }

    .footer-avatars img {
        margin-left: 0;
    }

    .waitlist-bar {
        margin: 30px 12px 0;
    }

    .footer-left,
    .footer-right {
        padding: 40px 20px;
    }

    .footer-form input {
        font-size: 15px;
    }

    .footer-form button {
        font-size: 16px;
    }

    .footer-social {
        flex-wrap: wrap;
    }
}
.featured-card.coming-soon{
    opacity:0.65;
    filter: grayscale(30%);
}

.read-post.disabled{
    pointer-events:none;
    opacity:0.6;
}
.footer-subscribe-title{
    font-family:'Cormorant Garamond', serif;
    font-size:42px;
    font-weight:700;
    line-height:1;
    margin:0 0 18px;
    color:#2f2f2f;
    letter-spacing:.5px;
}

/**----------NAVBAR -------------**/
.navbar{
    background:#3390FF;
    padding:20px 0;
    border-bottom:1px solid #E8EDF7;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar-logo-link{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.navbar-logo{
    height:45px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:32px;
    flex-wrap:wrap;
}

nav a{
    text-decoration:none;
    color:#1F2937;
    font-size:15px;
    font-weight:500;
    transition:.2s;
    
}

nav a:hover{
    color:#6F9FF8;
}

/* tombol hamburger (default disembunyikan) */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#1F2937;
    border-radius:20px;
}

/* overlay */
.overlay{
    display:none;
}
/* MOBILE */
@media (max-width: 767px) {

    .navbar .container{
        justify-content: space-between;
    }

    .navbar-logo{
        height:40px;
    }

    .menu-toggle{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
        position:relative;
        z-index:10002;
    }

    .menu-toggle span{
    width:28px;
    height:3px;
    background:#fff;
   box-shadow:0 0 0 1px #0073eb;
    border-radius:99px;
    transition:.3s;
    }

    nav{
        display:flex !important;

        position:fixed;
        top:0;
        right:-300px;

        width:280px;
        height:100vh;

        background:#fff;

        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;

        padding:80px 10px 20px;
        gap:0;

        transition:right .3s ease;

        z-index:10001;
    }

    nav.active{
        right:0;
    }

    nav a{
        width:100%;
        padding:14px 0;
        border-bottom:1px solid #ececec;
        color:#0073eb !important;
    }

    nav a:hover{
        color:rgba(0,115,235,.7) !important;
    }

    .overlay{
        display:block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.4);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:10000;
    }

    .overlay.active{
        opacity:1;
        visibility:visible;
    }
}
.navbar{
    background:#0073eb;
    padding:12px 0;
    border-bottom:none; /* awalnya hilang */
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:border-color .3s ease, box-shadow .3s ease;
}

/* muncul saat scroll */
.navbar.scrolled{
    border-bottom:none;
}

nav a{
    text-decoration:none;
    color:#1F2937;
    font-size:15px;
    font-weight:600; /* sebelumnya 500 */
    transition:.2s;
    color: #fff;
}
/* =========================
   COURSES SECTION
========================= */
.learn-section {
    width: 100%;
    background-color: #f5d97a; /* warna kuningnya, sesuaikan */
}

.learn-section .learn-header,
.learn-section .learn-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* biar ada jarak kiri-kanan dari tepi layar */
}

.learn-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.learn-header{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
    padding-top: 40px;

}

.learn-header span{
    display:inline-block;

    font-size:11px;
    letter-spacing:2px;
    font-weight:600;

    color:#0073eb;

    margin-bottom:16px;
}

.learn-header h2{
    font-family:'Cormorant Garamond', serif;

    font-size:68px;
    line-height:.95;

    color:#1f2937;

    margin-bottom:20px;
}

.learn-header p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom: 40px;
}
.learn-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    padding-bottom: 40px;
}

.learn-card{
    background:#fff;

    padding:36px;

    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s ease;
}

.learn-card:hover{
    transform:translateY(-8px);
    background:#EAF4FF;
    box-shadow:0 12px 30px rgba(0,115,235,.12);
}
.learn-icon{
    font-size:34px;
    margin-bottom:20px;
}

.learn-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:38px;
    line-height:1;

    margin-bottom:14px;
}

.learn-card p{
    color:#666;
    line-height:1.8;
    font-size:14px;
}

.learn-bottom{
    margin-top:50px;

    text-align:center;
    padding:40px;
}

.learn-bottom h4{
    font-family:'Cormorant Garamond', serif;
    font-size:42px;

    margin-bottom:10px;
}

.learn-bottom p{
    color:#666;
}
.learn-card:hover .learn-tag{
    color:#000; /* tetap normal */
}
/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .learn-grid{
        grid-template-columns:1fr 1fr;
    }

    .learn-header h2{
        font-size:56px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .learn-section{
        padding:50px 20px;
        margin:0;
    }

    .learn-grid{
        grid-template-columns:1fr;
    }
    .learn-header h2{
        font-size:42px;
        line-height:1;
    }

    .learn-card{
        padding:28px;
    }

    .learn-card h3{
        font-size:32px;
    }

    .learn-bottom{
        padding:28px;
    }

    .learn-bottom h4{
        font-size:32px;
    }
}
.learn-tag{
    display:inline-block;

    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#8c8c8c;

    margin-bottom:18px;

    position:relative;
}

.learn-tag::after{
    content:"";

    display:block;

    width:40px;
    height:1px;

    background:#d9d9d9;

    margin-top:8px;
}
.blog-title-wrap{
    position: relative;
    top: 45px;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    margin-top: -55px;

    text-align: center;
}

.blog-title-track{
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-title-track span{
    font-family: "Playfair Display", serif;
    font-size: 30px;
    color: #ffff;
    letter-spacing: 3px;
}

@keyframes marquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

.featured-posts{
    position: relative;
    z-index: 2;
}
.learn-card:hover h3{
    color:#0066D6;
}

.learn-card:hover .learn-tag{
    color:#0066D6;
}

.learn-card:hover .learn-tag::after{
    background:#7FB7FF;
}

.self-foto {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 40px;
}
.gallery-grid{   
    display: grid;
    grid-template-columns:repeat(4,1fr);
    gap: 24px;
}
.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    height: 240px;
    cursor: pointer;
    box-shadow: #000;
    transition: .45s;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}
.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.28),
        transparent 60%
    );
    opacity:0;
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-10px);
    box-shadow:
        0 28px 60px rgba(0,115,235,.15);
}
.gallery-item:hover img{
    transform:scale(1.08);
}
.gallery-item:hover::after{
    opacity:1;
}
@media (max-width: 992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .gallery-item{
        height: 200px;
    }
}
@media (max-width:600px){
    .self-foto{
        padding: 0 20px;
        margin: 80px auto;
    }
    .gallery-grid{
        grid-template-columns:1,fr;
        gap: 18px;
    }
    .gallery-item{
        height: 220px;
    }
}
/* =========================
   BLOG SECTION
========================= */

/* floating blob kiri */

.blog-section::before{
    content:"";

    position:absolute;
    left:-200px;
    top:120px;

    width:500px;
    height:500px;

    background:#fffd4318;

    border-radius:50%;
    filter:blur(90px);

    z-index:0;
}

/* floating blob kanan */

.blog-section::after{
    content:"";

    position:absolute;
    right:-180px;
    bottom:100px;

    width:450px;
    height:450px;

    background:#0073eb10;

    border-radius:50%;
    filter:blur(90px);

    z-index:0;
}

/* supaya content di atas blob */

.blog-title-wrap{
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    text-align: center;
    padding: 20px 0 20px;
}
.blog-section{
    background:#0073eb;
    position:relative;
    overflow:hidden;
    padding: 5px 0 5px;
}

.blog-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.12) 0 120px, transparent 121px),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,.10) 0 180px, transparent 181px);

    pointer-events:none;
}
.blog-title-track span{
    margin-right: 0;
}


/** BLOG PAGE **/ 
/* =========================
   SEARCH
========================= */

.blog-search-section{
    max-width:1200px;
    margin:80px auto;
    padding:0 40px;

    display:flex;
    justify-content:center;
}

.search-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.search-toggle{
    width:58px;
    height:58px;

    border:none;
    border-radius:50%;

    background:#ffe78f;
    color:#111;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.25s;
}

.search-toggle:hover{
    transform:translateY(-2px);
}

.search-expand{
    width:0;
    opacity:0;
    overflow:hidden;

    display:flex;
    align-items:center;

    background:#fff;

    border:1px solid #ececec;
    border-radius:999px;

    transition:
        width .45s cubic-bezier(.22,1,.36,1),
        opacity .25s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.search-expand.active{
    width:520px;
    opacity:1;
}

.search-expand input{
    flex:1;
    min-width:0;

    border:none;
    outline:none;

    background:transparent;

    padding:16px 24px;

    font-family:"Poppins",sans-serif;
    font-size:15px;
}

.search-submit{
    border:none;
    background:#111;
    color:#fff;

    margin-right:6px;

    padding:12px 20px;
    border-radius:999px;

    cursor:pointer;
}

.search-submit:hover{
    opacity:.9;
}
.blog-search-header h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(32px,4vw,48px);
    line-height:1.2;
    color:#111;
    max-width:700px;
    margin:0 auto 40px;
}
.seach-label{
    display:block;
}
.search-arrow-svg{
    position:absolute;
    left:-165px;
    top:6px;

    display:flex;
    flex-direction:column;
    align-items:center;

    animation:wiggle 2s ease-in-out infinite;
}

.search-arrow-svg svg{
    width:140px;
    height:auto;
}

.search-arrow-svg span{
    font-family:"Parisienne", cursive;
    font-size:28px;
    color:#c8b35a;
    margin-top:-5px;
}

@keyframes wiggle{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(10px);
    }
}
.blog-search-section{
    max-width:1200px;
    margin:80px auto 10px;
    padding:0 40px;
    text-align:center;
}

.search-action{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;

    margin-top:40px;
}

.search-arrow-svg{
    position:absolute;

    right:calc(50% + 50px);

    width:140px;

    pointer-events:none;

    animation:arrowMove 1.8s ease-in-out infinite;
}

@media (max-width:768px){

    .search-arrow-svg{
        display:none;
    }

}
@media (max-width:768px){

    .search-box{
        flex-direction:column;
        align-items:center;
    }

    .blog-search-header{
        text-align:center;
    }

    .search-toggle{
        margin-top:20px;
        order:2;
    }

    .search-expand{
        order:3;
    }

    .search-arrow-svg{
        display:none;
    }

    .search-expand.active{
        width:min(90vw, 420px);
    }
    .search-action{
        margin-top: 10px;
    }

}
.search-expand.active{
    width:clamp(260px, 70vw, 420px);
}
.search-arrow-svg{
    opacity:1;
    transition:opacity .3s ease;
}

.search-arrow-svg.hide{
    opacity:0;
    pointer-events:none;
}
@media (max-width:768px){

    .search-expand,
    .search-expand.active{
        width:min(90vw, 420px);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .search-toggle{
        display:none;
    }
}

.blog-posts-grid{
    max-width:1600px;
    margin:10px auto;

    padding:0 80px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
@media (max-width:992px){

    .blog-posts-grid{
        grid-template-columns:repeat(2,1fr);
        padding:0 40px;
    }

}

@media (max-width:768px){

    .featured-image{
        height:180px;
    }

    .featured-content{
        padding:16px;
    }

    .featured-content h2{
        font-size:24px;
    }

}
.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;

    width:56px;
    height:56px;

    border:none;
    border-radius:50%;

    background:#2f80ff;
    color:#fff;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 25px rgba(47,128,255,.25);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    z-index:9999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 18px 35px rgba(47,128,255,.45);
}

.back-to-top:active{
    transform:translateY(-2px) scale(.96);
}
.back-to-top svg{
    transition:transform .3s ease;
}

.back-to-top:hover svg{
    transform:translateY(-3px);
}
.blog-section{
    position:relative;
    overflow:hidden;
}
.blog-page-title-wrap{
    position:relative;
    top:40px;
    overflow:hidden;
    z-index:1;
    white-space:nowrap;
    margin-top:20px;
}

.blog-page-title-track{
    display:flex;
    width:max-content;
    animation:marquee 35s linear infinite;
}

.blog-page-title-track span{
    font-family:"Parisienne", cursive;
    font-size:clamp(90px, 9vw, 80px);
    color:#fffd70;
    opacity:.8;
    letter-spacing:3px;
    margin-right:100px;
}
.blog-posts-grid{
    position:relative;
    z-index:2;
}
.blog-page-title-wrap{
    top: 20px;
}
.blog-page-title-track span{
    font-family:"Parisienne", cursive;
    font-size:clamp(90px, 9vw, 80px);
    color:#fffd70;
    opacity:.8;
    letter-spacing:3px;
    margin-right:10px;
}

.blog-page-title-track span::after{
    content:"●";
    margin-left:15px;
}
.trending-searches{
    margin-top:0;
    margin-bottom:60px;
    text-align:center;
}

.trending-label{
    display:block;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#9a9a9a;
    margin-bottom:14px;
}

.trending-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.trending-tags a{
    text-decoration:none;

    padding:10px 18px;

    border:1px solid rgba(0,0,0,.08);
    border-radius:999px;

    background:#fff;
    color:#444;

    font-size:14px;
    font-weight:500;

    transition:.25s ease;
}

.trending-tags a:hover{
    transform:translateY(-2px);

    background:#2f80ff;
    color:#fff;

    border-color:#2f80ff;

    box-shadow:0 8px 20px rgba(47,128,255,.18);
}


/** CONSULT PAGE **/ 


.consult-label{
    display:inline-block;
    margin-bottom:20px;
    letter-spacing:2px;
    font-size:.85rem;
    text-transform:uppercase;
}

.consult-hero h1{
    font-size:clamp(42px,6vw,72px);
    line-height:1.1;
    margin-bottom:24px;
}

.consult-hero p{
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.consult-hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-primary,
.pricing-btn,
.cta-btn{
    padding:16px 30px;
    border-radius:999px;
    background:#fff;
    color:#2f80ff;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    padding:16px 30px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.5);
    color:#fff;
    text-decoration:none;
}

.consult-audience,
.consult-services,
.consult-process,
.consult-faq{
    max-width:1200px;
    margin:120px auto;
    padding:0 40px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#2f80ff;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    margin-top:12px;
    font-size:clamp(34px,4vw,52px);
}

.audience-grid,
.services-grid,
.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.audience-card,
.service-box,
.process-card,
.faq-item{
    background:#fff;
    border:1px solid #e9eef7;
    border-radius:20px;
    padding:30px;
}

.process-card span{
    font-size:2rem;
    font-weight:700;
    color:#2f80ff;
}

.consult-pricing{
    max-width:1200px;
    margin:120px auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
}

.pricing-card{
    background:#2f80ff;
    color:#fff;
    padding:50px;
    border-radius:24px;
    text-align:center;
}

.price{
    font-size:4rem;
    font-weight:700;
    margin:20px 0;
}

.consult-testimonial{
    max-width:900px;
    margin:120px auto;
    padding:0 40px;
}

.testimonial-box{
    text-align:center;
    padding:60px;
    background:#f6f9ff;
    border-radius:24px;
}

.testimonial-box p{
    font-size:1.3rem;
    line-height:1.8;
}

.consult-cta{
    text-align:center;
    padding:120px 40px;
    background:#2f80ff;
    color:#fff;
}

.consult-cta h2{
    font-size:clamp(36px,5vw,60px);
}

.consult-cta p{
    margin:20px 0 40px;
}

@media(max-width:768px){

    .consult-pricing{
        grid-template-columns:1fr;
    }

}
/* ===================================
   HERO SCROLL STORY
=================================== */

.consult-hero{
    position:relative;
    height:220vh;
    background:#fff;
}

.hero-intro{
    position:sticky;
    top:0;

    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:3;

    pointer-events:none;
    color: #000;
}

.hero-intro h2{
    font-family:'Poppins',sans-serif;
    color:#111;

    transition:.15s linear;
}

.hero-main{
    position:sticky;
    top:0;

    height:100vh;
    width:min(1400px,90%);

    margin:auto;

    display:grid;
    grid-template-columns:1fr 480px;
    align-items:center;
    gap:100px;

    opacity:0;
    transform:translateY(120px) scale(.75);

    z-index:2;
}

.consult-hero-content{
    max-width:650px;

    background:#2f80ff;

    color:#fff;

    padding:60px;
    border-radius:36px;

    text-align:left;

    box-shadow:
    0 30px 80px rgba(47,128,255,.28);
}

.consult-label{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.consult-hero-content h1{
    font-size:clamp(36px,4vw,58px);
    line-height:1.15;
    margin-bottom:20px;
}

.consult-hero-content p{
    max-width:560px;
    margin:0 0 30px;

    font-size:1rem;
    line-height:1.8;
    color:#666;
}

.consult-hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
}


.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-left{
    transform:
        translateY(150px)
        rotate(-12deg)
        scale(.7);
}

.hero-right{
    transform:
        translateY(150px)
        rotate(12deg)
        scale(.7);
}


.consult-hero-content p{
    color:rgba(255,255,255,.85);
    margin:0 0 35px;
}
.consult-hero-buttons{
    justify-content:flex-start;
}
.btn-primary{
    background:#fff;
    color:#2f80ff;
}
.btn-secondary{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.hero-right{
    transform:
        translateY(180px)
        rotate(10deg)
        scale(.7);
}
@media(max-width:900px){

    .hero-main{
        grid-template-columns:1fr;
        gap:40px;
    }


    .consult-hero-content{
        padding:40px 30px;
    }
}
.hero-intro{
    position:sticky;
    top:0;

    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-intro h2{
    color:#111;
    font-size:clamp(28px,4vw,72px);
    font-weight:700;
    transition:none;
    will-change:transform, opacity;
}
.consult-hero-main{
    position:sticky;
    top:0;

    min-height:100vh;

    display:flex;
    align-items:center;

    background:linear-gradient(
        135deg,
        #2f80ff,
        #1b6eff
    );

    opacity:0;
}
.hero-main-wrap{
    max-width:1300px;
    margin:auto;
    padding:0 60px;

    display:grid;
    grid-template-columns:1fr 500px;
    gap:80px;

    align-items:center;
}
.consult-hero-content{
    max-width:650px;
    opacity:0;
    transform:translateX(-80px);
}

.consult-label{
    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.15);

    border-radius:999px;

    color:#fff;

    margin-bottom:24px;
}

.consult-hero-content p{
    color:rgba(255,255,255,.9);
}
.hero-image{
    height:650px;

    border-radius:36px;

    overflow:hidden;

    box-shadow:
    0 40px 100px rgba(0,0,0,.25);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-image{
    opacity:0;

    transform:
        translateY(500px)
        scale(.25)
        rotate(12deg);

    will-change:transform,opacity;
}

.consult-hero-intro{
    height:200vh;
    position:relative;
    overflow:hidden;
}


.hero-story-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:36px;

    box-shadow:
        0 40px 100px rgba(0,0,0,.25);
}
.consult-hero-main{

    background:linear-gradient(
        135deg,
        #2f80ff,
        #1b6eff
    );

    min-height:100vh;

    display:flex;
    align-items:center;

    opacity:0;
}
.hero-intro{
    z-index:10;
}


.consult-hero-main{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    background:linear-gradient(
        135deg,
        #2f80ff,
        #1b6eff
    );

    opacity:0;

    z-index:1;

    will-change:opacity;
}

.hero-main-wrap{
    width:100%;
    max-width:1300px;

    margin:auto;

    padding:0 60px;
}

.consult-hero-content{
    max-width:700px;

    opacity:0;

    transform:translateY(60px);

    will-change:
        opacity,
        transform;
}
.hero-intro{
    z-index:10;
}

.hero-story-image{
    z-index:20;
}

.consult-hero-main{
    z-index:5;
}
.hero-intro{
    position:sticky;
    top:0;

    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:10;
}
.hero-story-image{
    position:absolute;
    right:-5%;
    top:25%;
    width:420px;
    height:560px;
    opacity:0;
    z-index:20;

    pointer-events:none;

    transform:
        translateY(-50%);
}
@media (max-width:768px){

    .consult-hero-main{
        position:relative;
        opacity:1 !important;

        min-height:100vh;

        display:flex;
        align-items:center;
        justify-content:center;

        padding:0;
    }

    .hero-main-wrap{
        width:100%;

        display:flex !important;
        justify-content:center;
        align-items:center;

        padding:0;
        margin:0 auto;
    }

    .consult-hero-content{
        width:100%;
        max-width:100%;

        margin:0 auto;

        padding:60px 24px;

        border-radius:0;

        text-align:center;

        opacity:1 !important;
        transform:none !important;
    }

    .consult-hero-buttons{
        justify-content:center;
        align-items:center;
    }
    .consult-hero-intro {
        height: 200vh;
    }
}

.hero-story-image{
    position:absolute;
    right:-5%;
    top:25%;
    width:420px;
    height:560px;

    opacity:0;
    z-index:20;

    pointer-events:none;

    transform:translateY(-50%);

    padding:12px;

    border:2px dashed #ffd95a;

    border-radius:32px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

.hero-story-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:22px;
}

/* gambar kecil */

.hero-floating-card{
    position:absolute;
    right:-45px;
    bottom:-45px;
    width:180px;
    height:220px;
    border-radius:24px;
    overflow:hidden;
    padding:8px;
    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
    z-index:30;
    border: 2px dashed #ffd95a;
}

.hero-floating-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:18px;
}

.floating-transition img{
    width:min(420px,30vw);
    height:560px;

    object-fit:cover;
}
@media (max-width:768px){

    .hero-intro{
        justify-content:center;
        align-items:center;
        text-align:center;
        padding:0 24px;
    }

    .hero-intro h2{
        width:100%;
        text-align:center;
        margin:0 auto;
    }

}

.audience-bg{
    position:fixed;
    inset:0;

    z-index:0;

    overflow:hidden;

    opacity:0;

    transition:opacity .8s ease;
    pointer-events:none;
}

.audience-bg.show{
    opacity:.55; /* tingkat kemunculan background */
}

.audience-bg img{
    width:100%;
    height:100%;

    object-fit:cover;

    filter:
        blur(2px)
        brightness(.9)
        saturate(.9);

    transform:scale(1.08); /* supaya blur tidak terlihat di tepi */
}

.consult-audience{
    position:relative;
    z-index:2;

    background:
    linear-gradient(
        rgba(255,255,255,.78),
        rgba(255,255,255,.78)
    );

    backdrop-filter:blur(1px);
}
.consult-audience,
.consult-services{
    position:relative;
    z-index:2;
}
.consult-process,
.consult-pricing,
.consult-testimonial,
.consult-faq,
.consult-cta{
    position:relative;
    z-index:2;
}
.consult-audience,
.consult-services{
    background:transparent;
}




/** --- service section --- **/
/**-------------------------**/
/**=====================================
            SERVICES SECTION
======================================**/

.consult-services{
    max-width:1200px;
    margin:120px auto;
    padding:0 40px;
}

.services-desktop{
    display:block;
}

.services-mobile{
    display:none;
}

/* ---------------- LEFT + RIGHT ---------------- */

.services-showcase{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    margin-top:70px;
    align-items:start;
}

/* ---------------- LEFT MENU ---------------- */

.services-nav{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.service-tab{

    width:100%;

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:20px;

    padding:22px 24px;

    text-align:left;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.service-tab span{

    display:inline-block;

    width:34px;

    color:#2f80ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;
}

.service-tab:hover{
    transform:translateX(8px);
}

.service-tab.active{

    background:#2f80ff;

    color:#fff;

    transform:translateX(12px);

    box-shadow:0 18px 35px rgba(47,128,255,.22);
}

.service-tab.active span{
    color:#fff;
}

/* ---------------- RIGHT PANEL ---------------- */

.services-content{

    position:relative;

    min-height:420px;

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:28px;

    overflow:hidden;
}

.service-panel{

    position:absolute;

    inset:0;

    padding:60px;

    opacity:0;

    visibility:hidden;

    transform:translateX(40px);

    transition:
        opacity .35s,
        transform .35s,
        visibility .35s;
}

.service-panel.active{

    opacity:1;

    visibility:visible;

    transform:translateX(0);
}

.service-panel h3{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    line-height:1;

    margin-bottom:22px;

    color:#111;
}

.service-panel p{

    max-width:600px;

    font-size:18px;

    line-height:1.9;

    color:#666;
}

/* =====================================
                TABLET
===================================== */

@media (max-width:991px){

.services-showcase{

    grid-template-columns:260px 1fr;
}

.service-panel{

    padding:40px;
}

.service-panel h3{

    font-size:44px;
}

}

/* =====================================
                MOBILE
===================================== */

@media (max-width:767px){

.services-desktop{
    display:none;
}

.services-mobile{
    display:block;
    margin-top:45px;
}

.service-item{

    background:#fff;

    border:1px solid #e8edf7;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:16px;
}

.service-mobile-btn{

    width:100%;

    border:none;

    background:#fff;

    cursor:pointer;

    padding:22px;

    text-align:left;

    display:flex;

    gap:14px;

    align-items:center;

    font-size:17px;

    font-weight:600;
}

.service-mobile-btn span{

    color:#2f80ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;
}

.mobile-panel{

    max-height:0;

    overflow:hidden;

    opacity:0;

    padding:0 22px;

    transition:
        max-height .45s,
        opacity .45s,
        padding .45s;
}

.service-item.active .mobile-panel{

    max-height:260px;

    opacity:1;

    padding:0 22px 22px;
}

.mobile-panel h3{

    font-size:24px;

    margin:10px 0;

    color:#111;
}

.mobile-panel p{

    font-size:15px;

    line-height:1.8;

    color:#666;
}

}
/* =========================
   COLLAB PAGE
========================= */

.collab-section{
    position:relative;
     padding:60px 8% 140px; 
    background:
    linear-gradient(
        180deg,
        #eef6ff 0%,
        #ffffff 100%
    );

    overflow:hidden;
}

.collab-section::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-180px;
    right:-120px;

    background:
    radial-gradient(
        circle,
        rgba(0,115,235,.12),
        transparent 70%
    );

    border-radius:50%;
}

.collab-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 560px;
    gap:80px;
    align-items:center;

    position:relative;
    z-index:2;
}

/* =========================
   LEFT CONTENT
========================= */

.collab-heading span{
    display:inline-flex;

    background:#fffd70;

    color:#000;

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;
    font-weight:600;

    margin-bottom:25px;
}

.collab-heading h1{
    font-family:'Playfair Display',serif;

    font-size:2.1rem;
    line-height:1.15;

    color:#111;

    margin-bottom:25px;
    overflow-wrap:break-word;
    word-break:break-word;
}

.collab-heading p{
    font-size:1.05rem;
    line-height:1.9;

    color:#555;

    max-width:600px;
}

/* =========================
   COLLAB PHOTOS
========================= */

.collab-photos{
    display:flex;
    align-items:flex-end;
    margin:30px 0 35px;
    max-width:100%;
    flex-wrap:nowrap;
}

.collab-photo{
    width:220px;
    height:160px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:-15px 20px 80px rgba(0,0,0,.15);
    background:#f0f0f0;
}

.collab-photo-1{
    position:relative;
    z-index:1;
}

.collab-photo-2{
    position:relative;
    z-index:2;
    margin-left:-60px;
    margin-bottom:-20px;
}
.collab-photo-3{
    position:relative;
    z-index:3;
    margin-left:-40px;
}
@media (min-width:769px) and (max-width:1300px){

    .collab-photo{
        width:160px;
        height:120px;
    }

    .collab-photo-2{
        margin-left:-45px;
        margin-bottom:-15px;
    }

    .collab-photo-3{
        margin-left:-30px;
    }
}
/* =========================
   FORM CARD
========================= */

.collab-form{
    background:#fff;

    padding:50px;

    border-radius:36px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);

    border:1px solid rgba(0,115,235,.08);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:22px;
}

.form-group label{
    margin-bottom:10px;

    font-size:.9rem;
    font-weight:600;

    color:#333;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;

    border:none;

    background:#0073eb;

    padding:18px 20px;

    border-radius:18px;

    font-family:'Poppins',sans-serif;

    font-size:.95rem;

    transition:.3s;
}

.form-group textarea{
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    outline:none;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(0,115,235,.12);
}

/* =========================
   BUTTON
========================= */

.collab-btn{
    width:100%;

    border:none;

    background:#0073eb;

    color:#fff;

    padding:18px;

    border-radius:18px;

    font-size:1rem;
    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.collab-btn:hover{

    transform:translateY(-3px);

    background:#005fd1;

    box-shadow:
    0 18px 35px rgba(0,115,235,.25);
}

/* =========================
   DECORATION
========================= */

.collab-form{
    position:relative;
}

.collab-form::before{

    content:"";

    position:absolute;

    width:90px;
    height:90px;

    top:-20px;
    right:-20px;

    background:#fffd43;

    border-radius:50%;

    opacity:.5;
}

.collab-form::after{

    content:"";

    position:absolute;

    width:70px;
    height:70px;

    bottom:-15px;
    left:-15px;

    border:2px dashed #0073eb;

    border-radius:50%;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .collab-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .collab-heading{
        text-align:center;
    }

    .collab-heading p{
        margin:auto;
    }

    .collab-heading h1{
        font-size:2rem;
    }

    .collab-photos{
        justify-content:center;
    }

}

@media(max-width:768px){

    .collab-section{
        padding:60px 8% 140px; 
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .collab-form{
        padding:35px;
    }

    .collab-heading h1{
        font-size:1.7rem;
    }

    .collab-photos{
        justify-content:center;
        transform:none;
        margin:20px 0 20px;
        gap:0;
        flex-wrap:nowrap;
    }

    .collab-photo{
        width:30vw;
        height:22vw;
        max-width:150px;
        max-height:110px;
    }

    .collab-photo-2{
        margin-left:-8vw;
        margin-bottom:-10px;
    }

    .collab-photo-3{
        margin-left:-6vw;
    }

}
.form-group input,
.form-group textarea,
.form-group select{

    color:#fff;

}
.form-group select option{
    color:#111;
    background:#fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder{
    color:rgba(0,0,0,.55);
}

.form-group select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    padding-right:55px;

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.646 5.646a.5.5 0 0 1 .708 0L8 10.293l4.646-4.647a.5.5 0 0 1 .708.708l-5 5a.5.5 0 0 1-.708 0l-5-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 20px center;

    background-size:16px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    color:#111;
}

/** COURSES PAGE **/
/* ===========================
   Coming Soon
=========================== */

.coming-soon{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
}

.coming-tag{
    display:inline-block;
    padding:10px 24px;
    background:#fff8b8;
    color:#0073eb;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:28px;
}

.coming-content h1{
    font-family:"Playfair Display", serif;
    font-size:72px;
    line-height:1.1;
    color:#0073eb;
    margin-bottom:24px;
}

.coming-content p{
    font-size:18px;
    color:#666;
    line-height:1.9;
    max-width:560px;
    margin:0 auto;
}

.coming-decoration{
    margin-top:45px;
    font-size:28px;
    color:#FFD94D;
    letter-spacing:12px;
}
@media (max-width:768px){

    .coming-soon{
        min-height:70vh;
        padding:60px 24px;
    }

    .coming-content h1{
        font-size:48px;
    }

    .coming-content p{
        font-size:16px;
        line-height:1.8;
    }

    .coming-decoration{
        font-size:22px;
        letter-spacing:8px;
    }

}
/* ===========================
   Coming Soon
=========================== */

.coming-soon{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;

    padding:80px 40px;

    background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
}

.coming-content{
    width:100%;
    max-width:700px;

    margin:0 auto;
    text-align:center;
    padding-top: 40px;
    padding-bottom: 40px;
}
/* ---------- Tablet ---------- */

@media (max-width:1024px){

    .coming-soon{
        min-height:70vh;
        padding:70px 60px;
    }

    .coming-content{
        max-width:620px;
        margin:0 auto;
    }

    .coming-content h1{
        font-size:60px;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:767px){

    .coming-soon{
        min-height:65vh;
        padding:60px 28px; /* lebih lega kanan-kiri */
    }

    .coming-content{
        max-width:100%;
        padding-top: 40px;
        padding: 60px 38px
    }

    .coming-content h1{
        font-size:44px;
    }

    .coming-content p{
        font-size:16px;
        line-height:1.8;
    }

    .coming-decoration{
        font-size:22px;
        letter-spacing:8px;
    }

}


/* jaga-jaga kalau HTML pakai class "search-label" (bukan "seach-label") */
.search-label{
    display:block;
}

/* ubah search-box jadi grid 3 kolom: kiri kosong - tengah judul - kanan aksi */
.search-box{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    width:100%;
    gap:14px;
}

/* judul dipaksa ke kolom tengah supaya selalu center walau ada elemen lain */
.blog-search-header{
    grid-column:2;
    text-align:center;
}

.blog-search-header h2{
    margin:0 auto 40px;
    text-align:center;
}

/* search-toggle + search-expand + arrow ditempatkan di kolom kanan */
.search-action{
    grid-column:3;
    justify-self:start;
    margin-top:0;
}

/* di mobile, balikin ke flex vertikal seperti biasa */
@media (max-width:768px){

    .search-box{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .blog-search-header{
        grid-column:auto;
        text-align:center;
    }

    .search-action{
        grid-column:auto;
        justify-self:center;
        flex-direction:column;
        align-items:center;
        margin-top:10px;
    }

    .search-toggle{
        display:none;
    }
   
}

/*avatar inisial*/
.profile-icon{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #0073eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    flex-shrink: 0;
}

.profile-group{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-link{
    white-space: nowrap;
}

.navbar-right{
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-icon-mobile{
    display: none;
}

@media (max-width: 767px){

    .profile-icon-mobile{
        display: flex;
    }

    .profile-icon-desktop{
        display: none;
    }

    .profile-group{
        gap: 0;
    }
}

/* sembunyiin card explore more */
.hidden-article{
    display: none;

}
/* =========================
   PROFILE DROPDOWN CARD
========================= */
.profile-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    right:8px;

    width:260px;

    background:#fff;
    border-radius:16px;

    box-shadow:0 20px 45px rgba(0,0,0,.16);

    padding:16px;

    display:none;
    grid-template-columns:44px 1fr;
    grid-template-rows:auto auto auto;
    column-gap:12px;

}

.profile-dropdown.active{
    display:grid;
}

.profile-dropdown-avatar{
    grid-row:1 / 4;
    align-self:center;

    width:44px;
    height:44px;

    border-radius:50%;

    background:#0073eb;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;
    font-weight:700;

    margin-bottom:0;
}

.profile-dropdown-name{
    grid-column:2;
    align-self:end;

    font-size:14px;
    font-weight:700;
    color:#111;
    margin-bottom:0;
}

.profile-dropdown-email{
    grid-column:2;

    font-size:11px;
    color:#666;
    margin-bottom:0;

    word-break:break-word;
    overflow-wrap:break-word;
    line-height:1.4;
}

.profile-dropdown-meta{
    grid-column:2;
    align-self:start;

    font-size:10.5px;
    color:#999;
    margin-bottom:0;
}
.profile-dropdown-logout{
    grid-column:1 / 3;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:100%;

    margin-top:12px;

    padding:10px 0;

    background:#0073eb;
    color:#fff;

    border-radius:10px;

    font-weight:700;
    font-size:12.5px;
    text-align:center;

    text-decoration:none;

    transition:.25s;
}

.profile-dropdown-logout svg{
    width:15px;
    height:15px;
    flex-shrink:0;
}

.profile-dropdown-logout:hover{
    background:#2b2b86;
    transform:translateY(-2px);
}
@media (max-width:767px){
    .profile-dropdown{
        width:260px;
        max-width:calc(100vw - 32px);

        padding:14px;
    }

    .profile-dropdown-avatar{
        width:40px;
        height:40px;
        font-size:15px;
    }

    .profile-dropdown-name{
        font-size:13px;
    }

    .profile-dropdown-email{
        font-size:11px;
    }

    .profile-dropdown-meta{
        font-size:10px;
    }

    .profile-dropdown-logout{
        padding:8px 0;
        font-size:12px;
    }
}

/* =========================
   NAVBAR TABLET FIX (biar profile icon gak wrap ke bawah)
========================= */
@media (min-width:768px) and (max-width:1100px){

    nav{
        gap:18px;
    }

    nav a{
        font-size:14px;
    }

    .profile-group{
        flex-shrink:0;
    }
}