/* ====== HERO SLIDER ====== */
@media(max-width:768px){
.hero-slider{
height:55vh;
min-height:380px;
}
}

.hero-slider{
position:relative;
height:30vh;
min-height:480px;
overflow:hidden;
}

.slides{
height:100%;
position:relative;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1.2s ease-in-out;
display:flex;
align-items:center;
justify-content:center;
}

.slide.active{
opacity:1;
z-index:2;
}

.slide::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
color:white;
text-align:center;
max-width:900px;
padding:20px;
z-index:3;
animation:fadeUp 1s ease forwards;
}

.hero-content h1{
font-size:48px;
margin-bottom:20px;
font-weight:800;
}

.hero-content p{
font-size:20px;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
background:#0f3f8a;
color:white;
padding:14px 32px;
border-radius:4px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.hero-btn:hover{
background:#072d63;
}

@keyframes fadeUp{
from{transform:translateY(20px);opacity:0}
to{transform:translateY(0);opacity:1}
}

/* HERO INFO STRIP */
.info-box{
transition:all 0.35s ease;
}

.info-box:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.hero-info{
margin-top:-70px;
position:relative;
z-index:5;
}

.hero-info-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
background:white;
border-radius:10px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
overflow:hidden;
}

.info-box{
padding:35px 25px;
text-align:center;
border-right:1px solid #eee;
}

.info-box:last-child{
border-right:none;
}

.info-icon{
font-size:30px;
margin-bottom:15px;
color:#0f3f8a;
}

.info-box h4{
color:#0f3f8a;
margin-bottom:10px;
}

.info-box p{
margin-bottom:6px;
font-size:14px;
}

.info-box .big{
font-size:24px;
font-weight:700;
color:#0f3f8a;
}

.info-btn{
display:inline-block;
margin-top:10px;
padding:8px 18px;
background:#0f3f8a;
color:white;
text-decoration:none;
border-radius:4px;
font-size:13px;
transition:0.3s;
}

.info-btn:hover{
background:#072d63;
}

.highlight{
background:#0f3f8a;
color:white;
}

.highlight h4,
.highlight p{
color:white;
}

.highlight .info-btn{
background:white;
color:#0f3f8a;
}

/* HERO SERVICE ICON BAR */
.phone-number{
cursor:pointer;
}

.copy-info{
font-size:12px;
opacity:0.6;
}

.copied{
color:#2ecc71 !important;
}

.hero-services{
background:#ffffff;
padding:25px 40px;
border-bottom:1px solid #e5e5e5;
}

.hero-services-grid{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
max-width:1200px;
margin:auto;
}

.hero-service-item{
background:#f7f9fb;
width:120px;
height:110px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-decoration:none;
color:#003B5C;
font-size:13px;
font-weight:500;
border-radius:4px;
border:1px solid #e0e0e0;
transition:0.2s;
}

.hero-service-item:hover{
border-color:#003B5C;
background:#eef4f8;
}

.hero-service-item .icon{
font-size:26px;
margin-bottom:8px;
}

/* HERO SERVICE ICON IMAGES */
.hero-service-item .icon{display:none;}
.hero-service-icon{width:44px;height:44px;object-fit:contain;margin-bottom:10px;display:block;}
