/*====================================
CONTACT PAGE CSS
====================================*/

.page-banner{
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/banner.jpg') center center/cover no-repeat;
    padding:100px 0;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
    font-weight:700;
}

.page-banner p{
    font-size:16px;
}

/*====================================
CONTACT SECTION
====================================*/

.contact-section{
    padding:80px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#0d3b66;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

/*====================================
CONTACT INFO
====================================*/

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-5px);
}

.info-box i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#ff5722;
    color:#fff;
    text-align:center;
    font-size:24px;
}

.info-box h3{
    margin-bottom:8px;
    color:#0d3b66;
}

.info-box p{
    color:#666;
    line-height:1.8;
}

/*====================================
CONTACT FORM
====================================*/

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff5722;
}

.form-group textarea{
    resize:vertical;
}

/*====================================
BUTTON
====================================*/

.btn-red{
    display:inline-block;
    width:100%;
    border:none;
    background:#ff5722;
    color:#fff;
    padding:15px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-red:hover{
    background:#e64a19;
}

/*====================================
MAP
====================================*/

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

/*====================================
CTA
====================================*/

.cta{
    background:#0d3b66;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta p{
    font-size:17px;
    margin-bottom:30px;
    line-height:1.8;
}

.cta .btn-red{
    width:auto;
    padding:15px 40px;
    text-decoration:none;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:991px){

.contact-grid{
    grid-template-columns:1fr;
}

.page-banner h1{
    font-size:36px;
}

.section-title h2{
    font-size:32px;
}

.cta h2{
    font-size:32px;
}

}

@media(max-width:576px){

.page-banner{
    padding:70px 20px;
}

.page-banner h1{
    font-size:28px;
}

.contact-section{
    padding:60px 0;
}

.contact-form{
    padding:20px;
}

.info-box{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.info-box i{
    margin-bottom:10px;
}

.section-title h2{
    font-size:28px;
}

.cta{
    padding:60px 20px;
}

.cta h2{
    font-size:26px;
}

.cta .btn-red{
    width:100%;
}

.map-section iframe{
    height:300px;
}

}