.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:100;
  padding:18px 0;
  transition:
    transform .35s ease,
    padding .25s ease,
    opacity .25s ease;
}

.hide-header{
  transform:translateY(-140%);
}

.header.scrolled{
  padding:10px 0;
}

.header.scrolled .navbar{
  background:rgba(23,51,33,.92);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.navbar{
  background:rgba(23,51,33,.72);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--cream);
  font-size:22px;
  font-weight:900;
  white-space:nowrap;
}

.logo img{
  width:54px;
  height:38px;
  object-fit:contain;
  background:white;
  border-radius:8px;
  padding:3px;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:26px;
  margin-left:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--cream);
  font-weight:700;
}

.nav a{
  position:relative;
  transition:.2s;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--orange-light);
  border-radius:999px;
  transition:.2s;
}

.nav a:hover{
  color:var(--orange-light);
}

.nav a:hover::after{
  width:100%;
}

.language-dropdown{
  position:relative;
}

.language-current{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:white;
  font-size:22px;
  cursor:pointer;
  transition:.2s;
}

.language-current:hover{
  background:rgba(255,255,255,.22);
}

.language-menu{
  position:absolute;
  top:52px;
  right:0;
  min-width:150px;
  display:none;
  flex-direction:column;
  gap:6px;
  padding:10px;
  background:#fffdf7;
  border:1px solid rgba(47,107,61,.12);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  z-index:200;
}

.language-menu.active{
  display:flex;
}

.lang-btn{
  width:100%;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  color:var(--green-dark);
  cursor:pointer;
  text-align:left;
}

.lang-btn:hover,
.lang-btn.active{
  background:#fff0d6;
  color:var(--orange);
}

.mobile-menu-btn{
  display:none;
  width:42px;
  height:42px;
  background:rgba(255,255,255,.12);
  border:none;
  border-radius:50%;
  color:white;
  font-size:24px;
  cursor:pointer;
}

.hero{
  min-height:100svh;
  background-image:url('../images/hero.webp');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;

  position:relative;

  display:flex;
  align-items:center;

  overflow:hidden;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.68),
    rgba(0,0,0,.58),
    rgba(0,0,0,.78)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  color:white;
  width:100%;
}

.hero h1{
  font-size:clamp(44px, 6vw, 88px);
  line-height:.95;
  margin:20px 0;
  letter-spacing:-4px;
  max-width:850px;
}

.hero p{
  max-width:650px;
  line-height:1.9;
  opacity:.88;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:34px;
}

.banner{
  padding:60px 0;
  background:var(--cream);
}

.banner-box{
  background:linear-gradient(
    135deg,
    var(--green),
    var(--green-dark)
  );
  color:white;
  border-radius:34px;
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  box-shadow:0 24px 60px rgba(47,107,61,.18);
}

.banner-box h2{
  font-size:clamp(30px, 4vw, 42px);
  margin:18px 0 10px;
  letter-spacing:-2px;
}

.banner-box p{
  color:rgba(255,255,255,.75);
  line-height:1.8;
  max-width:600px;
}

.stats{
  background:var(--green);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  padding:34px;
  color:white;
  backdrop-filter:blur(10px);
}

.stat-card h3{
  font-size:46px;
  color:var(--orange-light);
  margin-bottom:10px;
  letter-spacing:-2px;
}

.stat-card p{
  opacity:.82;
}

.about{
  background:var(--cream);
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about h2,
.section-top h2,
.process h2,
.cta-box h2{
  font-size:clamp(38px, 5vw, 58px);
  line-height:1;
  letter-spacing:-3px;
}

.about h2{
  margin:22px 0;
}

.about p{
  line-height:1.9;
  color:var(--muted);
  font-size:17px;
}

.about-image img{
  border-radius:34px;
  box-shadow:0 24px 60px rgba(0,0,0,.08);
}

.products{
  background:var(--cream-dark);
}

.section-top{
  margin-bottom:44px;
}

.section-top h2{
  margin-top:18px;
  color:var(--green-dark);
}

.section-top.centered{
  text-align:center;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.section-top.centered p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.product-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:30px;
  padding:34px;
  transition:.25s;
  box-shadow:var(--shadow);
}

.product-card:hover{
  transform:translateY(-6px);
}

.product-card.featured{
  border:2px solid var(--orange);
  background:#fff4df;
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  margin-bottom:24px;
  border-radius:20px;
}

.product-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:var(--green);
  color:var(--cream);
  display:grid;
  place-items:center;
  font-size:30px;
  font-weight:900;
  margin-bottom:26px;
}

.product-card.featured .product-icon{
  background:var(--orange);
}

.product-card h3{
  font-size:26px;
  margin-bottom:14px;
  color:var(--green-dark);
}

.product-card p{
  color:var(--muted);
  line-height:1.8;
}

.why-us{
  background:var(--cream);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.why-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow);
}

.why-card span{
  color:var(--orange);
  font-weight:900;
  font-size:18px;
}

.why-card h3{
  margin:18px 0 12px;
  font-size:26px;
  color:var(--green-dark);
}

.why-card p{
  color:var(--muted);
  line-height:1.8;
}

.news{
  background:var(--cream);
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.news-card{
  background:var(--white);
  border-radius:30px;
  padding:30px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:.25s;
}

.news-card:hover{
  transform:translateY(-6px);
}

.news-card h3{
  margin:22px 0 12px;
  font-size:26px;
  color:var(--green-dark);
}

.news-card p{
  color:var(--muted);
  line-height:1.8;
}

.process{
  background:var(--green-dark);
  color:white;
}

.process-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.process h2{
  margin:22px 0;
}

.process p{
  color:rgba(255,255,255,.72);
  line-height:1.9;
}

.process-list{
  display:grid;
  gap:16px;
}

.process-item{
  display:flex;
  gap:20px;
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}

.process-item strong{
  color:var(--orange-light);
  font-size:24px;
}

.process-item h3{
  margin-bottom:8px;
}

.faq{
  background:var(--cream-dark);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.faq-card{
  background:var(--white);
  border-radius:28px;
  padding:30px;
  border:1px solid var(--border);
}

.faq-card h3{
  color:var(--green-dark);
  margin-bottom:12px;
  font-size:22px;
}

.faq-card p{
  color:var(--muted);
  line-height:1.8;
}

.cta{
  background:var(--green-dark);
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:white;
}

.cta-box h2{
  margin:20px 0;
}

.cta-box p{
  max-width:650px;
  line-height:1.9;
  color:rgba(255,255,255,.74);
}

.footer{
  background:#102718;
  color:var(--cream);
  padding:70px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:40px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:900;
  margin-bottom:18px;
}

.footer-logo img{
  width:54px;
  height:38px;
  object-fit:contain;
  background:white;
  border-radius:8px;
  padding:3px;
}

.footer p{
  max-width:420px;
  color:rgba(255,255,255,.68);
  line-height:1.8;
}

.footer h4{
  color:white;
  margin-bottom:16px;
}

.footer a,
.footer span{
  display:block;
  color:rgba(255,255,255,.68);
  margin-bottom:10px;
}

.footer a:hover{
  color:var(--orange-light);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:24px;
  color:rgba(255,255,255,.55);
  font-size:14px;
}

.halal-badge{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
  padding:14px 18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  width:max-content;
  max-width:100%;
}

.halal-badge img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.halal-badge span{
  color:rgba(255,255,255,.78);
  font-size:14px;
  font-weight:600;
}

.contact-link{
  display:flex !important;
  align-items:center;
  gap:10px;
  width:max-content;
  max-width:100%;
  padding:10px 14px;
  margin-top:10px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:.2s;
}

.contact-link:hover{
  background:rgba(255,255,255,.10);
  transform:translateX(4px);
  color:var(--orange-light);
}