:root{
  --green:#176b35;
  --green-dark:#123f24;
  --green-light:#2faa5a;
  --orange:#ff8c00;
  --yellow:#ffe066;
  --cream:#fffdf4;
  --white:#ffffff;
  --black:#1b1b1b;
  --gray:#666;
  --shadow:0 18px 45px rgba(0,0,0,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--cream);
  color:var(--black);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1200px, 92%);
  margin:auto;
}

.section{
  padding:90px 0;
}

.section-label{
  display:inline-block;
  background:rgba(255,140,0,.13);
  color:var(--orange);
  padding:9px 17px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:15px;
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.section-title h2{
  font-size:42px;
  color:var(--green);
  margin-bottom:12px;
}

.section-title p{
  color:var(--gray);
  font-size:17px;
  line-height:1.7;
}

/* LOADER */
#loader{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,var(--green),var(--orange));
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  transition:.6s;
}

.loader-box{
  text-align:center;
}

.loader-logo{
  width:90px;
  height:90px;
  border-radius:50%;
  background:white;
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:900;
  margin:0 auto 18px;
  animation:pulse 1.2s infinite alternate;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.navbar{
  width:min(1200px, 92%);
  margin:auto;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:23px;
  font-weight:900;
  color:var(--green);
}

.logo span{
  color:var(--orange);
}

.nav-menu{
  display:flex;
  gap:22px;
  font-weight:800;
  color:#333;
}

.nav-menu a{
  transition:.3s;
}

.nav-menu a:hover{
  color:var(--orange);
}

.nav-btn{
  background:var(--green);
  color:white;
  padding:12px 20px;
  border-radius:14px;
  font-weight:900;
  transition:.3s;
}

.nav-btn:hover{
  background:var(--orange);
  transform:translateY(-3px);
}

.menu-toggle{
  display:none;
  border:none;
  background:var(--green);
  color:white;
  font-size:24px;
  padding:8px 13px;
  border-radius:10px;
}

/* HERO */
.hero{
  min-height:100vh;
  padding:130px 0 80px;
  background:
    radial-gradient(circle at top left, #fff176 0, transparent 32%),
    radial-gradient(circle at bottom right, #8effa7 0, transparent 30%),
    linear-gradient(135deg,#fff7cc,#d8ffd6,#ffe0b2);
  position:relative;
  overflow:hidden;
}

.hero-bg-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(3px);
  opacity:.45;
}

.shape-1{
  width:280px;
  height:280px;
  background:var(--orange);
  top:130px;
  right:-90px;
  animation:float 5s ease-in-out infinite;
}

.shape-2{
  width:220px;
  height:220px;
  background:var(--green-light);
  bottom:80px;
  left:-80px;
  animation:float 6s ease-in-out infinite reverse;
}

.hero-container{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:50px;
  align-items:center;
  position:relative;
  z-index:2;
}

.badge{
  display:inline-block;
  background:var(--green);
  color:white;
  padding:11px 18px;
  border-radius:50px;
  font-weight:900;
  margin-bottom:20px;
  box-shadow:0 10px 25px rgba(23,107,53,.25);
}

.hero h1{
  font-size:58px;
  line-height:1.05;
  color:var(--green-dark);
  margin-bottom:22px;
}

.hero h1 span{
  color:var(--orange);
}

.hero p{
  font-size:19px;
  line-height:1.8;
  color:#333;
  max-width:650px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:28px;
}

.btn{
  display:inline-block;
  padding:15px 25px;
  border-radius:15px;
  font-weight:900;
  box-shadow:0 12px 25px rgba(0,0,0,.14);
  transition:.3s;
}

.btn:hover{
  transform:translateY(-5px);
}

.btn-primary{
  background:var(--orange);
  color:white;
}

.btn-secondary{
  background:var(--green);
  color:white;
}

.hero-mini-info{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-mini-info div{
  background:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:14px 18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hero-mini-info strong{
  display:block;
  color:var(--green);
  font-size:18px;
}

.hero-mini-info span{
  font-size:13px;
  color:#555;
}

.image-card{
  position:relative;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  padding:20px;
  border-radius:34px;
  box-shadow:var(--shadow);
  animation:float 4s ease-in-out infinite;
}

.image-card img{
  height:480px;
  width:100%;
  object-fit:cover;
  border-radius:26px;
}

.floating-card{
  position:absolute;
  background:white;
  padding:15px 18px;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.15);
}

.floating-card strong{
  display:block;
  color:var(--green);
}

.floating-card span{
  font-size:13px;
  color:#555;
}

.card-top{
  top:35px;
  left:-25px;
}

.card-bottom{
  bottom:35px;
  right:-25px;
}

/* STATS */
.stats-section{
  margin-top:-55px;
  position:relative;
  z-index:5;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat-card{
  background:white;
  text-align:center;
  padding:30px 20px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.stat-card h3{
  font-size:38px;
  color:var(--orange);
}

.stat-card p{
  color:#555;
  font-weight:700;
  margin-top:8px;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:45px;
  align-items:center;
}

.about-image img{
  border-radius:32px;
  height:460px;
  width:100%;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.about-content h2,
.why-content h2{
  font-size:42px;
  color:var(--green);
  margin-bottom:18px;
  line-height:1.2;
}

.about-content p,
.why-content p{
  font-size:17px;
  line-height:1.8;
  color:#555;
  margin-bottom:14px;
}

.about-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}

.about-list div{
  background:white;
  padding:15px;
  border-radius:16px;
  font-weight:800;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

/* SERVICES */
.services{
  background:#f3fff0;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card,
.process-card,
.blog-card{
  background:white;
  padding:30px;
  border-radius:26px;
  box-shadow:var(--shadow);
  transition:.3s;
  border:2px solid transparent;
}

.service-card:hover,
.process-card:hover,
.blog-card:hover{
  transform:translateY(-10px);
  border-color:var(--orange);
}

.icon{
  font-size:43px;
  margin-bottom:16px;
}

.service-card h3,
.process-card h3,
.blog-card h3{
  font-size:24px;
  color:var(--green);
  margin-bottom:12px;
}

.service-card p,
.process-card p,
.blog-card p{
  color:#555;
  line-height:1.7;
}

/* PRODUCTS */
.products{
  background:#fff3d0;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.product-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  height:240px;
  width:100%;
  object-fit:cover;
}

.product-body{
  padding:25px;
}

.tag{
  display:inline-block;
  background:#eaffdf;
  color:var(--green);
  padding:7px 13px;
  border-radius:50px;
  font-size:13px;
  font-weight:900;
  margin-bottom:12px;
}

.product-body h3{
  color:var(--green);
  font-size:24px;
  margin-bottom:10px;
}

.product-body p{
  color:#555;
  line-height:1.7;
  margin-bottom:15px;
}

.price{
  font-size:26px;
  color:#ff5a00;
  font-weight:900;
  margin-bottom:18px;
}

.price small{
  font-size:15px;
  color:#777;
  text-decoration:line-through;
  margin-left:8px;
}

/* WHY */
.why{
  background:white;
}

.why-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:45px;
  align-items:center;
}

.why-list{
  display:grid;
  gap:20px;
}

.why-item{
  display:flex;
  gap:20px;
  background:#fffdf4;
  padding:25px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-item strong{
  font-size:32px;
  color:var(--orange);
}

.why-item h3{
  color:var(--green);
  margin-bottom:8px;
}

.why-item p{
  color:#555;
  line-height:1.6;
}

/* PROCESS */
.process{
  background:linear-gradient(135deg,#eaffdf,#fff3d0);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.process-card span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--orange);
  color:white;
  font-weight:900;
  font-size:22px;
  margin-bottom:18px;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.gallery-grid img{
  height:260px;
  width:100%;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--shadow);
  transition:.3s;
}

.gallery-grid img:hover{
  transform:scale(1.04);
}

/* TESTIMONIAL */
.testimonials{
  background:#123f24;
  color:white;
}

.testimonials .section-title h2{
  color:white;
}

.testimonial-slider{
  max-width:760px;
  margin:auto;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  padding:40px;
  border-radius:30px;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

.testimonial{
  display:none;
}

.testimonial.active{
  display:block;
  animation:fade .6s ease;
}

.testimonial p{
  font-size:22px;
  line-height:1.7;
  margin-bottom:20px;
}

.testimonial h4{
  color:var(--yellow);
}

/* BLOG */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.blog-card a{
  display:inline-block;
  margin-top:18px;
  color:var(--orange);
  font-weight:900;
}

/* FAQ */
.faq{
  background:#f3fff0;
}

.faq-list{
  max-width:850px;
  margin:auto;
  display:grid;
  gap:15px;
}

.faq-item{
  background:white;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  overflow:hidden;
}

.faq-question{
  width:100%;
  border:none;
  background:white;
  text-align:left;
  padding:20px;
  font-size:18px;
  font-weight:900;
  color:var(--green);
  cursor:pointer;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:.35s;
}

.faq-answer p{
  padding:0 20px 20px;
  color:#555;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:180px;
}

/* CTA */
.final-cta{
  background:white;
}

.cta-box{
  background:linear-gradient(135deg,var(--green),var(--green-light),var(--orange));
  color:white;
  text-align:center;
  padding:65px 25px;
  border-radius:36px;
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-size:42px;
  margin-bottom:14px;
}

.cta-box p{
  font-size:18px;
  margin-bottom:28px;
}

/* FOOTER */
.footer{
  background:var(--green-dark);
  color:white;
  padding-top:60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr 1fr .7fr;
  gap:30px;
}

.footer h3,
.footer h4{
  margin-bottom:15px;
  color:var(--yellow);
}

.footer p,
.footer a{
  display:block;
  color:rgba(255,255,255,.82);
  margin-bottom:10px;
  line-height:1.6;
}

.footer a:hover{
  color:var(--orange);
}

.footer-bottom{
  text-align:center;
  padding:22px;
  margin-top:35px;
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.8);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(45px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ANIMATION */
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
}

@keyframes pulse{
  from{transform:scale(1)}
  to{transform:scale(1.12)}
}

@keyframes fade{
  from{opacity:0;transform:translateY(15px)}
  to{opacity:1;transform:translateY(0)}
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-container,
  .about-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:46px;
  }

  .stats-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .card-grid,
  .product-grid,
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .navbar{
    height:70px;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    display:none;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    padding-top:110px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:17px;
  }

  .image-card img{
    height:340px;
  }

  .floating-card{
    position:static;
    margin-top:12px;
  }

  .stats-grid,
  .card-grid,
  .product-grid,
  .process-grid,
  .blog-grid,
  .gallery-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .about-list{
    grid-template-columns:1fr;
  }

  .section-title h2,
  .about-content h2,
  .why-content h2,
  .cta-box h2{
    font-size:31px;
  }

  .section{
    padding:70px 0;
  }

  .testimonial p{
    font-size:18px;
  }
}

@media(max-width:480px){
  .logo{
    font-size:19px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    text-align:center;
    width:100%;
  }

  .hero-mini-info{
    flex-direction:column;
  }

  .stat-card h3{
    font-size:32px;
  }

  .nav-menu a.active-link{
  color:var(--orange);
  }

/* =========================
   FLOATING SOCIAL
========================= */
.floating-social{
  position:fixed;
  right:22px;
  top:42%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:999;
  transition:.45s ease;
}

.social{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  transition:.3s;
}

.social:hover{
  transform:translateX(-8px) scale(1.08);
}

/* BRAND COLORS */
.fb{ background:#1877F2; }
.yt{ background:#FF0000; }
.ig{
  background:linear-gradient(
    135deg,
    #833AB4,
    #E1306C,
    #F77737
  );
}
.tt{ background:#111; }
.x{ background:#000; }

/* AUTO HIDE */
.floating-social.hide{
  right:-65px;
  opacity:.3;
}

.floating-social.hide:hover{
  right:22px;
  opacity:1;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:95px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:33px;
  z-index:999;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  animation:waPulse 1.8s infinite;
  transition:.3s;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

/* =========================
   SCROLL TOP
========================= */
.scroll-top-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    #176b35,
    #2faa5a
  );
  color:white;
  font-size:20px;
  cursor:pointer;
  z-index:998;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.35s;
}

.scroll-top-btn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.scroll-top-btn:hover{
  transform:scale(1.08);
  background:linear-gradient(
    135deg,
    #ff8c00,
    #ff6b00
  );
}

/* WA PULSE */
@keyframes waPulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.55);
  }
  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .floating-social{
    right:14px;
  }

  .social{
    width:42px;
    height:42px;
    font-size:17px;
  }

  .whatsapp-float{
    right:14px;
    width:56px;
    height:56px;
    font-size:28px;
    bottom:84px;
  }

  .scroll-top-btn{
    right:14px;
    width:50px;
    height:50px;
    font-size:18px;
  }

}
}