/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f6fa;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    width:100%;
    display:block;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

ul{
    list-style:none;
}

/*==================================================
ROOT
==================================================*/

:root{

    --primary:#0b6fe3;
    --secondary:#ffb300;

    --white:#ffffff;

    --bg:#f5f6fa;

    --text:#333;

    --shadow:0 8px 25px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}

/*==================================================
CONTAINER
==================================================*/

.container{

    width:95%;

    max-width:1300px;

    margin:auto;

}

/*==================================================
HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    left:0;

    z-index:999;

    background:var(--primary);

    box-shadow:0 5px 15px rgba(0,0,0,.12);

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:180px;

}

.nav-icon{

    display:flex;

    gap:15px;

}

.nav-icon button{

    width:48px;

    height:48px;

    border-radius:50%;

    color:white;

    font-size:22px;

    transition:.3s;

}

.nav-icon button:hover{

    background:rgba(255,255,255,.15);

}

/*==================================================
SEARCH BOX
==================================================*/

.search-box{

    width:95%;

    max-width:900px;

    margin:25px auto;

    display:flex;

    background:white;

    border-radius:50px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:18px;

    font-size:16px;

}

.search-box button{

    width:65px;

    background:var(--primary);

    color:white;

    font-size:20px;

}

/*==================================================
SIDEBAR
==================================================*/

.sidebar{

    position:fixed;

    top:0;

    right:-380px;

    width:360px;

    height:100vh;

    background:white;

    z-index:1001;

    transition:.4s;

    overflow-y:auto;

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

}

.sidebar.active{

    right:0;

}

.sidebar-header{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 25px;

    border-bottom:1px solid #eee;

}

.sidebar-header h3{

    font-size:25px;

    display:flex;

    gap:10px;

    align-items:center;

}

.sidebar-header button{

    font-size:30px;

}

.sidebar-menu{

    padding:20px;

}

.sidebar-menu>a{

    display:block;

    background:white;

    margin-bottom:15px;

    padding:16px 20px;

    border-radius:12px;

    font-size:18px;

    box-shadow:var(--shadow);

}

/*==================================================
OVERLAY
==================================================*/

.sidebar-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.4);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1000;

}

.sidebar-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
DROPDOWN
==================================================*/

.dropdown{

    margin-bottom:15px;

}

.dropdown-btn{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

    background:white;

    border-radius:12px;

    font-size:18px;

    box-shadow:var(--shadow);

}

.dropdown-content{

    display:none;

    margin-top:10px;

    padding-left:15px;

}

.dropdown-content a{

    display:block;

    background:#fafafa;

    margin:10px 0;

    padding:14px;

    border-radius:10px;

    transition:.3s;

}

.dropdown-content a:hover{

    background:var(--primary);

    color:white;

}

.dropdown.active .dropdown-content{

    display:block;

}

.dropdown.active .dropdown-btn i{

    transform:rotate(180deg);

}

/*==================================================
SECTION TITLE
==================================================*/

.title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.title h2{

    font-size:32px;

    font-weight:700;

}

.title a{

    color:var(--primary);

    font-weight:600;

}


/*==================================================
HERO SLIDER
==================================================*/

.hero{

    width:100%;

    margin:25px auto;

}

.slider{

    position:relative;

    width:95%;

    max-width:1300px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.slide{

    display:none;

}

.slide.active{

    display:block;

    animation:fade .6s ease;

}

.slide img{

    width:100%;

    height:480px;

    object-fit:cover;

}

@keyframes fade{

    from{

        opacity:.2;

        transform:scale(1.03);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

.dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:18px;

}

.dots span{

    width:14px;

    height:14px;

    background:#d8d8d8;

    border-radius:50%;

    cursor:pointer;

    transition:.35s;

}

.dots span.active{

    width:35px;

    border-radius:30px;

    background:var(--primary);

}

/*==================================================
FAVORITE
==================================================*/

.favorite{

    margin-top:45px;

}

.favorite-grid{

    background:white;

    border-radius:20px;

    box-shadow:var(--shadow);

    padding:35px;

    display:grid;

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

    gap:25px;

}

.fav-item{

    text-align:center;

    transition:.35s;

}

.fav-item:hover{

    transform:translateY(-6px);

}

.fav-item img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin:auto;

}

.fav-item span{

    display:block;

    margin-top:15px;

    font-size:17px;

    font-weight:500;

}

/*==================================================
BANNER PROMO
==================================================*/

.banner-promo{

    margin-top:40px;

}

.banner-promo img{

    width:100%;

    border-radius:18px;

    box-shadow:var(--shadow);

}

/*==================================================
PROMO BULAN INI
==================================================*/

.promo{

    margin-top:50px;

    background:var(--primary);

    padding:35px;

    border-radius:25px;

}

.promo .title{

    color:white;

}

.promo .title a{

    color:white;

}

.promo-slider{

    display:grid;

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

    gap:30px;

    margin-top:30px;

}

/*==================================================
PRODUCT CARD
==================================================*/

.product-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

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

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-card h3{

    font-size:24px;

    padding:18px;

    font-weight:600;

    line-height:1.4;

}

.price{

    color:#ff4a00;

    font-size:28px;

    font-weight:700;

    padding:0 18px;

}

.old-price{

    padding:8px 18px;

    color:#999;

    text-decoration:line-through;

    font-size:19px;

}

.rating{

    padding:0 18px 20px;

    color:#f7b500;

    font-size:20px;

}

/*==================================================
SCROLLBAR HORIZONTAL
==================================================*/

.promo-slider{

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:thin;

}

.promo-slider::-webkit-scrollbar{

    height:7px;

}

.promo-slider::-webkit-scrollbar-thumb{

    background:#d7d7d7;

    border-radius:20px;

}



/*==================================================
SECTION PRODUK
==================================================*/

.product-section{

    margin:60px auto;

}

.product-section .title{

    margin-bottom:30px;

}

.product-section .title h2{

    font-size:34px;

    font-weight:700;

}

.product-section .title a{

    color:var(--primary);

    font-weight:600;

}

/*==================================================
GRID PRODUK
==================================================*/

.product-grid{

    display:grid;

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

    gap:28px;

}

/*==================================================
CARD PRODUK
==================================================*/

.product-item{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}

.product-item:hover{

    transform:translateY(-8px);

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

}

.product-item img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.product-info{

    padding:18px;

}

.product-info h3{

    font-size:20px;

    margin-bottom:10px;

    line-height:1.5;

    min-height:60px;

}

.product-info p{

    color:#777;

    font-size:15px;

    margin-bottom:15px;

}

.product-price{

    color:#ff5b00;

    font-size:24px;

    font-weight:700;

}

.product-old{

    color:#999;

    text-decoration:line-through;

    margin-top:5px;

    font-size:16px;

}

.product-rating{

    margin-top:12px;

    color:#ffb300;

    font-size:16px;

}

/*==================================================
LABEL DISKON
==================================================*/

.discount{

    position:absolute;

    top:15px;

    left:15px;

    background:#ff4d4d;

    color:#fff;

    padding:8px 12px;

    border-radius:8px;

    font-size:14px;

    font-weight:600;

}

/*==================================================
BUTTON
==================================================*/

.product-button{

    margin-top:18px;

    display:flex;

    gap:10px;

}

.product-button a{

    flex:1;

    padding:12px;

    text-align:center;

    border-radius:10px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.btn-detail{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-detail:hover{

    background:var(--primary);

    color:#fff;

}

.btn-order{

    background:var(--primary);

    color:#fff;

}

.btn-order:hover{

    opacity:.9;

}

/*==================================================
SECTION BACKGROUND
==================================================*/

.bg-white{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.bg-blue{

    background:var(--primary);

    padding:40px;

    border-radius:20px;

}

.bg-blue .title h2,

.bg-blue .title a{

    color:#fff;

}

/*==================================================
LOAD MORE
==================================================*/

.load-more{

    margin-top:40px;

    text-align:center;

}

.load-more a{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.load-more a:hover{

    transform:translateY(-4px);

}

/*==================================================
ANIMASI
==================================================*/

.product-item{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
HOVER IMAGE
==================================================*/

.product-item{

    overflow:hidden;

}

.product-item img{

    transition:.45s;

}

.product-item:hover img{

    transform:scale(1.08);

}

/*==================================================
BADGE TERLARIS
==================================================*/

.best-seller{

    position:absolute;

    top:15px;

    right:15px;

    background:#00b894;

    color:#fff;

    padding:8px 12px;

    border-radius:8px;

    font-size:13px;

    font-weight:600;

}



/*==================================================
ARTIKEL
==================================================*/

.article{

    margin:70px auto;

}

.article-grid{

    display:grid;

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

    gap:30px;

}

.article-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.article-card:hover{

    transform:translateY(-8px);

}

.article-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.article-content{

    padding:22px;

}

.article-date{

    color:#888;

    font-size:14px;

    margin-bottom:10px;

}

.article-content h3{

    font-size:22px;

    line-height:1.5;

    margin-bottom:15px;

}

.article-content p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin-bottom:20px;

}

.article-content a{

    color:var(--primary);

    font-weight:600;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#0d47a1;

    color:#fff;

    margin-top:80px;

}

.footer{

    display:grid;

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

    gap:40px;

    padding:60px 0;

}

.footer img{

    width:180px;

}

.footer h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer p{

    margin-bottom:12px;

    line-height:1.8;

    color:#dfe6e9;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--secondary);

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);

    color:#000;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:20px;

    font-size:15px;

}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:90px;

    width:60px;

    height:60px;

    background:#25D366;

    border-radius:50%;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

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

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.08);

}

/*==================================================
SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:165px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
BOTTOM NAVIGATION
==================================================*/

.bottom-nav{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    justify-content:space-around;

    align-items:center;

    padding:12px 0;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:999;

}

.bottom-nav a{

    display:flex;

    flex-direction:column;

    align-items:center;

    font-size:12px;

    color:#555;

}

.bottom-nav a i{

    font-size:22px;

    margin-bottom:6px;

}

.bottom-nav a.active{

    color:var(--primary);

}

/*==================================================
UTILITY
==================================================*/

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:20px;

}

.bg-primary{

    background:var(--primary);

    color:#fff;

}

.bg-white{

    background:#fff;

}

.transition{

    transition:.35s;

}



/*==================================
CATEGORY BANNER
==================================*/

.category-banner{

    margin-bottom:25px;

}

.category-banner img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:var(--shadow);

}


.article{

    margin:80px auto;

}

.article-grid{

    display:grid;

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

    gap:30px;

}

.article-card{

    display:flex;

    flex-direction:column;

    height:100%;

}

.article-content{

    display:flex;

    flex-direction:column;

    flex:1;

}

.article-content a{

    margin-top:auto;

}

.article-card:hover img{

    transform:scale(1.05);

}

.article-card img{

    transition:.4s;

}

/*==================================
FOOTER UPDATE
==================================*/

.footer{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    transition:.3s;

}

.footer-column a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer-column p{

    display:flex;

    gap:12px;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-column i{

    width:20px;

    margin-top:5px;

}


/*==================================
BOTTOM NAVIGATION
==================================*/

.bottom-nav{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:72px;

    background:#fff;

    display:none;

    justify-content:space-around;

    align-items:center;

    box-shadow:0 -5px 20px rgba(0,0,0,.12);

    z-index:9999;

}

.bottom-nav a{

    flex:1;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#666;

    transition:.3s;

    font-size:12px;

}

.bottom-nav a i{

    font-size:22px;

    margin-bottom:5px;

}

.bottom-nav a.active{

    color:var(--primary);

}

.bottom-nav a:hover{

    color:var(--primary);

}

.bottom-nav span{

    font-size:11px;

    font-weight:500;

}



/*==================================
TRUSTED CLIENT
==================================*/

.trusted-client{

    padding:90px 0;
    background:#fff;

}

.trusted-client h2{

    text-align:center;
    margin:15px 0 50px;
    font-size:38px;
    color:#1b1b1b;

}

.trusted-client .section-label{

    display:block;
    text-align:center;
    color:#0d6efd;
    font-weight:600;
    letter-spacing:1px;

}

.client-slider{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;

}

.client-item{

    background:#fff;
    border-radius:16px;
    padding:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;

}

.client-item:hover{

    transform:translateY(-8px);

}

.client-item img{

    width:100%;
    max-width:120px;
    filter:grayscale(100%);
    opacity:.7;
    transition:.3s;

}

.client-item:hover img{

    filter:none;
    opacity:1;

}


.hero-info{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.hero-info > div{
    flex: 1;
    min-width: 0;
    padding: 20px 15px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    transition: .3s;
}

.hero-info > div:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.hero-info h2{
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 8px;
}

.hero-info span{
    display: block;
    font-size: 15px;
    color: #666;
}

/*==================================
WHY US
==================================*/

.why-us{

    padding:100px 0;
    background:#f8fbff;

}

.why-us .section-label{

    display:block;
    text-align:center;
    color:#0d6efd;
    font-weight:600;

}

.why-us h2{

    text-align:center;
    font-size:40px;
    margin:18px 0;

}

.why-desc{

    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    line-height:1.8;

}

.why-grid{

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

}

.why-card{

    background:#fff;
    padding:35px;
    border-radius:22px;
    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(13,110,253,.18);

}

.why-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#0d6efd;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/*==================================
TEAM SECTION
==================================*/

.team-section{

    padding:100px 0;
    background:#ffffff;

}

.team-title{

    text-align:center;
    font-size:40px;
    margin:15px 0;

}

.team-description{

    max-width:720px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    line-height:1.8;

}

.team-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.team-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(13,110,253,.18);

}

.team-image{

    height:300px;
    overflow:hidden;

}

.team-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;

}

.team-card:hover .team-image img{

    transform:scale(1.08);

}

.team-content{

    padding:25px;

}

.team-content h3{

    font-size:22px;
    margin-bottom:6px;

}

.team-content span{

    color:#0d6efd;
    font-weight:600;
    display:block;
    margin-bottom:15px;

}

.team-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;

}

.team-social{

    display:flex;
    gap:12px;

}

.team-social a{

    width:42px;
    height:42px;

    border-radius:50%;

    background:#f2f5fa;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#0d6efd;

    transition:.3s;

}

.team-social a:hover{

    background:#0d6efd;

    color:#fff;

}


.clients{

    padding:90px 8%;
    background:#fff;
}

.section-title{

    text-align:center;
    margin-bottom:50px;
}

.section-title h2{

    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.section-title p{

    color:#777;
    font-size:16px;
}

/* Slider */

.logo-slider{

    overflow:hidden;
    width:100%;
    margin:30px 0;
    position:relative;
}

.logo-track{

    display:flex;
    align-items:center;
    width:max-content;
    gap:70px;
}

.logo-track img{

    width:130px;
    height:70px;
    object-fit:contain;
    transition:.4s;
    opacity:.75;
}

.logo-track img:hover{

    filter:none;
    opacity:1;
    transform:scale(1.08);
}

/* Bergerak ke kiri */

.kiri{

    animation:slideLeft 30s linear infinite;
}

/* Bergerak ke kanan */

.kanan{

    animation:slideRight 30s linear infinite;
}

.logo-slider:hover .logo-track{

    animation-play-state:paused;
}

@keyframes slideLeft{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@keyframes slideRight{

0%{

transform:translateX(-50%);

}

100%{

transform:translateX(0);

}

}

/* Mobile */

@media(max-width:768px){

.logo-track{

gap:35px;

}

.logo-track img{

width:90px;
height:50px;

}

.section-title h2{

font-size:30px;

}

}


.step-order{
    padding:90px 8%;
    background:#fafafa;
}

.step-order .section-title{
    text-align:center;
    margin-bottom:60px;
}

.step-order .section-title span{
    color:#ff7b00;
    font-weight:700;
    letter-spacing:2px;
    font-size:15px;
}

.step-order .section-title h2{
    font-size:45px;
    margin:10px 0;
    color:#222;
}

.step-order .section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.step-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.step-card{
    position:relative;
    width:260px;
    min-height:320px;
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    overflow:hidden;
    margin-right: 20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.step-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.step-number{
    position:absolute;
    left:0;
    top:0;
    width:60px;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    writing-mode:vertical-lr;
    transform:rotate(180deg);
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

.orange .step-number{
    background:linear-gradient(#ffb100,#ff7b00);
}

.pink .step-number{
    background:linear-gradient(#ff4ecb,#ff0088);
}

.purple .step-number{
    background:linear-gradient(#8d45ff,#6224ff);
}

.blue .step-number{
    background:linear-gradient(#39c3ff,#0078ff);
}

.step-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#f4f4f4;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    margin-left: 50px;
}

.orange .step-icon{
    color:#ff8c00;
}

.pink .step-icon{
    color:#ff1493;
}

.purple .step-icon{
    color:#6d28ff;
}

.blue .step-icon{
    color:#008cff;
}

.step-card h3{
    margin-bottom:15px;
    color:#222;
    margin-left: 50px;
}

.step-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
    margin-left: 50px;
}

.arrow{
    font-size:42px;
    color:#8b5cf6;
}

/* Tablet */

@media(max-width:992px){

.arrow{
display:none;
}

}

/* Mobile */

@media(max-width:768px){

.step-card{
width:100%;
max-width:360px;
}

.step-order .section-title h2{
font-size:34px;
}

}

.gallery-section{
    padding:90px 8%;
    background:#fafafa;
}

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

.gallery-title span{
    color:#ff7b00;
    font-weight:700;
    letter-spacing:2px;
}

.gallery-title h2{
    font-size:40px;
    margin:10px 0;
}

.gallery-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.gallery-slider{
    position:relative;
    overflow:hidden;
}

.gallery-track{
    display:flex;
    transition:.6s ease;
}

.gallery-item{
    min-width:33.333%;
    padding:10px;
    box-sizing:border-box;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

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

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    cursor:pointer;
    font-size:22px;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    z-index:10;
}

.gallery-btn:hover{
    background:#ff7b00;
    color:#fff;
}

.prev{
    left:10px;
}

.next{
    right:10px;
}

@media(max-width:992px){

.gallery-item{
    min-width:50%;
}

}

@media(max-width:768px){

.gallery-item{
    min-width:100%;
}

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

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

}


.catalog-section{
    padding:80px 8%;
    background:#f8fafc;
}

.catalog-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.catalog-links{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.catalog-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    background:#fff;
    border-radius:18px;
    text-decoration:none;
    color:#222;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.catalog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.catalog-icon{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#0d6efd,#3ea6ff);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    flex-shrink:0;
}

.catalog-card h3{
    margin-bottom:5px;
    font-size:20px;
}

.catalog-card p{
    color:#666;
    font-size:15px;
}

.catalog-info .badge{
    display:inline-block;
    padding:8px 18px;
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.catalog-info h2{
    font-size:40px;
    margin-bottom:20px;
    line-height:1.3;
}

.catalog-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.btn-catalog{
    display:inline-block;
    padding:15px 32px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-catalog:hover{
    background:#0056d2;
    transform:translateY(-3px);
}

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

    .catalog-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .catalog-info{
        text-align:center;
    }

    .catalog-info h2{
        font-size:30px;
    }

    .catalog-card{
        padding:18px;
    }

    .catalog-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }
}

/* ===== QUICK ACCESS SECTION ===== */

.quick-access{
    width:100%;
    padding:80px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.quick-access .qa-content{
    flex:1;
}

.quick-access .qa-sidebar{
    width:330px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quick-access .qa-card{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 22px;
    background:#fff;
    border-radius:16px;
    text-decoration:none;
    color:#222;
    border:1px solid #ececec;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.quick-access .qa-card:hover{
    transform:translateX(8px);
    background:#0d6efd;
    color:#fff;
}

.quick-access .qa-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#0d6efd;
    color:#fff;
    font-size:22px;
}

.quick-access .qa-card:hover .qa-icon{
    background:#fff;
    color:#0d6efd;
}

@media(max-width:768px){

    .quick-access{
        flex-direction:column;
    }

    .quick-access .qa-sidebar{
        width:100%;
    }

}
/* Tombol Quick Access */

.qa-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 32px;
    margin-top:30px;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    box-shadow:0 12px 25px rgba(13,110,253,.25);
    transition:all .35s ease;
}

.qa-btn i{
    font-size:16px;
    transition:.35s;
}

.qa-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(13,110,253,.35);
    background:linear-gradient(135deg,#0b5ed7,#2563eb);
}

.qa-btn:hover i{
    transform:translateX(5px);
}

.qa-btn:active{
    transform:scale(.98);
}

/*==============================
PRODUCTION TECHNOLOGY
==============================*/

.prodtech{
    padding:70px 20px;
    background:#f7f9fc;
    overflow:hidden;
}

.prodtech-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.prodtech-title span{
    display:inline-block;
    padding:8px 18px;
    background:#e8f2ff;
    color:#0d6efd;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.prodtech-title h2{
    margin:18px 0 12px;
    font-size:34px;
    color:#222;
}

.prodtech-title p{
    color:#666;
    line-height:1.8;
}

/* Area */

.prodtech-stage{
    position:relative;
    max-width:1200px;
    margin:auto;
    min-height:700px;
}

/* Mesin */

.prodtech-machine{
    display:block;
    width:100%;
    max-width:520px;
    margin:auto;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));
    animation:floatMachine 4s ease-in-out infinite;
}

/* Hotspot */

.prodtech-item{
    position:absolute;
}

.prodtech-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#0d6efd;
    cursor:pointer;
    animation:pulse 2s infinite;
}

/* Popup */

.prodtech-popup{
    position:absolute;
    top:-10px;
    left:35px;
    width:220px;
    padding:16px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
}

.prodtech-item:hover .prodtech-popup{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.prodtech-popup h4{
    margin:0 0 8px;
    color:#222;
}

.prodtech-popup p{
    margin:0;
    color:#666;
    line-height:1.6;
}

/* Posisi Desktop */

.item1{
    top:90px;
    left:150px;
}

.item2{
    top:120px;
    right:150px;
}

.item3{
    bottom:110px;
    left:170px;
}

.item4{
    bottom:120px;
    right:170px;
}

/* Animasi */

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(13,110,253,.45);}
    70%{box-shadow:0 0 0 18px rgba(13,110,253,0);}
    100%{box-shadow:0 0 0 0 rgba(13,110,253,0);}
}

@keyframes floatMachine{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/*==============================
MOBILE
==============================*/

@media (max-width:768px){

.prodtech{
    padding:50px 16px;
}

.prodtech-title h2{
    font-size:28px;
}

.prodtech-stage{
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.prodtech-machine{
    max-width:320px;
    margin-bottom:30px;
    animation:none;
}

.prodtech-item{
    position:relative;
    width:100%;
    margin-bottom:16px;
}

.prodtech-dot{
    display:none;
}

.prodtech-popup{
    position:relative;
    left:0;
    top:0;
    width:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    border-left:4px solid #0d6efd;
}

.item1,
.item2,
.item3,
.item4{
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
}

}
/*=====================================
APPLE TECH - MOBILE FIRST
=====================================*/

.appletech{
    padding:70px 20px;
    background:#f5f7fb;
    overflow:hidden;
}

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

.appletech-header span{
    display:inline-block;
    padding:7px 16px;
    background:#e8f2ff;
    color:#0d6efd;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.appletech-header h2{
    margin:18px 0 10px;
    font-size:30px;
    font-weight:700;
    color:#222;
}

.appletech-header p{
    color:#666;
    line-height:1.7;
}

/*========================*/

.appletech-container{
    position:relative;
    max-width:420px;
    margin:auto;
}

/* Mesin */

.appletech-machine{
    width:100%;
    display:block;
    filter:drop-shadow(0 18px 30px rgba(0,0,0,.15));
}

/*========================*/

.appletech-hotspot{
    position:absolute;
}

/* Tombol + */

.appletech-btn{

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:#0d6efd;
    color:#fff;

    font-size:22px;
    font-weight:bold;

    cursor:pointer;

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

    transition:.3s;

}

.appletech-btn:hover{

    transform:scale(1.12);

}

/* Popup */

.appletech-popup{
    position:absolute;
    top:45px;
    left:-80px;
    width:190px;
    padding:16px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 35px rgba(0,0,0,.12);
    z-index:100;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
}

.appletech-hotspot.active .appletech-popup{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}



.appletech-popup h4{

    margin:0 0 8px;
    color:#222;
    font-size:17px;

}

.appletech-popup p{

    margin:0;
    color:#0d6efd;
    font-weight:600;

}

.appletech-popup small{

    display:block;
    margin-top:8px;
    color:#666;
    line-height:1.5;

}

/* Aktif */



/*========================
Posisi Mobile
========================*/

.hotspot1{

    top:18%;
    left:42%;

}

.hotspot2{

    top:40%;
    left:72%;

}

.hotspot3{

    top:66%;
    left:28%;

}

.hotspot4{

    top:82%;
    left:58%;

}

/*========================
Desktop
========================*/

@media(min-width:992px){

.appletech{

    padding:100px 7%;

}

.appletech-container{

    max-width:900px;

}

.appletech-machine{

    width:600px;
    margin:auto;

}

/* popup kanan kiri */

.hotspot1 .appletech-popup{

    left:-230px;
    top:-20px;

}

.hotspot2 .appletech-popup{

    left:60px;
    top:-20px;

}

.hotspot3 .appletech-popup{

    left:-230px;
    top:-20px;

}

.hotspot4 .appletech-popup{

    left:60px;
    top:-20px;

}

.hotspot1{

    left:31%;
    top:18%;

}

.hotspot2{

    right:24%;
    top:34%;

}

.hotspot3{

    left:30%;
    bottom:20%;

}

.hotspot4{

    right:28%;
    bottom:18%;

}

}
/*=====================================
ANIMASI
=====================================*/

.appletech-btn::before{
    content:"";
    position:absolute;
    inset:-8px;
    border:2px solid rgba(13,110,253,.4);
    border-radius:50%;
    animation:applePulse 2s infinite;
}

.appletech-btn{
    position:relative;
    z-index:2;
}

@keyframes applePulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

.appletech-machine{
    transition:.4s;
}

.appletech-machine:hover{
    transform:scale(1.02);
}