/* =====================================================
   indoremushrooms.com — Design System v2
   Green / Brown / Cream — Premium, modern, warm
   ===================================================== */

/* ── CSS Variables (Design Tokens) ── */
:root {
  /* Colors */
  --c-green-deep: #163d28;
  --c-green: #1f6b3e;
  --c-green-mid: #2d7a4f;
  --c-green-light: #4caf7a;
  --c-green-pale: #e8f5ee;
  --c-green-glass: rgba(31, 107, 62, 0.08);
  --c-brown: #6b4226;
  --c-brown-light: #c8a97b;
  --c-amber: #f59e0b;
  --c-cream: #faf8f4;
  --c-cream-dark: #f0ebe3;
  --c-white: #ffffff;
  --c-dark: #111827;
  --c-dark-mid: #1f2937;
  --c-gray-700: #374151;
  --c-gray-500: #6b7280;
  --c-gray-300: #d1d5db;
  --c-gray-100: #f3f4f6;
  --c-wa: #25d366;
  --c-error: #ef4444;
  --c-success: #16a34a;

  /* Typography */
  --f-body: 'Outfit', system-ui, sans-serif;
  --f-display: 'Playfair Display', Georgia, serif;
  --f-poppins: 'Poppins', sans-serif;
  --f-opensans: 'Open Sans', sans-serif;

  /* Spacing */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --s-xs: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --s-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --s-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --s-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --s-green: 0 6px 20px rgba(31, 107, 62, 0.3);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f-body);
}

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--c-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--c-green-mid);
  border-radius: var(--r-full);
}

/* ── Page Loading ── */
.page-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--c-green-pale);
  border-top-color: var(--c-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section-wrapper {
  padding: var(--sp-3xl) 0;
}

.section-cream {
  background: var(--c-cream);
}

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

.section-green-grad {
  background: linear-gradient(135deg, var(--c-green-deep) 0%, var(--c-green) 60%, #2d7a4f 100%);
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Typography ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-green-pale);
  color: var(--c-green);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--c-green-deep);
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}

.text-green {
  color: var(--c-green-mid);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-gray-500);
  line-height: 1.78;
  margin-bottom: var(--sp-md);
}

.section-head {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.section-subtitle {
  color: var(--c-gray-500);
  font-size: 1.05rem;
  margin-top: 6px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--f-body);
  cursor: pointer;
  transition: var(--t-normal);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: var(--s-green);
}

.btn-primary:hover {
  background: var(--c-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 107, 62, 0.4);
}

.btn-wa {
  background: var(--c-wa);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-green {
  background: var(--c-green);
  color: var(--c-white);
}

.btn-green:hover {
  background: var(--c-green-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--c-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}

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

.btn-white {
  background: var(--c-white);
  color: var(--c-green);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--c-green-pale);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), var(--s-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-white);
  transition: color var(--t-normal);
}

.navbar.scrolled .nav-logo {
  color: var(--c-green-deep);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--t-normal);
}

.logo-img:hover {
  transform: scale(1.06);
}

.logo-text strong {
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: var(--t-normal);
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--c-white);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-white);
  font-weight: 600;
}

.navbar.scrolled .nav-link {
  color: var(--c-dark-mid);
}

.navbar.scrolled .nav-link:hover {
  background: var(--c-green-pale);
  color: var(--c-green);
}

.navbar.scrolled .nav-link.active {
  background: var(--c-green-pale);
  color: var(--c-green);
}

.nav-link.nav-cta {
  background: var(--c-green);
  color: var(--c-white) !important;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-weight: 700;
}

.nav-link.nav-cta:hover {
  background: var(--c-green-deep) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  display: block;
  transition: var(--t-normal);
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.11);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(22, 61, 40, 0.90) 0%,
      rgba(0, 154, 98, 0.72) 45%,
      rgba(22, 61, 40, 0.82) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--c-green-light);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--c-amber);
  bottom: 50px;
  left: 10%;
  animation-delay: -4s;
}

@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 130px var(--sp-lg) 80px;
  text-align: center;
  animation: fadeUpIn 0.9s ease both;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--sp-lg);
  animation: fadeUpIn 0.8s ease 0.1s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-wa);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.12;
  margin-bottom: var(--sp-lg);
  animation: fadeUpIn 0.8s ease 0.2s both;
}

.hero-title-top {
  font-family: var(--f-poppins);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accent-text {
  font-family: var(--f-poppins);
  font-style: normal;
  color: #a8e6be;
  font-size: 0.8em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUpIn 0.8s ease 0.3s both;
}

.hero-subtitle strong {
  color: #a8e6be;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--sp-xl);
  animation: fadeUpIn 0.8s ease 0.35s both;
}

.pill {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-white);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUpIn 0.8s ease 0.4s both;
  margin-bottom: var(--sp-xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUpIn 0.8s ease 0.5s both;
}

.stat {
  text-align: center;
  color: var(--c-white);
}

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--f-display);
}

.stat-label {
  font-size: 0.78rem;
  opacity: 0.72;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  animation: fadeUpIn 1s ease 0.8s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: bounceDown 1.6s ease infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: rotate(45deg) translateY(7px);
    opacity: 1;
  }
}

.hero-trust-card {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUpIn 1s ease 0.7s both;
  max-width: 280px;
}

.trust-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-wa);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

.trust-text {
  color: var(--c-white);
}

.trust-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-text span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 61, 40, 0.88) 0%, rgba(45, 122, 79, 0.68) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--c-white);
  padding: 0 var(--sp-lg);
  animation: fadeUpIn 0.6s ease both;
}

.page-hero-content h1 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1.05rem;
  opacity: 0.82;
}

/* ── Two-column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.col-img .img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-lg);
}

.col-img .img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.col-img .img-frame:hover img {
  transform: scale(1.04);
}

.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--c-white);
  color: var(--c-green-deep);
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--s-md);
}

/* ── About Highlights ── */
.about-highlights {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.highlight-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-green);
}

.highlight-label {
  font-size: 0.82rem;
  color: var(--c-gray-500);
}

/* ── How We Work Steps ── */
.how-works-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hw-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  box-shadow: var(--s-sm);
  position: relative;
  border: 1.5px solid var(--c-gray-100);
  transition: var(--t-normal);
}

.hw-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
  border-color: var(--c-green-pale);
}

.hw-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: var(--c-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.hw-step-icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-sm);
  display: block;
}

.hw-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin-bottom: 8px;
}

.hw-step p {
  font-size: 0.875rem;
  color: var(--c-gray-500);
  line-height: 1.6;
}

.hw-arrow {
  font-size: 1.5rem;
  color: var(--c-green-light);
  align-self: center;
  padding-top: 14px;
  font-weight: 700;
}

/* ── Why Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.why-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 28px var(--sp-lg);
  text-align: center;
  box-shadow: var(--s-sm);
  border: 1.5px solid var(--c-gray-100);
  transition: var(--t-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
  border-color: var(--c-green-pale);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-sm);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--c-gray-500);
}

/* ── Home About Teaser & CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-brown) 0%, #8b5e3c 100%);
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: var(--sp-xl);
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Products Grid ── */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--c-white);
  color: var(--c-gray-500);
  border: 2px solid var(--c-gray-300);
  transition: var(--t-normal);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--c-green-light);
  color: var(--c-green);
}

.filter-btn.active {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

@keyframes fadeCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prod-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 1.5px solid var(--c-gray-100);
  transition: var(--t-normal);
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-md);
  border-color: var(--c-green-light);
}

.prod-card:focus {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
}

.prod-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 61, 40, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t-normal);
}

.prod-card:hover .prod-img-overlay {
  opacity: 1;
}

.quick-enquiry {
  background: var(--c-white);
  color: var(--c-green);
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--t-fast);
}

.quick-enquiry:hover {
  background: var(--c-green-pale);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.prod-badge.fresh {
  background: #dcfce7;
  color: #15803d;
}

.prod-badge.dry {
  background: #fef3c7;
  color: #92400e;
}

.prod-badge.processed {
  background: #ede9fe;
  color: #6d28d9;
}

.prod-badge.spawn {
  background: #d1fae5;
  color: #065f46;
}

.prod-body {
  padding: var(--sp-lg);
}

.prod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.prod-emoji {
  font-size: 1.6rem;
}

.prod-avail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
}

.avail-green {
  color: var(--c-success);
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.prod-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin-bottom: 7px;
}

.prod-desc {
  font-size: 0.875rem;
  color: var(--c-gray-500);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}

.prod-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--sp-md);
}

.prod-features li {
  font-size: 0.8rem;
  color: var(--c-gray-500);
  padding-left: 4px;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--c-gray-100);
}

.prod-price-wrap {
  display: flex;
  flex-direction: column;
}

.prod-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c-green);
}

.prod-min {
  font-size: 0.72rem;
  color: var(--c-gray-500);
}

.prod-cta-banner {
  margin-top: var(--sp-xl);
  background: linear-gradient(135deg, var(--c-green-deep), var(--c-green));
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.pcta-text {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.pcta-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pcta-text strong {
  display: block;
  color: var(--c-white);
  font-size: 1.1rem;
  font-weight: 700;
}

.pcta-text span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* ── Services Grid ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.svc-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--s-sm);
  border: 1.5px solid var(--c-gray-100);
  transition: var(--t-normal);
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-light));
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-md);
  border-color: var(--c-green-pale);
}

.svc-card.svc-highlight {
  background: linear-gradient(135deg, var(--c-green-deep) 0%, var(--c-green) 100%);
  border-color: transparent;
  color: var(--c-white);
}

.svc-card.svc-highlight::before {
  background: rgba(255, 255, 255, 0.3);
}

.svc-card.svc-highlight h3,
.svc-card.svc-highlight p {
  color: var(--c-white) !important;
}

.svc-card.svc-highlight .svc-features li {
  color: rgba(255, 255, 255, 0.85) !important;
}

.svc-card.svc-highlight .svc-num {
  color: rgba(255, 255, 255, 0.1);
}

.svc-card.svc-highlight .btn-green {
  background: var(--c-white);
  color: var(--c-green);
}

.svc-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-amber);
  color: var(--c-dark);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.svc-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--c-gray-100);
  line-height: 1;
  margin-bottom: -8px;
}

.svc-icon-wrap {
  font-size: 2.4rem;
  margin-bottom: var(--sp-sm);
  display: block;
}

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--c-gray-500);
  margin-bottom: var(--sp-md);
  line-height: 1.65;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: var(--sp-xl);
}

.svc-features li {
  font-size: 0.875rem;
  color: var(--c-gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-features li span {
  color: var(--c-green);
  font-weight: 700;
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.testi-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--s-sm);
  border: 1.5px solid var(--c-gray-100);
  border-left: 4px solid var(--c-green);
  transition: var(--t-normal);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--s-md);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-meta strong {
  display: block;
  font-size: 0.95rem;
}

.testi-meta span {
  font-size: 0.8rem;
  color: var(--c-gray-500);
}

.testi-stars {
  color: var(--c-amber);
  font-size: 1rem;
  margin-bottom: var(--sp-sm);
}

.testi-text {
  font-size: 0.9rem;
  color: var(--c-gray-500);
  font-style: italic;
  line-height: 1.7;
}

/* ── Review Form Box ── */
.review-box-wrap {
  margin-top: var(--sp-2xl);
  display: flex;
  justify-content: center;
}

.review-box-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--s-md);
  border: 1.5px solid var(--c-gray-100);
  width: 100%;
  max-width: 760px;
}

.review-box-card h3 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  color: var(--c-green-deep);
  margin-bottom: 6px;
  text-align: center;
}

.review-box-card p {
  color: var(--c-gray-500);
  text-align: center;
  margin-bottom: var(--sp-xl);
  font-size: 0.95rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.review-form input,
.review-form textarea {
  padding-left: 14px !important;
}

.star-rating-widget {
  display: inline-flex;
  gap: 6px;
  font-size: 1.6rem;
  margin-top: 4px;
}

.star-btn {
  cursor: pointer;
  transition: transform 0.12s ease, color 0.12s ease;
  color: var(--c-gray-300);
}

.star-btn.active {
  color: var(--c-amber);
}

/* Hover highlights */
.star-rating-widget:hover .star-btn {
  color: var(--c-amber) !important;
}

.star-rating-widget .star-btn:hover ~ .star-btn {
  color: var(--c-gray-300) !important;
}

/* ── Gallery ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-md);
}

.gal-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item.gal-wide {
  grid-column: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gal-item:hover img,
.gal-item:focus img {
  transform: scale(1.08);
}

.gal-item:focus {
  outline: 3px solid var(--c-green);
  outline-offset: 3px;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 61, 40, 0.78) 0%, transparent 55%);
  opacity: 0;
  transition: var(--t-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
}

.gal-item:hover .gal-overlay,
.gal-item:focus .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  color: var(--c-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.gal-cta {
  text-align: center;
  margin-top: var(--sp-xl);
}

.gal-cta p {
  color: var(--c-gray-500);
  margin-bottom: var(--sp-md);
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.blog-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 1.5px solid var(--c-gray-100);
  transition: var(--t-normal);
}

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

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-green);
  color: var(--c-white);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-body {
  padding: var(--sp-lg);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--c-gray-500);
  display: block;
  margin-bottom: 7px;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-body p {
  font-size: 0.875rem;
  color: var(--c-gray-500);
  margin-bottom: var(--sp-md);
}

.blog-read-more {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-green);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--f-body);
  padding: 0;
  transition: var(--t-fast);
}

.blog-read-more:hover {
  color: var(--c-green-deep);
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap .form-header h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--c-green-deep);
  margin-bottom: 6px;
}

.contact-form-wrap .form-header p {
  color: var(--c-gray-500);
  margin-bottom: var(--sp-xl);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-dark);
}

.req {
  color: var(--c-error);
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.textarea-wrap .input-icon {
  top: 14px;
  transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 2px solid var(--c-gray-300);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-white);
  transition: var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(31, 107, 62, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--c-error);
}

.err-msg {
  color: var(--c-error);
  font-size: 0.78rem;
  min-height: 1.1em;
}

.btn-loading .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

.hidden {
  display: none !important;
}

.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
}

.form-feedback.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.feedback-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-feedback strong {
  display: block;
  margin-bottom: 3px;
}

.form-feedback p a {
  color: var(--c-green);
  text-decoration: underline;
}

/* Contact Info */
.contact-info-wrap h3 {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--c-green-deep);
  margin-bottom: var(--sp-lg);
}

.ci-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.ci-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-100);
  border-radius: var(--r-md);
  padding: 14px var(--sp-md);
  transition: var(--t-normal);
  text-decoration: none;
  color: inherit;
}

.ci-card:hover:not(.static) {
  border-color: var(--c-green-light);
  background: var(--c-green-pale);
  transform: translateX(4px);
}

.ci-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-icon-wrap.phone {
  background: #dcfce7;
}

.ci-icon-wrap.wa {
  background: #d1fae5;
}

.ci-icon-wrap.email {
  background: #dbeafe;
}

.ci-icon-wrap.addr {
  background: #fef3c7;
}

.ci-icon-wrap.hours {
  background: var(--c-cream-dark);
}

.ci-text {
  flex: 1;
}

.ci-label {
  font-size: 0.72rem;
  color: var(--c-gray-500);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: block;
}

.ci-text strong {
  font-size: 0.9rem;
  color: var(--c-dark);
  font-weight: 700;
  display: block;
}

.ci-text span {
  font-size: 0.8rem;
  color: var(--c-gray-500);
  display: block;
}

.ci-arrow {
  color: var(--c-green);
  font-weight: 700;
}

.wa-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--c-wa);
  color: var(--c-white);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: var(--sp-lg);
  transition: var(--t-normal);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-contact-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--s-sm);
}

/* ── Footer ── */
.footer {
  background: var(--c-green-deep);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: var(--sp-2xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-xl);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--sp-md);
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-md);
}

.footer-phone,
.footer-email {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: var(--t-fast);
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--c-white);
}

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

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--t-normal);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-col a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--t-fast);
}

.footer-links-col a:hover {
  opacity: 1;
  color: var(--c-green-light);
}

.footer-contact-col p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 7px;
}

.footer-contact-col a {
  opacity: 0.7;
  transition: var(--t-fast);
}

.footer-contact-col a:hover {
  opacity: 1;
  color: var(--c-green-light);
}

.footer-wa-btn {
  display: inline-block;
  margin-top: var(--sp-md);
  background: var(--c-wa);
  color: white;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--t-fast);
}

.footer-wa-btn:hover {
  background: #1da851;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: var(--c-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: waPulse 3s ease infinite;
  transition: var(--t-normal);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  60% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  animation: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wa-tooltip {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--c-dark);
  color: var(--c-white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--t-normal);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--c-dark);
}

/* ── Scroll to Top ── */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--c-green);
  color: var(--c-white);
  border-radius: 50%;
  box-shadow: var(--s-md);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--t-normal);
  border: none;
  cursor: pointer;
}

.scroll-top-btn:hover {
  background: var(--c-green-deep);
  transform: translateY(-2px);
}

.scroll-top-btn.visible {
  display: flex;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  .two-col {
    gap: var(--sp-xl);
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--c-green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--sp-lg) var(--sp-xl);
    gap: 4px;
    z-index: 999;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.22);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    background: none !important;
    width: 100%;
    padding: 12px var(--sp-md);
    border-radius: var(--r-sm);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .nav-link.nav-cta {
    background: var(--c-green-light) !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .reverse-mob .col-img {
    order: -1;
  }

  .col-img .img-frame img {
    height: 260px;
  }

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

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

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

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

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gal-item.gal-wide {
    grid-column: span 2;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .how-works-steps {
    flex-direction: column;
    align-items: center;
  }

  .hw-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .hw-step {
    max-width: 100%;
    width: 100%;
  }

  .hero-trust-card {
    display: none;
  }

  .hero-stats {
    gap: var(--sp-md);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-pills {
    gap: 8px;
  }

  .section-wrapper {
    padding: var(--sp-2xl) 0;
  }

  .about-highlights {
    gap: var(--sp-md);
  }

  .prod-cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .pcta-text {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }

  .gal-item.gal-wide {
    grid-column: span 1;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-pills .pill {
    font-size: 0.78rem;
    padding: 5px 11px;
  }

  .hero-stats .stat-num {
    font-size: 1.4rem;
  }
}

/* ── Blog Modal ── */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  padding: var(--sp-md);
}

.blog-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-modal-container {
  background: var(--c-white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: var(--sp-2xl);
  box-shadow: var(--s-lg);
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-modal-overlay.open .blog-modal-container {
  transform: translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--c-gray-500);
  background: none;
  border: none;
  transition: color 0.15s ease, transform 0.15s ease;
  z-index: 10;
}

.blog-modal-close:hover {
  color: var(--c-error);
  transform: scale(1.1);
}

.blog-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-md);
}

.blog-modal-date {
  font-size: 0.85rem;
  color: var(--c-gray-500);
}

.blog-modal-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--c-green-deep);
  margin-bottom: var(--sp-lg);
  line-height: 1.25;
}

.blog-modal-img-wrap {
  width: 100%;
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
}

.blog-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-content {
  font-size: 1.02rem;
  color: var(--c-gray-700);
  line-height: 1.75;
}

.blog-modal-content p {
  margin-bottom: var(--sp-md);
}

.blog-modal-content h4 {
  font-family: var(--f-body);
  font-size: 1.2rem;
  color: var(--c-green-deep);
  margin: var(--sp-lg) 0 var(--sp-sm);
  font-weight: 700;
}

.blog-modal-content ul,
.blog-modal-content ol {
  margin-bottom: var(--sp-md);
  padding-left: 20px;
}

.blog-modal-content li {
  margin-bottom: 6px;
}

.blog-modal-content strong {
  color: var(--c-dark);
}

@media (max-width: 768px) {
  .blog-modal-container {
    padding: var(--sp-lg);
  }
  .blog-modal-img-wrap {
    height: 200px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG — New System (Category filters, Tags, Post page)
═══════════════════════════════════════════════════════════ */

/* Blog filter bar */
.blog-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.blog-filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--c-white);
  color: var(--c-gray-500);
  border: 2px solid var(--c-gray-200);
  cursor: pointer;
  transition: var(--t-normal);
}

.blog-filter-btn:hover {
  border-color: var(--c-green-light);
  color: var(--c-green);
}

.blog-filter-btn.active {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

/* Blog card enhancements */
.blog-read-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--r-full);
  font-weight: 600;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-green);
  background: var(--c-green-pale);
  padding: 2px 8px;
  border-radius: var(--r-full);
  opacity: 0.85;
}

/* Blog subscribe CTA */
.blog-subscribe-cta {
  margin-top: var(--sp-2xl);
  background: linear-gradient(135deg, var(--c-green-deep), var(--c-green));
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-2xl);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.bsc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.bsc-text {
  flex: 1;
  min-width: 200px;
}

.bsc-text strong {
  display: block;
  color: var(--c-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bsc-text span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* ── Blog Post Page (individual post) ── */
.blog-post-page {
  padding: calc(var(--nav-h) + var(--sp-xl)) 0 var(--sp-2xl);
  min-height: 100vh;
}

.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-pale);
  color: var(--c-green-deep);
  border: none;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: var(--sp-xl);
  transition: var(--t-normal);
}

.blog-back-btn:hover {
  background: var(--c-green);
  color: var(--c-white);
}

.blog-post-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: var(--sp-xl);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

.blog-post-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-green-deep);
  line-height: 1.25;
  margin-bottom: var(--sp-md);
}

.blog-post-desc {
  font-size: 1.05rem;
  color: var(--c-gray-500);
  line-height: 1.7;
  border-left: 4px solid var(--c-green-light);
  padding-left: var(--sp-md);
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-md);
}

.blog-post-hero {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-2xl);
  box-shadow: var(--s-lg);
}

.blog-post-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Article content styling */
.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-gray-700);
}

.blog-post-content h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-green-deep);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.blog-post-content p {
  margin-bottom: var(--sp-md);
}

.blog-post-content ul, .blog-post-content ol {
  padding-left: 22px;
  margin-bottom: var(--sp-md);
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content strong {
  color: var(--c-dark);
  font-weight: 700;
}

/* Post footer — author + share */
.blog-post-footer {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 2px solid var(--c-gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.blog-author-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.blog-author-avatar {
  width: 50px;
  height: 50px;
  background: var(--c-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.blog-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-dark);
}

.blog-author-info span {
  font-size: 0.82rem;
  color: var(--c-gray-500);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-share > span {
  font-size: 0.875rem;
  color: var(--c-gray-500);
  font-weight: 600;
}

.share-btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--t-normal);
}

.share-wa {
  background: var(--c-wa);
  color: white;
}

.share-wa:hover {
  background: #128c7e;
}

/* Post CTA box */
.blog-post-cta {
  max-width: 780px;
  margin: var(--sp-2xl) auto 0;
  background: linear-gradient(135deg, var(--c-green-deep), var(--c-green));
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  text-align: center;
}

.blog-post-cta h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-white);
  margin-bottom: var(--sp-sm);
}

.blog-post-cta p {
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--sp-xl);
}

.blog-post-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive blog */
@media (max-width: 768px) {
  .blog-post-hero img {
    height: 220px;
  }
  .blog-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-subscribe-cta {
    flex-direction: column;
    text-align: center;
  }
  .bsc-icon {
    font-size: 2rem;
  }
}

/* =====================================================
   Coming Soon Notice & Blocker System
   ===================================================== */

/* Body shift when banner is visible */
body.has-coming-soon-banner {
  padding-top: 40px;
}
body.has-coming-soon-banner .navbar {
  top: 40px;
}

@media (max-width: 768px) {
  body.has-coming-soon-banner {
    padding-top: 50px;
  }
  body.has-coming-soon-banner .navbar {
    top: 50px;
  }
}

/* Top Announcement Banner */
.coming-soon-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(90deg, var(--c-green-deep) 0%, var(--c-green) 100%);
  color: var(--c-cream);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  padding: 0 40px;
  transition: transform 0.3s ease;
}

.coming-soon-banner strong {
  color: var(--c-amber);
  font-weight: 700;
  margin-right: 6px;
}

.coming-soon-banner .banner-close {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.coming-soon-banner .banner-close:hover {
  color: var(--c-white);
}

@media (max-width: 768px) {
  .coming-soon-banner {
    height: 50px;
    font-size: 0.78rem;
    line-height: 1.3;
    padding: 0 35px 0 15px;
    text-align: left;
  }
}

/* Glassmorphic Coming Soon Modal */
.cs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 61, 40, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cs-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cs-modal-container {
  background: var(--c-cream);
  border: 1px solid rgba(31, 107, 62, 0.15);
  border-radius: var(--r-xl);
  max-width: 500px;
  width: 90%;
  padding: var(--sp-xl);
  box-shadow: var(--s-lg), 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cs-modal-overlay.open .cs-modal-container {
  transform: scale(1);
}

.cs-modal-decor {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: var(--c-green-glass);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cs-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cs-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-green-pale);
  color: var(--c-green-mid);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-modal-title {
  font-family: var(--f-display);
  color: var(--c-green-deep);
  font-size: 1.8rem;
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}

.cs-modal-body-text {
  color: var(--c-gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: var(--sp-lg);
}

.cs-modal-body-text p {
  margin-bottom: var(--sp-md);
}

.cs-modal-body-text p:last-child {
  margin-bottom: 0;
}

.cs-modal-warning {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--c-amber);
  padding: 12px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.88rem;
  color: var(--c-brown);
  font-weight: 500;
  margin-top: var(--sp-md);
}

.cs-modal-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  background: var(--c-green);
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(31, 107, 62, 0.2);
  margin-top: var(--sp-md);
}

.cs-modal-btn:hover {
  background: var(--c-green-deep);
}

.cs-modal-btn:active {
  transform: scale(0.98);
}