/* ======================================================
   BISNIS ONLINE SHUANGHOR
   style.css
   Bagian 1
====================================================== */

/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#F7FDF8;
    color:#333;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ===========================
ROOT COLOR
=========================== */

:root{

    --primary:#0B7D3B;
    --secondary:#FFD54A;
    --orange:#FF6B00;
    --dark:#1F2937;
    --light:#F7FDF8;
    --white:#ffffff;
    --gray:#6B7280;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s;

}

/* ===========================
CONTAINER
=========================== */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ===========================
SECTION
=========================== */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    display:inline-block;
    background:#E9F8EE;
    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:1px;

}

.section-title h2{

    margin-top:18px;

    font-size:42px;

    color:var(--dark);

    font-family:Poppins,sans-serif;

    line-height:1.3;

}

.section-title p{

    margin-top:15px;

    color:var(--gray);

    max-width:700px;

    margin-inline:auto;

}

/* ===========================
BUTTON
=========================== */

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    background:var(--orange);

    color:#fff;

    font-weight:700;

    transition:.3s;

    box-shadow:0 12px 25px rgba(255,107,0,.30);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#e45d00;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid var(--primary);

    border-radius:50px;

    color:var(--primary);

    transition:.3s;

    font-weight:700;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/* =====================================================
PREMIUM HEADER
===================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    transition:.3s;

}

header.sticky{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    padding:12px 0;

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ================= LOGO ================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    transition:.3s;

}

.logo:hover{

    transform:scale(1.03);

}

.logo img{

    width:58px;

    transition:.3s;

}

.logo:hover img{

    transform:rotate(-6deg);

}

.logo h2{

    font-size:22px;

    color:#fff;

    font-weight:700;

    transition:.3s;

}

header.sticky .logo h2{

    color:var(--primary);

}

/* ================= MENU ================= */

nav ul{

    display:flex;

    align-items:center;

    gap:35px;

}

nav ul li{

    position:relative;

}

nav ul li a{

    color:#fff;

    font-weight:600;

    transition:.35s;

    padding:8px 0;

}

/* warna menu setelah scroll */

header.sticky nav ul li a{

    color:#222;

}

/* hover */

nav ul li a:hover{

    color:#FFD54A;

}

/* underline */

nav ul li::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:#FFD54A;

    border-radius:30px;

    transition:.35s;

}

nav ul li:hover::after{

    width:100%;

}

/* menu aktif */

nav ul li a.active{

    color:#FFD54A;

}

header.sticky nav ul li a.active{

    color:var(--primary);

}

/* ================= BUTTON ================= */

.btn-header{

    background:linear-gradient(135deg,#FF6B00,#ff8d23);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(255,107,0,.35);

}

.btn-header:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(255,107,0,.45);

}

/* ================= MENU MOBILE ================= */

.menu-toggle{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

}

header.sticky .menu-toggle{

    color:#222;

}

/* ======================================================
HERO PREMIUM
======================================================*/

.hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#0B7D3B,#15914A,#23C16B);

    color:#fff;

    padding-top:120px;

}

/* Glow */

.hero::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-80px;

    right:-120px;

    filter:blur(40px);

}

.hero::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:#FFD54A22;

    left:-60px;

    bottom:-60px;

    border-radius:50%;

    filter:blur(60px);

}

.hero-grid{

    display:grid;

    grid-template-columns:55% 45%;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;

}
/* ==========================================
   HERO LEFT
========================================== */

.hero-left{

    position:relative;
    z-index:2;

}

.badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(15px);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

/* ==========================================
   HERO IMAGE
========================================== */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ==========================================
   HERO INFO
========================================== */

.hero-info{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.hero-info .box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    padding:22px;

    text-align:center;

}

.hero-info .box h2{

    color:#FFD54A;

    font-size:30px;

    margin-bottom:8px;

}

.hero-info .box p{

    margin:0;

    font-size:15px;

}

/* ==========================================
   HERO WAVE
========================================== */

.hero-wave{

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    display:block;

    width:100%;

}
/* ==========================
HERO TEXT
==========================*/

.hero h1{

    font-size:60px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#FFD54A;

}

.hero p{

    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;

}
/* ==========================
ANIMASI
==========================*/

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================
FLOATING WHATSAPP
=========================== */

.floating-wa{

    position:fixed;

    right:25px;

    bottom:25px;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 24px;

    border-radius:60px;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

    z-index:999;

    animation:pulse 2s infinite;

    font-weight:700;

}

.floating-wa i{

    font-size:30px;

}

.floating-wa:hover{

    transform:scale(1.05);

}

/* ===========================
ANIMATION
=========================== */

@keyframes float{

    0%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
    100%{transform:translateY(0);}

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.6);

    }

    70%{

        box-shadow:0 0 0 20px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

/* ==========================================
RESPONSIVE TABLET
========================================== */

@media (max-width:1024px){

}

/* ==========================================
RESPONSIVE MOBILE
========================================== */

@media (max-width:768px){
nav ul{

    display:none;

}
}

/* ==========================================
RESPONSIVE MOBILE KECIL
========================================== */


/* ======================================================
   BISNIS ONLINE SHUANGHOR
   style.css
   Bagian 2
   (Masalah • Solusi • Fitur • Produk)
======================================================*/


/*======================================================
MASALAH
======================================================*/

.problem{

    background:#ffffff;

}

.problem-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.problem-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #edf0f4;

}

.problem-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.problem-card i{

    width:85px;

    height:85px;

    line-height:85px;

    border-radius:50%;

    background:#eaf8ef;

    color:var(--primary);

    font-size:34px;

    margin-bottom:20px;

}

.problem-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--dark);

    font-family:Poppins,sans-serif;

}

.problem-card p{

    color:#666;

    font-size:15px;

}


/*======================================================
SOLUSI
======================================================*/

.solution{

    background:#f7fdf8;

}

.solution-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.solution-image{

    text-align:center;

}

.solution-image img{

    max-width:520px;

    margin:auto;

}

.section-tag{

    display:inline-block;

    background:#dff8e8;

    color:var(--primary);

    padding:10px 22px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.solution-content h2{

    font-size:42px;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:20px;

    font-family:Poppins,sans-serif;

}

.solution-content p{

    color:#666;

    margin-bottom:25px;

}

.solution-content ul{

    margin-bottom:35px;

}

.solution-content ul li{

    margin-bottom:16px;

    display:flex;

    align-items:center;

    gap:15px;

    font-size:17px;

}

.solution-content ul li i{

    color:var(--primary);

    font-size:22px;

}


/*======================================================
FITUR
======================================================*/

.features{

    background:#fff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.feature-card:hover{

    background:var(--primary);

    transform:translateY(-10px);

    color:#fff;

}

.feature-card:hover h3,

.feature-card:hover p{

    color:#fff;

}

.feature-card:hover .icon{

    background:#fff;

    color:var(--primary);

}

.icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf8ef;

    color:var(--primary);

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.feature-card h3{

    margin-bottom:15px;

    color:var(--dark);

    font-family:Poppins,sans-serif;

}

.feature-card p{

    color:#666;

    font-size:15px;

}


/*======================================================
PRODUK
======================================================*/

.products{

    background:#f7fdf8;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    display:flex;

flex-direction:column;

height:100%;
}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.product-card img{

    width:160px;

    margin:auto;

}

.product-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content .btn-primary{
    margin-top:auto;
}

.product-content h3{

    font-size:26px;

    margin-bottom:15px;

    color:var(--primary);

    font-family:Poppins,sans-serif;

}

.product-content p{

    color:#666;

    margin-bottom:20px;

}

.product-content ul{

    margin-top:15px;

}

.product-content ul li{

    padding:8px 0;

    color:#444;

    border-bottom:1px dashed #ddd;

}

.product-content ul li:last-child{

    border:none;

}

.product-card .btn-primary{

    margin-top:25px;

    width:100%;

}
.product-content h3{

    transition:.35s;

}

.product-card:hover h3{

    color:#FF6B00;

}

/* ==========================================
   PRODUCT PREMIUM
========================================== */

.product-card{

    position:relative;

    overflow:hidden;

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

}

.product-card img{

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

/* Badge */

.product-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#FF6B00;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    z-index:20;

}

/* Shine */

.product-card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-120%;

    width:80%;

    height:220%;

    background:rgba(255,255,255,.22);

    transform:rotate(25deg);

    transition:.7s;

}

.product-card:hover::before{

    left:150%;

}

/* Tombol */

.product-content .btn-primary{

    width:100%;

    margin-top:20px;

}
/*======================================================
EFEK HOVER GAMBAR
======================================================*/

.product-card{

    position:relative;

}

.product-card img{

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}


/*======================================================
LABEL PRODUK
======================================================*/

.product-card::before{

    content:"Produk Unggulan";

    position:absolute;

    top:18px;

    left:18px;

    background:var(--orange);

    color:#fff;

    font-size:13px;

    padding:7px 14px;

    border-radius:30px;

    z-index:5;

    font-weight:600;

}


/*======================================================
ANIMASI MASUK
======================================================*/

.problem-card,
.feature-card,
.product-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ======================================================
   BISNIS ONLINE SHUANGHOR
   style.css
   Bagian 3
   (Testimoni • Video • Profil • Visi Misi • Quote)
======================================================*/


/*======================================================
TESTIMONI
======================================================*/

.testimonials{
padding-top:120px;
scroll-margin-top:120px;
    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}
.timeline-wrapper{

    grid-template-columns:1fr;

}
.testimonial-card{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:430px;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.testimonial-card img{

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #17843d;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    margin:auto;

}

.rating{

    color:#FFD54A;

    font-size:20px;

    margin-bottom:18px;

}

.testimonial-card p{

    color:#666;

    font-style:italic;

    margin-bottom:20px;

}

.testimonial-card h3{

    color:var(--primary);

    font-size:22px;

    margin-bottom:8px;

    font-family:Poppins,sans-serif;

}

.testimonial-card span{

    color:#888;

    font-size:15px;

}


/*======================================================
VIDEO TESTIMONI
======================================================*/

.video-testimoni{
padding-top:120px;
scroll-margin-top:120px;
    background:#f7fdf8;

}

.video-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.video-card{

    background:#fff;

    padding:20px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-8px);

}

.video-card iframe{

    width:100%;

    height:200px;

    border:none;

    border-radius:15px;

}

.video-card h3{

    margin-top:18px;

    text-align:center;

    color:var(--primary);

    font-family:Poppins,sans-serif;

}


/*======================================================
PROFIL
======================================================*/

.profil{

    background:#ffffff;

}

.profil-wrapper{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:60px;

    align-items:center;

}

.profil-photo{

    text-align:center;

}

.profil-photo img{

    width:100%;

    max-width:350px;

    border-radius:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.profil-content h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

    font-family:Poppins,sans-serif;

}

.profil-content h4{

    color:var(--orange);

    margin-bottom:20px;

    font-size:22px;

}

.profil-content p{

    color:#666;

    margin-bottom:30px;

    line-height:1.8;

}

.profil-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.profil-info div{

    background:#F8F8F8;

    padding:18px;

    border-radius:15px;

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.profil-info i{

    color:var(--primary);

    font-size:22px;

}


/*======================================================
VISI MISI
======================================================*/

.visi-misi{

    background:#f7fdf8;

}

.vm-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.visi,
.misi{

    background:#fff;

    padding:45px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.visi h2,
.misi h2{

    color:var(--primary);

    font-size:34px;

    margin-bottom:20px;

    font-family:Poppins,sans-serif;

}

.visi p{

    color:#666;

    line-height:1.9;

}

.misi ul{

    margin-top:20px;

}

.misi li{

    padding:12px 0;

    color:#555;

    border-bottom:1px solid #eee;

}

.misi li:last-child{

    border:none;

}


/*======================================================
KATA BIJAK
======================================================*/

.quote{

    background:linear-gradient(135deg,#0B7D3B,#15914A);

    color:#fff;

}

.quote blockquote{

    max-width:950px;

    margin:auto;

    text-align:center;

}

.quote i{

    font-size:55px;

    color:#FFD54A;

    margin-bottom:25px;

}

.quote p{

    font-size:28px;

    line-height:1.8;

    font-weight:300;

    margin-bottom:35px;

}

.quote h4{

    font-size:24px;

    color:#FFD54A;

}


/*======================================================
EFEK
======================================================*/

.testimonial-card,
.video-card,
.profil-photo img,
.visi,
.misi{

    transition:.35s;

}

.profil-photo img:hover{

    transform:scale(1.03);

}

.visi:hover,
.misi:hover{

    transform:translateY(-10px);

}

.video-card:hover iframe{

    transform:scale(1.02);

}

.video-card iframe{

    transition:.35s;

}


/*======================================================
ANIMASI
======================================================*/

.testimonial-card,
.video-card,
.visi,
.misi,
.profil-wrapper{

    animation:fadeProfile .8s ease both;

}

@keyframes fadeProfile{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ======================================================
   BISNIS ONLINE SHUANGHOR
   style.css
   Bagian 4
   (Kegiatan • FAQ • CTA • Footer • Responsive)
======================================================*/


/*======================================================
KEGIATAN
======================================================*/

.activities{

    background:#ffffff;

}

.activity-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.activity-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.activity-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.activity-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.activity-card:hover img{

    transform:scale(1.08);

}

.activity-content{

    padding:25px;

}

.activity-content h3{

    color:var(--primary);

    margin-bottom:10px;

    font-family:Poppins,sans-serif;

}

.activity-content p{

    color:#666;

}

/* ==========================================
   GALERI PREMIUM
========================================== */

.activity-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

}

.activity-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.activity-card:hover img{

    transform:scale(1.12);

}

/* Overlay */

.activity-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.75)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.activity-card:hover .activity-overlay{

    opacity:1;

}

.activity-overlay h3{

    font-size:24px;

    margin-bottom:10px;

}

.activity-overlay p{

    font-size:15px;

    margin-bottom:20px;

}

.activity-overlay span{

    width:50px;

    height:50px;

    background:#fff;

    color:#0B7D3B;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}
/*======================================================
CTA
======================================================*/

.cta{

    background:linear-gradient(135deg,#0B7D3B,#15914A);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:48px;

    font-family:Poppins,sans-serif;

    margin-bottom:20px;

}

.cta p{

    font-size:16px;

    margin-bottom:40px;

}

.cta .btn-primary{

    font-size:20px;

    padding:18px 40px;

}


/*======================================================
FOOTER
======================================================*/

footer{

    background:#111827;

    color:#fff;

    padding:70px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

footer h3{

    margin-bottom:20px;

    color:#FFD54A;

    font-family:Poppins,sans-serif;

}

footer p{

    color:#ddd;

    margin-bottom:12px;

}

footer ul li{

    margin-bottom:14px;

}

footer ul li a{

    color:#ddd;

    transition:.3s;

}

footer ul li a:hover{

    color:#FFD54A;

}

footer i{

    color:var(--secondary);

    margin-right:10px;

}

.copyright{

    margin-top:50px;

    padding:25px;

    text-align:center;

    background:#0a0f16;

    color:#aaa;

    font-size:15px;

}


/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:1100px){

.feature-grid{

grid-template-columns:repeat(3,1fr);

}

.problem-grid{

grid-template-columns:repeat(2,1fr);

}

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.activity-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

}

}


@media(max-width:900px){

.hero-grid,

.solution-grid,

.profil-wrapper,

.vm-grid{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-button{

justify-content:center;

}

.hero-info{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

.video-grid{

grid-template-columns:1fr;

}

.profil-info{

grid-template-columns:1fr;

}

}
/* =====================================================
LIVE NOTIFICATION
===================================================== */

.live-notification{

    position:fixed;

    left:15px;
    right:15px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:12px 18px;

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    z-index:999;

    transform:translateX(-150%);

    opacity:0;

    transition:.5s;

    max-width:none;

}

.live-notification.show{

    transform:translateX(0);

    opacity:1;

}

.live-notification img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #19a34a;

}

.live-content strong{

    display:block;

    color:#17843d;

    font-size:16px;

}

.live-content p{

    margin:3px 0 0;

    font-size:14px;

    color:#555;

}

/*======================================================
MOBILE
======================================================*/

@media(max-width:768px){
    .hero{
    min-height:auto;
    padding:110px 0 60px;
    display:block;
    text-align:center;
}
.hero-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.hero-left{

    order:1;
    text-align:center;

}

.hero-right{

    order:2;

}

nav{

    position:fixed;

    top:80px;

    right:0;

    width:270px;

    max-width:80%;

    height:calc(100vh - 80px);

    transform:translateX(100%);

    transition:.4s;

}

nav.active{

    transform:translateX(0);

}

nav ul{

flex-direction:column;

gap:25px;

}

nav ul li a{

color:#222;

}

.menu-toggle{

display:block;

}

.btn-header{

display:none;

}

.problem-grid,

.product-grid,

.activity-grid,

.feature-grid,

.testimonial-grid{

grid-template-columns:1fr;

}
.footer-grid{

grid-template-columns:1fr;

text-align:center;

}
.floating-contact{
position:fixed;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
right:15px;

bottom:15px;

}

.floating-btn{

width:52px;

height:52px;

font-size:20px;

}

.social{

justify-content:center;

}

.hero-info{

grid-template-columns:1fr 1fr;

}

.cta h2{

font-size:28px;

}

.cta p{

font-size:17px;

}

.section-title h2{

font-size:28px;
line-height:1.3;

}

.quote p{

font-size:22px;

}

.logo h2{

font-size:18px;

}

.floating-wa{

    right:15px;

    bottom:15px;

    padding:12px;

}

.floating-wa span{

display:none;

}

.menu-toggle{

    display:block;

}

.btn-header{

    display:none;

}
}


@media(max-width:480px){

.container{

width:92%;

}

.hero{

padding-top:140px;

}

.hero-info{

grid-template-columns:1fr;

}

.hero-button{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

}

.hero h1{

font-size:30px;

}

.section-title h2{

font-size:28px;

}

.cta h2{

font-size:28px;

}

.profil-content h2{

font-size:30px;

}

.solution-content h2{

font-size:30px;

}

}

/* ==========================
BUTTON HERO
==========================*/

.hero-button{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-button .btn-primary{

    padding:18px 36px;

}


.hero-button .btn-secondary{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:2px solid rgba(255,255,255,.35);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

}
/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#eee;

}


/*======================================================
SELECTION
======================================================*/

::selection{

background:var(--primary);

color:#fff;

}


/*======================================================
ANIMATION
======================================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:.8s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

.registration{

    background:#fff;

}

#registerForm{

    max-width:700px;

    margin:auto;

}

.form-group{

    margin-bottom:20px;

}

#registerForm input,
#registerForm select{

    width:100%;

    padding:18px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:16px;

}

#registerForm button{

    width:100%;

}
/* ==========================================
LIGHTBOX
========================================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.lightbox.show{

    display:flex;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:15px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    font-size:45px;

    color:#fff;

    cursor:pointer;

}
/* ======================================================
TIMELINE
======================================================*/

.timeline{

background:#ffffff;

}

.timeline-wrapper{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:50px;

}

.timeline-item{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.timeline-item:hover{

transform:translateY(-10px);

}

.timeline-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:#0B7D3B;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

transition:.35s;

}

.timeline-item:hover .timeline-icon{

background:#FF6B00;

transform:rotate(10deg);

}

.timeline-item h3{

margin-bottom:15px;

font-size:24px;

color:#0B7D3B;

}

.timeline-item p{

color:#666;

line-height:1.8;

}
/* ==========================================
VIDEO POPUP
========================================== */

.video-card{

    position:relative;

    cursor:pointer;

}

.video-card img{

    width:100%;

    border-radius:18px;

}

.play-button{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:80px;

    height:80px;

    border-radius:50%;

    background:rgba(255,255,255,.9);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#0B7D3B;

    transition:.3s;

}

.video-card:hover .play-button{

    transform:translate(-50%,-50%) scale(1.15);

}

.video-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.video-popup.show{

    display:flex;

}

.video-popup-content{

    width:90%;

    max-width:900px;

    position:relative;

}

.video-popup iframe{

height:220px;

}

.video-close{

    position:absolute;

    top:-45px;

    right:0;

    color:#fff;

    font-size:40px;

    cursor:pointer;

}
/* ======================================================
FAQ PREMIUM
======================================================*/

.faq{

padding:100px 0;

background:#F8FBF9;

}

.faq-item{

background:#fff;

border-radius:18px;

margin-bottom:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.faq-question{

width:100%;

border:none;

background:none;

padding:25px;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

font-weight:700;

cursor:pointer;

}

.faq-question i{

transition:.3s;

color:#0B7D3B;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:.4s;

padding:0 25px;

}

.faq-item.active .faq-answer{

max-height:250px;

padding:0 25px 25px;

}

.faq-answer p{

color:#666;

line-height:1.8;

}
/* ======================================================
FLOATING CONTACT
======================================================*/

.floating-contact{

    right:30px;

    bottom:110px;

}

.floating-btn{

width:58px;

height:58px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:24px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.35s;

}

.floating-btn:hover{

transform:translateY(-6px) scale(1.08);

}

.whatsapp{

background:#25D366;

}

.phone{

background:#0B7D3B;

}

.email{

background:#ff6b00;

}

.top{

background:#222;

opacity:0;

visibility:hidden;

}
/* ======================================================
PRELOADER
======================================================*/

#preloader{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:#0B7D3B;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:.6s;

}

#preloader.hide{

opacity:0;

visibility:hidden;

}

.loader-content{

text-align:center;

color:#fff;

}

.loader-content img{

width:100px;

margin-bottom:20px;

animation:logoPulse 2s infinite;

}

.loader-content h2{

margin-bottom:25px;

font-size:28px;

font-weight:700;

}

.loader-content p{

margin-top:20px;

opacity:.85;

font-size:15px;

}

.loader-spinner{

width:60px;

height:60px;

margin:auto;

border:5px solid rgba(255,255,255,.25);

border-top:5px solid #FFD54A;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes logoPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}
/* ======================================================
MOBILE OPTIMIZATION
====================================================== */

@media (max-width:768px){

    html,
body{

    width:100%;
    overflow-x:hidden;

}

    .container{
        width:92%;
        max-width:100%;
        padding:0;
    }

    .hero{
        min-height:auto;
        padding:110px 0 60px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .hero-left{

    text-align:center;

}

.hero-left h1{

    font-size:34px;
    line-height:1.3;
    margin-bottom:20px;

}

.hero-left p{

    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;

}

.hero-right{

    order:-1;

    text-align:center;

}

.hero-right img{

    width:100%;
    max-width:280px;
    margin:auto;
    animation:heroFloat 4s ease-in-out infinite;

}
.hero-button{
    justify-content:center;
    gap:15px;
}

.hero-button a{

    padding:15px 25px;

    width:100%;

    max-width:280px;

    justify-content:center;

    font-size:15px;

}

.hero-info{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.hero-info .box{

    padding:18px;

}

.hero-info h2{

    font-size:28px;

}

section{

    padding:70px 0;

}

.section-title h2{

    font-size:30px;

}

.section-title p{

    font-size:15px;

}

.product-grid,
.activity-grid,
.video-grid,
.footer-grid{

    grid-template-columns:1fr;

}

    .product-card,
    .activity-card,
    .video-card{
        margin:auto;
        max-width:100%;
    }

    .testimonial-card{
        padding:35px 25px;
    }

    .timeline-wrapper{
        grid-template-columns:1fr;
    }

    .timeline-item{
        margin-bottom:25px;
    }

    .floating-contact{
        right:15px;
        bottom:90px;
    }

    .floating-btn{
        width:50px;
        height:50px;
    }

    .floating-wa{

width:58px;
height:58px;
padding:0;
border-radius:50%;
left:auto;
right:15px;

}

.floating-wa span{

display:none;

}

    header{
        padding:20px 0;
    }

    .logo img{
        width:45px;
    }

    .logo h2{
        font-size:18px;
    }

}
html,
body{

    max-width:100%;
    overflow-x:hidden;

}
/*======================================================
END CSS
======================================================*/