/* ═══════════════════════════════════════════════════════
   design.css — Udayashm Full-Site Styles
   ═══════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  --wheat:        #E8C97A;
  --amber:        #C98B2F;
  --rust:         #8A4510;
  --soil:         #2A1506;
  --soil-dark:    #3B2008;
  --cream:        #F5EFE4;
  --cream-dark:   #EDE4D0;
  --glass-white:  rgba(255,255,255,0.17);
  --glass-border: rgba(255,255,255,0.25);
  --shadow-card:  0 6px 32px rgba(40,18,4,0.14);
  --radius-card:  22px;
  --radius-pill:  40px;
  --ease:         0.22s ease;
  --nav-h:        62px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0d0a06;
  overflow: hidden;   /* JS controls scroll */
  width: 100vw;
  height: 100vh;
}


/* ═══════════════════════════════════════
   FIXED NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 26px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(20,10,3,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,201,122,0.14);
}

.logo {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 28px; height: 28px;
  background: var(--wheat); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.nav-pill {
  display: flex; gap: 2px;
  background: var(--glass-white);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 5px 6px;
}

.nav-pill a {
  color: rgba(255,255,255,0.82);
  text-decoration: none; font-size: 12px;
  padding: 6px 14px; border-radius: 30px;
  transition: all var(--ease); white-space: nowrap;
}

.nav-pill a.active { background: var(--wheat); color: var(--soil-dark); font-weight: 600; }
.nav-pill a:hover:not(.active) { background: rgba(255,255,255,0.12); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.search-box {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass-white);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 30px; padding: 7px 14px;
  transition: border-color var(--ease);
}

.search-box:focus-within { border-color: rgba(232,201,122,0.6); }

.search-box input {
  background: none; border: none; outline: none;
  color: rgba(255,255,255,0.8);
  font-size: 12px; font-family: 'DM Sans', sans-serif; width: 110px;
}

.search-box input::placeholder { color: rgba(255,255,255,0.45); }
.search-icon { color: rgba(255,255,255,0.55); font-size: 13px; }

.icon-btn {
  width: 32px; height: 32px;
  background: var(--glass-white);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; color: white;
  transition: background var(--ease), transform var(--ease);
  user-select: none;
}

.icon-btn:hover  { background: rgba(255,255,255,0.28); transform: scale(1.08); }
.icon-btn:active { transform: scale(0.94); }


/* ═══════════════════════════════════════
   SCROLL WRAPPER — snap per section
═══════════════════════════════════════ */
.scroll-wrap {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-wrap::-webkit-scrollbar { display: none; }


/* ═══════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════ */
.section {
  position: relative;
  width: 100vw; height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.section-bg {
  position: absolute; inset: 0; z-index: 0;
}

/* Generic inner content wrapper for non-home sections */
.section-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 28px) 44px 36px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px;
}


/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.20s; }
.reveal:nth-child(4) { transition-delay: 0.30s; }
.reveal:nth-child(5) { transition-delay: 0.40s; }
.reveal:nth-child(6) { transition-delay: 0.50s; }


/* ═══════════════════════════════════════════════════════
   SECTION 1 — HOME
═══════════════════════════════════════════════════════ */
#home { background: var(--cream); }

/* ── HERO SHAPE — wheat.jpg background ──
   ▸ HEIGHT:            change `height` below to grow/shrink the coloured area
   ▸ IMAGE CROP TOP:    change `background-position` (e.g. center 30% = more sky)
   ▸ IMAGE CROP BOTTOM: increase hero-wheat-crop height
   ▸ ROUNDED CORNERS:   change border-radius values                              */
.hero-shape {
  position: absolute;
  top: 0; left: 0; right: 0;

  /* ── ADJUST THIS to control how much of the page the hero image covers ── */
  height: 62%;

  /* ── ROUNDED BOTTOM SHAPE ── */
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  z-index: 0;

  /* ── BACKGROUND IMAGE ──
     Place wheat.jpg in the same folder as index.html
     background-position: center 45%  →  45% = balanced field view
     Change to center 20% for more sky, center 80% for more ground  */
  background-image: url('wheat.jpg');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}

/* Dark colour-grade overlay — enhances warmth & contrast */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(80,40,5,0.30)   0%,
    rgba(140,75,8,0.15)  40%,
    rgba(38,14,2,0.52)   100%
  );
}

/* ── LAYER 3: lower-stalk wheat crop (no sky)
   ▸ To show more stalks: increase height (e.g. 65%)
   ▸ To crop tighter: change background-position to center 90%
   ▸ To remove this layer: set display:none on .hero-wheat-crop  */
.hero-wheat-crop {
  position: absolute;
  bottom: 0; left: 0; right: 0;

  /* ── HOW MUCH STALK LAYER SHOWS ── */
  height: 55%;

  background-image: url('wheat.jpg');
  background-size: cover;
  background-position: center bottom;   /* shows only bottom of image = stalks */
  background-repeat: no-repeat;

  /* Fades to nothing at top so it blends with layer above */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 50%);

  filter: brightness(0.60) saturate(1.35);
  z-index: 2;
}

/* Soft parallax shimmer — no CSS lines, just a light drift */
.parallax-layer {
  position: absolute;
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  background: radial-gradient(ellipse at 58% 38%, rgba(232,201,122,0.07) 0%, transparent 65%);
  pointer-events: none;
  will-change: transform;
  z-index: 3;
}

/* Bottom soil gradient that fades the hero shape into the cream page */
.hero-shape-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top,
    rgba(26,10,2,0.80) 0%,
    rgba(26,10,2,0.28) 55%,
    transparent 100%
  );
  border-radius: 0 0 48px 48px;
  z-index: 4;
  pointer-events: none;
}

/* ── ABUNDANCE TITLE ──
   Font size is auto-calculated by JS (fitTitleToWidth) to fill 100% width.
   You can also manually override: font-size: 15vw; letter-spacing: -0.01em  */
.title-area {
  position: relative; z-index: 20;
  padding: 0; flex-shrink: 0; width: 100%; overflow: hidden;
}

.big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15vw;          /* JS overrides this to exact fit */
  letter-spacing: -0.01em;
  line-height: 0.88;
  display: block;
  white-space: nowrap;
  width: 100%;
  text-align: left;
  padding: 0 0 0 0;

  /* Faded knockout — transparent text, shows image through it */
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.28);
  text-shadow:
    0 0  80px rgba(255,255,255,0.50),
    0 0 180px rgba(255,255,255,0.18);
  mix-blend-mode: overlay;

  will-change: transform;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.big-title.visible { opacity: 1; }

/* ── CARDS ROW ──
   grid-template-columns controls card widths.
   Changing the middle value (1fr) shifts the center card.
   ▸ To widen center card: change to  260px 1.4fr 256px
   ▸ To push it right:     change to  220px 1fr  290px          */
.cards-row {
  position: relative; z-index: 30;
  display: grid;
  grid-template-columns: 260px 1fr 256px;
  gap: 12px;
  padding: 0 22px;
  flex: 1; align-items: end;
  min-height: 0;
}

/* Card entrance */
.card-left, .card-center, .card-right {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.card-left.visible   { opacity:1; transform:translateY(0); transition-delay:0.12s; }
.card-center.visible { opacity:1; transform:translateY(0); transition-delay:0.26s; }
.card-right.visible  { opacity:1; transform:translateY(0); transition-delay:0.40s; }

/* ── LEFT CARD ── */
.card-left {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-card); padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 9px;
  box-shadow: var(--shadow-card); align-self: end;
}

.card-eyebrow {
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(80,50,12,0.45); font-weight: 500;
}

.card-left-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.card-left-title { font-size: 18px; font-weight: 400; line-height: 1.25; color: var(--soil); }
.card-left-title b { font-weight: 700; }

.avatar-circle {
  width: 62px; height: 62px; border-radius: 50%;
  border: 3px solid var(--wheat); flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(150deg, #D47030 0%, #8B4810 100%);
  position: relative;
}

.avatar-circle::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(232,185,120,0.9) 0 30%, transparent 31%),
    linear-gradient(to bottom, transparent 48%, rgba(100,48,10,0.85) 48%);
}

.card-bottom-row { display: flex; align-items: flex-start; gap: 12px; }

.btn-learn {
  background: var(--wheat); color: var(--soil-dark); border: none;
  border-radius: var(--radius-pill); padding: 10px 20px;
  font-size: 12.5px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; white-space: nowrap; align-self: flex-start;
  box-shadow: 0 3px 14px rgba(200,139,47,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-learn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,139,47,0.5); }
.card-left-desc { font-size: 10px; color: rgba(58,32,8,0.48); line-height: 1.65; }

/* ── CENTER CARD ──
   ▸ To move it UP:    change align-self: center or flex-start
   ▸ To move it DOWN:  change align-self: end  (default)
   ▸ To add top gap:   add margin-top: Npx
   ▸ To add bottom gap: add margin-bottom: Npx                   */
.card-center {
  background: rgba(38,18,5,0.72);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(232,201,122,0.22);
  border-radius: 26px; padding: 16px 18px 14px;
  color: white; display: flex; flex-direction: column; gap: 9px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.40);

  /* ▸ POSITION CONTROL — change these to move the card */
  align-self: end;          /* end = bottom | center = middle | start = top */
  margin-bottom: 0px;       /* push up from bottom edge */

  position: relative; overflow: hidden;
}

.card-center::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(232,200,120,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.center-top-label { font-size: 8.5px; letter-spacing: 0.14em; opacity: 0.44; display: flex; align-items: center; gap: 4px; }
.card-center h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; line-height: 1.3; }
.card-center-desc { font-size: 10px; opacity: 0.58; line-height: 1.55; }

/* Portrait box — wheat.jpg cropped to show stalks */
.portrait-box {
  width: 100%;

  /* ▸ PORTRAIT HEIGHT — change to make the farmer box taller/shorter */
  height: 145px;

  border-radius: 18px; position: relative; overflow: hidden; flex-shrink: 0;
  background-image: url('wheat.jpg');
  background-size: cover;
  background-position: center 70%;   /* 70% = mostly stalks, less sky */
  filter: brightness(0.58) saturate(1.25);
}

.portrait-box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,8,2,0.75) 0%, transparent 55%);
  z-index: 1;
}

.portrait-svg { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 2; }

.chip-loc {
  position: absolute; bottom: 8px; left: 10px;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9px; padding: 4px 9px; z-index: 3;
}

.loc-sm { font-size: 7.5px; opacity: 0.6; display: flex; align-items: center; gap: 2px; margin-bottom: 1px; }
.farm-nm { font-size: 10.5px; font-weight: 600; line-height: 1.2; }

.chip-yield {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(232,201,122,0.16); border: 1px solid rgba(232,201,122,0.38);
  border-radius: 7px; padding: 3px 7px;
  font-size: 8.5px; color: var(--wheat); font-weight: 600; z-index: 3;
}

.badge-leaf {
  position: absolute; top: 8px; right: 10px;
  width: 38px; height: 38px;
  background: rgba(90,130,50,0.22); border: 1px solid rgba(110,170,55,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 17px; z-index: 3;
}

.btn-contact {
  background: white; color: var(--soil-dark); border: none;
  border-radius: 30px; padding: 9px 0;
  font-size: 12.5px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; width: 100%; flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
}

.btn-contact:hover { transform: scale(1.025); background: #f0ebe1; }

/* ── RIGHT CARDS ── */
.card-right { display: flex; flex-direction: column; gap: 10px; align-self: end; }

.stat-card {
  background: rgba(255,255,255,0.96); border-radius: 18px;
  padding: 13px 15px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 22px rgba(40,18,4,0.12);
}

.stat-lbl { font-size: 9px; color: rgba(58,32,8,0.48); margin-bottom: 1px; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  color: var(--soil); line-height: 1; letter-spacing: 0.02em;
}

.stat-u { font-size: 10.5px; color: rgba(58,32,8,0.48); font-weight: 500; margin-top: 2px; }

.progress-bar { width: 65px; height: 3.5px; background: rgba(200,139,47,0.12); border-radius: 4px; margin-top: 5px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--amber), rgba(200,139,47,0.25)); border-radius: 4px; transition: width 1.6s cubic-bezier(0.4,0,0.2,1); }

.wheat-box { margin-left: auto; flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--wheat), var(--amber)); display: flex; align-items: center; justify-content: center; font-size: 21px; }

.solutions-card { background: rgba(255,255,255,0.96); border-radius: 18px; padding: 13px 15px; box-shadow: 0 4px 22px rgba(40,18,4,0.12); }
.sol-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
.sol-title { font-size: 10.5px; font-weight: 600; color: var(--soil); line-height: 1.4; flex: 1; }
.socials { display: flex; gap: 3px; flex-shrink: 0; margin-top: 1px; }

.soc {
  width: 20px; height: 20px; background: rgba(58,32,8,0.07); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8.5px; font-weight: 700; color: var(--soil-dark); cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.soc:hover { background: rgba(58,32,8,0.16); transform: scale(1.15); }

.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.sol-row { display: flex; gap: 4px; align-items: flex-start; }
.sol-n { font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: var(--amber); line-height: 1; flex-shrink: 0; }
.sol-t { font-size: 8.5px; color: rgba(58,32,8,0.52); line-height: 1.5; }

/* Divider */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(180,120,30,0.18), transparent); margin: 0 22px; flex-shrink: 0; position: relative; z-index: 20; }

/* Bottom strip */
.bottom {
  position: relative; z-index: 20; background: var(--cream);
  display: grid; grid-template-columns: 120px 1fr 190px;
  align-items: center; gap: 18px; padding: 12px 26px 14px; flex-shrink: 0;
}

.bot-logo { display: flex; flex-direction: column; gap: 7px; }
.bot-logo-row { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--soil); }
.bot-logo-icon { width: 25px; height: 25px; background: var(--wheat); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.grain-css { width: 54px; height: 22px; border-radius: 50px; background: linear-gradient(120deg, var(--amber) 0%, #7A3D10 100%); }

.bot-copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(13px,2.1vw,23px); font-weight: 400; line-height: 1.3; color: var(--soil); }
.bot-copy h2 strong { font-weight: 700; }
.bot-copy .tagline { font-size: 9.5px; color: rgba(58,32,8,0.40); font-style: italic; margin-top: 5px; }

/* Field image using wheat.jpg */
.field-css {
  width: 190px; height: 108px; border-radius: 18px; overflow: hidden;
  position: relative; flex-shrink: 0;
  background-image: url('wheat.jpg');
  background-size: cover; background-position: center 70%;
  filter: brightness(0.72) saturate(1.2);
}

.field-css::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 64px; background: rgba(20,6,2,0.88);
  clip-path: polygon(36% 0%,64% 0%,66% 14%,88% 18%,84% 30%,68% 26%,70% 54%,86% 100%,62% 100%,56% 66%,44% 66%,38% 100%,14% 100%,30% 54%,32% 26%,16% 30%,12% 18%,34% 14%);
  z-index: 2;
}

/* Ticker */
.ticker { position: absolute; bottom: 8px; right: 26px; width: 220px; overflow: hidden; opacity: 0.18; pointer-events: none; }
.ticker-track { display: flex; gap: 26px; animation: tick 16s linear infinite; white-space: nowrap; }
.ticker-track span { font-family: 'Bebas Neue', sans-serif; font-size: 9px; letter-spacing: 0.3em; color: var(--soil-dark); }

@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 5px;
  animation: bounce 2.2s ease-in-out infinite; z-index: 30;
}

@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }


/* ═══════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.section-label {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--amber); font-weight: 600;
}

.section-label.amber { color: var(--wheat); }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400; line-height: 1.18; color: var(--soil);
}

.section-heading strong { font-weight: 700; }
.section-heading.light  { color: white; }

.section-sub {
  font-size: 14px; color: rgba(58,32,8,0.55); line-height: 1.75; max-width: 560px;
}

.section-sub.light { color: rgba(255,255,255,0.62); }

.section-header { display: flex; flex-direction: column; gap: 8px; }


/* ═══════════════════════════════════════════════════════
   SECTION 2 — OUR MISSION
═══════════════════════════════════════════════════════ */
.mission-bg {
  background: var(--cream);
}

.mission-bg::before {
  content: 'GROW';
  position: absolute; bottom: -60px; right: -10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 26vw;
  color: rgba(200,139,47,0.055); line-height: 1; pointer-events: none;
}

#mission .section-content { gap: 22px; }

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

.mission-card {
  background: white; border-radius: 20px; padding: 22px 18px;
  box-shadow: 0 4px 22px rgba(40,18,4,0.07);
  border: 1px solid rgba(200,139,47,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(40,18,4,0.13); }
.mcard-icon { font-size: 28px; margin-bottom: 10px; }
.mission-card h4 { font-size: 13.5px; font-weight: 700; color: var(--soil); margin-bottom: 7px; }
.mission-card p  { font-size: 11px; color: rgba(58,32,8,0.54); line-height: 1.65; }

.mission-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  background: var(--soil); border-radius: 20px; padding: 22px 28px;
}

.mstat { display: flex; flex-direction: column; gap: 3px; align-items: center; padding: 0 10px; }
.mstat + .mstat { border-left: 1px solid rgba(232,201,122,0.15); }
.mstat-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--wheat); line-height: 1; }
.mstat-lbl { font-size: 10px; color: rgba(232,201,122,0.52); letter-spacing: 0.08em; text-align: center; }


/* ═══════════════════════════════════════════════════════
   SECTION 3 — CONSULT
═══════════════════════════════════════════════════════ */
.consult-bg {
  background-image: url('wheat.jpg');
  background-size: cover; background-position: center 55%;
}

.consult-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(18,8,2,0.88) 0%, rgba(28,12,3,0.82) 100%);
}

.consult-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: center;
}

.consult-left { display: flex; flex-direction: column; gap: 14px; }

.consult-features { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }

.cfeat { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.72); font-size: 13px; }
.cfeat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wheat); flex-shrink: 0; }

.btn-cta {
  background: var(--wheat); color: var(--soil-dark); border: none;
  border-radius: var(--radius-pill); padding: 13px 28px;
  font-size: 13px; font-weight: 700; font-family: 'DM Sans', sans-serif;
  cursor: pointer; width: fit-content; margin-top: 6px;
  box-shadow: 0 4px 20px rgba(200,139,47,0.42);
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,139,47,0.52); }

.consult-right { display: flex; flex-direction: column; gap: 14px; }

.consult-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 18px 20px; color: white;
}

.consult-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.cc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--wheat);
  background: linear-gradient(135deg,#D47030,#8B4810);
  flex-shrink: 0; position: relative; overflow: hidden;
}

.cc-avatar::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 36%,rgba(232,185,120,0.9) 0 28%,transparent 29%),
    linear-gradient(to bottom,transparent 48%,rgba(100,48,10,0.85) 48%);
}

.cc-name  { font-size: 13px; font-weight: 700; }
.cc-role  { font-size: 10px; opacity: 0.58; margin-top: 1px; }
.cc-badge { margin-left: auto; font-size: 10px; color: #7FCC60; background: rgba(127,204,96,0.14); padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(127,204,96,0.28); }

.cc-quote {
  font-size: 12px; opacity: 0.68; line-height: 1.6; font-style: italic;
  border-left: 2px solid var(--wheat); padding-left: 12px; margin-bottom: 12px;
}

.cc-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; text-align: center; }
.cc-stats div { font-size: 11px; opacity: 0.68; }
.cc-stats strong { font-size: 17px; font-weight: 700; color: var(--wheat); display: block; margin-bottom: 2px; }

/* ═══════════════════════════════════════════════════════
   SECTION 4 — BLOG
═══════════════════════════════════════════════════════ */
.blog-bg { background: var(--cream-dark); }

.blog-bg::before {
  content: 'STORIES';
  position: absolute; bottom: -70px; right: -10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 22vw;
  color: rgba(200,139,47,0.05); line-height: 1; pointer-events: none;
}

#blog .section-content { gap: 20px; padding-top: calc(var(--nav-h) + 18px); }

.blog-top {
  display: flex; align-items: flex-end; justify-content: space-between;
}

.btn-outline {
  background: none; border: 1.5px solid var(--amber);
  border-radius: var(--radius-pill); padding: 8px 20px;
  color: var(--amber); font-size: 12px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background var(--ease), color var(--ease);
}

.btn-outline:hover { background: var(--amber); color: white; }

.blog-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 14px; flex: 1; min-height: 0;
}

.blog-card {
  background: white; border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 18px rgba(40,18,4,0.07);
  border: 1px solid rgba(200,139,47,0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(40,18,4,0.13); }

/* Blog images — wheat.jpg with different crops & filters */
.blog-img {
  flex-shrink: 0;
  background-image: url('wheat.jpg');
  background-size: cover; background-repeat: no-repeat;
}

.blog-card.featured .blog-img { height: 200px; background-position: center 30%; filter: brightness(0.80) saturate(1.3); }
.blog-img-2 { height: 110px; background-position: center 50%; filter: brightness(0.75) saturate(1.1) hue-rotate(8deg); }
.blog-img-3 { height: 110px; background-position: left center; filter: brightness(0.82) saturate(1.2); }
.blog-img-4 { height: 110px; background-position: right center; filter: brightness(0.70) saturate(1.4); }

.blog-body { padding: 13px 15px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }

.blog-tag { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.blog-card.featured .blog-body h3 { font-size: 15px; }
.blog-card h3 { font-size: 11.5px; font-weight: 700; color: var(--soil); line-height: 1.35; }
.blog-card p  { font-size: 10px; color: rgba(58,32,8,0.50); line-height: 1.55; flex: 1; }

.blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 8px; border-top: 1px solid rgba(200,139,47,0.10);
}

.blog-author { font-size: 9.5px; font-weight: 600; color: var(--amber); }
.blog-date   { font-size: 9px; color: rgba(58,32,8,0.36); }


/* ═══════════════════════════════════════════════════════
   SECTION 5 — CONTACT
═══════════════════════════════════════════════════════ */
.contact-bg {
  background-image: url('wheat.jpg');
  background-size: cover; background-position: center 40%;
}

.contact-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(18,7,2,0.93) 0%, rgba(30,12,3,0.90) 100%);
}

.contact-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: start;
  padding-top: calc(var(--nav-h) + 24px);
}

.contact-left { display: flex; flex-direction: column; gap: 14px; }

.contact-details { display: flex; flex-direction: column; gap: 11px; margin-top: 2px; }

.cdetail { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.68); }
.cdetail-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.cdetail strong { display: block; font-size: 11.5px; color: var(--wheat); margin-bottom: 1px; }
.cdetail p { font-size: 11.5px; opacity: 0.62; }

.contact-socials { display: flex; gap: 8px; margin-top: 4px; }

.csoc {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.60);
  cursor: pointer; transition: background var(--ease), color var(--ease);
}

.csoc:hover { background: var(--wheat); color: var(--soil-dark); }

/* Footer */
.site-footer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  padding: 14px 40px;
  display: flex; align-items: center; gap: 24px;
  border-top: 1px solid rgba(232,201,122,0.10);
}

.footer-logo { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 700; }
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,0.28); flex: 1; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--ease); }
.footer-links a:hover { color: var(--wheat); }


/* ═══════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: rgba(38,18,5,0.94); color: var(--wheat);
  font-size: 12px; font-weight: 500;
  padding: 10px 22px; border-radius: 30px;
  border: 1px solid rgba(232,201,122,0.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 300; white-space: nowrap;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════
   AGRO NEW HERO — Creative Landing Section
   ═══════════════════════════════════════════════════ */
.agro-hero-new {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; position: relative;
  overflow: hidden; background: var(--soil);
  padding: 0 !important;
}

/* Layered background */
.ahn-bg { position: absolute; inset: 0; pointer-events: none; }
.ahn-wheat-photo {
  position: absolute; inset: 0;
  background: url('wheat.jpg') center 40% / cover no-repeat;
  opacity: .22;
  mask-image: radial-gradient(ellipse 80% 100% at 75% 50%, black 30%, transparent 75%);
}
.ahn-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(13,8,2,.95) 0%,
    rgba(20,12,3,.85) 45%,
    rgba(30,18,5,.60) 75%,
    rgba(13,8,2,.80) 100%);
}
.ahn-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.ahn-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,201,122,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,201,122,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 10%, transparent 80%);
}

/* Main layout */
.ahn-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  padding: calc(62px + 50px) 6% 60px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}

/* LEFT: Typography */
.ahn-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,201,122,.1);
  border: 1px solid rgba(232,201,122,.28);
  padding: 7px 16px; border-radius: 50px;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--wheat);
  margin-bottom: 28px;
  animation: fadeUp .8s .2s both;
}
.ahn-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5DBB63;
  box-shadow: 0 0 0 3px rgba(93,187,99,.22);
  animation: pulse 2.4s infinite;
}
.ahn-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: .95; margin-bottom: 24px;
  animation: fadeUp .9s .4s both;
}
.ahn-t1, .ahn-t3 { display: block; font-size: clamp(2.5rem, 5vw, 4.5rem); color: rgba(255,255,255,.25); letter-spacing: .08em; }
.ahn-t2, .ahn-t5 { display: block; font-size: clamp(4rem, 8.5vw, 9rem); color: var(--cream); letter-spacing: -.01em; }
.ahn-t4 { display: block; font-size: clamp(4.5rem, 10vw, 11rem); letter-spacing: -.02em; line-height: .9; }
.ahn-t-accent { color: var(--wheat); text-shadow: 0 0 80px rgba(232,201,122,.25); }

.ahn-desc {
  font-size: .95rem; color: rgba(246,240,228,.55);
  line-height: 1.8; max-width: 440px; margin-bottom: 32px;
  animation: fadeUp .8s .6s both;
}
.ahn-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeUp .8s .75s both;
}
.ahn-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--wheat); color: var(--soil-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 4px; text-decoration: none;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 6px 20px rgba(232,201,122,.3);
}
.ahn-btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,201,122,.4); }
.ahn-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; border-radius: 4px; text-decoration: none;
  transition: border-color .3s, color .3s;
}
.ahn-btn-ghost:hover { border-color: var(--wheat); color: var(--wheat); }

/* Stats row */
.ahn-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(232,201,122,.15);
  border-radius: 12px; padding: 18px 24px;
  animation: fadeUp .8s .9s both;
}
.ahn-stat { text-align: center; flex: 1; }
.ahn-stat-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--wheat); line-height: 1; }
.ahn-stat-l { display: block; font-size: .62rem; color: rgba(246,240,228,.4); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.ahn-stat-divider { width: 1px; height: 36px; background: rgba(232,201,122,.15); flex-shrink: 0; }

/* RIGHT: Analytics card */
.ahn-right { position: relative; }
.ahn-main-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(232,201,122,.18);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(232,201,122,.12);
  animation: fadeUp .9s .5s both;
}
.ahn-mc-header {
  display: flex; align-items: center; gap: 7px; margin-bottom: 20px;
}
.ahn-mc-dot { width: 10px; height: 10px; border-radius: 50%; }
.ahn-mc-dot.green { background: #28C840; }
.ahn-mc-dot.amber { background: #FEBC2E; }
.ahn-mc-dot.red   { background: #FF5F57; }
.ahn-mc-label {
  margin-left: 8px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(232,201,122,.5);
}
.ahn-mc-chart { margin-bottom: 16px; }
.ahn-chart-bars {
  height: 90px; display: flex; align-items: flex-end; gap: 6px; padding-bottom: 4px;
}
.ahn-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  height: var(--h);
  background: linear-gradient(180deg, rgba(232,201,122,.8) 0%, rgba(232,201,122,.2) 100%);
  animation: barGrow 1.5s var(--d) ease forwards; transform-origin: bottom;
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ahn-chart-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.2); text-align: center; margin-top: 8px; }
.ahn-mc-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px;
}
.ahn-mc-s span { display: block; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.ahn-mc-s strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--wheat); font-weight: 400; }

/* Floating small cards */
.ahn-float-card {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(232,201,122,.15);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.ahn-float-card strong { display: block; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.ahn-float-card p { font-size: .65rem; color: rgba(255,255,255,.4); margin: 0; }
.fc-icon { font-size: 1.4rem; flex-shrink: 0; }
.fc1 { bottom: -24px; left: -32px; animation: floatA 4s ease-in-out infinite; }
.fc2 { top: -20px; right: -24px; animation: floatB 4.5s ease-in-out .6s infinite; }
.fc3 { bottom: 60px; right: -40px; animation: floatC 3.8s ease-in-out 1.2s infinite; }

/* Scroll hint */
.ahn-scroll {
  position: absolute; bottom: 28px; left: 6%;
  display: flex; align-items: center; gap: 12px; z-index: 2;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(246,240,228,.25);
  animation: fadeUp .8s 1.2s both;
}
.ahn-scroll-line { width: 36px; height: 1px; background: rgba(246,240,228,.2); }

/* ── also update agro stories section to be interactive like blog ── */
.blog-grid { /* existing styles still apply */ }

/* Interactive stories (same pattern as main blog) */
.agro-blog-interactive {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 14px;
  transition: grid-template-columns .5s cubic-bezier(.25,.46,.45,.94);
}
.agro-blog-interactive .blog-card {
  cursor: pointer; transition: transform .4s, box-shadow .4s;
}

/* Responsive */
@media (max-width: 900px) {
  .ahn-layout { grid-template-columns: 1fr; gap: 40px; padding: calc(62px + 30px) 5% 40px; }
  .ahn-right { display: none; }
  .ahn-t2,.ahn-t5 { font-size: clamp(3rem,10vw,6rem); }
  .ahn-t4 { font-size: clamp(3.5rem,12vw,7rem); }
}
