*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#f6f8fb;
color:#0f172a;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:92%;
max-width:1180px;
margin:auto;
}

.btn{
display:inline-block;
background:#047857;
color:white;
padding:14px 22px;
border-radius:12px;
font-weight:800;
border:0;
cursor:pointer;
}

.btn-light{
background:#fff;
color:#047857;
}

.section{
padding:80px 0;
}

.soft-bg{
background:#eef4f0;
}

.section-title{
text-align:center;
margin-bottom:38px;
}

.section-title small{
color:#047857;
font-weight:900;
text-transform:uppercase;
letter-spacing:.8px;
}

.section-title h2{
font-size:38px;
margin:10px 0;
}

.section-title p{
color:#64748b;
max-width:720px;
margin:auto;
line-height:1.7;
}

.section-title.light h2,
.section-title.light p{
color:white;
}

.topbar{
background:#0f172a;
color:#e5e7eb;
font-size:14px;
padding:10px 0;
}

.topbar-inner{
display:flex;
justify-content:space-between;
gap:15px;
}

.site-header{
background:white;
position:sticky;
top:0;
z-index:99;
box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.navbar{
height:78px;
display:flex;
align-items:center;
justify-content:space-between;
}

.brand{
display:flex;
align-items:center;
gap:12px;
}

.brand img{
width:52px;
height:52px;
object-fit:contain;
}

.brand strong{
display:block;
font-size:22px;
}

.brand span{
font-size:13px;
color:#64748b;
}

.nav a{
margin-left:22px;
font-weight:700;
color:#334155;
}

.nav .nav-cta{
background:#047857;
color:#fff;
padding:12px 16px;
border-radius:12px;
}

.mobile-btn{
display:none;
background:#047857;
color:white;
border:0;
border-radius:10px;
padding:10px 14px;
font-size:20px;
}

.hero{
min-height:720px;
display:flex;
align-items:center;
background-size:cover;
background-position:center;
color:white;
}

.hero-content{
max-width:850px;
}

.eyebrow{
display:inline-block;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.25);
padding:9px 14px;
border-radius:999px;
font-weight:900;
margin-bottom:18px;
}

.hero h1{
font-size:60px;
line-height:1.05;
margin:0 0 18px;
}

.hero p{
font-size:20px;
max-width:720px;
line-height:1.7;
color:#e2e8f0;
}

.hero-actions{
display:flex;
gap:14px;
margin-top:25px;
flex-wrap:wrap;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:-55px;
position:relative;
z-index:2;
}

.stat{
background:white;
padding:28px;
border-radius:18px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.stat h3{
font-size:38px;
color:#047857;
margin:0;
}

.stat p{
margin:8px 0 0;
color:#64748b;
font-weight:700;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
background:white;
border-radius:20px;
padding:28px;
box-shadow:0 12px 35px rgba(15,23,42,.08);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:16px;
margin-bottom:18px;
}

.card h3{
margin:0 0 10px;
font-size:22px;
}

.card p{
color:#64748b;
line-height:1.7;
}

.lead-text{
font-size:18px;
line-height:1.8;
}

.about-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:30px;
align-items:stretch;
}

.highlight-card{
background:#064e3b;
color:white;
border-radius:24px;
padding:35px;
box-shadow:0 12px 35px rgba(15,23,42,.18);
}

.highlight-card h3{
font-size:30px;
margin-top:0;
}

.highlight-card p{
color:#d1fae5;
line-height:1.8;
}

.service-icon{
font-size:38px;
margin-bottom:14px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
}

.gallery-item{
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
width:100%;
height:190px;
object-fit:cover;
display:block;
}

.gallery-item div{
padding:14px;
font-weight:800;
}

.dark-section{
background:#0f172a;
color:white;
}

.dark-card{
background:#1e293b;
color:white;
}

.dark-card p{
color:#e2e8f0;
}

.stars{
color:#facc15;
margin-bottom:10px;
}

.team-card{
text-align:center;
}

.team-card img{
border-radius:50%;
width:170px;
height:170px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.contact-info p{
line-height:1.8;
}

form input,
form textarea{
width:100%;
padding:15px;
border:1px solid #cbd5e1;
border-radius:12px;
margin-bottom:14px;
font-size:15px;
}

form textarea{
min-height:140px;
}

form button{
background:#047857;
color:white;
border:0;
border-radius:12px;
padding:15px 22px;
font-weight:900;
cursor:pointer;
}

.success-msg{
display:none;
color:#047857;
font-weight:800;
}

.map-box{
margin-top:30px;
}

.map-box iframe{
width:100%;
height:360px;
border:0;
border-radius:20px;
}

.footer{
background:#0f172a;
color:#e5e7eb;
padding:50px 0 25px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:25px;
}

.footer a,
.footer p{
display:block;
color:#cbd5e1;
line-height:1.8;
}

.copy{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:30px;
padding-top:20px;
color:#94a3b8;
}

.whatsapp-float{
position:fixed;
right:22px;
bottom:22px;
background:#22c55e;
color:white;
padding:15px 20px;
border-radius:999px;
font-weight:900;
box-shadow:0 12px 30px rgba(0,0,0,.25);
z-index:100;
}

@media(max-width:900px){

.topbar-inner{
display:block;
text-align:center;
}

.nav{
display:none;
position:absolute;
top:78px;
left:0;
right:0;
background:white;
padding:20px;
box-shadow:0 14px 30px rgba(0,0,0,.1);
}

.nav.show{
display:block;
}

.nav a{
display:block;
margin:12px 0;
}

.mobile-btn{
display:block;
}

.hero{
min-height:620px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:17px;
}

.stats,
.grid-3,
.gallery-grid,
.contact-grid,
.footer-grid,
.about-grid{
grid-template-columns:1fr;
}

.stats{
margin-top:20px;
}

.section{
padding:60px 0;
}

.section-title h2{
font-size:30px;
}

}

/* ===============================
   LOGIN BUTTON
================================= */

.login-btn{
display:inline-flex;
align-items:center;
gap:8px;
margin-left:12px;
padding:12px 18px;
border:2px solid #047857;
border-radius:12px;
font-weight:700;
color:#047857;
background:#fff;
transition:.25s;
}

.login-btn:hover{
background:#047857;
color:#fff;
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(4,120,87,.25);
}

/* ===== Service Image ===== */

.service-image{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:18px;
    display:block;
}