:root{
--blue:#0B4A92;
--navy:#062A54;
--teal:#11C5B5;
--light:#F5F8FC;
--text:#24364B;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:var(--white);
color:var(--text);
overflow-x:hidden;
}

img{
display:block;
max-width:100%;
}

.container{
width:min(92%,1280px);
margin:auto;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.96);
backdrop-filter:blur(14px);
box-shadow:0 3px 18px rgba(0,0,0,.06);
z-index:1000;
}

.nav{
height:84px;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.logo img{
height:56px;
width:auto;
}

/* MENU */

.menu{
display:flex;
align-items:center;
gap:34px;
}

.menu a{
text-decoration:none;
font-weight:600;
color:var(--blue);
position:relative;
}

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:3px;
background:var(--teal);
border-radius:3px;
transition:.3s;
}

.menu a:hover::after{
width:100%;
}

/* BUTTONS */

.desktop-buttons{
display:flex;
gap:10px;
}

.mobile-buttons{
display:none;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 20px;
border-radius:12px;
font-weight:700;
text-decoration:none;
white-space:nowrap;
transition:.25s;
}

.btn-primary{
background:var(--blue);
color:white;
}

.btn-primary:hover{
background:#08376E;
}

.btn-outline{
background:white;
border:2px solid var(--blue);
color:var(--blue);
}

.btn-outline:hover{
background:var(--blue);
color:white;
}

.btn-outline.white{
background:transparent;
border-color:white;
color:white;
}

.btn-outline.white:hover{
background:white;
color:var(--blue);
}

/* HAMBURGER */

.hamburger{
display:none;
background:none;
border:none;
font-size:28px;
cursor:pointer;
color:var(--blue);
}

/* HERO */

.hero{
position:relative;
height:100vh;
min-height:700px;
background:url("structura-banner.png?v=1") center center/cover no-repeat;
overflow:hidden;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(0,0,0,.05),
rgba(0,0,0,.20)
);
}

/* FEATURE STRIP */

.hero-features{
position:absolute;
left:50%;
bottom:32px;
transform:translateX(-50%);
width:min(92%,1200px);

display:flex;
justify-content:space-between;
align-items:center;
gap:20px;

padding:18px 24px;

background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.18);
border-radius:18px;

color:white;
z-index:5;
}

.feature{
display:flex;
align-items:center;
gap:12px;
}

.feature span{
font-size:30px;
}

.feature strong{
display:block;
font-size:17px;
}

/* GENERAL */

.section{
padding:95px 0;
}

.light{
background:var(--light);
}

.center{
text-align:center;
font-size:42px;
color:var(--blue);
margin-bottom:14px;
}

.center-sub{
text-align:center;
max-width:700px;
margin:0 auto 45px;
line-height:1.8;
color:#64748B;
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about img{
border-radius:22px;
box-shadow:0 18px 42px rgba(0,0,0,.08);
}

.about h2{
font-size:40px;
color:var(--blue);
margin-bottom:20px;
}

.about p{
line-height:1.9;
margin-bottom:18px;
color:#475569;
}

/* SERVICES */

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 12px 28px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
transition:transform .4s ease;
}

.card:hover img{
transform:scale(1.05);
}

.card h3{
padding:18px 18px 8px;
color:var(--blue);
}

.card p{
padding:0 18px 22px;
line-height:1.7;
color:#64748B;
}

/* CONTACT */

.contact{
padding:95px 0;
}

.contact-box{
background:linear-gradient(135deg,var(--blue),#08376E);
color:white;
padding:60px;
border-radius:28px;
text-align:center;
}

.contact-box h2{
font-size:40px;
margin-bottom:18px;
}

.contact-box p{
max-width:650px;
margin:0 auto 30px;
line-height:1.8;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

/* FOOTER */

footer{
background:#051B37;
padding:55px 0;
}

.footer{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:35px;
}

.footer img{
height:52px;
margin-bottom:15px;
}

.footer h4{
color:white;
margin-bottom:14px;
}

.footer p,
.footer a{
color:#D8E5F4;
text-decoration:none;
display:block;
margin-bottom:10px;
}

.footer a:hover{
color:white;
}

/* TABLET */

@media(max-width:1024px){

.about{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:repeat(2,1fr);
}

.hero-features{
display:grid;
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:768px){

.nav{
height:72px;
}

.logo img{
height:42px;
}

.desktop-buttons{
display:none;
}

.hamburger{
display:block;
margin-left:auto;
}

.menu{
display:none;
position:absolute;
top:72px;
left:0;
width:100%;
background:white;
padding:24px;
flex-direction:column;
align-items:flex-start;
gap:18px;
box-shadow:0 12px 28px rgba(0,0,0,.08);
z-index:999;
}

.menu.open{
display:flex;
}

.mobile-buttons{
display:flex;
flex-direction:column;
width:100%;
gap:12px;
padding-top:16px;
border-top:1px solid #E5E7EB;
}

.mobile-buttons .btn{
width:100%;
}

.hero{
min-height:520px;
}

.hero-features{
position:static;
transform:none;
display:flex;
flex-direction:column;
align-items:flex-start;
gap:18px;
padding:28px 20px;
border-radius:0;
background:var(--navy);
backdrop-filter:none;
border:none;
}

.cards,
.footer{
grid-template-columns:1fr;
}

.contact-box{
padding:40px 24px;
}

.center{
font-size:32px;
}

.about h2{

font-size:32px;
}

}

/* =========================
   LOCATION SECTION
========================= */

.location{
    padding:90px 0;
    background:#F5F8FC;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 1.35fr;
    gap:40px;
    align-items:stretch;
}

/* Address Card */

.location-info{
    background:#051B37;
    color:#FFFFFF;
    padding:35px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.location-info h3{
    font-size:30px;
    color:#FFFFFF;
    margin-bottom:18px;
}

.location-info p{
    margin-bottom:12px;
    line-height:1.8;
    color:#D8E5F4;
}

.location-info strong{
    color:#FFFFFF;
}

.location-info a{
    color:#FFFFFF;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.location-info a:hover{
    color:#11C5B5;
}

.location-info .btn{
    margin-top:18px;
    width:100%;
    justify-content:center;
}

/* Google Map */

.map-box{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.map-box iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

/* Mobile */

@media(max-width:768px){

    .location{
        padding:70px 0;
    }

    .location-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .location-info{
        padding:28px;
    }

    .location-info h3{
        font-size:24px;
    }

    .map-box iframe{
        height:300px;
    }

}
/* Map */

.map-box{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.map-box iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

/* Mobile */

@media(max-width:768px){

    .location{
        padding:70px 0;
    }

    .location-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .location-info{
        padding:28px;
    }

    .location-info h3{
        font-size:24px;
    }

    .map-box iframe{
        height:300px;
    }

}
/* Mobile */

@media(max-width:768px){

.location{
padding:70px 0;
}

.location-grid{
grid-template-columns:1fr;
gap:25px;
}

.location-info{
padding:25px;
}

.location-info h3{
font-size:24px;
}

.map-box iframe{
height:300px;
}

}

.location-info h3,
.location-info p,
.location-info strong,
.location-info a{
    color:#FFFFFF !important;
}

/* ===== LOCATION TEXT FIX ===== */

.location-info{
    background:#051B37 !important;
    color:#FFFFFF !important;
}

.location-info h3{
    color:#FFFFFF !important;
}

.location-info p{
    color:#D8E5F4 !important;
}

.location-info strong{
    color:#FFFFFF !important;
}

.location-info a{
    color:#FFFFFF !important;
}

.location-info .btn{
    color:#FFFFFF !important;
}

.location-info h3,
.location-info p,
.location-info strong,
.location-info a{
    color:#FFFFFF !important;
}
