*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#000;
    color:#fff;
}

.container{
    width:100%;
    max-width:100%;
    margin:auto;
    overflow:hidden;
}

/* Desktop */
@media (min-width:1024px){

    .hero{
        padding:80px 80px 100px;
    }

    .cards{
        justify-content:center;
        gap:30px;
    }

    .card{
        width:220px;
        height:420px;
    }

    .hero h1{
        max-width:1000px;
        margin:40px auto 0;
        text-align:center;
        font-size:72px;
    }

    .hero p{
        max-width:900px;
        margin:30px auto 0;
        text-align:center;
        font-size:24px;
    }

    .tagline{
        text-align:center;
        font-size:28px;
    }

    .header{
        justify-content:center;
        position:relative;
    }

    .menu{
        position:absolute;
        right:40px;
    }
}

/* PROMO */
.top-banner{
    background:#fff;
    color:#000;
    padding:10px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:bold;
    font-size:15px;
}

.timer{
    background:#222;
    color:#fff;
    border-radius:6px;
    padding:8px 12px;
    display:flex;
    gap:10px;
    font-size:12px;
}

.timer div{
    text-align:center;
}

.timer span{
    display:block;
    font-size:18px;
    font-weight:bold;
}

/* HEADER */
.header{
    background:#111;
    padding:20px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

/* .logo-circle{
    width:34px;
    height:34px;
    border-radius:50%;
    border:6px solid #fff;
    border-right-color:#d50000;
    transform:rotate(-35deg);
} */

.logo-circle{
    width:55px;
    height:55px;
    border-radius:50%;
    overflow:hidden;
}

.logo-circle img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.logo-text{
    font-size:32px;
    font-weight:700;
}

.logo-text span{
    color:#fff;
}

.logo-text small{
    font-size:28px;
    color:#999;
}

.menu{
    width:32px;
}

.menu span{
    display:block;
    height:4px;
    background:#fff;
    margin:6px 0;
    border-radius:4px;
}

/* HERO */
.hero{
    position:relative;
    padding:35px 20px 50px;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,
        rgba(220,0,0,.8),
        rgba(70,0,0,.95) 60%,
        #000 100%);
}

/* Background merah */
.hero::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border:35px solid rgba(180,0,0,0.8);
    border-radius:50%;
    top:-40px;
    left:-80px;
}

.hero::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border:35px solid rgba(180,0,0,0.8);
    border-radius:50%;
    right:-90px;
    top:180px;
}

/* CARD */
.cards{
    display:flex;
    gap:14px;
    position:relative;
    z-index:2;
}

.card{
    width:100px;
    height:230px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(180,0,0,.35),
        rgba(0,0,0,.2)
    );
}

.card:nth-child(2){
    margin-top:30px;
}

.card:nth-child(3){
    margin-top:10px;
}

/* TEXT */
.tagline{
    margin-top:45px;
    color:#cfcfcf;
    font-style:italic;
    font-size:24px;
    font-weight:600;
    position:relative;
    z-index:2;
}

.hero h1{
    margin-top:25px;
    font-size:52px;
    line-height:1.08;
    font-weight:800;
    position:relative;
    z-index:2;
}

.hero p{
    margin-top:20px;
    font-size:24px;
    line-height:1.6;
    color:#f0f0f0;
    position:relative;
    z-index:2;
}

/* Responsive */
@media(max-width:375px){

    .logo-text{
        font-size:24px;
    }

    .logo-text small{
        font-size:20px;
    }

    .card{
        width:86px;
        height:200px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:16px;
    }

    .tagline{
        font-size:18px;
    }
}

/* Overlay */
.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

/* Sidebar */
.sidebar{
    position:fixed;
    top:0;
    left:-280px;
    width:280px;
    height:100%;
    background:#111;
    z-index:999;
    transition:.35s ease;
    padding:25px;
    box-shadow:5px 0 20px rgba(0,0,0,.5);
}

.sidebar.active{
    left:0;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.sidebar-header h2{
    color:#fff;
}

.close-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.sidebar ul{
    list-style:none;
}

.sidebar ul li{
    margin:20px 0;
}

.sidebar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.sidebar ul li a:hover{
    color:#e30000;
    padding-left:8px;
}
.trust-section{
    background:#000;
    padding:40px 20px;
}

.trust-top{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.certificate-box{
    flex:1;
    min-width:280px;
    background:#1a1a1a;
    padding:18px;
    border-radius:12px;
}

.certificate-box p{
    color:#fff;
    line-height:1.5;
    margin-bottom:20px;
}

.certificate-logos{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    font-weight:bold;
    font-size:28px;
}

.certificate-logos span{
    color:#fff;
}

.rating-box{
    background:#fff;
    color:#000;
    border-radius:12px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.google-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:bold;
}

.cta-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-red{
    background:#ff3b30;
    color:#fff;
    padding:18px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:16px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
}

.stats-section{
    background:linear-gradient(
        90deg,
        #2d2d2d,
        #222
    );

    display:grid;
    grid-template-columns:repeat(5,1fr);

    text-align:center;

    padding:40px 20px;
}

.stat-item h2{
    color:#fff;
    font-size:64px;
    margin-bottom:10px;
}

.stat-item p{
    color:#fff;
    font-size:22px;
}
@media(max-width:768px){

    .trust-top{
        flex-direction:column;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .btn-red,
    .btn-outline{
        text-align:center;
    }

    .stats-section{
        grid-template-columns:1fr;
        gap:25px;
    }

    .stat-item h2{
        font-size:40px;
    }

    .stat-item p{
        font-size:18px;
    }

}

/* CORPORATE CLIENT */
.corporate-section{
    background:#f5f5f5;
    padding:80px 20px;
}

.corporate-container{
    max-width:1300px;
    margin:auto;
    text-align:center;
}

.corporate-container h2{
    font-size:52px;
    font-weight:800;
    color:#000;
    margin-bottom:60px;
}

.corporate-logos{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:45px;
    margin-bottom:60px;
}

.corporate-logos img{
    max-height:60px;
    width:auto;
    object-fit:contain;
    transition:.3s;
}

.corporate-logos img:hover{
    transform:scale(1.08);
}

.corporate-desc{
    max-width:900px;
    margin:auto;
    font-size:28px;
    line-height:1.7;
    color:#111;
}

.btn-alumni{
    margin-top:50px;
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#000;
    color:#fff;

    text-decoration:none;

    padding:22px 42px;

    border-radius:60px;

    font-weight:700;

    font-size:24px;

    transition:.3s;
}

.btn-alumni:hover{
    transform:translateY(-3px);
}

.btn-alumni span{
    font-size:28px;
}
@media(max-width:768px){

    .corporate-section{
        padding:50px 20px;
    }

    .corporate-container h2{
        font-size:24px;
        margin-bottom:30px;
    }

    .corporate-logos{
        gap:25px;
        margin-bottom:30px;
    }

    .corporate-logos img{
        max-height:45px;
        max-width:110px;
    }

    .corporate-desc{
        font-size:16px;
        line-height:1.6;
    }

    .btn-alumni{
        width:100%;
        justify-content:center;
        font-size:18px;
        padding:16px 20px;
        margin-top:35px;
    }

}

/* AWARDS */

.awards-section{
    background:#000;
    padding:90px 20px;
}

.awards-container{
    max-width:1200px;
    margin:auto;
}

.awards-title{
    text-align:center;
    color:#fff;
    font-size:54px;
    line-height:1.3;
    font-weight:800;
    margin-bottom:60px;
}

.awards-title span{
    color:#ff3131;
}

.awards-card{

    background:#111;

    border-radius:20px;

    overflow:hidden;

    display:grid;

    grid-template-columns:420px 1fr;

    position:relative;
}

.awards-card::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border:40px solid #ff3131;

    border-radius:50%;

    top:-100px;
    right:-100px;
}

.awards-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.awards-content{

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.awards-logo{

    color:#fff;

    margin-bottom:30px;

    font-size:28px;

    font-weight:700;
}

.awards-content h3{

    color:#fff;

    font-size:48px;

    line-height:1.3;

    font-weight:300;
}

.awards-content h4{

    color:#fff;

    font-size:58px;

    line-height:1.15;

    margin-top:20px;

    font-weight:800;
}

.awards-content h4 span{
    color:#ffe033;
}

.award-badges{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:40px;
}

.badge{

    width:100px;
    height:120px;

    background:#fff;

    color:#000;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;
}

.awards-desc{

    color:#fff;

    text-align:center;

    font-size:24px;

    line-height:1.8;

    max-width:950px;

    margin:40px auto 0;
}

@media(max-width:768px){

    .awards-section{
        padding:60px 20px;
    }

    .awards-title{

        font-size:24px;

        margin-bottom:30px;
    }

    .awards-card{

        grid-template-columns:1fr;
    }

    .awards-card::before{

        width:120px;
        height:120px;

        border-width:20px;

        top:-50px;
        right:-50px;
    }

    .awards-content{

        padding:25px;
    }

    .awards-logo{
        font-size:18px;
    }

    .awards-content h3{

        font-size:20px;
    }

    .awards-content h4{

        font-size:28px;
    }

    .award-badges{

        justify-content:center;
    }

    .badge{

        width:70px;
        height:80px;

        font-size:12px;
    }

    .awards-desc{

        font-size:16px;

        line-height:1.7;

        margin-top:30px;
    }

}

.awards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.award-item{
    background:linear-gradient(
        to bottom,
        #111,
        #2b2b2b
    );

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    color:#fff;
}

.award-item img{
    width:180px;
    max-width:100%;
    margin:0 auto 25px;
    display:block;
}

.award-year{
    display:block;
    color:#bdbdbd;
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
}

.award-item h3{
    font-size:22px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:25px;
}

.award-item p{
    font-size:18px;
    line-height:1.7;
    color:#f1f1f1;
}
@media(max-width:768px){

    .awards-grid{
        grid-template-columns:1fr;
        gap:30px;
        margin-top:40px;
    }

    .award-item{
        padding:30px 20px;
    }

    .award-year{
        font-size:18px;
    }

    .award-item h3{
        font-size:18px;
    }

    .award-item p{
        font-size:16px;
    }

}

.courses-section{
    background:#000;
    padding:100px 20px;
}

.section-title{
    text-align:center;
    color:#fff;
    max-width:900px;
    margin:auto auto 60px;
}

.section-title h2{
    font-size:64px;
    margin-bottom:20px;
}

.section-title p{
    font-size:24px;
    line-height:1.7;
}

.courses-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.course-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.course-card img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.course-overlay{
    position:absolute;
    inset:0;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(255,0,0,.25)
    );

    color:#fff;
}

.course-overlay small{
    font-size:28px;
    font-style:italic;
}

.course-overlay h3{
    font-size:56px;
    margin:15px 0;
}

.course-overlay p{
    font-size:24px;
    line-height:1.7;
}
@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:16px;
    }

    .courses-grid{
        grid-template-columns:1fr;
    }

    .course-card img{
        height:450px;
    }

    .course-overlay h3{
        font-size:28px;
    }

    .course-overlay p{
        font-size:16px;
    }

}
.why-section{
    background:linear-gradient(
        135deg,
        #2b2b2b,
        #202020
    );

    padding:100px 20px;

    position:relative;

    overflow:hidden;
}

.why-section::before,
.why-section::after{

    content:'';

    position:absolute;

    width:110px;
    height:110px;

    border:35px solid #ff3333;

    border-radius:50%;
}

.why-section::before{
    top:-120px;
    right:180px;
}

.why-section::after{
    top:80px;
    right:-120px;
}

.why-container{
    max-width:1200px;
    margin:auto;
}

.why-container h2{
    color:#fff;
    font-size:72px;
    margin-bottom:80px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}

.why-item{
    display:flex;
    gap:25px;
    color:#fff;
}

.why-icon{
    min-width:40px;
    height:40px;

    background:#333;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

    box-shadow:0 0 25px rgba(255,0,0,.4);
}

.why-item h3{
    font-size:36px;
    margin-bottom:15px;
}

.why-item p{
    font-size:24px;
    line-height:1.7;
}
@media(max-width:768px){

    .why-container h2{
        font-size:34px;
        text-align:center;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-item{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .why-item h3{
        font-size:22px;
    }

    .why-item p{
        font-size:16px;
    }

}

.learn-section{
    background:#000;
    padding:100px 20px;
    color:#fff;
}

.learn-container{
    max-width:1200px;
    margin:auto;
}

.learn-container h2{
    font-size:72px;
    margin-bottom:60px;
}

.learn-container h2 span{
    color:#ff3b30;
}

.learn-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.learn-left p{
    font-size:24px;
    line-height:1.8;
    margin-bottom:30px;
}

.learn-right h3{
    font-size:46px;
    line-height:1.4;
    margin-bottom:40px;
}

.learn-highlight{
    padding:40px;
    border-radius:24px;

    background:linear-gradient(
        90deg,
        #ff3b30,
        #5b1d1d
    );

    font-size:28px;
    line-height:1.8;
    text-align:center;
}
.accordion-section{
    background:#000;
    padding:0 20px 80px;
}

.accordion-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.accordion-item{
    overflow:hidden;
}

.accordion-btn{

    width:100%;

    background:#ececec;

    border:none;

    border-radius:16px;

    padding:25px;

    cursor:pointer;

    font-size:22px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.accordion-btn small{

    background:#ff3b30;

    color:#fff;

    padding:4px 10px;

    border-radius:20px;
}

.accordion-content{

    display:none;

    background:#fff;

    padding:20px;
color: #000;
    border-radius:0 0 16px 16px;
}

.accordion-item.active .accordion-content{
    display:block;
}
.material-banner{

    background:linear-gradient(
        90deg,
        #c62828,
        #420000
    );

    color:#fff;

    padding:90px 20px;
}

.material-container{

    max-width:1200px;

    margin:auto;
}

.material-container h2{

    font-size:72px;

    margin-bottom:30px;
}

.material-container p{

    font-size:34px;
}

@media(max-width:768px){

    .learn-container h2{
        font-size:34px;
    }

    .learn-grid{
        grid-template-columns:1fr;
    }

    .learn-left p,
    .learn-right h3,
    .learn-highlight{
        font-size:18px;
    }

    .accordion-grid{
        grid-template-columns:1fr;
    }

    .accordion-btn{
        font-size:16px;
        padding:18px;
    }

    .material-container h2{
        font-size:38px;
    }

    .material-container p{
        font-size:20px;
    }

}

.pricing-section{
    background:#000;
    padding:100px 20px;
    color:#fff;
}

.pricing-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:460px 1fr;

    gap:50px;
}

.price-card{
    border:1px solid #444;
    border-radius:25px;
    padding:40px;
}

.price-card h2{
    font-size:52px;
    margin-bottom:25px;
}

.old-price{
    font-size:58px;
    font-weight:800;
    text-decoration:line-through red 5px;
    margin:30px 0;
}

.new-price{
    color:#ffe600;
    font-size:64px;
    font-weight:800;
    margin:25px 0;
}

.installment span{
    color:#ff3333;
}

.cashback-box{
    margin:35px 0;
    border:2px dashed #666;
    border-radius:20px;
    padding:25px;
}

.cashback-box span{
    color:#ff3333;
}

.wa-button{
    display:block;
    text-align:center;

    background:#63d864;

    color:#000;

    padding:20px;

    border-radius:50px;

    font-size:28px;

    text-decoration:none;

    font-weight:700;
}

.bonus-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.bonus-item h3{
    font-size:30px;
}

.bonus-item strong{
    display:block;
    color:#ffd37a;
    margin:15px 0;
}

.journey-section{

    background:linear-gradient(
        180deg,
        #6b0000,
        #240000
    );

    color:#fff;

    padding:100px 20px;
}

.journey-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.journey-container h2{
    font-size:64px;
}

.journey-container p{
    font-size:30px;
    margin:20px 0 50px;
}

.journey-video{
    position:relative;
    border-radius:25px;
    overflow:hidden;
}

.journey-video img{
    width:100%;
    display:block;
}

.play-button{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:90px;
}

.journey-roadmap{
    margin-top:80px;

    display:flex;

    justify-content:center;

    align-items:flex-end;
}

.road{
    height:70px;
}

.blue{
    width:140px;
    background:#4fc3f7;
}

.yellow{
    width:300px;
    background:#f2e64a;
}

.red{
    width:180px;
    background:#ff4141;
}

.purple{
    width:140px;
    background:#c38eff;
}

.orange{
    width:220px;
    background:#ff8844;
}

@media(max-width:768px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .bonus-grid{
        grid-template-columns:1fr;
    }

    .price-card h2{
        font-size:34px;
    }

    .old-price{
        font-size:36px;
    }

    .new-price{
        font-size:42px;
    }

    .wa-button{
        font-size:20px;
    }

    .journey-container h2{
        font-size:34px;
    }

    .journey-container p{
        font-size:20px;
    }

    .play-button{
        font-size:60px;
    }

    .journey-roadmap{
        overflow-x:auto;
        justify-content:flex-start;
    }

}

.footer-section{
    background:#171717;
    color:#fff;
    padding:80px 20px 40px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:42px;
    font-weight:700;

    margin-bottom:40px;
}

.footer-logo span{
    color:#fff;
}

.footer-office{
    margin-bottom:40px;
}

.footer-office h3{
    font-size:30px;
    margin-bottom:10px;
}

.footer-office small{
    color:#aaa;
    display:block;
    margin-bottom:15px;
    font-style:italic;
}

.footer-office p{
    line-height:1.7;
    margin-bottom:15px;
}

.footer-office a{
    color:#fff;
    text-decoration:none;
}

.footer-links{
    list-style:none;
    margin-top:20px;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-social{
    margin-top:40px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:55px;
    height:55px;

    background:#fff;
    color:#000;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-weight:bold;
}

.footer-certification{

    margin-top:50px;

    background:#232323;

    border-radius:18px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;
}

.cert-text{
    max-width:420px;
    line-height:1.7;
}

.cert-logos{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    font-size:28px;
    font-weight:700;
}

.footer-copy{
    margin-top:40px;
    color:#999;
}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .footer-logo{
        font-size:28px;
    }

    .footer-office h3{
        font-size:24px;
    }

    .footer-certification{
        flex-direction:column;
        align-items:flex-start;
    }

    .cert-logos{
        font-size:20px;
        gap:15px;
    }

    .social-icons a{
        width:45px;
        height:45px;
    }

}
/* DAFTAR HARGA */
.pricing-service-section{
    background:#000;
    padding:100px 20px;
}

.service-container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    color:#fff;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:54px;
    margin-bottom:20px;
}

.section-heading p{
    font-size:22px;
    color:#d0d0d0;
    line-height:1.7;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:linear-gradient(
        135deg,
        #1d1d1d,
        #2a2a2a
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    color:#fff;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:#ff3b30;
}

.price-label{
    display:inline-block;

    background:#ff3b30;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:14px;
}

.service-card h3{
    margin:25px 0 20px;

    font-size:30px;
}

.service-price{
    font-size:48px;

    font-weight:800;

    color:#ffe600;

    margin-bottom:20px;
}

.service-card p{
    color:#cfcfcf;

    line-height:1.7;
}

.pricing-wa{
    text-align:center;

    margin-top:60px;
}

.pricing-wa-btn{
    display:inline-block;

    background:#25D366;

    color:#000;

    text-decoration:none;

    font-size:24px;

    font-weight:700;

    padding:20px 45px;

    border-radius:60px;

    transition:.3s;
}

.pricing-wa-btn:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:25px;
    }

    .service-card h3{
        font-size:24px;
    }

    .service-price{
        font-size:36px;
    }

    .pricing-wa-btn{
        width:100%;

        font-size:18px;

        padding:18px 20px;
    }

}

/* DAFTAR HARGA */
.price-table-section{
    background:#000;
    padding:100px 20px;
}

.price-container{
    max-width:1200px;
    margin:auto;
}

.price-header{
    text-align:center;
    margin-bottom:40px;
}

.price-header h2{
    color:#fff;
    font-size:52px;
    margin-bottom:15px;
}

.price-header p{
    color:#cfcfcf;
    font-size:20px;
    line-height:1.7;
}

.table-wrapper{
    overflow-x:auto;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:20px;
}

.price-table thead{
    background:linear-gradient(
        90deg,
        #ff3b30,
        #a50000
    );
}

.price-table th{
    color:#fff;
    padding:22px;
    font-size:20px;
    text-align:center;
}

.price-table td{
    background:#1d1d1d;
    color:#fff;
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.price-table tbody tr:hover td{
    background:#2a2a2a;
}

.price-table td:last-child{
    color:#ffe600;
    font-weight:700;
}

.price-note{
    color:#aaa;
    font-size:14px;
    margin-top:20px;
    font-style:italic;
}

.price-wa{
    text-align:center;
    margin-top:45px;
}

.price-wa-btn{
    display:inline-block;

    background:#25D366;

    color:#000;

    text-decoration:none;

    font-weight:700;

    font-size:24px;

    padding:20px 45px;

    border-radius:60px;

    transition:.3s;
}

.price-wa-btn:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){

    .price-header h2{
        font-size:32px;
    }

    .price-header p{
        font-size:16px;
    }

    .price-table th,
    .price-table td{
        padding:14px;
        font-size:14px;
    }

    .price-wa-btn{
        width:100%;
        font-size:18px;
        padding:18px 20px;
    }

}

/* FLOATING BAR */
.floating-bar{

    position:fixed;

    left:50%;
    bottom:20px;

    transform:translateX(-50%);

    width:calc(100% - 30px);
    max-width:600px;

    display:flex;

    justify-content:space-between;

    gap:12px;

    z-index:99999;
}

.floating-btn{

    flex:1;

    text-decoration:none;

    color:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:5px;

    padding:14px 10px;

    border-radius:20px;

    font-weight:700;

    backdrop-filter:blur(12px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35);

    transition:.3s;
}

.floating-btn:hover{

    transform:translateY(-4px);

}

.floating-icon{

    font-size:24px;
}

/* TELEPON */
.phone-btn{

    background:linear-gradient(
        135deg,
        #202020,
        #3a3a3a
    );
}

/* DAFTAR HARGA */
.price-btn{

    background:linear-gradient(
        135deg,
        #ff3b30,
        #a50000
    );

    transform:scale(1.08);
}

/* WHATSAPP */
.wa-btn{

    background:linear-gradient(
        135deg,
        #25D366,
        #0d9f45
    );

    color:#000;
}
.bottom-nav{
    position:fixed;
    left:50%;
    bottom:12px;
    transform:translateX(-50%);

    width:95%;
    max-width:420px;

    background:rgba(20,20,20,.96);

    border-radius:18px;

    display:flex;

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);

    z-index:99999;
}

.nav-item{
    flex:1;

    text-decoration:none;

    color:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:10px 5px;

    gap:4px;

    transition:.3s;
}

.nav-item:hover{
    background:rgba(255,255,255,.05);
}

.nav-icon{
    font-size:20px;
}

.nav-item span{
    font-size:12px;
    font-weight:600;
}

.nav-center{
    background:linear-gradient(
        135deg,
        #ff3b30,
        #b40000
    );
}

.nav-center:hover{
    background:linear-gradient(
        135deg,
        #ff5148,
        #c40000
    );
}

.nav-wa{
    background-color: #0d9f45;
}

@media (min-width:769px){

    .bottom-nav{
        max-width:360px;
    }

    .nav-item{
        padding:8px 5px;
    }

    .nav-icon{
        font-size:18px;
    }

    .nav-item span{
        font-size:11px;
    }
}

/* TENTANG KAMI */
.about-section{
    background:#111;
    padding:100px 20px;
}

.about-container{
    max-width:1200px;
    margin:auto;
}

.about-heading{
    text-align:center;
    margin-bottom:60px;
}

.about-badge{
    display:inline-block;

    background:#ff3b30;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;
}

.about-heading h2{
    color:#fff;
    font-size:58px;
    line-height:1.3;
}

.about-content{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.about-image img{
    width:100%;
    border-radius:30px;
    display:block;
}

.about-text{
    color:#fff;
}

.about-text p{
    font-size:22px;
    line-height:1.9;
    margin-bottom:25px;
}

.about-text ul{
    list-style:none;
    padding:0;
}

.about-text li{
    margin-bottom:15px;
    font-size:20px;
}

.about-action{
    text-align:center;
    margin-top:50px;
}

.about-action a{
    display:inline-block;

    background:linear-gradient(
        135deg,
        #ff3b30,
        #b40000
    );

    color:#fff;

    text-decoration:none;

    padding:20px 40px;

    border-radius:50px;

    font-weight:700;
}


/* TENTANG KAMI */
.about-section{
    background:#111;
    padding:90px 20px;
}

.about-container{
    max-width:1200px;
    margin:auto;
}

.about-title{
    text-align:center;
    margin-bottom:60px;
}

.about-title span{
    display:inline-block;

    background:#ff3b30;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;
}

.about-title h2{
    color:#fff;

    font-size:48px;

    line-height:1.4;

    max-width:850px;

    margin:auto;
}

.about-wrapper{
    display:grid;

    grid-template-columns:350px 1fr;

    gap:50px;

    align-items:center;
}

.about-image img{
    width:100%;

    border-radius:20px;

    display:block;

    object-fit:cover;
}

.about-content{
    color:#fff;
}

.about-content h3{
    font-size:34px;

    margin-bottom:25px;
}

.about-content p{
    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

    color:#d8d8d8;
}

.about-content ul{
    list-style:none;

    padding:0;

    margin:30px 0;
}

.about-content li{
    margin-bottom:15px;

    font-size:17px;
}

.about-btn{
    display:inline-block;

    background:linear-gradient(
        135deg,
        #ff3b30,
        #b40000
    );

    color:#fff;

    text-decoration:none;

    padding:16px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
}
@media(max-width:768px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-title h2{
        font-size:30px;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
    }

    .about-content h3{
        font-size:24px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-content li{
        font-size:15px;
    }

    .about-btn{
        width:100%;
        text-align:center;
    }

}

/* GALERI */
.gallery-section{
    background:#000;
    padding:90px 20px;
}

.gallery-container{
    max-width:1200px;
    margin:auto;
}

.gallery-title{
    text-align:center;
    margin-bottom:50px;
}

.gallery-title span{
    display:inline-block;

    background:#ff3b30;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;
}

.gallery-title h2{
    color:#fff;

    font-size:48px;

    margin-bottom:20px;
}

.gallery-title p{
    color:#d0d0d0;

    font-size:18px;

    line-height:1.7;

    max-width:700px;

    margin:auto;
}

.gallery-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.gallery-item{
    overflow:hidden;

    border-radius:20px;

    background:#111;
}

.gallery-item img{
    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:768px){

    .gallery-title h2{
        font-size:30px;
    }

    .gallery-title p{
        font-size:16px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:220px;
    }

}

