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

.page-header{
    background:linear-gradient(135deg,#0b6b43,#128053);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.page-header .subtitle{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    font-size:14px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.page-header h1{
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
}

.page-header p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    opacity:.95;
}

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

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

.kontak{
    padding:80px 0;
    background:#f8faf9;
}

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

.kontak-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    align-items:flex-start;
}

/* ===================================================
   INFO
=================================================== */

.kontak-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

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

.card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

/* ===================================================
   ICON
=================================================== */

.card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eaf7ef;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.card .icon i{
    font-size:28px;
    color:#0b6b43;
}

.card h3{
    color:#0b6b43;
    margin-bottom:15px;
}

.card p{
    line-height:1.8;
    color:#555;
    font-size:15px;
}

/* ===================================================
   FORM
=================================================== */

.kontak-form{
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

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

.form-header{
    margin-bottom:30px;
}

.form-header h2{
    color:#0b6b43;
    margin-bottom:10px;
}

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

/* ===================================================
   ALERT
=================================================== */

.alert{
    padding:15px 20px;
    border-radius:8px;
    margin-bottom:20px;
    font-size:15px;
}

.success{
    background:#dff7e8;
    color:#166534;
    border:1px solid #b6e8c8;
}

.danger{
    background:#ffe4e4;
    color:#b91c1c;
    border:1px solid #ffc5c5;
}

/* ===================================================
   FORM GROUP
=================================================== */

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

/* ===================================================
   INPUT
=================================================== */

.form-group input,
.form-group textarea{

    width:100%;
    padding:14px 16px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:15px;

    transition:.3s;

    outline:none;

    background:#fff;
}

.form-group textarea{
    resize:vertical;
    min-height:160px;
}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#0b6b43;

    box-shadow:0 0 0 4px rgba(11,107,67,.12);

}

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

.btn-kirim{

    background:#0b6b43;
    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:10px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.btn-kirim:hover{

    background:#095736;

    transform:translateY(-2px);

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

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

.section-title h2{
    font-size:34px;
    color:#0b6b43;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* ===================================================
   GOOGLE MAPS
=================================================== */

.maps{
    padding:80px 0;
    background:#ffffff;
}

.maps-wrapper{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.maps-wrapper iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

/* ===================================================
   SOSIAL MEDIA
=================================================== */

.social-section{
    padding:80px 0;
    background:#f8faf9;
}

.social-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.social-card{

    background:#fff;

    text-decoration:none;

    color:#333;

    padding:35px 20px;

    border-radius:16px;

    text-align:center;

    transition:.3s;

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

}

.social-card:hover{

    transform:translateY(-8px);

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

}

.social-card i{

    font-size:36px;

    color:#0b6b43;

    margin-bottom:18px;

}

.social-card span{

    display:block;

    font-weight:600;

    font-size:16px;

}

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

.faq{

    padding:80px 0;

    background:#ffffff;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:18px;

    border-radius:12px;

    overflow:hidden;

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

    background:#fff;

}

.faq-btn{

    width:100%;

    padding:22px 25px;

    border:none;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    color:#333;

    transition:.3s;

}

.faq-btn:hover{

    background:#f5f5f5;

}

.faq-btn.active{

    color:#0b6b43;

}

.faq-btn i{

    transition:.3s;

}

.faq-btn.active i{

    transform:rotate(180deg);

}

.faq-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    background:#fafafa;

}

.faq-content p{

    padding:20px 25px;

    line-height:1.8;

    color:#555;

}

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

.floating-wa{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:30px;

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

    z-index:999;

    transition:.3s;

}

.floating-wa:hover{

    transform:scale(1.1);

}

/* ===================================================
   RESPONSIVE TABLET
=================================================== */

@media(max-width:992px){

.kontak-grid{

    grid-template-columns:1fr;

}

.social-grid{

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

}

.maps-wrapper iframe{

    height:400px;

}

}

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

@media(max-width:768px){

.page-header{

    padding:60px 20px;

}

.page-header h1{

    font-size:32px;

}

.page-header p{

    font-size:15px;

}

.kontak{

    padding:60px 0;

}

.kontak-form{

    padding:25px;

}

.card{

    padding:25px;

}

.section-title h2{

    font-size:28px;

}

.social-grid{

    grid-template-columns:1fr;

}

.maps-wrapper iframe{

    height:300px;

}

.btn-kirim{

    width:100%;

}

.faq-btn{

    font-size:15px;

    padding:18px;

}

.faq-content p{

    padding:18px;

}

.floating-wa{

    width:55px;

    height:55px;

    font-size:26px;

    right:18px;

    bottom:18px;

}

}

/* ===================================================
   ANIMATION
=================================================== */

.card,
.social-card,
.kontak-form,
.maps-wrapper{

    animation:fadeUp .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}