/* ==========================================================
   JNT777 Premium Theme
   PART 2A
========================================================== */

/* =========================
   RESET
========================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#090909;
    color:#f2f2f2;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================
   ROOT COLOR
========================= */

:root{

    --gold:#FFD700;
    --gold2:#ffb700;

    --blue:#00bfff;
    --blue2:#008cff;

    --dark:#0d0d0d;
    --dark2:#171717;

    --white:#ffffff;

    --text:#d6d6d6;

    --radius:12px;

    --shadow:
    0 10px 35px rgba(0,0,0,.35);

}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--gold),var(--gold2));
    border-radius:30px;
}

/* =========================
   LINK
========================= */

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    width:100%;
}

/* =========================
   CONTAINER
========================= */

.container{

    width:1200px;
    max-width:95%;
    margin:auto;

}

/* =========================
   TOPBAR
========================= */

.topbar{

    background:#000;
    border-bottom:1px solid rgba(255,255,255,.08);

}

.topbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:42px;

}

.topbar a{

    margin-right:18px;
    font-size:13px;
    color:#ccc;
    transition:.3s;

}

.topbar a:hover{

    color:var(--gold);

}

.topbar span{

    font-size:13px;
    color:var(--gold);

}

/* =========================
   HEADER
========================= */

.header{

    background:#111;
    position:sticky;
    top:0;
    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:90px;

}

/* =========================
   LOGO
========================= */

.logo img{

    width:180px;
    transition:.4s;

}

.logo img:hover{

    transform:scale(1.05);

}

/* =========================
   NAVIGATION
========================= */

nav ul{

    display:flex;
    list-style:none;
    gap:24px;

}

nav a{

    font-size:14px;
    font-weight:600;
    color:#eee;

    position:relative;

    transition:.35s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:var(--gold);

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

/* =========================
   LOGIN BUTTON
========================= */

.button-login{

    background:#111;
    padding:20px 0;

}

.button-login .container{

    display:flex;
    justify-content:center;
    gap:18px;

}

.btn{

    width:220px;

    text-align:center;

    padding:16px;

    border-radius:10px;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.daftar{

    background:linear-gradient(135deg,#1c7eff,#00bfff);

    color:white;

    box-shadow:
    0 0 20px rgba(0,150,255,.45);

}

.login{

    background:linear-gradient(135deg,#ffce00,#ff9900);

    color:#111;

    box-shadow:
    0 0 20px rgba(255,200,0,.35);

}

.btn:hover{

    transform:translateY(-4px);

}

/* =========================
   MAIN
========================= */

.main{

    padding:40px 0;

}

.main .container{

    display:grid;

    grid-template-columns:

    2fr
    380px;

    gap:35px;

}

/* =========================
   CONTENT
========================= */

.content{

    display:flex;
    flex-direction:column;
    gap:30px;

}
/* =========================
   BREADCRUMB
========================= */

.breadcrumb{

    font-family:'Montserrat',sans-serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#d8a10f;
}

.breadcrumb a{

    color:#ffcb38;
    transition:.3s;
}
.breadcrumb a:hover{
    color:#fff;
}

/* =========================
   HERO ARTICLE
========================= */

.hero-article{

    background:#151515;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.hero-article img{

   width:100%;
    height:auto;
    display:block;
}

.hero-text{

    padding:30px;

}

.hero-text h1{

    font-size:34px;
    line-height:1.3;

    margin-bottom:18px;

    color:white;

}

.hero-text p{

    color:#bbb;

}

.meta{

    margin-top:20px;

    display:flex;
    gap:18px;

    font-size:13px;

    color:#999;

}

/* =========================
   ARTICLE
========================= */

.article{

    background:#121212;

    border-radius:15px;

    padding:35px;

    box-shadow:var(--shadow);

}

.article h2{

    color:var(--gold);

    margin-bottom:20px;

}

.article p{

    margin-bottom:18px;

    color:#d0d0d0;

}

/* =========================
   SIDEBAR
========================= */

.sidebar{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.widget,
.search-box{

    background:#141414;

    border-radius:15px;

    padding:25px;

    box-shadow:var(--shadow);

}

.widget h3,
.search-box h3{

    margin-bottom:18px;

    color:var(--gold);

}

.search-box input{

    width:100%;

    padding:13px;

    border:none;

    outline:none;

    border-radius:8px;

    background:#222;

    color:white;

}

.search-box button{

    margin-top:15px;

    width:100%;

    padding:13px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-weight:700;

    background:linear-gradient(135deg,#00a8ff,#006eff);

    color:white;

}

.widget ul{

    list-style:none;

}

.widget li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.widget li:last-child{

    border:none;

}

.widget a:hover{

    color:var(--gold);

}

/* ==========================================================
   PART 2B
   FAQ - TESTIMONI - FOOTER
==========================================================*/

/* ===========================
   SECTION TITLE
=========================== */

.section-title{
    font-size:30px;
    font-weight:700;
    text-align:center;
    margin-bottom:35px;
    color:var(--gold);
    position:relative;
}

.section-title::after{
    content:"";
    width:90px;
    height:4px;
    background:linear-gradient(90deg,var(--gold),var(--blue));
    display:block;
    margin:15px auto 0;
    border-radius:20px;
}

/* ===========================
   SEO CONTENT
=========================== */

.seo-content{
    background:#131313;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.seo-content h2{
    color:var(--gold);
    margin-bottom:20px;
}

.seo-content p{
    color:#cfcfcf;
    margin-bottom:18px;
    text-align:justify;
}

/* ===========================
   FAQ
=========================== */

.faq-section{
    margin-top:35px;
}

.accordion{
    flex-direction:column;
    gap:15px;
}

.accordion-item{
    background:#171717;
    border-radius:12px;
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

.accordion-item:hover{
    border-color:var(--blue);
    box-shadow:0 0 20px rgba(0,180,255,.2);
}

.accordion-header{
    width:100%;
    padding:22px;
    background:none;
    border:none;
    color:#fff;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.accordion-header span{
    font-size:28px;
    color:#FFD700;
    transition:.3s;
}

.accordion-body{
    display:none;
    padding:0 22px 22px;
    color:#bfbfbf;
    line-height:1.8;
}


.accordion-item.active .accordion-body{
    display:block;
    
}

/* ===========================
   TESTIMONIAL
=========================== */

.testimonial-section{
    margin-top:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#171717;
    border-radius:15px;
    padding:30px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.stars{
    color:#FFD700;
    font-size:22px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#cfcfcf;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:white;
}

.testimonial-card span{
    color:#999;
    font-size:13px;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    margin-top:80px;
    background:#0d0d0d;
    border-top:2px solid #202020;
    padding:60px 0 30px;
}

.footer-logo{
    width:200px;
    margin:auto;
    margin-bottom:25px;
}

.footer p{
    text-align:center;
    color:#bdbdbd;
    max-width:800px;
    margin:0 auto 30px;
}

.footer-menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:30px;
}

.footer-menu a{
    color:#ddd;
    transition:.3s;
}

.footer-menu a:hover{
    color:var(--gold);
}

.copyright{
    text-align:center;
    color:#777;
    font-size:14px;
}

/* ===========================
   MOBILE MENU
=========================== */

.bottom-menu{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:70px;
    background:#111;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    z-index:999;
}

.bottom-menu a{
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:12px;
    color:#ddd;
    transition:.3s;
}

.bottom-menu a:hover{
    color:var(--gold);
}

.bottom-menu .icon{
    font-size:22px;
    margin-bottom:5px;
}

/* ===========================
   BACK TO TOP
=========================== */

#backTop{
    position:fixed;
    right:25px;
    bottom:90px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#FFD700,#ff9900);
    color:#111;
    font-size:22px;
    cursor:pointer;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
    z-index:999;
}

#backTop:hover{
    transform:translateY(-5px);
}

/* ===========================
   LOADER
=========================== */

#loader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-box{
    text-align:center;
}

.loader-logo{
    width:180px;
    margin:auto;
    margin-bottom:20px;
}

.loader-spinner{
    width:70px;
    height:70px;
    margin:auto;
    border:5px solid rgba(255,255,255,.1);
    border-top:5px solid var(--gold);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

.loader-box p{
    margin-top:20px;
    color:#ddd;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/* ==========================================================
   PART 2C
   Responsive + Premium Effect
==========================================================*/

/* ===============================
   GLASS EFFECT
================================ */

.glass{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
}

/* ===============================
   BLUE GLOW
================================ */

.blue-glow{
    box-shadow:
    0 0 10px rgba(0,170,255,.35),
    0 0 25px rgba(0,170,255,.25),
    0 0 50px rgba(0,170,255,.15);
}

/* ===============================
   GOLD GLOW
================================ */

.gold-glow{
    box-shadow:
    0 0 15px rgba(255,215,0,.35),
    0 0 30px rgba(255,215,0,.25),
    0 0 60px rgba(255,215,0,.15);
}

/* ===============================
   CARD HOVER
================================ */

.hero-article,
.article,
.widget,
.search-box,
.seo-content,
.testimonial-card,
.accordion-item{

    transition:.35s ease;

}

.hero-article:hover,
.article:hover,
.widget:hover,
.search-box:hover,
.seo-content:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.45);

}

/* ===============================
   IMAGE EFFECT
================================ */

.hero-article img{

    transition:.5s;

}

.hero-article:hover img{

    transform:scale(1.05);

}

/* ===============================
   BUTTON EFFECT
================================ */

.btn{

    overflow:hidden;
    position:relative;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    transform:skew(-25deg);

    background:

    rgba(255,255,255,.25);

}

.btn:hover::before{

    animation:shine .8s;

}

@keyframes shine{

    100%{

        left:160%;

    }

}

/* ===============================
   FADE ANIMATION
================================ */

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* ===============================
   FLOATING
================================ */

.float{

    animation:floating 3s ease infinite;

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===============================
   TEXT SELECTION
================================ */

::selection{

    background:var(--gold);

    color:#000;

}

/* ===============================
   TABLET
================================ */

@media(max-width:991px){

.header .container{

    flex-direction:column;

    padding:20px 0;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

}

.main .container{

    grid-template-columns:1fr;

}

.sidebar{

    margin-top:20px;

}

.testimonial-grid{

    grid-template-columns:repeat(2,1fr);

}

.hero-text h1{

    font-size:28px;

}

}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

.container{

    width:94%;

}

.logo img{

    width:150px;

}

nav{

    display:none;

}

.button-login .container{

    flex-direction:column;

}

.btn{

    width:100%;

}

.hero-article img{

    height:220px;

}

.hero-text{

    padding:20px;

}

.hero-text h1{

    font-size:22px;

}

.article{

    padding:25px;

}

.article h2{

    font-size:22px;

}

.section-title{

    font-size:24px;

}

.testimonial-grid{

    grid-template-columns:1fr;

}

.footer-menu{

    flex-direction:column;

    align-items:center;

}

.bottom-menu{

    display:flex;

}

}

/* ===============================
   EXTRA SMALL
================================ */

@media(max-width:480px){

.topbar{

    display:none;

}

.hero-text h1{

    font-size:20px;

}

.hero-text p{

    font-size:14px;

}

.article{

    padding:20px;

}

.widget,
.search-box{

    padding:20px;

}

#backTop{

    width:45px;
    height:45px;

    right:15px;

    bottom:85px;

}

}

/* ===============================
   DESKTOP ONLY
================================ */

@media(min-width:769px){

.bottom-menu{

    display:none;

}

}

/* ===============================
   BORDER GRADIENT
================================ */

.border-gold{

    border:1px solid rgba(255,215,0,.35);

}

.border-blue{

    border:1px solid rgba(0,170,255,.35);

}

.btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.45);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

nav a.active{

    color:#FFD700;

}

/* ===============================
   END STYLE
================================ */