/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fa;
color:#1e293b;
line-height:1.6;
}

.container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

img{
max-width:100%;
display:block;
}

/* HEADER */

.site-header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.header-content{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
padding:15px 0;
flex-wrap:wrap;
}

.logo{
height:60px;
border-radius:8px;
}

.header-phone{
background:#2563eb;
color:white;
padding:12px 22px;
border-radius:40px;
font-weight:bold;
font-size:18px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
transition:.2s;
}

.header-phone:hover{
background:#1d4ed8;
transform:translateY(-2px);
}

/* HERO */

.hero{
position:relative;
height:650px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
z-index:0;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(10,25,47,0.65);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
margin:auto;
}
/* BUTTONS */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
}

.btn-primary{
background:#2563eb;
color:white;
padding:14px 26px;
border-radius:40px;
font-weight:bold;
text-decoration:none;
transition:.2s;
}

.btn-primary:hover{
background:#1d4ed8;
}

.btn-secondary{
background:white;
color:#111;
padding:14px 26px;
border-radius:40px;
font-weight:bold;
text-decoration:none;
}

.btn-secondary:hover{
background:#e5e7eb;
}

/* STATS */

.stats{
background:white;
padding:40px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stat-card{
background:#f8fafc;
padding:25px;
border-radius:15px;
}

.stat-card h3{
font-size:28px;
color:#2563eb;
margin-bottom:5px;
}

/* SERVICES */

.services{
padding:80px 0;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.service-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.service-icon{
font-size:32px;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
}

.service-cta{
display:inline-block;
margin-top:10px;
color:#2563eb;
font-weight:bold;
}

/* GALLERY */

.gallery{
background:white;
padding:80px 0;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:20px;
}

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:20px;
background:linear-gradient(transparent,rgba(0,0,0,0.8));
color:white;
}

/* TESTIMONIALS */

.testimonials{
padding:80px 0;
background:#f8fafc;
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:30px;
}

.testimonial-card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.07);
}

.stars{
margin-bottom:10px;
}

/* CONTACT */

.contact{
padding:80px 0;
}

.contact-form{
max-width:600px;
margin:auto;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.form-group{
margin-bottom:15px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:12px;
border-radius:10px;
border:1px solid #cbd5e1;
}

.btn-large{
width:100%;
margin-top:10px;
}

.contact-methods{
display:flex;
justify-content:center;
gap:15px;
margin-top:30px;
flex-wrap:wrap;
}

.contact-method{
background:white;
padding:12px 20px;
border-radius:40px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
padding:50px 20px;
}

.footer-content{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-bottom:20px;
}

.footer-section a{
color:#2563eb;
}

.copyright{
text-align:center;
font-size:14px;
color:#cbd5e1;
}

/* RESPONSIVE */

@media(max-width:900px){

.stats-grid{
grid-template-columns:1fr 1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.testimonials-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.footer-content{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:30px;
}

}