
/* =============================================
   SIANT AGRO CHEMICALS – style.css
   Main Styles & Variables
============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Variables ────────────────────────────── */
:root {
  --green-dark: #0e2b18;
  --green-mid:  #1e5c30;
  --green-accent: #3b8247;
  --green-light:  #5aaa60;
  --green-pale:   #eaf5eb;
  --gold:        #c8922a;
  --gold-light:  #e8b84b;
  --cream:       #f7f3ec;
  --cream-dark:  #ede8df;
  --text-dark:   #1a2e1e;
  --text-mid:    #3d5e42;
  --text-body:   #4a6050;
  --white:       #ffffff;
  --shadow-sm: 0 2px 8px rgba(14,43,24,0.08);
  --shadow-md: 0 8px 28px rgba(14,43,24,0.12);
  --shadow-lg: 0 20px 60px rgba(14,43,24,0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: all 0.3s ease;
}

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

/* ── Typography ───────────────────────────── */
h1,h2,h3,h4,h5 { font-family:'Cormorant Garamond',serif; line-height:1.2; }
h1 { font-size:clamp(2rem,5vw,3.8rem); font-weight:600; }
h2 { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:600; }
h3 { font-size:clamp(1.2rem,2vw,1.6rem); font-weight:600; }
h4 { font-size:1.1rem; font-weight:600; }
p  { line-height:1.8; color:var(--text-body); }

/* ── Utility ──────────────────────────────── */
.container { max-width:1260px; margin:0 auto; padding:0 5%; }
.text-center { text-align:center; }
.text-gold   { color:var(--gold); }
.text-green  { color:var(--green-accent); }
.text-white  { color:var(--white); }
.bg-dark    { background:var(--green-dark); }
.bg-cream   { background:var(--cream); }
.bg-white   { background:var(--white); }
.d-flex     { display:flex; }
.align-center { align-items:center; }
.justify-between { justify-content:space-between; }

/* Section spacing */
.section    { padding:90px 0; }
.section-sm { padding:60px 0; }

/* Section header */
.section-tag {
  display:inline-block;
  font-size:0.72rem; font-weight:500;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--green-accent); margin-bottom:10px;
}
.section-tag.gold { color:var(--gold-light); }
.section-title { color:var(--text-dark); margin-bottom:14px; }
.section-title.white { color:var(--white); }
.section-title em { color:var(--green-accent); font-style:normal; }
.section-title em.gold { color:var(--gold-light); }
.section-sub {
  font-size:1rem; font-weight:300; color:var(--text-body);
  max-width:560px; line-height:1.8; margin-bottom:0;
}
.section-sub.white { color:rgba(247,243,236,0.7); }
.divider {
  width:52px; height:3px; border-radius:2px;
  background:var(--gold); margin:18px 0 30px;
}
.divider.center { margin-left:auto; margin-right:auto; }
.divider.white  { background:rgba(255,255,255,0.4); }

/* Buttons */
.btn {
  display:inline-block; padding:13px 28px; border-radius:var(--radius-sm);
  font-size:0.83rem; font-weight:500; letter-spacing:0.07em;
  text-transform:uppercase; transition:var(--transition);
  border:2px solid transparent; white-space:nowrap;
}
.btn-primary {
  background:var(--gold); color:var(--white); border-color:var(--gold);
}
.btn-primary:hover { background:transparent; color:var(--gold); }
.btn-primary-dark {
  background:var(--green-dark); color:var(--white); border-color:var(--green-dark);
}
.btn-primary-dark:hover { background:transparent; color:var(--green-dark); }
.btn-outline {
  background:transparent; color:var(--white); border-color:rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }
.btn-outline-green {
  background:transparent; color:var(--green-accent); border-color:var(--green-accent);
}
.btn-outline-green:hover { background:var(--green-accent); color:var(--white); }
.btn-sm { padding:9px 20px; font-size:0.76rem; }
.btn-lg { padding:16px 36px; font-size:0.88rem; }
.btn-full { width:100%; text-align:center; }

/* Badge */
.badge {
  display:inline-block; padding:4px 12px; border-radius:20px;
  font-size:0.7rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
}
.badge-green { background:var(--green-pale); color:var(--green-accent); }
.badge-gold  { background:rgba(200,146,42,0.15); color:var(--gold); }

/* ── NAVBAR ───────────────────────────────── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:999;
  background:rgba(14,43,24,0.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.07);
  transition:box-shadow 0.3s;
}
.navbar.scrolled { box-shadow:0 4px 24px rgba(0,0,0,0.35); }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:72px; padding:0 5% 0 0;
}
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:72px; width:auto; object-fit:contain; 
}
.left{background:#fff; padding: 5px 20px 5px 5%; border-top-right-radius: 50px; border-bottom-right-radius: 50px; margin-left:0;} 
.nav-brand-text { font-family:'Cormorant Garamond',serif; color:var(--cream); line-height:1.1;}
.nav-brand-text .brand-name { font-size:1.25rem; font-weight:600; letter-spacing:0.04em; }
.nav-brand-text .brand-sub  { font-size:0.6rem; font-family:'DM Sans',sans-serif; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-light); }
.nav-menu { display:flex; align-items:center; gap:6px;}
.nav-item { position:relative; }
.nav-link {
  display:flex; align-items:center; gap:5px;
  padding:8px 14px; border-radius:var(--radius-sm);
  color:rgba(247,243,236,0.8); font-size:0.87rem; font-weight:400;
  letter-spacing:0.02em; transition:var(--transition);
}
.nav-link:hover { color:var(--gold-light); }
.nav-link .arrow { font-size:0.6rem; transition:.3s; }
.nav-item:hover .nav-link .arrow { transform:rotate(180deg); }
/* Dropdown */
.nav-dropdown {
  position:absolute; top:calc(100% + 8px); left:0;
  background:var(--green-dark); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-md); padding:8px 0;
  min-width:220px; opacity:0; visibility:hidden;
  transform:translateY(-8px); transition:var(--transition);
  box-shadow:var(--shadow-lg);
}
.nav-item:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a {
  display:block; padding:10px 20px;
  color:rgba(247,243,236,0.7); font-size:0.85rem; transition:.2s;
}
.nav-dropdown a:hover { color:var(--gold-light); background:rgba(255,255,255,0.04); padding-left:26px; }
.nav-dropdown .dd-divider { height:1px; background:rgba(255,255,255,0.08); margin:6px 0; }
.nav-cta {
  background:var(--gold); color:var(--white);
  padding:9px 20px; border-radius:var(--radius-sm);
  font-size:0.8rem; font-weight:500; letter-spacing:0.07em; text-transform:uppercase;
  transition:var(--transition); margin-left:8px;
}
.nav-cta:hover { background:var(--gold-light); color:var(--text-dark); }
/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:4px; cursor:pointer; }
.hamburger span { width:24px; height:2px; background:var(--cream); display:block; transition:.3s; border-radius:2px; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
/* Mobile nav */
.mobile-nav {
  display:none; position:fixed; top:72px; left:0; right:0; bottom:0;
  background:var(--green-dark); z-index:998; overflow-y:auto;
  padding:24px 5% 40px;
}
.mobile-nav.open { display:block; }
.mobile-nav-link {
  display:block; padding:14px 0; color:rgba(247,243,236,0.85);
  font-size:1rem; font-weight:400; border-bottom:1px solid rgba(255,255,255,0.08);
  transition:.2s;
}
.mobile-nav-link:hover { color:var(--gold-light); }
.mobile-nav-sub { padding-left:16px; }
.mobile-nav-sub a {
  display:block; padding:10px 0; color:rgba(247,243,236,0.6);
  font-size:0.9rem; border-bottom:1px solid rgba(255,255,255,0.05);
}
.mobile-nav-sub a:hover { color:var(--gold-light); }
.mobile-cta { margin-top:24px; }

/* ── PAGE HERO ────────────────────────────── */
.page-hero {
  position:relative; padding:140px 0 80px; overflow:hidden;
  background:var(--green-dark);
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0.25;
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(14,43,24,0.9) 0%,rgba(14,43,24,0.6) 100%);
}
.page-hero-content { position:relative; z-index:1; }
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:0.8rem; color:rgba(247,243,236,0.55);
  margin-bottom:16px; flex-wrap:wrap;
}
.breadcrumb a { color:var(--gold-light); transition:.2s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { font-size:0.7rem; }
.page-hero h1 { color:var(--white); margin-bottom:14px; }
.page-hero p  { color:rgba(247,243,236,0.7); font-size:1.05rem; max-width:560px; }

/* ── HERO VIDEO ──────────────────────────── */
.hero-section { position:relative; height:100vh; min-height:620px; overflow:hidden; background:var(--green-dark); }
.hero-video {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0; background:var(--green-dark);
}
.slide-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(130deg,rgba(14,43,24,0.82) 0%,rgba(14,43,24,0.45) 55%,rgba(14,43,24,0.15) 100%);
}
.slide-content { position:absolute; left:8%; bottom:18%; max-width:640px; z-index:2; }
.slide-tag {
  display:inline-block; background:rgba(200,146,42,0.9); color:var(--white);
  font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; font-weight:500;
  padding:5px 14px; border-radius:2px; margin-bottom:18px;
}
.slide-content h1 { color:var(--white); margin-bottom:18px; }
.slide-content h1 em { color:var(--gold-light); font-style:normal; }
.slide-content p { color:rgba(247,243,236,0.8); font-size:1.02rem; font-weight:300; margin-bottom:32px; max-width:460px; }
.slide-btns { display:flex; gap:14px; flex-wrap:wrap; }
/* Arrows */
.slider-arrows { position:absolute; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; padding:0 24px; pointer-events:none; z-index:5; }
.s-arrow {
  pointer-events:all; background:rgba(14,43,24,0.55); color:var(--white);
  border:1px solid rgba(255,255,255,0.2); width:50px; height:50px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:var(--transition); font-size:1.2rem; user-select:none;
}
.s-arrow:hover { background:var(--gold); border-color:var(--gold); }
/* Dots */
.slider-dots { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:5; }
.dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.35); cursor:pointer; transition:.35s; }
.dot.active { width:26px; border-radius:4px; background:var(--gold-light); }

/* ── TRUST BAR ────────────────────────────── */
.trust-bar { background:var(--green-dark); border-top:1px solid rgba(255,255,255,0.07); padding:18px 5%; }
.trust-inner { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; max-width:1260px; margin:0 auto; }
.trust-item { display:flex; align-items:center; gap:14px; }
.trust-icon { font-size:1.5rem; flex-shrink:0; }
.trust-text strong { display:block; color:var(--gold-light); font-size:0.9rem; font-weight:500; }
.trust-text span { color:rgba(247,243,236,0.55); font-size:0.8rem; }

/* ── ABOUT (home) ─────────────────────────── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-main { width:100%; height:500px; object-fit:cover; border-radius:var(--radius-lg); }
.about-badge {
  position:absolute; bottom:-28px; right:-28px;
  background:var(--green-dark); color:var(--white);
  padding:24px 28px; border-radius:var(--radius-md); text-align:center;
  box-shadow:var(--shadow-lg);
}
.about-badge .num { font-family:'Cormorant Garamond',serif; font-size:2.6rem; font-weight:700; color:var(--gold-light); line-height:1; }
.about-badge .lbl { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,243,236,0.6); margin-top:4px; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0 32px; }
.feat { display:flex; align-items:flex-start; gap:10px; }
.feat-check { width:20px; height:20px; background:var(--green-accent); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.feat-check svg { width:10px; height:10px; fill:none; stroke:#fff; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.feat p { font-size:0.88rem; color:var(--text-mid); }

/* ── CATEGORIES ───────────────────────────── */
.cat-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; margin-top:56px; }
.cat-card {
  background:var(--cream); border-radius:var(--radius-lg); padding:38px 18px 28px;
  text-align:center; border:1.5px solid transparent; cursor:pointer;
  transition:var(--transition); position:relative; overflow:hidden;
}
.cat-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--green-accent); transform:scaleX(0); transition:.35s;
}
.cat-card:hover { border-color:rgba(59,130,71,0.18); transform:translateY(-5px); box-shadow:var(--shadow-md); }
.cat-card:hover::after { transform:scaleX(1); }
.cat-icon-wrap {
  width:76px; height:76px; border-radius:50%; background:var(--white);
  margin:0 auto 20px; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--cream-dark); overflow:hidden;
}
.cat-icon-wrap img { width:52px; height:52px; object-fit:contain; }
.cat-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600; color:var(--text-dark); margin-bottom:10px; line-height:1.3; }
.cat-card p { font-size:0.8rem; color:#6e7e72; line-height:1.6; font-weight:300; }
.cat-card .cat-link { display:inline-block; margin-top:16px; font-size:0.75rem; color:var(--green-accent); font-weight:500; letter-spacing:0.06em; text-transform:uppercase; transition:.2s; }
.cat-card:hover .cat-link { color:var(--gold); }

/* ── PRODUCTS GRID ─────────────────────────── */
.prod-section { background:var(--green-dark); }
.prod-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; gap:20px; }
.prod-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.prod-card {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-md); overflow:hidden; transition:var(--transition); cursor:pointer;
}
.prod-card:hover { transform:translateY(-5px); border-color:var(--gold); box-shadow:0 16px 40px rgba(0,0,0,0.35); }
.prod-img-wrap { overflow:hidden; height:220px; }
.prod-img-wrap img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.prod-card:hover .prod-img-wrap img { transform:scale(1.07); }
.prod-info { padding:16px 18px; }
.prod-cat { font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold-light); font-weight:500; margin-bottom:6px; }
.prod-name { font-family:'Cormorant Garamond',serif; font-size:1.08rem; font-weight:600; color:var(--white); line-height:1.3; margin-bottom:8px; }
.prod-desc { font-size:0.78rem; color:rgba(247,243,236,0.45); line-height:1.5; }
/* White bg variant */
.prod-card.light { background:var(--white); border:1.5px solid var(--cream-dark); }
.prod-card.light:hover { border-color:var(--green-accent); }
.prod-card.light .prod-name { color:var(--text-dark); }
.prod-card.light .prod-desc { color:var(--text-body); }

/* Filter tabs */
.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-tab {
  padding:8px 18px; border-radius:20px; font-size:0.8rem; font-weight:500;
  letter-spacing:0.05em; cursor:pointer; transition:.25s;
  border:1.5px solid var(--cream-dark); background:var(--white); color:var(--text-mid);
}
.filter-tab:hover { border-color:var(--green-accent); color:var(--green-accent); }
.filter-tab.active { background:var(--green-dark); color:var(--white); border-color:var(--green-dark); }

/* ── STATS ─────────────────────────────────── */
.stats-bar {
  background:var(--gold); padding:70px 0;
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat { text-align:center; padding:20px; border-right:1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right:none; }
.stat-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:700; color:var(--white); line-height:1; }
.stat-lbl { font-size:0.82rem; color:rgba(255,255,255,0.75); margin-top:8px; letter-spacing:0.05em; }

/* ── WHY CHOOSE US ────────────────────────── */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:56px; }
.why-card {
  padding:36px 24px; border-radius:var(--radius-lg);
  background:var(--white); border:1.5px solid var(--cream-dark); transition:var(--transition);
}
.why-card:hover { border-color:rgba(59,130,71,0.25); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.why-icon { font-size:2.2rem; margin-bottom:18px; }
.why-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--text-dark); margin-bottom:10px; }
.why-card p { font-size:0.87rem; line-height:1.75; color:var(--text-body); }

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
  background:var(--green-dark); padding:80px 0; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>') repeat;
  background-size:80px;
}
.cta-banner .container { position:relative; z-index:1; }
.cta-banner h2 { color:var(--white); margin-bottom:14px; }
.cta-banner p  { color:rgba(247,243,236,0.65); font-size:1.05rem; margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── CONTACT (home snippet) ────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:start; }
.contact-info-item { display:flex; gap:16px; margin-bottom:28px; }
.c-ico {
  width:46px; height:46px; background:var(--green-dark); border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.c-ico svg { width:18px; height:18px; fill:none; stroke:var(--gold-light); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.c-label { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--green-accent); font-weight:500; margin-bottom:3px; }
.c-val { font-size:0.95rem; color:var(--text-dark); line-height:1.65; }
.c-val a { color:var(--green-accent); }
.c-val a:hover { color:var(--gold); }

/* ── FORM ──────────────────────────────────── */
.form-card {
  background:var(--white); border-radius:var(--radius-lg); padding:40px;
  box-shadow:0 4px 28px rgba(14,43,24,0.08); border:1px solid var(--cream-dark);
}
.form-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text-dark); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-mid); font-weight:500; }
.form-group input,
.form-group textarea,
.form-group select {
  border:1.5px solid #d4dbd6; border-radius:5px; padding:12px 14px;
  font-size:0.92rem; color:var(--text-dark); background:var(--white);
  transition:.25s; outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--green-accent); box-shadow:0 0 0 3px rgba(59,130,71,0.1); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a7060' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }

/* ── BLOG CARDS ───────────────────────────── */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card {
  border-radius:var(--radius-lg); overflow:hidden; border:1.5px solid var(--cream-dark);
  transition:var(--transition); background:var(--white);
}
.blog-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:rgba(59,130,71,0.2); }
.blog-thumb { height:200px; overflow:hidden; background:var(--cream); }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.blog-card:hover .blog-thumb img { transform:scale(1.06); }
.blog-body { padding:24px; }
.blog-meta { display:flex; gap:12px; align-items:center; margin-bottom:12px; }
.blog-date { font-size:0.75rem; color:#8a9e8f; }
.blog-body h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--text-dark); margin-bottom:10px; line-height:1.35; }
.blog-body p { font-size:0.85rem; line-height:1.75; color:var(--text-body); margin-bottom:18px; }
.blog-read { font-size:0.78rem; font-weight:500; color:var(--green-accent); letter-spacing:0.06em; text-transform:uppercase; transition:.2s; }
.blog-read:hover { color:var(--gold); }

/* ── PRODUCT DETAIL ───────────────────────── */
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.product-main-img { width:100%; border-radius:var(--radius-lg); }
.product-specs { background:var(--cream); border-radius:var(--radius-md); padding:24px; margin:24px 0; }
.product-specs table { width:100%; border-collapse:collapse; }
.product-specs td { padding:10px 0; border-bottom:1px solid var(--cream-dark); font-size:0.88rem; }
.product-specs td:first-child { color:var(--text-mid); font-weight:500; width:40%; }
.product-specs tr:last-child td { border-bottom:none; }

/* ── FOOTER ────────────────────────────────── */
footer { background:var(--text-dark); }
.footer-top { padding:64px 0 40px; }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.2fr; gap:48px; }
.footer-brand img { height:50px; margin-bottom:18px; }
.footer-brand p { font-size:0.86rem; color:rgba(247,243,236,0.45); line-height:1.85; max-width:240px; }
.footer-socials { display:flex; gap:10px; margin-top:22px; }
.social-ico {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center;
  color:rgba(247,243,236,0.5); transition:.25s;
}
.social-ico:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
.social-ico svg { width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.footer-col h5 { font-family:'Cormorant Garamond',serif; color:var(--cream); font-size:1.1rem; font-weight:600; margin-bottom:20px; letter-spacing:0.02em; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:rgba(247,243,236,0.45); font-size:0.84rem; transition:.2s; display:flex; align-items:center; gap:7px; }
.footer-col ul li a::before { content:'→'; font-size:0.65rem; color:var(--gold); flex-shrink:0; }
.footer-col ul li a:hover { color:var(--gold-light); padding-left:4px; }
.footer-contact-row { display:flex; gap:12px; margin-bottom:14px; }
.footer-contact-row .ico { color:var(--gold); font-size:0.9rem; flex-shrink:0; margin-top:2px; }
.footer-contact-row p { color:rgba(247,243,236,0.45); font-size:0.83rem; line-height:1.65; }
.footer-contact-row a { color:rgba(247,243,236,0.45); }
.footer-contact-row a:hover { color:var(--gold-light); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07); padding:22px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { color:rgba(247,243,236,0.25); font-size:0.78rem; }
.footer-bottom-links { display:flex; gap:22px; }
.footer-bottom-links a { color:rgba(247,243,236,0.25); font-size:0.78rem; transition:.2s; }
.footer-bottom-links a:hover { color:var(--gold-light); }

/* ── FLOATING BUTTONS ──────────────────────── */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:990;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:var(--white); font-size:1.5rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(37,211,102,0.45);
  transition:var(--transition); text-decoration:none;
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 10px 28px rgba(37,211,102,0.6); }
.back-top {
  position:fixed; bottom:90px; right:28px; z-index:990;
  width:40px; height:40px; border-radius:50%;
  background:var(--green-dark); color:var(--white); font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); cursor:pointer; transition:var(--transition);
  opacity:0; pointer-events:none;
}
.back-top.show { opacity:1; pointer-events:all; }
.back-top:hover { background:var(--gold); transform:translateY(-2px); }

/* ── CONTACT PAGE ──────────────────────────── */
.contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:60px; }
.contact-card {
  background:var(--cream); border-radius:var(--radius-lg); padding:36px 28px;
  text-align:center; border:1.5px solid var(--cream-dark); transition:var(--transition);
}
.contact-card:hover { box-shadow:var(--shadow-md); border-color:rgba(59,130,71,0.2); }
.contact-card-icon { font-size:2rem; margin-bottom:16px; }
.contact-card h4 { font-family:'Cormorant Garamond',serif; color:var(--text-dark); font-size:1.2rem; margin-bottom:10px; }
.contact-card p { font-size:0.88rem; color:var(--text-body); line-height:1.7; }
.contact-card a { color:var(--green-accent); }

/* FAQ */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--cream-dark); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; cursor:pointer; gap:16px;
}
.faq-q h4 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--text-dark); font-weight:500; flex:1; }
.faq-icon { width:24px; height:24px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--green-accent); flex-shrink:0; transition:.3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--green-accent); color:var(--white); }
.faq-a { max-height:0; overflow:hidden; transition:.4s ease; }
.faq-a p { padding:0 0 20px; font-size:0.9rem; color:var(--text-body); line-height:1.8; }
.faq-item.open .faq-a { max-height:200px; }

/* ── ABOUT PAGE ────────────────────────────── */
.mission-vision-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.mv-card {
  border-radius:var(--radius-lg); padding:44px 36px; position:relative; overflow:hidden;
}
.mv-card.mission { background:var(--green-dark); }
.mv-card.vision  { background:var(--cream); border:1.5px solid var(--cream-dark); }
.mv-card .mv-icon { font-size:2.5rem; margin-bottom:20px; }
.mv-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; margin-bottom:14px; }
.mv-card.mission h3 { color:var(--gold-light); }
.mv-card.vision  h3 { color:var(--text-dark); }
.mv-card p { font-size:0.92rem; line-height:1.85; }
.mv-card.mission p { color:rgba(247,243,236,0.65); }
.mv-card.vision  p { color:var(--text-body); }

.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card {
  padding:36px 28px; background:var(--white); border-radius:var(--radius-lg);
  border:1.5px solid var(--cream-dark); transition:var(--transition);
}
.value-card:hover { border-color:rgba(59,130,71,0.25); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.value-num { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:700; color:rgba(59,130,71,0.12); line-height:1; margin-bottom:10px; }
.value-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--text-dark); margin-bottom:10px; }
.value-card p { font-size:0.86rem; color:var(--text-body); line-height:1.75; }

/* ── ANIMATIONS ────────────────────────────── */
.fade-in { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in-delay-1 { transition-delay:0.1s; }
.fade-in-delay-2 { transition-delay:0.2s; }
.fade-in-delay-3 { transition-delay:0.3s; }
.fade-in-delay-4 { transition-delay:0.4s; }

/* ── LIGHTBOX ───────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 12, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lb-content {
  position: relative; z-index: 1;
  max-width: min(90vw, 680px);
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
#lightbox.open .lb-content { transform: scale(1) translateY(0); }

.lb-img-wrap {
  width: 100%;
  max-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ede8;
  overflow: hidden;
}
.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 68vh;
  display: block;
}

.lb-footer {
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lb-info .lb-cat {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 4px;
}
.lb-info .lb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.2;
}
.lb-info .lb-desc {
  font-size: 0.82rem; color: var(--text-body);
  margin-top: 4px; line-height: 1.5;
}
.lb-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(14,43,24,0.85); color: #fff;
  border: none; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.lb-close:hover { background: var(--gold); transform: scale(1.1); }

.lb-enquire {
  background: var(--green-dark); color: var(--white);
  padding: 10px 20px; border-radius: 4px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  transition: 0.2s; border: none; cursor: pointer; white-space: nowrap;
}
.lb-enquire:hover { background: var(--green-accent); }

/* Clickable card cursor */
.prod-card { cursor: pointer; }

/* Nav arrows inside lightbox */
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; justify-content: space-between;
  width: 100%; padding: 0 12px; pointer-events: none; z-index: 3;
}
.lb-nav-btn {
  pointer-events: all;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(14,43,24,0.7); color: #fff; border: none;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s;
}
.lb-nav-btn:hover { background: var(--gold); }

@media (max-width: 480px) {
  .lb-content { max-width: 96vw; border-radius: 12px; }
  .lb-footer { padding: 14px 16px; }
  .lb-info .lb-name { font-size: 1.1rem; }
}
