body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f8fa;
}

/* NAVBAR */

.custom-navbar{
    background:#00152d;
    padding:18px 0;
}

.logo{
    width:60px;
}

.navbar .nav-link{
    color:#fff;
    font-weight:600;
    margin:0 12px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover{
    color:#ffc107;
}

/* HERO */

.contact-hero{
    position:relative;
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;
}

.contact-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:90px;
    font-weight:900;
}

.hero-line{
    width:90px;
    height:4px;
    background:#ffc107;
    margin:20px 0 30px;
}

.hero-content p{
    font-size:24px;
    line-height:1.8;
}

/* CONTACT SECTION */

.contact-section{
    padding:90px 0;
}

.contact-info,
.form-box,
.location-box{
    height:100%;
}

.contact-section h3{
    font-size:40px;
    font-weight:900;
    color:#08152f;
    margin-bottom:18px;
}

.top-desc{
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* INFO ITEM */

.info-item{
    display:flex;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid #e5e5e5;
}

.info-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#00152d;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.info-icon i{
    font-size:32px;
    color:#ffc107;
}

.info-item h5{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.info-item p{
    margin:0;
    color:#444;
    line-height:1.8;
    font-size:17px;
}

/* FORM */

.form-control,
.form-select{
    height:58px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:15px 18px;
    font-size:16px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus,
.form-select:focus{
    border-color:#ffc107;
    box-shadow:none;
}

.btn-send{
    border:none;
    background:#00152d;
    color:#ffc107;
    padding:16px 30px;
    border-radius:10px;
    font-weight:700;
    transition:0.3s;
}

.btn-send:hover{
    background:#012549;
    color:#fff;
}

/* MAP */

.map-image{
    width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

/* WA BOX */

.wa-box{
    background:#00152d;
    border-radius:12px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    color:#fff;
}

.wa-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#012549;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.wa-icon i{
    font-size:40px;
    color:#ffc107;
}

.wa-content h5{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.wa-content p{
    color:#d7d7d7;
    margin-bottom:18px;
}

.btn-wa{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#ffc107;
    border:1px solid #ffc107;
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
    transition:0.3s;
}

.btn-wa:hover{
    background:#ffc107;
    color:#00152d;
}

/* FEATURE */

.feature-section{
    background:#00152d;
    padding:55px 0;
}

.feature-box{
    display:flex;
    gap:18px;
    color:#fff;
}

.feature-box i{
    font-size:54px;
    color:#ffc107;
}

.feature-box h5{
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.feature-box p{
    margin:0;
    color:#d7d7d7;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-content h1{
        font-size:58px;
    }

    .hero-content p{
        font-size:18px;
    }

    .contact-section h3{
        font-size:30px;
    }

    .wa-box{
        flex-direction:column;
    }

}