.contact-hero{
padding:90px 20px;
text-align:center;
background:linear-gradient(135deg,#0d3b66,#1d5fa7);
color:#fff;
}

.contact-hero h1{
font-size:3rem;
margin-bottom:20px;
}

.contact-hero p{
max-width:800px;
margin:auto;
opacity:.95;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.stat-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-card h2{
font-size:2rem;
color:#0d3b66;
margin-bottom:10px;
}

.contact-layout{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:40px;
margin-top:50px;
}

.contact-form-box,
.contact-info-box{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form{
display:grid;
gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

.contact-form textarea{
min-height:140px;
resize:vertical;
}

.contact-form button{
border:none;
cursor:pointer;
}

.help-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:35px;
}

.help-card{
padding:25px;
border-radius:12px;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
}

.help-card h4{
margin-bottom:10px;
}

.fast-contact{
background:#0d3b66;
color:#fff;
padding:40px;
border-radius:16px;
text-align:center;
margin-top:50px;
}

.fast-contact .btn-primary{
margin-right:10px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:35px;
}

.process-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
}

.process-card span{
display:inline-block;
width:50px;
height:50px;
line-height:50px;
border-radius:50%;
background:#0d3b66;
color:#fff;
font-weight:700;
margin-bottom:15px;
}

.faq-grid{
display:grid;
gap:15px;
margin-top:30px;
}

.faq-item{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.faq-item h4{
margin-bottom:8px;
}

.map-box{
margin-top:50px;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:900px){

.contact-layout{
grid-template-columns:1fr;
}

.contact-hero h1{
font-size:2.2rem;
}

}