*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo h2{
color:#6CB33F;
font-size:34px;
font-weight:800;
}

.logo span{
font-size:13px;
font-weight:600;
display:block;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#6CB33F;
}

.telefon{
background:#6CB33F;
color:#fff;
padding:14px 24px;
border-radius:40px;
text-decoration:none;
font-weight:700;
}

.hero{
height:100vh;
background:url("geodezja-tlo.jpg") center center/cover no-repeat;
margin-top:80px;
}

.overlay{
background:rgba(0,0,0,.55);
height:100%;
display:flex;
align-items:center;
}

.hero-box{
max-width:900px;
color:#fff;
padding:40px;
}

.hero h1{
font-size:68px;
line-height:1.1;
margin-bottom:20px;
}

.hero h2{
font-size:34px;
color:#7fd13b;
margin-bottom:25px;
}

.hero p{
font-size:22px;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:20px;
}

.btn-green,
.btn-white,
.btn-opinie{
padding:18px 35px;
border-radius:40px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn-green{
background:#6CB33F;
color:#fff;
}

.btn-white{
background:#fff;
color:#222;
}

.btn-opinie{
background:#ffb400;
color:#222;
}

.btn-green:hover,
.btn-white:hover,
.btn-opinie:hover{
transform:translateY(-4px);
}

section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
margin-bottom:15px;
}

.section-title p{
font-size:18px;
color:#666;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat{
background:#fff;
padding:40px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat h3{
font-size:52px;
color:#6CB33F;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery img{
width:100%;
height:280px;
object-fit:cover;
border-radius:18px;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
}

.google-box,
.contact-box{
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.google-btn{
display:inline-block;
margin-top:25px;
background:#6CB33F;
padding:16px 30px;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:700;
}

.buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:30px 0;
}

@media(max-width:900px){

header .container{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.hero h2{
font-size:28px;
}

.hero p{
font-size:18px;
}

.stats{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
}

}