.contact-hero{
    background:linear-gradient(135deg,#0d2c4a,#16466f);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.contact-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.contact-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.contact-info,
.contact-form-section,
.map-section,
.faq-section,
.contact-cta{
    padding:80px 0;
}

.contact-info h2,
.contact-form-section h2,
.map-section h2,
.faq-section h2,
.contact-cta h2{
    text-align:center;
    margin-bottom:40px;
    color:#0d2c4a;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-card h3{
    margin-bottom:15px;
    color:#2ec4b6;
}

.contact-form-section{
    background:#f5f7fa;
}

.contact-form-section form{
    max-width:800px;
    margin:auto;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.contact-form-section button{
    background:#2ec4b6;
    width:100%;
    padding:15px;
    border:none;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

.emergency-section{
    padding:80px 0;
}

.emergency-card{
    background:#0d2c4a;
    color:white;
    text-align:center;
    padding:50px;
    border-radius:15px;
}

.call-btn{
    display:inline-block;
    margin-top:25px;
    background:#2ec4b6;
    color:white;
    padding:14px 30px;
    border-radius:8px;
}

.map-container{
    border-radius:15px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:450px;
    border:none;
}

.faq-item{
    background:white;
    padding:25px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#0d2c4a;
    margin-bottom:10px;
}

.contact-cta{
    background:#0d2c4a;
    color:white;
    text-align:center;
}

.contact-cta p{
    margin:20px auto 30px;
    max-width:700px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    background:#2ec4b6;
    color:white;
    padding:14px 28px;
    border-radius:8px;
}

.secondary{
    background:transparent;
    border:2px solid white;
}

@media(max-width:768px){

    .contact-hero h1{
        font-size:34px;
    }

    .contact-info,
    .contact-form-section,
    .map-section,
    .faq-section,
    .contact-cta,
    .emergency-section{
        padding:60px 0;
    }

    .emergency-card{
        padding:30px;
    }

}