/*=====================================================
    SIMKEU KELUARGA
    Premium Landing Page
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#2563eb;
    --secondary:#3b82f6;
    --success:#10b981;
    --warning:#f59e0b;
    --danger:#ef4444;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#64748b;
    --border:#e2e8f0;

    --radius:20px;

    --shadow:0 10px 30px rgba(15,23,42,.08);

    --transition:.35s ease;

}

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:var(--dark);

    line-height:1.7;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

/*==================================
        Navbar
===================================*/

.navbar{

    transition:.4s;

    padding:18px 0;

}

.navbar.scrolled{

    background:#ffffff;

    box-shadow:var(--shadow);

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

}

.navbar-dark .navbar-nav .nav-link{

    color:#fff;

    font-weight:500;

    margin-left:18px;

}

.navbar.scrolled .nav-link{

    color:var(--dark)!important;

}

.navbar.scrolled .navbar-brand{

    color:var(--primary)!important;

}

/*==================================
        Hero
===================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #3b82f6,

    #60a5fa

    );

    color:white;

    overflow:hidden;

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

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

    border-radius:50%;

    top:-150px;

    right:-100px;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

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

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

.hero h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

}

.hero p{

    font-size:20px;

    opacity:.9;

}

.hero-image{

    animation:floating 4s ease-in-out infinite;

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================
        Button
===================================*/

.btn{

    border-radius:12px;

    padding:14px 28px;

    font-weight:600;

    transition:var(--transition);

}

.btn-warning{

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

}

.btn-warning:hover{

    transform:translateY(-4px);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline-light:hover{

    transform:translateY(-4px);

}

/*==================================
        Trusted
===================================*/

.trusted{

    background:#fff;

}

.trusted img{

    opacity:.6;

    transition:.4s;

    filter:grayscale(100%);

}

.trusted img:hover{

    opacity:1;

    filter:none;

}

/*==================================
        Title
===================================*/

.section-title{

    font-size:42px;

    font-weight:700;

}

.section-subtitle{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}

.section-badge{

    background:#dbeafe;

    color:var(--primary);

    padding:8px 20px;

    border-radius:40px;

    font-weight:600;

}

/*==================================
        Feature Card
===================================*/

.feature-card{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    color:var(--primary);

    font-size:34px;

}

.feature-card h5{

    font-weight:700;

}

/*==================================
        Dashboard Image
===================================*/

.dashboard-image{

    border-radius:25px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.15);

}

/*==================================
        Advantage
===================================*/

.advantage-card{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.advantage-card:hover{

    transform:translateY(-8px);

}

.advantage-card h4{

    margin-top:20px;

    font-weight:700;

}

/*==================================
        Stats
===================================*/

.stats{

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #3b82f6

    );

    color:white;

}

.counter{

    font-size:55px;

    font-weight:800;

}
/*=====================================================
    Screenshot Gallery
======================================================*/

.gallery img{

    border-radius:24px;

    transition:.35s ease;

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

}

.gallery img:hover{

    transform:translateY(-8px) scale(1.02);

}


/*=====================================================
    Testimonial
======================================================*/

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card p{

    color:var(--gray);

    margin:20px 0;

}

.testimonial-card h5{

    margin-bottom:5px;

    font-weight:700;

}

.stars{

    color:#fbbf24;

    font-size:20px;

    letter-spacing:3px;

}


/*=====================================================
    Pricing
======================================================*/

.pricing-card{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow);

    position:relative;

    transition:.35s;

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-10px);

}

.pricing-card.featured{

    background:linear-gradient(
    135deg,
    #2563eb,
    #3b82f6);

    color:#fff;

    transform:scale(1.04);

}

.pricing-card .badge{

    position:absolute;

    top:20px;

    right:20px;

}

.pricing-card h1{

    font-size:52px;

    font-weight:800;

    margin:20px 0;

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.pricing-card ul li{

    padding:12px 0;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.pricing-card.featured ul li{

    border-color:rgba(255,255,255,.15);

}


/*=====================================================
    Step Card
======================================================*/

.step-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.step-card:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:bold;

    margin-bottom:20px;

}


/*=====================================================
    FAQ
======================================================*/

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow);

}

.accordion-button{

    padding:22px;

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:#eff6ff;

    color:var(--primary);

}

.accordion-button:focus{

    box-shadow:none;

}


/*=====================================================
    CTA
======================================================*/

.cta-section{

    background:linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8);

    color:#fff;

    text-align:center;

    padding:90px 0;

}

.cta-section h2{

    font-size:48px;

    font-weight:800;

}

.cta-section p{

    max-width:650px;

    margin:20px auto 40px;

    opacity:.9;

}


/*=====================================================
    Footer
======================================================*/

footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:70px 0 30px;

}

footer h4,
footer h5{

    color:#fff;

    margin-bottom:20px;

}

.footer-menu{

    list-style:none;

    padding:0;

}

.footer-menu li{

    margin-bottom:12px;

}

.footer-menu a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-menu a:hover{

    color:#fff;

    padding-left:5px;

}

footer hr{

    border-color:rgba(255,255,255,.1);

    margin:40px 0 25px;

}


/*=====================================================
    Utility
======================================================*/

.shadow-soft{

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:24px;

}

.bg-gradient-primary{

    background:linear-gradient(
    135deg,
    #2563eb,
    #3b82f6);

}

.text-gradient{

    background:linear-gradient(
    135deg,
    #2563eb,
    #60a5fa);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}
/*=====================================================
    Responsive
======================================================*/

@media (max-width:1200px){

    .hero h1{

        font-size:48px;

    }

}

@media (max-width:992px){

    section{

        padding:70px 0;

    }

    .hero{

        text-align:center;

        padding-top:120px;

        min-height:auto;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-image{

        margin-top:50px;

        max-width:90%;

    }

    .navbar{

        background:#2563eb;

    }

    .navbar-collapse{

        background:#ffffff;

        margin-top:15px;

        padding:20px;

        border-radius:15px;

        box-shadow:var(--shadow);

    }

    .navbar-collapse .nav-link{

        color:var(--dark)!important;

        margin:10px 0;

    }

    .pricing-card.featured{

        transform:none;

        margin-top:25px;

    }

}

@media (max-width:768px){

    .section-title{

        font-size:34px;

    }

    .hero h1{

        font-size:36px;

    }

    .hero p{

        font-size:17px;

    }

    .counter{

        font-size:38px;

    }

    .cta-section h2{

        font-size:34px;

    }

    .btn{

        width:100%;

        margin-bottom:15px;

    }

}

@media (max-width:576px){

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:16px;

    }

    .section-title{

        font-size:28px;

    }

    .feature-card,
    .advantage-card,
    .testimonial-card,
    .pricing-card,
    .step-card{

        padding:25px;

    }

}

/*=====================================================
    Scroll To Top
======================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

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

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-5px);

}

/*=====================================================
    Loading
======================================================*/

.loader{

    position:fixed;

    inset:0;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader::after{

    content:"";

    width:55px;

    height:55px;

    border-radius:50%;

    border:5px solid #dbeafe;

    border-top:5px solid #2563eb;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*=====================================================
    Fade Animation
======================================================*/

.fade-up{

    opacity:0;

    transform:translateY(30px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

/*=====================================================
    Dark Mode
======================================================*/

body.dark{

    background:#0f172a;

    color:#f8fafc;

}

body.dark section{

    background:#0f172a;

}

body.dark .feature-card,
body.dark .advantage-card,
body.dark .testimonial-card,
body.dark .pricing-card,
body.dark .step-card{

    background:#1e293b;

    color:#fff;

}

body.dark .accordion-item{

    background:#1e293b;

}

body.dark .accordion-button{

    background:#1e293b;

    color:#fff;

}

body.dark footer{

    background:#020617;

}

body.dark .section-subtitle{

    color:#cbd5e1;

}

/*=====================================================
    Selection
======================================================*/

::selection{

    background:#2563eb;

    color:#ffffff;

}

/*=====================================================
    Scrollbar
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}