/* =====================================================
   HERO SECTION
===================================================== */

.hero-section{

    position:relative;

    min-height:750px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(255,255,255,.75),
        rgba(255,255,255,.75)
    ),
    url('../img/background.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding-top:120px;
    padding-bottom:80px;
}

.hero-container{
    position:relative;
    z-index:2;
}

/* =====================================================
   TEKS KIRI
===================================================== */

.hero-subtitle{

    color:#0f766e;

    font-size:20px;
    font-weight:700;

    margin-bottom:15px;

    letter-spacing:1px;
}

.hero-title{

    font-size:36px;

    font-weight:900;

    line-height:1;

    color:#052B73;

    margin-bottom:10px;
}

.hero-title-small{

    font-size:34px;

    font-weight:800;

    color:#052B73;

    line-height:1.2;

    margin-bottom:20px;
}

.hero-line{

    width:90px;
    height:5px;

    background:#f4b400;

    margin:25px 0;
}

.hero-text{

    font-size:24px;

    line-height:1.8;

    color:#444;

    max-width:650px;
}

/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons{

    margin-top:35px;

    display:flex;
    gap:15px;

    flex-wrap:wrap;
}

.btn-primary-custom{

    background:#052B73;

    color:white;

    border:none;

    padding:14px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-primary-custom:hover{

    background:#083c9e;

    color:white;
}

.btn-outline-custom{

    border:2px solid #052B73;

    color:#052B73;

    padding:14px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-outline-custom:hover{

    background:#052B73;

    color:white;
}

/* =====================================================
   DEVICE MOCKUP
===================================================== */

.device-wrapper{

    position:relative;

    width:100%;

    height:550px;
}

/* Laptop */

.laptop-mockup{

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:100%;

    max-width:780px;

    z-index:2;

    filter:drop-shadow(
        0 25px 50px rgba(0,0,0,.25)
    );
}

/* HP */

.phone-mockup{

    position:absolute;

    width:180px;

    right:-10px;

    bottom:20px;

    z-index:3;

    filter:drop-shadow(
        0 15px 30px rgba(0,0,0,.25)
    );
}

/* =====================================================
   STATISTIK HERO
===================================================== */

.hero-stat{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.hero-stat-item{

    background:white;

    padding:20px 30px;

    border-radius:18px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.hero-stat-item h3{

    margin:0;

    color:#052B73;

    font-size:32px;

    font-weight:800;
}

.hero-stat-item span{

    color:#666;
}
.stat-section{

    margin-top:-40px;

    position:relative;

    z-index:10;
}

.stat-wrapper{

    background:#052B73;

    border-radius:25px;

    padding:40px;

    color:white;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.stat-title{

    text-align:center;

    font-size:28px;

    font-weight:700;

    margin-bottom:30px;
}

.stat-item{

    text-align:center;
}

.stat-item h2{

    font-size:54px;

    font-weight:800;

    margin:0;
}

.stat-item p{

    margin-top:10px;

    opacity:.9;
}
.feature-section{

    padding:80px 0;

    background:#f8fafc;
}

.section-header{

    text-align:center;

    margin-bottom:50px;
}

.section-header h2{

    color:#052B73;

    font-weight:800;
}

.title-line{

    width:70px;
    height:4px;

    background:#f4b400;

    margin:15px auto 0;
}

.feature-card{

    background:white;

    border-radius:20px;

    padding:35px;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.feature-card:hover{

    transform:translateY(-8px);
}

.feature-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:20px;
}

.feature-icon.blue{
    background:#e8f1ff;
    color:#0d6efd;
}

.feature-icon.green{
    background:#e8fff1;
    color:#10b981;
}

.feature-icon.purple{
    background:#f3e8ff;
    color:#7c3aed;
}

.feature-icon.orange{
    background:#fff5e8;
    color:#f59e0b;
}

.feature-card h5{

    font-weight:700;

    color:#052B73;

    margin-bottom:10px;
}

.feature-card p{

    color:#666;

    margin:0;
}
.footer{

    background:#ffffff;

    padding:60px 0 25px;

    border-top:1px solid #e5e7eb;
}

.banua{

    font-size:48px;

    font-weight:800;

    line-height:1;
}

.banua:first-line{

    color:#f4b400;
}

.banua span{

    color:#0f766e;
}

.footer-desc{

    color:#666;

    margin-top:15px;

    line-height:1.8;
}

.footer-values{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.value-item{

    display:flex;

    gap:15px;

    align-items:flex-start;
}

.value-item i{

    width:45px;
    height:45px;

    border-radius:12px;

    background:#eef4ff;

    color:#052B73;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:18px;
}

.value-item h6{

    margin:0;

    font-weight:700;

    color:#052B73;
}

.value-item small{

    color:#666;
}

.footer-logo{

    margin-bottom:15px;
}

.footer-app{

    color:#052B73;

    font-weight:700;
}

.footer-line{

    margin:40px 0 20px;

    opacity:.15;
}

.copyright{

    text-align:center;

    color:#777;

    font-size:14px;
}


.stat-wrapper{
    background:#0b2f7f;
    border-radius:30px;

    max-width:1200px;
    margin:0 auto;

    padding:50px 40px;
}
html{
    scroll-behavior:smooth;
}

section[id]{
    scroll-margin-top:100px;
}
.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.20);
}

.modal-header{
    background:#052B73;
    color:#fff;
}

.modal-header .btn-close{
    filter:invert(1);
}

.modal-body{
    padding:30px;
}

.modal-body h5{
    color:#052B73;
    font-weight:700;
}

.modal-body i{
    color:#f4b400;
    margin-right:8px;
}
    body {

     
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .hero-section{

        text-align:center;

        min-height:auto;
    }

    .hero-title{

        font-size:36px;
    }

    .hero-title-small{

        font-size:28px;
    }

    .hero-text{

        font-size:18px;

        margin:auto;
    }

    .hero-line{

        margin:20px auto;
    }

    .hero-buttons{

        justify-content:center;
    }

    .device-wrapper{

        margin-top:40px;

        height:auto;
    }

    .laptop-mockup{

        position:relative;

        transform:none;

        max-width:100%;
    }

    .phone-mockup{

        width:120px;

        right:20px;

        bottom:0;
    }

    .hero-stat{

        justify-content:center;
    }
}