/* BRANCHES PAGE */

.branches{
padding:80px 20px;
text-align:center;
}

.branches h1{
font-size:36px;
color:#003366;
margin-bottom:10px;
}

.branch-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
margin-top:40px;
}

.branch-card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.branch-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.branch-card h3{
color:#003366;
margin-bottom:10px;
}

.map iframe{
width:100%;
height:250px;
border:none;
border-radius:10px;
margin-top:15px;
}

.map-btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#003366;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.map-btn:hover{
background:#00264d;
}

/* ================= FOOTER ================= */

.footer{
background:#003366;
color:white;
padding:60px 20px 20px 20px;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-col i{
margin-right:8px;
}

.social-link{
display:inline-block;
color:white;
text-decoration:none;
margin-top:5px;
}

.social-link:hover{
color:red;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:15px;
font-size:13px;
color:#ccc;
}