:root{
  --green-dark:#103b26;
  --green:#1f6f43;
  --green-light:#58a76b;
  --gold:#d8a83b;
  --gold-soft:#f3d98b;
  --white:#ffffff;
  --text:#243126;
  --muted:#6c7b6f;
  --bg:#f8fbf6;
  --card:#ffffff;
  --shadow:0 15px 40px rgba(0,0,0,0.12);
  --radius:22px;
  --transition:all .35s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

img, video{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

.section{
  padding:90px 0;
}

.center{
  text-align:center;
}

.tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(216,168,59,.12);
  color:var(--green);
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.section-head h2{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.2;
  font-family:'Playfair Display', serif;
  color:var(--green-dark);
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
  transition:var(--transition);
  cursor:pointer;
}

.btn-sm{
  padding:11px 18px;
  font-size:14px;
}

.btn-full{
  width:100%;
}

.btn-gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#1c1c1c;
  box-shadow:0 10px 24px rgba(216,168,59,.28);
}

.btn-gold:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.5);
  color:var(--white);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

.btn-outline:hover{
  background:rgba(255,255,255,.12);
}

.mt-10{
  margin-top:10px;
}

/* loader */
#pageLoader{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,#0f341f,#1e6b40);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.loader-logo{
  font-size:2rem;
  font-weight:800;
  color:#fff;
  letter-spacing:.5px;
}

.loader-logo span{
  color:var(--gold-soft);
}

/* header */
.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  transition:var(--transition);
}

.main-header.scrolled{
  background:rgba(16,59,38,.88);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 30px rgba(0,0,0,.15);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.brand{
  font-weight:800;
  font-size:1.5rem;
}

.brand-main{
  color:#fff;
}

.brand-accent{
  color:var(--gold-soft);
}

.desktop-nav{
  display:flex;
  gap:24px;
}

.nav-link{
  position:relative;
  color:#fff;
  font-weight:500;
  opacity:.88;
}

.nav-link:hover,
.nav-link.active{
  opacity:1;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--gold-soft);
  transition:var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  background:rgba(255,255,255,.08);
  border-radius:12px;
  cursor:pointer;
  padding:10px;
}

.menu-toggle span{
  display:block;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:2px;
}

.mobile-nav{
  display:none;
  background:#123722;
  padding:18px 4%;
  border-top:1px solid rgba(255,255,255,.08);
}

.mobile-nav.active{
  display:block;
}

.mobile-nav .m-link{
  display:block;
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
}

/* hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
}

.hero-video,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  background:
    linear-gradient(120deg, rgba(7,28,16,.82), rgba(10,48,26,.40)),
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.12));
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:110px;
}

.hero-badge{
  display:inline-block;
  padding:10px 16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  margin-bottom:18px;
  backdrop-filter:blur(10px);
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:clamp(2.7rem, 7vw, 5.7rem);
  line-height:1.04;
  margin-bottom:18px;
}

.hero h1 span{
  color:var(--gold-soft);
}

.hero p{
  max-width:680px;
  font-size:1.05rem;
  line-height:1.85;
  color:rgba(255,255,255,.88);
  margin-bottom:28px;
}

.hero-btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:38px;
}

.hero-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:880px;
}

.glass-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  padding:20px;
  border-radius:22px;
  backdrop-filter:blur(12px);
  animation:floatY 4s ease-in-out infinite;
}

.glass-card:nth-child(2){ animation-delay:.5s; }
.glass-card:nth-child(3){ animation-delay:1s; }

.glass-card strong{
  display:block;
  font-size:1.3rem;
  margin-bottom:6px;
}

.glass-card span{
  color:rgba(255,255,255,.82);
  font-size:.95rem;
}

.scroll-down{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:2;
  color:#fff;
  font-size:.9rem;
  letter-spacing:1px;
  animation:bounce 2s infinite;
}

/* stats */
.stats{
  background:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.stat-box{
  background:linear-gradient(180deg,#fff,#f4fbf1);
  padding:34px 20px;
  border-radius:var(--radius);
  text-align:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(31,111,67,.08);
}

.stat-box h3{
  font-size:2rem;
  color:var(--green-dark);
  margin-bottom:10px;
}

.stat-box p{
  color:var(--muted);
}

/* about */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.about-image{
  position:relative;
}

.about-image img{
  border-radius:28px;
  min-height:500px;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.floating-badge{
  position:absolute;
  left:20px;
  bottom:20px;
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#1c1c1c;
  font-weight:700;
  padding:12px 18px;
  border-radius:999px;
}

.about-content p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:16px;
}

.check-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:24px;
}

.check-item{
  position:relative;
  background:#fff;
  padding:16px 16px 16px 44px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.check-item::before{
  content:"✓";
  position:absolute;
  left:16px;
  top:14px;
  width:22px;
  height:22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:#fff;
  font-size:12px;
}

/* products */
.product-filter{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 40px;
}

.filter-btn{
  border:none;
  background:#edf6ea;
  color:var(--green-dark);
  padding:12px 20px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:var(--transition);
}

.filter-btn.active,
.filter-btn:hover{
  background:linear-gradient(135deg,var(--green),var(--green-light));
  color:#fff;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.product-card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-img{
  height:260px;
  overflow:hidden;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.product-card:hover .product-img img{
  transform:scale(1.08);
}

.product-info{
  padding:22px;
}

.pill{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:700;
  color:var(--green);
  background:rgba(31,111,67,.09);
  padding:8px 12px;
  border-radius:999px;
}

.product-info h3{
  margin-bottom:10px;
  color:var(--green-dark);
}

.product-info p{
  color:var(--muted);
  line-height:1.75;
}

/* process */
.process{
  background:linear-gradient(180deg,#f4faef,#fff);
}

.process-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.process-left p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:24px;
}

.timeline{
  display:grid;
  gap:14px;
}

.step{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:#fff;
  padding:16px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.step span{
  min-width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--green),var(--green-light));
  color:#fff;
  font-weight:700;
}

.step p{
  margin:8px 0 0;
  color:var(--text);
  line-height:1.6;
}

.process-right img{
  border-radius:28px;
  box-shadow:var(--shadow);
  min-height:600px;
  object-fit:cover;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.info-strip div{
  background:#fff;
  text-align:center;
  padding:18px 12px;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.info-strip strong{
  display:block;
  color:var(--green-dark);
}

.info-strip span{
  font-size:.9rem;
  color:var(--muted);
}

/* varieties */
.variety-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.variety-card{
  background:linear-gradient(180deg,#fff,#f5fbf2);
  padding:28px 22px;
  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(31,111,67,.08);
  transition:var(--transition);
}

.variety-card:hover{
  transform:translateY(-6px);
}

.variety-card h3{
  margin-bottom:10px;
  color:var(--green-dark);
}

.variety-card p{
  color:var(--muted);
  line-height:1.7;
}

/* gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  box-shadow:var(--shadow);
  min-height:260px;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

/* enquiry */
.enquiry-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.enquiry-left p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:18px;
}

.plain-list li{
  padding:10px 0;
  border-bottom:1px dashed rgba(16,59,38,.15);
  color:var(--green-dark);
  font-weight:500;
}

.enquiry-form{
  background:#fff;
  padding:28px;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
  width:100%;
  border:1px solid rgba(16,59,38,.12);
  background:#f9fcf8;
  border-radius:16px;
  padding:14px 16px;
  font-family:inherit;
  outline:none;
}

.enquiry-form textarea{
  min-height:140px;
  resize:vertical;
  margin-bottom:14px;
}

.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.form-note{
  margin-top:12px;
  color:var(--muted);
  font-size:.9rem;
}

/* contact */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:26px;
}

.contact-card{
  background:#fff;
  padding:26px 20px;
  text-align:center;
  border-radius:22px;
  box-shadow:var(--shadow);
}

.contact-card h3{
  color:var(--green-dark);
  margin-bottom:8px;
}

.contact-card p{
  color:var(--muted);
  line-height:1.7;
}

.map-box{
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
}

/* footer */
.main-footer{
  background:#0e2d1c;
  color:#fff;
  padding:60px 0 35px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:24px;
}

.main-footer h3,
.main-footer h4{
  margin-bottom:14px;
}

.main-footer p,
.main-footer li{
  color:rgba(255,255,255,.78);
  line-height:1.9;
}

.main-footer a:hover{
  color:var(--gold-soft);
}

/* lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:20px;
}

.lightbox img{
  max-width:90vw;
  max-height:85vh;
  border-radius:18px;
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:22px;
  color:#fff;
  font-size:34px;
  cursor:pointer;
}

/* floating whatsapp */
.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  background:#25D366;
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:0 16px 35px rgba(37,211,102,.35);
  font-weight:700;
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* keyframes */
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

@keyframes bounce{
  0%,20%,50%,80%,100%{ transform:translate(-50%,0); }
  40%{ transform:translate(-50%,-10px); }
  60%{ transform:translate(-50%,-5px); }
}

/* responsive */
@media (max-width: 1100px){
  .hero-cards,
  .stats-grid,
  .variety-grid,
  .gallery-grid,
  .contact-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid,
  .process-grid,
  .enquiry-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .desktop-nav,
  .nav-actions .btn{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    min-height:94vh;
  }

  .hero h1{
    font-size:2.7rem;
  }

  .hero p{
    font-size:.98rem;
  }

  .hero-cards,
  .stats-grid,
  .product-grid,
  .variety-grid,
  .gallery-grid,
  .contact-grid,
  .form-row,
  .check-grid,
  .info-strip{
    grid-template-columns:1fr;
  }

  .section{
    padding:70px 0;
  }

  .product-img{
    height:230px;
  }

  .process-right img,
  .about-image img{
    min-height:auto;
  }
}

@media (max-width: 480px){
  .hero-btns{
    flex-direction:column;
    align-items:flex-start;
  }

  .btn{
    width:100%;
  }

  .floating-wa{
    right:12px;
    bottom:12px;
    padding:12px 16px;
    font-size:14px;
  }
}