@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root{
  --green:#123d28;
  --green2:#0c281b;
  --soft-green:#e8f0ea;
  --cream:#f7f4ee;
  --white:#ffffff;
  --text:#18221b;
  --muted:#667168;
  --gold:#c49a57;
  --shadow:0 22px 70px rgba(18,61,40,.18);
  --radius:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}
body[dir="rtl"]{
  direction:rtl;
  font-family:Tahoma,Inter,Arial,sans-serif;
}
body[dir="rtl"] h1,body[dir="rtl"] h2,body[dir="rtl"] h3{font-family:Tahoma,Arial,sans-serif}

.cursor-glow{
  position:fixed;
  width:360px;height:360px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(46,125,80,.18), transparent 65%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:0;
  transition:.08s linear;
}

.header{
  position:fixed;
  top:18px;left:50%;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 32px));
  height:82px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.55);
  backdrop-filter:blur(18px);
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 18px;
  z-index:50;
  box-shadow:0 16px 50px rgba(0,0,0,.08);
}
.logo-wrap img{
  width:210px;
  max-height:58px;
  object-fit:contain;
  display:block;
}
.desktop-nav{
  display:flex;
  gap:24px;
  align-items:center;
}
.desktop-nav a,.mobile-menu a{
  color:var(--green2);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.nav-actions{display:flex;gap:10px;align-items:center}
.lang,.menu{
  border:1px solid rgba(18,61,40,.14);
  background:rgba(255,255,255,.7);
  color:var(--green);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.menu{font-size:22px;line-height:1}
.mobile-menu{
  position:absolute;
  top:92px;
  left:0;right:0;
  display:none;
  flex-direction:column;
  gap:16px;
  background:#fff;
  padding:24px;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.mobile-menu.open{display:flex}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:150px max(28px,8vw) 105px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('assets/hero-bags.jpg') center/cover no-repeat;
  transform:scale(1.08);
  animation:slowZoom 18s ease-in-out infinite alternate;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,42,27,.92), rgba(27,88,55,.56), rgba(255,255,255,.16));
}
.hero-content{
  position:relative;
  max-width:880px;
  color:#fff;
  z-index:1;
}
.pill{
  display:inline-flex;
  padding:12px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:var(--green);
  font-weight:900;
  margin-bottom:28px;
  backdrop-filter:blur(12px);
}
h1,h2,h3{font-family:"Playfair Display",Georgia,serif}
.hero h1{
  font-size:clamp(44px,7vw,90px);
  line-height:.96;
  margin:0 0 26px;
  max-width:980px;
  text-shadow:0 10px 35px rgba(0,0,0,.25);
}
.hero p{
  font-size:clamp(18px,2vw,25px);
  line-height:1.55;
  max-width:850px;
  font-weight:800;
}
.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  padding:18px 30px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  transition:.25s;
}
.btn:hover{transform:translateY(-4px)}
.primary{background:#fff;color:var(--green)}
.secondary{border:2px solid rgba(255,255,255,.65);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}
.scroll-indicator{
  position:absolute;
  left:50%;
  bottom:32px;
  width:34px;height:58px;
  border:2px solid rgba(255,255,255,.8);
  border-radius:999px;
  z-index:2;
}
.scroll-indicator span{
  position:absolute;
  top:9px;left:50%;
  width:6px;height:10px;
  background:#fff;
  border-radius:999px;
  transform:translateX(-50%);
  animation:scrollDot 1.5s infinite;
}

.section{
  padding:105px max(24px,8vw);
}
.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 58px;
}
.section-head h2{
  font-size:clamp(34px,4.6vw,58px);
  margin:0 0 18px;
  color:var(--green2);
}
.section-head p{
  font-size:20px;
  line-height:1.7;
  color:var(--muted);
}
.mission-card{
  max-width:860px;
  margin:auto;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(18,61,40,.08);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  padding:46px;
  text-align:center;
}
.icon{
  width:70px;height:70px;
  margin:0 auto 20px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:var(--soft-green);
  font-size:34px;
  color:var(--green);
}
.mission-card h3{font-size:30px;margin:8px 0}
.mission-card p{font-size:18px;line-height:1.7;color:var(--muted)}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.product-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.35s;
}
.product-card:hover{transform:translateY(-10px) scale(1.01)}
.product-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}
.product-card div{padding:32px}
.product-card h3{font-size:30px;margin:0 0 14px}
.product-card p{color:var(--muted);line-height:1.65;font-size:17px}

.industries{background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(232,240,234,.6))}
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.industry{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(18,61,40,.07);
  border-radius:var(--radius);
  padding:38px 22px;
  text-align:center;
  box-shadow:0 15px 45px rgba(0,0,0,.06);
  transition:.3s;
}
.industry:hover{transform:translateY(-8px);background:#fff}
.industry span{
  width:68px;height:68px;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  border-radius:20px;
  background:var(--soft-green);
  font-size:30px;
}
.industry h3{font-size:24px;margin:0 0 10px}
.industry p{color:var(--muted);margin:0}

.why{
  background:linear-gradient(140deg,#123d28,#22683f);
  color:#fff;
  padding:105px max(24px,8vw);
}
.light h2,.light p{color:#fff}
.why-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px 70px;
}
.why-item span{
  width:68px;height:68px;
  display:grid;
  place-items:center;
  border-radius:19px;
  background:rgba(255,255,255,.14);
  font-size:31px;
  margin-bottom:20px;
}
.why-item h3{font-size:26px;margin:0 0 12px}
.why-item p{font-size:17px;line-height:1.65;color:rgba(255,255,255,.86)}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:1120px;
  margin:auto;
}
.gallery-grid img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  transition:.35s;
}
.gallery-grid img:hover{transform:scale(1.025)}

.quote-section{
  background:linear-gradient(180deg,rgba(255,255,255,.45),rgba(232,240,234,.55));
}
.quote-images{
  max-width:920px;
  margin:0 auto 74px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.quote-images img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
}
.quote-form,.contact-box{
  max-width:1000px;
  margin:0 auto 42px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(18,61,40,.08);
  border-radius:var(--radius);
  padding:42px;
  box-shadow:0 20px 70px rgba(0,0,0,.08);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px 26px;
}
label{display:block;font-weight:700;color:var(--text)}
label span{display:block;margin-bottom:10px}
input,select,textarea{
  width:100%;
  border:1px solid rgba(18,61,40,.25);
  background:rgba(255,255,255,.9);
  padding:17px 18px;
  border-radius:12px;
  font:inherit;
  outline:none;
}
textarea{min-height:130px;resize:vertical}
.quote-form > label{margin-top:22px}
.quote-form button{
  width:100%;
  margin-top:24px;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg,#17422d,#0f2d20);
  color:#fff;
  padding:18px;
  font-weight:900;
  font-size:17px;
  cursor:pointer;
  transition:.25s;
}
.quote-form button:hover{transform:translateY(-3px);box-shadow:0 18px 35px rgba(18,61,40,.25)}
.hidden{display:none}
.contact-box h3{font-size:30px;margin-top:0}
.contact-box p{font-size:17px;line-height:1.7}
.contact-box a{color:var(--green);font-weight:800;text-decoration:none}

.footer{
  background:linear-gradient(140deg,#123d28,#1e6a3f);
  color:#fff;
  padding:72px max(24px,8vw) 36px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:44px;
}
.footer h2,.footer h3{margin-top:0}
.footer p{color:rgba(255,255,255,.85);line-height:1.7}
.footer a{
  color:#fff;
  text-decoration:none;
  display:block;
  margin:12px 0;
  font-weight:700;
}
.copyright{
  grid-column:1/-1;
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:26px;
  text-align:center;
  color:rgba(255,255,255,.8)
}

.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .75s ease, transform .75s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@keyframes slowZoom{
  from{transform:scale(1.05)}
  to{transform:scale(1.14)}
}
@keyframes scrollDot{
  0%{opacity:1;transform:translate(-50%,0)}
  100%{opacity:0;transform:translate(-50%,22px)}
}

@media(max-width:900px){
  .desktop-nav{display:none}
  .header{top:10px;width:calc(100% - 18px)}
  .logo-wrap img{width:180px}
  .hero{padding:140px 28px 90px}
  .product-grid,.industry-grid,.why-grid,.gallery-grid,.quote-images,.form-grid,.footer{
    grid-template-columns:1fr;
  }
  .gallery-grid img{height:310px}
  .hero h1{font-size:46px}
  .section{padding:82px 22px}
  .quote-form,.contact-box{padding:26px}
}

@media(min-width:901px){
  .menu{display:none}
}
