/* =====================================================================
   SROUR HALAWA & TAHINI — MAIN STYLESHEET (ENGLISH / LTR)
   Design System + Home Page
   Author: Full-stack build
   ===================================================================== */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS (CSS Variables)
   ---------------------------------------------------------------- */
:root {
  /* Brand colors — extracted from logo */
  --green:        #1F7A3D;   /* primary */
  --green-dark:   #0F3D22;   /* footer / dark sections */
  --green-deep:   #14522A;
  --green-soft:   #E7F1EA;   /* light green tint */
  --red:          #E23A2E;   /* logo swoosh accent */
  --gold:         #C9A227;   /* luxury detail */
  --gold-soft:    #EBD9A6;

  /* Neutrals */
  --beige:        #F5F0E8;   /* section backgrounds */
  --beige-2:      #FAF7F1;
  --ink:          #14211A;   /* headings */
  --body:         #4A5750;   /* body text */
  --muted:        #8A9690;
  --line:         #E6E2D9;
  --white:        #FFFFFF;

  /* Typography */
  --font-body: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;

  /* Scale (fluid) */
  --h1: clamp(2.4rem, 1.6rem + 3.5vw, 4rem);
  --h2: clamp(1.8rem, 1.3rem + 2vw, 2.75rem);
  --h3: clamp(1.25rem, 1rem + 1vw, 1.6rem);

  /* Spacing */
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
  --radius:    18px;
  --radius-sm: 12px;
  --radius-pill: 100px;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(15, 61, 34, .06);
  --shadow:    0 12px 34px rgba(15, 61, 34, .10);
  --shadow-lg: 0 24px 60px rgba(15, 61, 34, .16);
  --trans:     .4s cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------------------------------------------
   2. BASE / RESET
   ---------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
}

p { margin: 0 0 1rem; }

a { color: var(--green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

section { position: relative; }

.container { max-width: 1240px; }

::selection { background: var(--green); color: #fff; }

/* Utility */
.section-pad { padding-block: var(--section-y); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-title { font-size: var(--h2); margin-bottom: 1.2rem; }
.text-green { color: var(--green) !important; }
.bg-beige   { background: var(--beige); }
.bg-beige-2 { background: var(--beige-2); }

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--trans);
  cursor: pointer;
  line-height: 1;
}
.btn .btn-ico {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: transform var(--trans);
}
.btn:hover .btn-ico { transform: translateX(4px); }

.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
}
.btn-light-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-light-outline:hover { background: #fff; color: var(--green-dark); transform: translateY(-3px); }
.btn-white { background:#fff; color: var(--green-dark); border-color:#fff; }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ----------------------------------------------------------------
   4. HEADER / NAVBAR
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding: .5rem 0;
  transition: all var(--trans);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: .25rem 0;
}
.navbar { padding: 0; }
.nav-logo img { height: 62px; width: auto; transition: height var(--trans); }
.site-header.scrolled .nav-logo img { height: 52px; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  padding: .4rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--trans);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .4rem .9rem;
  font-size: .85rem;
}
.lang-switch:hover { border-color: var(--green); color: var(--green); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform var(--trans), opacity .3s;
  margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(85vw, 340px);
  background: #fff;
  z-index: 1040;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--trans);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--green); padding-inline-start: .5rem; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(15,33,26,.5);
  z-index: 1035;
  opacity: 0; visibility: hidden;
  transition: opacity var(--trans);
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------
   5. HERO SLIDER
   ---------------------------------------------------------------- */
.hero { position: relative; }
.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.6) 42%, rgba(255,255,255,0) 70%);
}
.hero-slide.dark::before {
  background: linear-gradient(100deg, rgba(15,33,26,.85) 0%, rgba(15,33,26,.45) 55%, rgba(15,33,26,.1) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 620px; padding-block: 7rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600; font-size: .8rem;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-size: var(--h1);
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: -.02em;
}
.hero-slide.dark .hero-title,
.hero-slide.dark .hero-text { color: #fff; }
.hero-text { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Slider controls */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}
.hero-arrow:hover { background: var(--green); color: #fff; }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

.hero-dots {
  position: absolute; z-index: 5;
  bottom: 6.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem;
}
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%;
  border: none; background: rgba(31,122,61,.35);
  cursor: pointer; transition: all var(--trans);
  padding: 0;
}
.hero-dots button.active { background: var(--green); width: 30px; border-radius: 10px; }

/* Slide transition (fade) */
.hero-track { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: flex; animation: heroFade .8s ease; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* Video slide play button */
.hero-play {
  width: 84px; height: 84px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  color: #fff; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-bottom: 1.5rem;
  position: relative;
}
.hero-play::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* ----------------------------------------------------------------
   6. TICKER / MARQUEE
   ---------------------------------------------------------------- */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: .9rem 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .7rem;
  color: #fff; font-weight: 600; font-size: 1.05rem;
  white-space: nowrap;
}
.ticker-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
/* Green-on-white Srour logo variant used in the ticker */
.ticker-logo { height: 34px; width: auto; flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------
   7. ABOUT / OUR STORY
   ---------------------------------------------------------------- */
.about-img-wrap { position: relative; }
.about-img-wrap img.main { border-radius: var(--radius); box-shadow: var(--shadow); }
.cert-badges {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 1.5rem;
}
.cert-badges img { height: 70px; width: auto; }
.about-badge-float {
  position: absolute;
  bottom: -28px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 50%;
  width: 96px; height: 96px; padding: 10px;
  box-shadow: var(--shadow); display: grid; place-items: center;
}

/* ----------------------------------------------------------------
   8. PRODUCTS
   ---------------------------------------------------------------- */
.product-tabs { display: flex; gap: .6rem; }
.product-tabs .tab {
  border: none; background: transparent;
  font-weight: 600; font-size: .9rem; color: var(--body);
  padding: .55rem 1.2rem; border-radius: var(--radius-pill);
  cursor: pointer; transition: all var(--trans);
}
.product-tabs .tab.active { background: var(--green); color: #fff; }

.product-card {
  background: #fff;
  border-radius: var(--radius);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
  padding-bottom: 1.1rem;   /* room for the name so it never gets clipped */
  position: relative;        /* anchor for the stretched click link */
}
.product-card .product-name { color: var(--ink); }
a.product-card, a.product-card:hover { text-decoration: none; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  color: var(--green); display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px);
  transition: all var(--trans); cursor: pointer;
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-cat {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 1rem;
  padding-inline: .35rem;
}
.product-name { font-size: 1.05rem; margin: .25rem 0 0; padding-inline: .35rem; }

/* ----------------------------------------------------------------
   9. MEDIA GALLERY STRIP
   ---------------------------------------------------------------- */
.media-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.media-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.media-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.media-item:hover img { transform: scale(1.1); }
.media-item::after {
  content: '\f00e'; /* magnifying-glass-plus — image, not video */
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(31,122,61,.9); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transform: scale(.6);
  transition: all var(--trans);
}
.media-item:hover::after { opacity: 1; transform: scale(1); }

/* ----------------------------------------------------------------
   10. STATS / NUMBERS
   ---------------------------------------------------------------- */
.stats { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 1.8rem + 3vw, 3.8rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label { color: var(--body); font-weight: 500; margin-top: .5rem; }

/* ----------------------------------------------------------------
   11. PARTNERS
   ---------------------------------------------------------------- */
.partner-logo {
  background: #fff;
  border: none;
  border-radius: var(--radius-sm);
  height: 140px;
  display: grid; place-items: center;
  padding: 1rem 1.4rem;
  transition: all var(--trans);
}
/* Full-colour logos, large enough to fill the tile — no grayscale, no fade */
.partner-logo img { max-height: 96px; max-width: 100%; width: auto; transition: transform var(--trans); }
.partner-logo:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.partner-logo:hover img { transform: scale(1.05); }

/* ----------------------------------------------------------------
   12. FEATURE BANNER
   ---------------------------------------------------------------- */
.feature-banner {
  position: relative;
  background-size: cover; background-position: center;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
}
.feature-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,33,26,.9) 0%, rgba(15,33,26,.55) 55%, rgba(15,33,26,.15) 100%);
}
.feature-banner .container { position: relative; z-index: 2; }
.feature-banner h2 { color: #fff; font-size: var(--h2); }
.feature-banner p { color: rgba(255,255,255,.85); max-width: 460px; }

/* ----------------------------------------------------------------
   13. NEWS CARDS
   ---------------------------------------------------------------- */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16/10; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-media img { transform: scale(1.07); }
.news-body { padding: 1.5rem; }
.news-meta { display: flex; gap: .6rem; align-items: center; margin-bottom: .8rem; }
.news-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--green); background: var(--green-soft);
  padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.news-date { font-size: .8rem; color: var(--muted); }
.news-title { font-size: 1.1rem; margin-bottom: .6rem; }
.news-title a { color: var(--ink); }
.news-title a:hover { color: var(--green); }
.news-more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; margin-top: .4rem;
}
.news-more:hover { gap: .8rem; }

/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
}
.site-footer h5 {
  color: #fff; font-size: .95rem; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.footer-logo img { height: 68px; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; padding-inline-start: .3rem; }
.footer-links li { margin-bottom: .7rem; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: 1rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: .3rem; }
.footer-map iframe, .footer-map img { border-radius: var(--radius-sm); width: 100%; border: 0; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center;
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 3rem; padding: 1.5rem 0;
  font-size: .85rem;
}
.footer-bottom a { margin-inline-start: 1.5rem; }

/* ----------------------------------------------------------------
   15. VIDEO MODAL
   ---------------------------------------------------------------- */
.video-modal {
  position: fixed; inset: 0; z-index: 1080;
  background: rgba(10,20,14,.9);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--trans);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner {
  position: relative; width: min(900px, 100%);
  aspect-ratio: 16/9;
  transform: scale(.9); transition: transform var(--trans);
}
.video-modal.open .video-modal-inner { transform: scale(1); }
.video-modal-inner video,
.video-modal-inner iframe {
  width: 100%; height: 100%; border-radius: var(--radius); border: 0;
  background: #000;
}
/* Image lightbox mode — let the box fit the picture instead of forcing 16/9 */
.video-modal-inner.img-mode { aspect-ratio: auto; width: auto; max-width: min(1000px, 100%); }
.lightbox-img { display: block; max-width: 100%; max-height: 85vh; width: auto; height: auto; margin: 0 auto; border-radius: var(--radius); }
.video-close {
  position: absolute; top: -48px; right: 0;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: #fff; color: var(--ink);
  font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center;
  transition: transform var(--trans);
}
.video-close:hover { transform: rotate(90deg); }

/* ----------------------------------------------------------------
   16. BACK TO TOP
   ---------------------------------------------------------------- */
.to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1020;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--trans); box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--green-dark); }

/* ----------------------------------------------------------------
   17. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .media-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .main-nav, .nav-actions .desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding-block: 6rem; max-width: 100%; }
  .hero-slide { min-height: 90vh; }
}
@media (max-width: 768px) {
  :root { --section-y: 3.5rem; }
  .partner-logo { height: 110px; padding: .8rem; }
  .partner-logo img { max-height: 70px; }
  .hero-dots { bottom: 4.5rem; }
  .footer-bottom { text-align: center; }
  .footer-bottom a { display: inline-block; margin: .3rem .7rem 0; }
}
@media (max-width: 480px) {
  .media-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow.prev { left: .5rem; } .hero-arrow.next { right: .5rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cert-badges { justify-content: center; }
}

/* ================================================================
   INNER PAGES — shared components (About, etc.)
   ================================================================ */

/* Header made readable when it sits over a dark page hero (inner pages) */
.site-header.header-light .main-nav a,
.site-header.header-light .lang-switch { color: #fff; }
.site-header.header-light .lang-switch { border-color: rgba(255,255,255,.55); }
.site-header.header-light .main-nav a.active { color: var(--gold-soft); }
.site-header.header-light .main-nav a::after,
.site-header.header-light .main-nav a.active::after { background: var(--gold-soft); }
.site-header.header-light .nav-toggle span { background: #fff; }
/* Once scrolled the bar turns white, so text goes back to dark */
.site-header.header-light.scrolled .main-nav a,
.site-header.header-light.scrolled .lang-switch { color: var(--ink); }
.site-header.header-light.scrolled .main-nav a.active { color: var(--green); }
.site-header.header-light.scrolled .main-nav a::after { background: var(--green); }
.site-header.header-light.scrolled .lang-switch { border-color: var(--line); }
.site-header.header-light.scrolled .nav-toggle span { background: var(--ink); }

/* Page hero / breadcrumb banner */
.page-hero {
  position: relative;
  padding: 8rem 0 3.25rem;
  background-size: cover; background-position: center;
  color: #fff; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,61,34,.78) 0%, rgba(15,61,34,.86) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: .7rem; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }
.breadcrumb-nav {
  display: inline-flex; gap: .5rem; align-items: center;
  font-size: .88rem; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1); padding: .5rem 1.1rem; border-radius: var(--radius-pill);
  margin-top: 1.2rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,.8); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { opacity: .5; }

/* Lead paragraph */
.lead-text { font-size: 1.15rem; color: var(--ink); font-weight: 500; }

/* Value / Vision-Mission cards */
.value-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 2rem; height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon {
  width: 66px; height: 66px; border-radius: 18px;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.3rem;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.value-card p { margin-bottom: 0; }

/* Milestones / journey */
.milestone {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; height: 100%;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--green);
  transition: transform var(--trans), box-shadow var(--trans);
}
.milestone:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.milestone .year { font-size: 1.7rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: .7rem; }
.milestone h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.milestone p { margin-bottom: 0; font-size: .95rem; }

/* Certification cards */
.cert-card {
  background: var(--beige-2); border-radius: var(--radius);
  padding: 1.8rem; display: flex; gap: 1.2rem; align-items: center; height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.cert-card img { height: 72px; width: auto; flex: none; }
.cert-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.cert-card p { margin-bottom: 0; font-size: .92rem; }

/* Check list */
.check-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.check-list i { color: var(--green); margin-top: .35rem; }

/* Production process steps */
.process-step {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; height: 100%;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-num {
  position: absolute; top: .6rem; inset-inline-end: 1.1rem;
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: var(--green-soft); line-height: 1; z-index: 0;
}
.p-icon {
  position: relative; z-index: 1;
  width: 58px; height: 58px; border-radius: 15px;
  background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 1.1rem;
}
.process-step h3 { position: relative; z-index: 1; font-size: 1.15rem; margin-bottom: .5rem; }
.process-step p { position: relative; z-index: 1; margin-bottom: 0; font-size: .95rem; }

/* Pagination */
.pagination-nav { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.pagination-nav a, .pagination-nav span {
  min-width: 44px; height: 44px; padding: 0 .6rem; border-radius: 12px;
  display: grid; place-items: center; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); transition: all var(--trans);
}
.pagination-nav a:hover, .pagination-nav .current {
  background: var(--green); color: #fff; border-color: var(--green);
}

/* Article body */
.article-body { font-size: 1.05rem; color: var(--body); }
.article-body p { margin-bottom: 1.2rem; }
.article-body h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .8rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; width: 100%; }
.article-body blockquote {
  border-inline-start: 4px solid var(--green);
  background: var(--beige); padding: 1.3rem 1.6rem; border-radius: var(--radius-sm);
  margin: 1.6rem 0; font-size: 1.1rem; color: var(--ink);
}
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--muted); font-size: .9rem; }
.article-meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* Sidebar widgets */
.sidebar-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.5rem; }
.sidebar-widget h4 { font-size: 1.1rem; margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 2px solid var(--green-soft); }
.recent-post { display: flex; gap: .9rem; margin-bottom: 1.1rem; }
.recent-post:last-child { margin-bottom: 0; }
.recent-post img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; flex: none; }
.recent-post h5 { font-size: .92rem; margin: 0 0 .25rem; line-height: 1.4; }
.recent-post h5 a { color: var(--ink); }
.recent-post h5 a:hover { color: var(--green); }
.recent-post span { font-size: .78rem; color: var(--muted); }
.cat-list li { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { color: var(--body); }
.cat-list a:hover { color: var(--green); }
.cat-list .count { color: var(--muted); font-size: .85rem; }
.tag-chip { display: inline-block; padding: .4rem .9rem; background: var(--beige); border-radius: var(--radius-pill); font-size: .82rem; margin-inline-end: .4rem; margin-bottom: .5rem; color: var(--body); }
.tag-chip:hover { background: var(--green); color: #fff; }

/* Contact info cards */
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.contact-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 1.2rem; flex: none; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.contact-card p { margin: 0; font-size: .95rem; }

/* Contact form */
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow-sm); }
.form-label { font-weight: 600; color: var(--ink); margin-bottom: .4rem; font-size: .9rem; }
.form-control, .form-select {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem 1rem; font-family: inherit; font-size: .98rem;
}
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.form-success {
  display: none; align-items: center; gap: .6rem;
  background: var(--green-soft); color: var(--green-dark);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-weight: 600;
}
.form-success.show { display: flex; }
.map-full iframe { width: 100%; min-height: 440px; border: 0; border-radius: var(--radius); display: block; }

/* Product detail */
.gallery-main { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.gallery-main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-thumbs { display: flex; gap: .7rem; margin-top: .8rem; flex-wrap: wrap; }
.gallery-thumbs img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; border: 2px solid var(--line); cursor: pointer; transition: border-color var(--trans); }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--green); }
.detail-cat { color: var(--gold); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }
.detail-title { font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.4rem); margin: .4rem 0 1rem; }
.detail-feature { display: inline-flex; align-items: center; gap: .5rem; background: var(--green-soft); color: var(--green); font-weight: 600; font-size: .85rem; padding: .45rem 1rem; border-radius: var(--radius-pill); margin: 0 .5rem .5rem 0; }
.detail-tabs { border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }
.detail-tabs .nav-link { color: var(--body); font-weight: 600; border: none; border-bottom: 2px solid transparent; padding: .7rem 1.1rem; background: transparent; }
.detail-tabs .nav-link.active { color: var(--green); border-bottom-color: var(--green); }
.spec-list li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.spec-list li:last-child { border-bottom: none; }
.spec-list .k { color: var(--muted); }
.spec-list .v { font-weight: 600; color: var(--ink); }

/* Job listings */
.job-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.job-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.job-item h3 { font-size: 1.15rem; margin: 0; }
.job-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; color: var(--muted); font-size: .9rem; margin-top: .5rem; }
.job-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.job-meta i { color: var(--green); }
/* Perk icon (reuses value-icon look, smaller) */
.perk-icon { width: 56px; height: 56px; border-radius: 15px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1rem; }

/* FAQ accordion */
.faq-accordion .accordion-item { border: 1px solid var(--line); border-radius: var(--radius) !important; margin-bottom: 1rem; overflow: hidden; background: #fff; }
.faq-accordion .accordion-button { font-family: var(--font-head); font-weight: 600; color: var(--ink); padding: 1.2rem 1.4rem; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--green); background: var(--green-soft); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F7A3D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { color: var(--body); padding: 0 1.4rem 1.3rem; }

/* Team cards */
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: transform var(--trans), box-shadow var(--trans); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-body { padding: 1.4rem; }
.team-body h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.team-role { color: var(--green); font-weight: 600; font-size: .9rem; }
.team-social { display: flex; gap: .5rem; justify-content: center; margin-top: .9rem; }
.team-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--beige); color: var(--green); display: grid; place-items: center; transition: all var(--trans); }
.team-social a:hover { background: var(--green); color: #fff; }

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid .media-item { aspect-ratio: 1/1; border-radius: var(--radius); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------
   18. AOS-like fallback (if lib fails, elements stay visible)
   ---------------------------------------------------------------- */
[data-aos] { opacity: 1; }

/* ---- Market / commitment chips (About & Quality pages) ---- */
.market-chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.market-chips .chip {
  display: inline-flex; align-items: center;
  padding: .5rem 1.1rem;
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(31,122,61,.06);
  transition: all var(--trans);
}
.market-chips .chip:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }


/* ---- Nav dropdown (About Us submenu) ---- */
.main-nav .has-sub { position: relative; }
.main-nav .sub-caret { font-size: .62rem; margin-inline-start: .3rem; opacity: .7; transition: transform var(--trans); }
.main-nav .has-sub:hover .sub-caret { transform: rotate(180deg); }
.main-nav .sub-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-start: 0;
  min-width: 214px; background: #fff; list-style: none; margin: 0; padding: .5rem;
  border: 1px solid rgba(0,0,0,.06); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.13);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--trans); z-index: 200;
}
.main-nav .has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li { display: block; }
.main-nav .sub-menu a {
  display: block; padding: .58rem .9rem; border-radius: 9px;
  font-size: .92rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.main-nav .sub-menu a:hover { background: var(--beige); color: var(--green); padding-inline-start: 1.15rem; }
.mobile-menu .mobile-sub { padding-inline-start: 1.5rem; font-size: .95rem; opacity: .85; }


/* Fix: dropdown links must stay dark even when the header is light/transparent over a hero */
.site-header .main-nav .sub-menu a,
.site-header.header-light .main-nav .sub-menu a,
.site-header.header-light.scrolled .main-nav .sub-menu a { color: var(--ink); }
.site-header .main-nav .sub-menu a:hover,
.site-header.header-light .main-nav .sub-menu a:hover { color: var(--green); background: var(--beige); }
.main-nav .sub-menu a::after { display: none; }

