*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f6f9ff;
  color:#222;
  line-height:1.7;
}

/* ================= GLOBAL ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:80px 20px;
}

h1,h2,h3{
  font-weight:700;
}

h2{
  font-size:32px;
}

/* ================= BUTTONS ================= */
.btn-primary{
  background:linear-gradient(45deg,#1e7b34,#2fbf71);
  color:#fff;
  padding:14px 30px;
  border-radius:30px;
  display:inline-block;
  font-weight:600;
  transition:0.4s;
}

.btn-primary:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

.btn-secondary{
  border:2px solid #2fbf71;
  color:#2fbf71;
  padding:12px 28px;
  border-radius:30px;
  font-weight:600;
}

/* ================= HEADER ================= */
.header{
  background:#fff;
  box-shadow:0 5px 25px rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:999;
}

.header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

/* ⭐ LOGO BIGGER */
.logo img{
  height:80px;
}

.nav{
  display:flex;
  align-items:center;
}

.nav a{
  margin-left:25px;
  color:#333;
  font-weight:600;
}

.call-btn{
  background:#2fbf71;
  color:#fff;
  padding:10px 20px;
  border-radius:20px;
  margin-left:20px;
}

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================= HERO ================= */
.hero{
  min-height:95vh;
  background:
  linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
  url("../images/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero h1{
  font-size:52px;
  margin-bottom:15px;
}

.hero h2{
  font-size:26px;
  margin-bottom:15px;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
}

.hero-btns{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ================= SERVICES ================= */
.services{
  background:#f1f6ff;
  text-align:center;
}

.service-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-box{
  background:#fff;
  padding:40px 25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.4s;
}

.service-box i{
  color:#2fbf71;
  margin-bottom:15px;
}

.service-box:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* ================= WHY ================= */
.why{
  background:#fff;
  text-align:center;
}

.why-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.why-box{
  background:#f3f8ff;
  padding:20px;
  border-radius:12px;
  font-weight:600;
}

.why-box i{
  color:#2fbf71;
  margin-right:8px;
}

/* ================= LEAD FORM ================= */
.lead{
  background:#0f5132;
  color:#fff;
  text-align:center;
}

.lead-form input,
.lead-form textarea{
  width:100%;
  padding:15px;
  border-radius:10px;
  border:none;
  margin-bottom:15px;
}

.lead-form button{
  width:100%;
}

/* ================= FOOTER ================= */
.footer{
  background:#0a0a0a;
  color:#fff;
  text-align:center;
  padding:35px 15px;
}

/* ⭐ WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:#fff;
  font-size:28px;
  padding:14px 18px;
  border-radius:50%;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  z-index:999;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .logo img{ height:60px; }

  .menu-toggle{ display:block; }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:260px;
    background:#fff;
    flex-direction:column;
    padding-top:80px;
    transition:0.4s;
  }

  .nav.active{ right:0; }

  .hero h1{ font-size:32px; }
  .hero h2{ font-size:20px; }
}
