/* ============================================================
   SAIVISHWA AGROTECH — style.css
   Complete Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green:        #1a4731;
  --green-md:     #245f42;
  --green-lt:     #2d7a57;
  --green-pale:   #e8f2ec;
  --gold:         #c9a227;
  --gold-lt:      #e8c050;
  --navy:         #0d1b2a;
  --navy-card:    #152238;
  --ink:          #0f1923;
  --gray:         #6b7280;
  --gray-lt:      #9ca3af;
  --bg:           #f7f9f7;
  --bg-alt:       #eef3ee;
  --white:        #ffffff;
  --border:       #e2e8e2;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
  --transition:   all 0.28s ease;
  --navbar-h:     72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(26,71,49,0.15);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title.white { color: var(--white); }
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 600px;
}
.section-sub.center { text-align: center; margin: 14px auto 0; }
.section-sub.white { color: rgba(255,255,255,0.72); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-md); box-shadow: 0 6px 20px rgba(26,71,49,0.3); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-wa {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: var(--white);
}
.btn-wa:hover { opacity: 0.88; box-shadow: 0 4px 16px rgba(220,39,67,0.4); }

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 22px;
}
.divider.center { margin: 14px auto 22px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo-main span { color: var(--green); }
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-available {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}
.nav-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--navbar-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* page body offset */
body { padding-top: var(--navbar-h); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.footer-brand-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.65;
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-cert-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
}
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
  align-items: flex-start;
}
.footer-contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-text a { color: rgba(255,255,255,0.55); }
.footer-contact-text a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--transition);
}
.footer-social:hover { border-color: rgba(255,255,255,0.55); color: var(--white); background: rgba(255,255,255,0.08); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.18s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ══════════════════════════════════════════════════════════════
   HERO (used on index + sub-page banners)
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/edible-oils.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,40,25,0.94) 0%, rgba(20,55,35,0.88) 45%, rgba(26,71,49,0.65) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}
.hero-badge-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }
.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

/* Hero right panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-cert-box {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 20px 22px;
  backdrop-filter: blur(6px);
}
.hero-cert-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.cert-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cert-pill {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.3;
}

/* Sub-page hero banner */
.page-banner {
  background: var(--green);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,40,25,0.95) 0%, rgba(26,71,49,0.7) 100%);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.page-banner-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-banner-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-banner-breadcrumb a:hover { color: var(--white); }
.page-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.page-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--bg); }
.section-green { background: var(--green); }
.section-navy { background: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--bg);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-right: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.trust-item:last-child { border-right: none; }
.trust-ico {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.product-card-body { padding: 20px 20px 16px; }
.product-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.product-card:hover .product-card-name { color: var(--green); }
.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0;
}
.product-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
}
.product-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.product-card-footer .btn { flex: 1; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   CATEGORY FILTER
══════════════════════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ══════════════════════════════════════════════════════════════
   CERTIFICATION CARDS
══════════════════════════════════════════════════════════════ */
.cert-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,42,0.3); outline: 2px solid var(--gold); }
.cert-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.cert-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.cert-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cert-tap {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════════════
   MARKET CARDS
══════════════════════════════════════════════════════════════ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: var(--transition);
}
.market-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.market-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.market-country:last-child { border-bottom: none; }
.market-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--white);
}
.gallery-overlay-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-overlay-cat {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.gallery-cat-pill {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(26,71,49,0.88);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 880px;
  width: 100%;
}
.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: -58px; }
.lightbox-next { right: -58px; }
.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 14px;
}
.lightbox-caption-name { font-size: 1rem; font-weight: 600; }
.lightbox-caption-cat { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
.lightbox-counter {
  position: absolute;
  top: -14px; left: -4px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-lt); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green-lt); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-panel { display: flex; flex-direction: column; gap: 14px; }
.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.ci-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.ci-card:hover { box-shadow: var(--shadow-sm); }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.ci-val { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.ci-sub { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

.wa-cta-box {
  background: var(--green);
  border-radius: var(--radius);
  padding: 26px;
}
.wa-cta-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.wa-cta-desc { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — DIRECTOR SECTION
══════════════════════════════════════════════════════════════ */
.director-section {
  background: var(--green);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.director-section::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(61,122,86,0.3);
  pointer-events: none;
}
.director-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}
.director-photo-wrap {
  text-align: center;
  flex-shrink: 0;
}
.director-photo {
  width: 220px;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.director-photo-placeholder {
  width: 220px;
  height: 260px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 4px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.director-photo-placeholder .icon { font-size: 3rem; }
.director-name-badge {
  margin-top: 14px;
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.director-content { }
.director-content .section-label { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.2); }
.director-name { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.director-title { font-size: 0.85rem; color: var(--gold-lt); font-weight: 600; margin-bottom: 22px; }
.director-bio {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}
.director-message {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
}
.director-message::before { content: '"'; font-size: 2rem; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT — COMPANY VALUES / FEATURES
══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   QUALITY CHECKS
══════════════════════════════════════════════════════════════ */
.quality-checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
.quality-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.check-icon {
  width: 22px; height: 22px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 11px;
  flex-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════
   COMPANY INFO TABLE
══════════════════════════════════════════════════════════════ */
.company-info-table {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.company-info-row {
  display: flex;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  align-items: center;
}
.company-info-row:last-child { border-bottom: none; }
.company-info-key {
  color: var(--gray);
  font-weight: 600;
  width: 200px;
  flex-shrink: 0;
}
.company-info-val { color: var(--ink); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.why-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg);
  padding: 96px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .section-title { margin-bottom: 14px; }
.cta-inner .section-sub { margin: 0 auto 36px; text-align: center; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT + BACK TO TOP
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(220,39,67,0.45);
  z-index: 500;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
}

.back-top {
  position: fixed;
  bottom: 92px; right: 28px;
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  border: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: all 0.35s ease;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   MODALS (Cert detail)
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
  text-align: center;
  animation: modal-pop 0.25s ease;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-title { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.modal-subtitle { font-size: 0.85rem; color: var(--gold-lt); font-weight: 600; margin-bottom: 14px; }
.modal-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 20px; }
.modal-detail-box {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  text-align: left;
}
.modal-contact-note {
  background: var(--green);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.product-main-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.product-main-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.product-thumb-row {
  display: flex;
  gap: 10px;
}
.product-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-thumb.active { border-color: var(--green); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.variants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.variant-chip {
  background: var(--green-pale);
  border: 1px solid rgba(26,71,49,0.15);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
}
.variant-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
  font-size: 0.87rem;
  color: var(--ink);
  line-height: 1.55;
}
.specs-panel {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 20px;
}
.specs-panel-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.87rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: rgba(255,255,255,0.45); font-weight: 500; }
.spec-val { color: var(--white); font-weight: 700; text-align: right; max-width: 60%; }
.pack-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.pack-chip {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
  cursor: default;
}
.pack-chip:hover { border-color: var(--green); color: var(--green); }
.product-cta-box {
  background: var(--green);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.product-cta-title { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.product-cta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-bottom: 20px; line-height: 1.6; }
.product-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Related products */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.related-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.related-img {
  height: 140px;
  overflow: hidden;
}
.related-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-card:hover .related-img img { transform: scale(1.06); }
.related-body { padding: 16px; }
.related-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.related-sub { font-size: 0.78rem; color: var(--gray); }
