 /* HERO */

.contact-hero{
background:url("https://images.unsplash.com/photo-1581594693702-fbdc51b2763b") center/cover;
height:300px;
position:relative;
}

.contact-overlay{
background:rgba(15,76,129,0.85);
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

.contact-content{
text-align:center;
color:#fff;
}

.contact-content h1{
font-size:40px;
}

/* SECTION */

.contact-section{
padding:90px 0;
}

.contact-section.light{
background:#f7fbff;
}

.contact-container{
width:90%;
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

/* INFO */

.contact-info h2{
color:#0f4c81;
margin-bottom:15px;
}

.contact-box{
display:flex;
align-items:center;
gap:10px;
margin-bottom:15px;
color:#555;
}

/* FORM */

.contact-form{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
}

.contact-form button{
background:#1fb6a6;
color:#fff;
padding:12px;
border:none;
border-radius:30px;
cursor:pointer;
}

/* LOCATIONS */

.contact-center{
text-align:center;
max-width:900px;
margin:auto;
}

.location-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.location-card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* CTA */

.contact-cta{
background:#0f4c81;
color:#fff;
padding:80px 0;
text-align:center;
}

.contact-cta a{
background:#1fb6a6;
padding:12px 25px;
border-radius:30px;
color:#fff;
text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:900px){

.contact-container{
grid-template-columns:1fr;
}

.location-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.location-grid{
grid-template-columns:1fr;
}

.contact-content h1{
font-size:28px;
}

}
