/* css/style.css */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */

.topbar{
    background:#000;
    position:sticky;
    top:0;
    z-index:999;
}

.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.logo{
    height:70px;
}

.phone{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* HERO */

.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.hero h1{
    font-size:clamp(38px,6vw,72px);
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    max-width:700px;
    margin:auto;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    display:inline-block;
}

.btn-primary{
    background:#ff5a1f;
    color:#fff;
}

.btn-primary:hover{
    background:#ff743f;
}

.btn-secondary{
    background:#98ff00;
    color:#111;
}

/* SECTIONS */

.section{
    padding:90px 0;
}

.light{
    background:#f5f5f5;
    color:#111;
}

.dark{
    background:#161616;
}

h2{
    font-size:42px;
    margin-bottom:30px;
    line-height:1.2;
}

/* BENEFITS */

.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.benefit{
    background:#fff;
    padding:22px;
    border-radius:14px;
    font-size:18px;
    font-weight:500;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    border-radius:16px;
    height:280px;
    width:100%;
    object-fit:cover;
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* TEXT */

.text{
    font-size:19px;
    max-width:850px;
    margin-bottom:50px;
}

/* EQUIPMENT */

.equipment{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:#222;
    padding:25px;
    border-radius:16px;
    font-size:18px;
}

/* PRICING */

.pricing{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.price-box{
    background:#fff;
    color:#111;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.price{
    font-size:42px;
    font-weight:700;
    color:#ff5a1f;
}

.weather{
    margin-top:30px;
    font-size:18px;
}

/* STEPS */

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.step{
    background:#222;
    padding:25px;
    border-radius:16px;
    text-align:center;
}

/* FAQ */

.faq{
    display:grid;
    gap:20px;
}

.faq-item{
    background:#fff;
    color:#111;
    padding:25px;
    border-radius:14px;
}

/* CONTACT */

.contact-section{
    background:#98ff00;
    color:#111;
    text-align:center;
    padding:90px 20px;
}

.contact-text{
    font-size:22px;
    max-width:700px;
    margin:auto auto 35px;
}

.contact-info{
    margin-top:20px;
    font-size:20px;
}

/* MAP */

.map-section{
    background:#111;
    padding:90px 0;
}

.map-wrap{
    width:100%;
    max-width:1200px;
    margin:40px auto 0;
}

.map-wrap iframe{
    width:100%;
    height:500px;
    border:0;
    border-radius:20px;
    display:block;
}

/* FOOTER */

.footer{
    background:#000;
    text-align:center;
    padding:25px 0;
}

/* STICKY BUTTON */

.sticky-call{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#ff5a1f;
    color:#fff;
    text-decoration:none;
    padding:16px 22px;
    border-radius:50px;
    font-weight:700;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* MOBILE */

@media(max-width:768px){

.hero{
    min-height:75vh;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

h2{
    font-size:32px;
}

.logo{
    height:55px;
}

.gallery img{
    height:220px;
}

.map-wrap iframe{
    height:350px;
}

.sticky-call{
    bottom:15px;
    right:15px;
    padding:14px 18px;
}

}