/* ============================================================
   AGRO PROCESSOR WEBSITE — PREMIUM STYLES
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-dark:    #1b4332;
  --green-mid:     #2d6a4f;
  --green-light:   #40916c;
  --green-pale:    #d8f3dc;
  --orange:        #f0b31b;
  --orange-dark:   #f0b31b;
  --orange-light:  #f0b31b;
  --gold:          #f0b31b;
  --white:         #ffffff;
  --off-white:     #f8faf8;
  --gray-light:    #f2f4f3;
  --gray-mid:      #adb5bd;
  --text-dark:     #1a2e1a;
  --text-body:     #3d4f3d;
  --text-muted:    #6c757d;
  --shadow-sm:     0 2px 12px rgba(27, 67, 50, 0.08);
  --shadow-md:     0 8px 32px rgba(27, 67, 50, 0.14);
  --shadow-lg:     0 20px 60px rgba(27, 67, 50, 0.18);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.1;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #c69d2b;
  border-color: #c69d2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-green  { background: var(--green-pale); color: var(--green-mid); }
.badge-orange { background: #fdf0e6; color: var(--orange); }

/* About page green section */
.section-green {
  background: var(--green-dark);
  color: var(--white);
}
.section-green .section-label,
.section-green .section-title,
.section-green .section-subtitle,
.section-green p,
.section-green .btn {
  color: var(--white);
}
.section-green .btn {
  border-color: rgba(255,255,255,0.18);
}
.section-green .btn-green,
.section-green .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}
.section-green .btn-green:hover,
.section-green .btn-primary:hover {
  background: #c69d2b;
}

/* Nav contrast section overlay */
[data-nav-contrast] {
  position: relative;
  z-index: 0;
}
[data-nav-contrast]::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(128,128,128,0.18);
  transition: opacity 250ms ease, background 250ms ease;
  z-index: 1;
}
[data-nav-contrast="green"]::before {
  background: rgba(128,128,128,0.32);
}
[data-nav-contrast].nav-contrast-active::before {
  opacity: 1;
}
[data-nav-contrast] > * {
  position: relative;
  z-index: 2;
}
.nav-contrast-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

/* Fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(27,67,50,.08);
    transition:var(--transition);
}

.navbar.scrolled{
    background: var(--green-dark);
    border-bottom-color: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .dropdown-trigger {
    color: var(--orange);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar.scrolled .dropdown-trigger:hover,
.navbar.scrolled .dropdown-trigger:focus-visible {
    color: var(--orange);
}

.navbar.scrolled .dropdown-chevron {
    border-top-color: var(--orange);
}

.navbar.scrolled .hamburger span {
    background: var(--orange);
}

/* ---------- Desktop Layout ---------- */

.nav-inner{
    position:relative;
    display:flex;
    align-items:center;
    height:72px;
    gap:24px;
}

/* Logo */
.nav-logo{
    display:flex;
    align-items:center;
}

.nav-logo-img{
    height:48px;
    width:auto;
    object-fit:contain;
}

/* Center navigation */
.nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:36px;
    list-style:none;
    flex:1;
}

.nav-links a,
.dropdown-trigger {
    position:relative;
    font-size:.95rem;
    font-weight:500;
    color:var(--text-body);
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    font-family:inherit;
    transition:.25s;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown-trigger:hover,
.dropdown-trigger:focus {
    color:var(--green-dark);
}

.dropdown {
    position:relative;
}

.dropdown-menu {
    position:absolute;
    top:calc(100% + 12px);
    left:-12px;
    min-width:200px;
    background:var(--white);
    border:1px solid rgba(27,67,50,0.08);
    border-radius:14px;
    box-shadow:0 18px 40px rgba(27,67,50,0.12);
    display:flex;
    flex-direction:column;
    padding:12px 0;
    z-index:1000;
    opacity:0;
    pointer-events:none;
    transform:translateY(-6px);
    transition:opacity 0.2s ease, transform 0.25s ease;
}

.dropdown-menu::before {
    content:"";
    position:absolute;
    top:-6px;
    left:24px;
    width:12px;
    height:12px;
    background:var(--white);
    border-left:1px solid rgba(27,67,50,0.08);
    border-top:1px solid rgba(27,67,50,0.08);
    transform:rotate(45deg);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown-trigger[aria-expanded="true"] + .dropdown-menu {
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

.dropdown-menu li {
    width:100%;
}

.dropdown-menu a {
    display:block;
    width:100%;
    padding:10px 22px;
    color:var(--text-body);
    font-size:.95rem;
    font-weight:500;
    transition:.2s;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color:var(--green-dark);
    background:rgba(64,145,108,0.05);
}

.dropdown-trigger:focus-visible {
    outline:2px solid var(--green-mid);
    outline-offset:4px;
    border-radius:2px;
}

.dropdown-chevron {
    display:inline-block;
    width:0;
    height:0;
    margin-left:6px;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:6px solid var(--text-body);
    vertical-align:middle;
    transition:transform .25s;
}

.dropdown.open .dropdown-chevron,
.dropdown-trigger:focus .dropdown-chevron {
    transform:rotate(180deg);
}

.mobile-dropdown {
    width:100%;
}

.mobile-dropdown-trigger {
    width:100%;
    text-align:left;
    background:none;
    border:none;
    font:inherit;
    padding:12px 0;
    color:var(--text-body);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mobile-dropdown-menu {
    max-height:0;
    overflow:hidden;
    padding-left:16px;
    transition:max-height 0.35s ease, padding 0.35s ease;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height:400px;
}

.mobile-dropdown-menu a {
    display:block;
    padding:10px 0;
    color:var(--text-body);
    text-decoration:none;
}

.mobile-dropdown-menu a:hover {
    color:var(--green-dark);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--green-light);
  transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

/* Right Contact Button (refined) */
.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:auto;

  font-size:.95rem;
  font-weight:600;
  color:var(--white);

  border:2px solid var(--gold);
  border-radius:999px;
  padding:10px 34px;

  background:var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,0.06);
  text-decoration:none;
  width:max-content;
  transition:var(--transition);
}

.contact-btn:hover,
.contact-btn.active{
  background:#c69d2b;
  border-color:#c69d2b;
  color:var(--white);
  transform:translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.15);
}

.contact-btn:focus-visible{
  outline:3px solid rgba(212,175,55,0.24);
  outline-offset:4px;
}



/* Hamburger */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    margin-left:20px;
}

.hamburger span{
    width:24px;
    height:2px;
    background:var(--green-dark);
    transition:.3s;
}

.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 */

.mobile-nav{
    display:none;
    flex-direction:column;
    background:#fff;
    border-top:1px solid var(--gray-light);
    padding:20px 24px;
}

.mobile-nav a{
    padding:12px 0;
    border-bottom:1px solid var(--gray-light);
}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .nav-links,
    .contact-btn{
        display:none;
    }

    .hamburger{
        display:flex;
        margin-left:auto;
    }

    .mobile-nav.active,
    .mobile-nav.open{
        display:flex;
    }

}

/* ============================================================
   PAGE HEADER BANNER (inner pages)
   ============================================================ */
.page-header {
  padding: 120px 0 60px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.page-header-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
}

/* Use image for inner-page headers when `bg-image` class is applied */
.page-header.bg-image {
  background-image: linear-gradient(135deg, rgba(10,35,16,0.78) 0%, rgba(20,55,35,0.55) 60%), url("../images/about,products, contacts pages top bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 420px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: var(--white); font-weight: 500; }

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero video background with parallax */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

@supports (background-attachment: fixed) {
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
  }
}

/* Layered hero backgrounds for parallax effect */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
  z-index: 0;
  display: none;
}
.hero-bg-layer.visible {
  opacity: 1;
}

/* ensure overlay and content sit above background layers */
.hero-overlay { z-index: 2; }
.hero-content { z-index: 3; }

/* Mobile fallback: `background-attachment: fixed` is unsupported or janky on many mobile browsers */
@media (max-width: 768px) {
  .hero-bg-layer { background-attachment: scroll; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), inset 0 0 80px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 6%, transparent 94%, rgba(255,255,255,0.02) 100%), linear-gradient(90deg, rgba(255,255,255,0.03) 0%, transparent 6%, transparent 94%, rgba(255,255,255,0.02) 100%);
  background-size: 100% 6px, 6px 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 35, 20, 0.82) 0%,
    rgba(20, 55, 35, 0.65) 55%,
    rgba(10, 35, 20, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.5rem,2vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 50px;
}

.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}

.hero-headline-secondary {
  display: block;
  font-size: 0.65em;
  line-height: 1.2;
  margin-top: 0.35em;
  color: rgba(255,255,255,0.94);
}

.hero-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat { color: var(--white); }
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.hero-stat-num span { color: var(--orange-light); }
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero bottom field divider */
.hero-field-divider {
  display: none;
}

.hero-field-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-field-divider .field-layer {
  fill-rule: evenodd;
}

.hero-field-divider .field-layer-distant {
  fill: #123c2d;
  opacity: 0.92;
}

.hero-field-divider .field-layer-middle {
  fill: #2f7a3d;
  opacity: 0.94;
}

.hero-field-divider .field-layer-front {
  fill: #9ba96d;
  opacity: 0.9;
}

.hero-field-divider .field-row {
  fill: none;
  stroke: rgba(255,255,255,0.16);
  stroke-width: 0.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-field-divider .field-row-middle {
  stroke: rgba(255,255,255,0.13);
}

.hero-field-divider .field-row-front {
  stroke: rgba(255,255,255,0.11);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

.hero-scroll svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.6);
}

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

/* ============================================================
   LEGAL & COMPLIANCE PAGE
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.intro-badges {
  display: grid;
  gap: 16px;
}

.intro-badge {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.06), rgba(64, 145, 108, 0.08));
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.intro-badge strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.intro-badge span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.docs-section {
  background: linear-gradient(180deg, #f7fbf8 0%, #f2f6f2 100%);
}

.document-toolbar {
  margin: 36px auto 28px;
  max-width: 980px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.document-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.document-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
}

.document-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid rgba(27, 67, 50, 0.12);
  background: var(--white);
  color: var(--text-body);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.sort-select select {
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  color: var(--text-dark);
  background: var(--white);
}

.document-list-plain {
  max-width: 980px;
  margin: 20px auto 0;
  display: grid;
  gap: 12px;
}

.document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.document-row-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.document-row-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.document-row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.document-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: var(--transition);
}

.document-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.document-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.document-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.document-meta h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.document-category {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
}

.document-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 2px;
}

.document-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: 8px;
}

.document-actions .btn {
  padding: 10px 16px;
  font-size: 0.8rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.highlight-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.highlight-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.governance-section {
  background: var(--off-white);
}

.governance-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.governance-panel p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.governance-points {
  display: grid;
  gap: 14px;
}

.governance-point {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.04), rgba(64, 145, 108, 0.08));
  border-radius: var(--radius-md);
  padding: 18px;
}

.governance-point h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.governance-point p {
  margin: 0;
  font-size: 0.9rem;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.82);
  border: 1px dashed rgba(27, 67, 50, 0.2);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.about-snap {
  background: transparent;
  color: var(--text-dark);
  padding: 50px 0;
}

.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-snap-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-snap-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feat-icon img,
.about-feat-icon svg {
  width: 20px; height: 20px;
}

.about-feat-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.about-feat-body p {
  font-size: 0.83rem;
  color: var(--text-body);
}

.about-snap-text .section-label {
  color: var(--green-light);
}

.about-snap-text .section-title {
  color: var(--gold);
}

.about-snap-image {
  position: relative;
}

.about-snap-image .main-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-snap .btn-outline-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.about-snap .btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.about-snap-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-snap-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-snap-card-icon svg {
  width: 24px; height: 24px;
  stroke: white;
  fill: none;
}

.about-snap-card-text h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.about-snap-card-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}

.products-section .section-label {
  color: rgba(255,255,255,0.8);
}

.products-section .section-title {
  color: var(--gold);
}

.products-section .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img { transform: scale(1.08); }

.product-card-img-wrap { overflow: hidden; position: relative; }

.product-card-status {
  position: absolute;
  top: 12px; right: 12px;
}

.product-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 1.5px solid var(--green-dark);
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}
.product-card:hover .product-card-link { gap: 12px; background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* ============================================================
   OUR PROCESS
   ============================================================ */
.process-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.7); }
.process-section .section-label { color: var(--orange-light); }

/* Process variant: use an image background with gradient overlay */
.process-section.bg-image {
  background-image:
    linear-gradient(135deg, rgba(10,35,16,0.72) 0%, rgba(20,55,35,0.55) 55%),
    url('../images/about-factory.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  z-index: 0;
}

.process-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .process-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.process-icon-wrap svg {
  width: 30px; height: 30px;
  stroke: var(--white);
  fill: none;
}

.process-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 120px;
}

/* ============================================================
   IMPACT & SUSTAINABILITY
   ============================================================ */
.impact-section { background: var(--off-white); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.impact-feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.impact-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.impact-feature-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(33, 60, 38, 0.08);
}

.impact-feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.impact-feature-content h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.impact-feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0a2310 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border: 60px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-icon-wrap {
  display: none;
}

.cta-icon-wrap svg {
  width: 28px; height: 28px;
  stroke: var(--orange-light);
  fill: none;
}

.cta-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* CTA variant: use an image with gradient overlay for richer visuals */
.cta-banner.bg-image {
  background-image:
    linear-gradient(135deg, rgba(10,35,16,0.72) 0%, rgba(20,55,35,0.55) 55%),
    url('../images/cta-bg.jpg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ============================================================
   ABOUT PAGE — OUR STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image-stack {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* MVV (Mission Vision Values) */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: var(--transition);
}



.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mvv-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mvv-icon svg {
  width: 24px; height: 24px;
  stroke: var(--white);
  fill: none;
}

.mvv-card:nth-child(1) .mvv-icon { background: var(--green-dark); }
.mvv-card:nth-child(2) .mvv-icon { background: var(--orange); }
.mvv-card:nth-child(3) .mvv-icon { background: var(--green-light); }

.mvv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.mvv-values-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mvv-values-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mvv-values-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* Outgrower Program */
.outgrower-section { background: var(--off-white); }

.outgrower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.outgrower-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.benefit-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green-mid);
  fill: none;
}

.benefit-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.outgrower-image {
  position: relative;
}

.outgrower-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-pale);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  min-height: 100%;
}

.product-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.product-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-full-body {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.product-full-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.product-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.77rem;
  color: var(--text-muted);
}

.product-spec svg {
  width: 13px; height: 13px;
  stroke: var(--green-mid);
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.form-group textarea { min-height: 120px; }

.contact-info-panel { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-light);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--green-mid);
  fill: none;
}

.contact-detail-text label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.map-placeholder {
  height: 200px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(20%);
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--green-mid);
}

.social-link:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 17px; height: 17px;
  fill: currentColor;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--green-mid);
}

.form-success svg {
  width: 52px; height: 52px;
  stroke: var(--green-mid);
  fill: none;
  margin: 0 auto 14px;
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand-logo-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo-icon svg {
  width: 22px; height: 22px;
  fill: var(--white);
}

.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand-tagline { font-size: 0.6rem; color: rgba(255,255,255,0.5); }

.footer-brand-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.footer-social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 15px; height: 15px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s, gap 0.25s;
}

.footer-links a:hover { color: var(--white); gap: 10px; }

.footer-links a::before {
  content: '→';
  font-size: 0.7rem;
  color: var(--orange-light);
}

.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
  padding: 12px 20px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--orange-dark); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* Footer copyright — hidden admin entry */
.footer-copyright {
  cursor: default;
  transition: color 0.3s ease;
}
.footer-copyright:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--white);
  fill: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid,
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .document-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-full-grid { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; gap: 30px; }
  .process-step { flex: 1 1 calc(33% - 30px); }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .contact-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }

  /* Mobile: disable fixed background (broken on iOS Safari) */
  .hero-bg,
  .process-section.bg-image,
  .page-header.bg-image {
    background-attachment: scroll;
    background-position: center top;
  }

  /* Hide hero scroll indicator on mobile */
  .hero-scroll { display: none; }

  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }

  .products-grid,
  .about-snap-grid,
  .story-grid,
  .outgrower-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-snap-image .main-img { height: 300px; }
  .about-snap-card { left: 0; }

  .mvv-grid { grid-template-columns: 1fr; }

  .impact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .intro-grid,
  .governance-panel { grid-template-columns: 1fr; }
  .document-toolbar { flex-direction: column; align-items: stretch; border-radius: 24px; }
  .document-grid,
  .highlights-grid { grid-template-columns: 1fr; }

  .product-full-card { grid-template-columns: 1fr; }
  .product-full-img { height: 240px; }
  .product-full-body { padding: 24px; }
  .product-spec-list { grid-template-columns: 1fr; gap: 10px; }

  .outgrower-benefits { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .products-grid,
  .impact-grid { grid-template-columns: 1fr; }
  .document-grid,
  .highlights-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .process-step { flex: 1 1 100%; }
}
