.sai-contact{
font-family:Arial, sans-serif;
}


/* HERO */

.sai-contact .hero{
background:#3471b2;
color:white;
text-align:center;
padding:100px 20px;
}

.sai-contact .hero h1{
font-size:46px;
margin-bottom:10px;
}

.sai-contact .hero p{
max-width:700px;
margin:auto;
font-size:18px;
}


/* CONTACT INFO */

.sai-contact .contact-info{
padding:60px 20px;
background:#f9f9f9;
}

.sai-contact .info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.sai-contact .info-box{
background:white;
padding:30px;
text-align:center;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.sai-contact .info-box .icon{
font-size:40px;
margin-bottom:10px;
}

.sai-contact .info-box h3{
color:#3471b2;
margin-bottom:5px;
}


/* FORM */

.sai-contact .contact-form-section{
padding:80px 20px;
text-align:center;
}

.sai-contact .section-title{
font-size:34px;
margin-bottom:40px;
color:#3471b2;
}

.sai-contact .contact-form{
max-width:900px;
margin:auto;
}

.sai-contact .form-row{
display:flex;
gap:20px;
margin-bottom:20px;
}

.sai-contact input,
.sai-contact textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:5px;
font-size:15px;
}

.sai-contact textarea{
height:140px;
resize:none;
margin-bottom:20px;
}

.sai-contact button{
background:#f79316;
color:white;
border:none;
padding:14px 35px;
font-size:16px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.sai-contact button:hover{
background:#7cb733;
}


/* MAP */

.sai-contact .map-section iframe{
width:100%;
height:400px;
border:none;
}


/* CTA */

.sai-contact .cta-section{
background:#3471b2;
color:white;
text-align:center;
padding:70px 20px;
}

.sai-contact .cta-section h2{
font-size:32px;
margin-bottom:15px;
}

.sai-contact .cta-btn{
display:inline-block;
margin-top:20px;
background:#f79316;
color:white;
padding:14px 35px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:0.3s;
}

.sai-contact .cta-btn:hover{
background:#7cb733;
}
/* TABLET */

@media (max-width:992px){

.sai-contact .hero{
padding:80px 20px;
}

.sai-contact .hero h1{
font-size:38px;
}

.sai-contact .form-row{
flex-direction:column;
}

}


/* MOBILE */

@media (max-width:768px){

.sai-contact .hero{
padding:70px 15px;
}

.sai-contact .hero h1{
font-size:32px;
}

.sai-contact .hero p{
font-size:16px;
}

.sai-contact .section-title{
font-size:28px;
}

.sai-contact .info-grid{
grid-template-columns:1fr;
}

.sai-contact .form-row{
flex-direction:column;
gap:15px;
}

.sai-contact input,
.sai-contact textarea{
font-size:14px;
padding:12px;
}

.sai-contact button{
width:100%;
}

.sai-contact .cta-section h2{
font-size:26px;
}

}


/* SMALL MOBILE */

@media (max-width:480px){

.sai-contact .hero h1{
font-size:26px;
}

.sai-contact .hero p{
font-size:14px;
}

.sai-contact .section-title{
font-size:24px;
}

.sai-contact .info-box{
padding:25px 20px;
}

.sai-contact .map-section iframe{
height:300px;
}

}