/* =====================================================
   PAGE.CSS
   Halaman : Tentang, Layanan, Kontak, Artikel
===================================================== */

/* =====================================================
   PAGE HERO
===================================================== */

.page-header{

    position:relative;

    overflow:hidden;

    padding:170px 20px 100px;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #4fc3ff
    );

    color:#fff;

    text-align:center;

}

.page-header::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    top:-260px;
    right:-220px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

}

.page-header::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    bottom:-180px;
    left:-180px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

}

.page-header .container{

    position:relative;

    z-index:2;

}

.page-header h1{

    font-size:58px;

    font-weight:800;

    margin-bottom:18px;

}

.page-header p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,.92);

}

/* =====================================================
   BREADCRUMB
===================================================== */

.breadcrumb{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

}

.breadcrumb a{

    color:#fff;

    opacity:.9;

    text-decoration:none;

}

.breadcrumb span{

    opacity:.8;

}

/* =====================================================
   PAGE SECTION
===================================================== */

.page-section{

    padding:90px 20px;

}

.page-title{

    text-align:center;

    margin-bottom:60px;

}

.page-title h2{

    font-size:42px;

    color:#0f172a;

    margin-bottom:15px;

}

.page-title p{

    color:#64748b;

    max-width:700px;

    margin:auto;

    line-height:1.9;

}

/* =====================================================
   GRID
===================================================== */

.grid-2{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:35px;

}

.grid-3{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

/* =====================================================
   CARD
===================================================== */

.page-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    border:1px solid
    rgba(0,102,255,.08);

    box-shadow:
    0 15px 40px
    rgba(0,102,255,.08);

    transition:.35s;

}

.page-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px
    rgba(0,102,255,.15);

}

.page-card h3{

    color:#0066ff;

    margin-bottom:18px;

    font-size:24px;

}

.page-card p{

    color:#475569;

    line-height:1.9;

}

/* =====================================================
   ICON BOX
===================================================== */

.icon-box{

    width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #4fc3ff
    );

    color:#fff;

}

/* =====================================================
   IMAGE
===================================================== */

.page-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);

}

.page-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.page-image:hover img{

    transform:scale(1.08);

}

/* =====================================================
   FEATURE LIST
===================================================== */

.feature-list{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    margin-top:30px;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#fff;

    padding:25px;

    border-radius:22px;

    border:1px solid rgba(0,102,255,.08);

    box-shadow:
    0 12px 30px rgba(0,102,255,.08);

    transition:.35s;

}

.feature-item:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,102,255,.15);

}

.feature-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #4fc3ff
    );

    color:#fff;

    font-size:26px;

}

.feature-content h3{

    color:#0f172a;

    margin-bottom:10px;

    font-size:20px;

}

.feature-content p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   SERVICE CARD
===================================================== */

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    text-align:center;

    border:1px solid rgba(0,102,255,.08);

    box-shadow:
    0 15px 35px rgba(0,102,255,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 55px rgba(0,102,255,.15);

}

.service-card .icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #4fc3ff
    );

}

.service-card h3{

    margin-bottom:15px;

    color:#0f172a;

}

.service-card p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   TIMELINE
===================================================== */

.timeline{

    position:relative;

    margin-top:50px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:22px;

    top:0;

    width:3px;

    height:100%;

    background:#dbeafe;

}

.timeline-item{

    position:relative;

    padding-left:70px;

    margin-bottom:40px;

}

.timeline-dot{

    position:absolute;

    left:8px;

    top:5px;

    width:30px;

    height:30px;

    border-radius:50%;

    background:#0066ff;

    border:5px solid #fff;

    box-shadow:
    0 0 0 5px #dbeafe;

}

.timeline-content{

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.timeline-content h3{

    margin-bottom:10px;

    color:#0066ff;

}

.timeline-content p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   CTA
===================================================== */

.cta{

    margin-top:80px;

    padding:70px 40px;

    border-radius:35px;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #4fc3ff
    );

}

.cta h2{

    font-size:40px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    opacity:.95;

}

.cta .btn{

    margin-top:30px;

}

/* =====================================================
   CONTACT INFO
===================================================== */

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.contact-info{

    background:#fff;

    padding:35px;

    border-radius:28px;

    box-shadow:
    0 15px 35px rgba(0,102,255,.08);

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:#eaf4ff;

    color:#0066ff;

    font-size:24px;

}

.contact-text h4{

    margin-bottom:6px;

    color:#0f172a;

}

.contact-text p,
.contact-text a{

    color:#64748b;

    text-decoration:none;

}

/* =====================================================
   BUTTON
===================================================== */

.btn-page{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    background:#0066ff;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn-page:hover{

    background:#0054d1;

    transform:translateY(-3px);

}
/* =====================================================
   FAQ
===================================================== */

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:22px;

    margin-bottom:20px;

    padding:25px 30px;

    border:1px solid rgba(0,102,255,.08);

    box-shadow:
    0 10px 30px rgba(0,102,255,.08);

}

.faq-item h3{

    color:#0f172a;

    margin-bottom:12px;

    font-size:20px;

}

.faq-item p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   PRICING
===================================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.pricing-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    text-align:center;

    border:2px solid transparent;

    transition:.35s;

    box-shadow:
    0 15px 40px rgba(0,102,255,.08);

}

.pricing-card:hover{

    border-color:#0066ff;

    transform:translateY(-10px);

}

.pricing-card h3{

    color:#0066ff;

    margin-bottom:15px;

}

.price{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    margin:20px 0;

}

.pricing-card ul{

    list-style:none;

    margin:30px 0;

}

.pricing-card li{

    margin-bottom:12px;

    color:#64748b;

}

/* =====================================================
   STATS
===================================================== */

.stats{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:#fff;

    text-align:center;

    padding:35px;

    border-radius:25px;

    box-shadow:
    0 15px 35px rgba(0,102,255,.08);

}

.stat-card h2{

    font-size:46px;

    color:#0066ff;

    margin-bottom:10px;

}

.stat-card p{

    color:#64748b;

}

/* =====================================================
   ARTICLE
===================================================== */

.article-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.article-card{

    overflow:hidden;

    background:#fff;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,102,255,.08);

    transition:.35s;

}

.article-card:hover{

    transform:translateY(-10px);

}

.article-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.article-body{

    padding:30px;

}

.article-body h3{

    margin-bottom:15px;

    color:#0f172a;

}

.article-body p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   FORM
===================================================== */

.form-group{

    margin-bottom:25px;

}

.form-control{

    width:100%;

    padding:16px 18px;

    border-radius:15px;

    border:1px solid #dbeafe;

    font-size:16px;

    transition:.3s;

    outline:none;

}

.form-control:focus{

    border-color:#0066ff;

    box-shadow:
    0 0 0 4px rgba(0,102,255,.1);

}

textarea.form-control{

    resize:vertical;

    min-height:180px;

}

/* =====================================================
   TABLE
===================================================== */

.table-responsive{

    overflow:auto;

}

.table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

}

.table th{

    background:#0066ff;

    color:#fff;

    padding:18px;

    text-align:left;

}

.table td{

    padding:18px;

    border-bottom:1px solid #eef3ff;

}

.table tr:hover{

    background:#f8fbff;

}

/* =====================================================
   ANIMATION
===================================================== */

.fade-up{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

    .grid-2,
    .grid-3,
    .grid-4{

        grid-template-columns:1fr;

    }

    .page-header{

        padding:140px 20px 80px;

    }

    .page-header h1{

        font-size:42px;

    }

}

@media(max-width:768px){

    .page-header h1{

        font-size:34px;

    }

    .page-title h2{

        font-size:30px;

    }

    .cta{

        padding:50px 25px;

    }

    .cta h2{

        font-size:30px;

    }

    .page-card,
    .service-card,
    .contact-info{

        padding:25px;

    }

}
/* =====================================================
   FORM
===================================================== */

.contact-info form{

    width:100%;

}

.form-group{

    margin-bottom:22px;

}

.form-control{

    width:100%;

    padding:16px 20px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    color:#0f172a;

    background:#fff;

    border:2px solid #e2e8f0;

    border-radius:16px;

    outline:none;

    transition:.3s;

}

.form-control:focus{

    border-color:#0066ff;

    box-shadow:0 0 0 5px rgba(0,102,255,.12);

}

textarea.form-control{

    min-height:180px;

    resize:vertical;

}

.form-control::placeholder{

    color:#94a3b8;

}

button.btn-page{

    border:none;

    cursor:pointer;

    font-size:16px;

}

button.btn-page:hover{

    cursor:pointer;

}