/* layout.css */
.grid {
  display: grid;
  gap: var(--space-lg);
}
.grid-2col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4col { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Sections */
.section {
  padding: 4.5rem 0;
  position: relative;
}
.section-alt {
  background: rgba(35, 88, 50, 0.03);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}
.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xxl);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: #F8F6F0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logo:hover img {
  transform: scale(1.02);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.2s;
  padding: 6px 14px;
  border-radius: 20px;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.main-nav a.nav-pill-active {
  background: var(--color-nav-active);
  color: var(--color-primary);
  font-weight: 700;
}
.nav-dropdown-arrow {
  font-size: 0.75rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

/* Products Header Dropdown Menu */
.main-nav ul li.nav-has-dropdown {
  position: relative;
}

.main-nav ul li.nav-has-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 290px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.15);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav ul li.nav-has-dropdown:hover .nav-dropdown-menu,
.main-nav ul li.nav-has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #333 !important;
  background: transparent;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: #F1F8F2 !important;
  color: #1B5E20 !important;
  transform: translateX(3px);
}

.dropdown-icon {
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F1E6;
  border-radius: 8px;
  flex-shrink: 0;
}

.dropdown-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1B5E20;
  line-height: 1.2;
}

.dropdown-item small {
  display: block;
  font-size: 0.78rem;
  color: #666;
  margin-top: 2px;
}

/* Header CTA */
.btn-quote-header {
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-quote-header:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* ── Download Catalog Button — header-actions style ────────────── */
.btn-catalog-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--color-primary) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 25px;
  border: 1.5px solid var(--color-primary);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-catalog-header svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.btn-catalog-header:hover {
  background: var(--color-primary);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(27,94,38,0.25);
}
.btn-catalog-header:hover svg {
  transform: translateY(2px);
}

/* ── Download Catalog — nav-pill style (blog/case-study pages) ── */
.catalog-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  border-radius: 20px;
  padding: 5px 14px !important;
  font-weight: 600;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.catalog-pill:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* header-actions flex gap */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* Target Hero Section (Full-Bleed Seamless Image - Above the Fold Layout) */
.hero-target-fullbleed {
  position: relative;
  width: 100%;
  min-height: calc(79vh - 0px);
  background-color: #F8F6F0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2.2rem 0 1.8rem;
}

/* Background image filling right 56% width edge-to-edge */
.hero-fullbleed-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  filter: contrast(1.03) brightness(1.02);
}

/* Crisp & smooth transition gradient mask: cleanly covers image edge without watermarks */
.hero-fullbleed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    #F8F6F0 0%, 
    #F8F6F0 18%, 
    rgba(248, 246, 240, 0.82) 28%, 
    rgba(248, 246, 240, 0.2) 40%, 
    transparent 50%
  );
  pointer-events: none;
}

/* Floating Scalloped Badge in Top Right Corner */
.scalloped-badge-fullbleed {
  position: absolute;
  top: 24px;
  right: 48px;
  width: 110px;
  height: 110px;
  background: #235832;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(35, 88, 50, 0.35);
  z-index: 10;
  transition: transform 0.3s ease;
  outline: 3px dashed rgba(255, 255, 255, 0.5);
  outline-offset: -6px;
}

.scalloped-badge-fullbleed:hover {
  transform: scale(1.06) rotate(5deg);
}

.badge-text-top {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.badge-sprout-icon {
  width: 16px;
  height: 16px;
  fill: #A5D6A7;
  margin: 2px 0;
}

.badge-text-main {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Container & Content Left Alignment */
.hero-fullbleed-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-fullbleed-content {
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  display: block;
}

.hero-target-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-target-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.hero-target-buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-explore {
  background: var(--color-primary);
  color: #FFFFFF !important;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(35, 88, 50, 0.28);
}

.btn-explore:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(35, 88, 50, 0.38);
}

.btn-request {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary) !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-request:hover {
  background: var(--color-primary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Metric Counters Row (4 Clean Columns - Vertical Stack) */
.hero-target-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(35, 88, 50, 0.14);
  max-width: 600px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-icon {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
  margin-bottom: 6px;
  flex-shrink: 0;
}

.metric-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  white-space: nowrap;
  display: block;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.25;
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
  display: block;
}

/* Hero Right Image & Badge */
.hero-target-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-card {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.15);
}
.hero-img-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* Scalloped Wavy Badge */
.scalloped-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 110px;
  height: 110px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(35, 88, 50, 0.35);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.25;
  border: 3px dashed rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.scalloped-badge .sprout-icon {
  width: 20px;
  height: 20px;
  fill: #A5D6A7;
  margin: 2px 0;
}

/* Feature Ticker Strip */
.feature-strip {
  background: var(--color-strip-bg);
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.strip-item .icon {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}
.strip-divider {
  display: none;
}

/* Optimized Why Kumizh Cards System */
.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.2rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}
.why-card-icon {
  width: 60px;
  height: 60px;
  background: #EDF7EE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.why-card-icon .icon {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}
.why-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1B5E20;
  margin-bottom: 1.2rem;
  letter-spacing: -0.2px;
}
.why-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #333333;
}
.bullet-icon {
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Map Container & Placeholder */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.map-placeholder {
  width: 100%;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: 1rem;
}
.map-container iframe, .map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact Section Alignment & Glass Cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  width: 100%;
}

.contact-form, .contact-details {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-details h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.5;
}

.contact-info-item strong {
  color: var(--color-text);
  margin-right: 4px;
}

.contact-details .map-placeholder {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

/* Footer */
.site-footer {
  background: #1B4526;
  color: #E8F5E9;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}
.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  object-fit: contain;
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(255,255,255,0.15));
  transition: filter 0.3s ease;
}
.footer-logo:hover {
  filter: brightness(1.15) drop-shadow(0 4px 14px rgba(255,255,255,0.22));
}
.footer-inner,
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-inner,
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-inner,
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: #A5D6A7;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: #C8E6C9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #FFFFFF;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.newsletter-form input {
  margin-bottom: 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ── Social Media Icons ───────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
  outline: none;
}

.social-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.social-btn:focus-visible {
  outline: 2px solid #A5D6A7;
  outline-offset: 3px;
}

.social-btn.linkedin:hover  { background: #0A66C2; border-color: #0A66C2; }
.social-btn.facebook:hover  { background: #1877F2; border-color: #1877F2; }
.social-btn.instagram:hover { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); border-color: #cc2366; }
.social-btn.youtube:hover   { background: #FF0000; border-color: #FF0000; }


/* Responsive Layout */
@media (max-width: 992px) {
  .hero-target-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-target-left {
    padding-right: 0;
  }
  .hero-target-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-target-buttons {
    justify-content: center;
  }
  .hero-target-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .scalloped-badge {
    top: 10px;
    right: 10px;
    width: 90px;
    height: 90px;
    font-size: 0.55rem;
  }
  .strip-divider {
    display: none;
  }
  .feature-strip-inner {
    justify-content: center;
    gap: 1.2rem;
  }
}

/* ==========================================================================
   Who We Are Section - Modern Luxury Export-Focused Design
   ========================================================================== */
.who-we-are-section {
  background-color: #FCFCF9;
  background-image: radial-gradient(rgba(46, 125, 50, 0.04) 1px, transparent 1px),
                    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 12 C48 24, 60 30, 60 42 C60 54, 48 60, 40 60 C32 60, 20 54, 20 42 C20 30, 32 24, 40 12 Z' fill='%232E7D32' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 30px 30px, 120px 120px;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.who-we-are-container {
  width: 92%;
  max-width: 1480px;
  margin: 0 auto;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

/* Left Content Column */
.who-we-are-content {
  opacity: 0;
  transform: translateX(-30px);
  animation: whoWeAreSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.who-we-are-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E7D32;
  margin-bottom: 16px;
}

.who-we-are-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #2E7D32;
  margin-bottom: 24px;
}

.who-we-are-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #555555;
}

.who-we-are-body p {
  margin-bottom: 20px;
}

.who-we-are-body p:last-child {
  margin-bottom: 32px;
}

/* Primary Button */
.btn-who-we-are {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2E7D32;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-who-we-are:hover {
  background-color: #236327;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.35);
}

.btn-who-we-are .arrow-icon {
  display: inline-block;
  transition: transform 300ms ease;
  font-size: 18px;
  line-height: 1;
}

.btn-who-we-are:hover .arrow-icon {
  transform: translateX(5px);
}

/* Right Image Column */
.who-we-are-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #F0EDE2;
  opacity: 0;
  transform: translateX(30px);
  animation: whoWeAreSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.who-we-are-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.who-we-are-image-wrap:hover img {
  transform: scale(1.03);
}

/* Keyframes for entrance animation */
@keyframes whoWeAreSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes whoWeAreSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Stacking */
@media (max-width: 992px) {
  .who-we-are-section {
    padding: 80px 0;
  }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-we-are-title {
    font-size: 36px;
  }
  .who-we-are-body {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ==========================================================================
   Premium Products Section - Apple / Notpla / EcoLyf Inspired Design
   ========================================================================== */
.products-premium-section {
  background-color: #FAFAF7;
  padding: 30px 0;
  position: relative;
}

.products-premium-container {
  width: 92%;
  max-width: 1480px;
  margin: 0 auto;
}

.products-header-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 3.5rem;
}

.products-label-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E7D32;
  margin-bottom: 14px;
}

.products-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #2E7D32;
  margin-bottom: 20px;
}

.products-description-lead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
  margin: 0 auto 2.5rem;
}

/* Feature Badges Bar */
.products-feature-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.feature-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(46, 125, 50, 0.18);
  color: #2E7D32;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.feature-badge-pill:hover {
  background: #2E7D32;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.2);
}

/* 4-Column Desktop Grid */
.products-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

@media (max-width: 1200px) {
  .products-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 680px) {
  .products-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Product Card */
.premium-product-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.premium-product-card:hover {
  transform: translateY(-7px) scale(1.018);
  border-color: rgba(46, 125, 50, 0.5);
  box-shadow: 0 20px 48px rgba(46, 125, 50, 0.18);
  cursor: pointer;
}

.premium-product-card:hover .btn-card-view {
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0.3px;
}

.premium-card-image-wrap {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #F4F1E8;
  flex-shrink: 0;
}

.premium-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.premium-product-card:hover .premium-card-image-wrap img {
  transform: scale(1.06);
}

.premium-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 4px;
  display: block;
}

.premium-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
  line-height: 1.25;
}

.premium-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #555555;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.premium-card-meta {
  margin-top: auto;
  margin-bottom: 14px;
}

.meta-label-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  display: block;
}

.meta-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
  min-height: 24px;
}

.meta-tag-row:last-child {
  margin-bottom: 0;
}

.size-pill {
  background: rgba(46, 125, 50, 0.08);
  color: #2E7D32;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

.app-pill {
  background: #F4F1E6;
  color: #4F5850;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

/* Card View Button */
.btn-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #2E7D32;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  width: 100%;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  transition: all 250ms ease;
  cursor: pointer;
  margin-top: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.btn-card-view:hover {
  background-color: #236327;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.btn-card-view .arrow {
  transition: transform 300ms ease;
}

.btn-card-view:hover .arrow {
  transform: translateX(4px);
}

/* Bottom CTA Banner */
.products-cta-banner {
  background: linear-gradient(135deg, rgba(46,125,50,0.06) 0%, rgba(255,255,255,1) 100%);
  border: 1.5px dashed rgba(46, 125, 50, 0.3);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.products-cta-banner h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 12px;
}

.products-cta-banner p {
  font-size: 17px;
  line-height: 1.7;
  color: #555555;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.cta-button-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-cta-download {
  background-color: #2E7D32;
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
  transition: all 300ms ease;
}

.btn-cta-download:hover {
  background-color: #236327;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.35);
}

.btn-cta-quote {
  background-color: transparent;
  border: 1.5px solid #2E7D32;
  color: #2E7D32 !important;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 300ms ease;
}

.btn-cta-quote:hover {
  background-color: #2E7D32;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Optimization Suite (320px to 768px Viewports)
   ========================================================================== */
@media (max-width: 768px) {
  /* Container mobile padding */
  .container, .hero-fullbleed-container, .products-premium-container {
    width: 92% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Header adjustments */
  .site-header {
    padding: 12px 0;
  }
  .header-inner {
    padding: 0 16px;
  }
  .logo img {
    height: 38px;
  }
  .btn-quote-header {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Hero Section on Mobile */
  .hero-target-fullbleed {
    padding: 2.2rem 0 1.8rem;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }

  .hero-fullbleed-bg {
    width: 100% !important;
    height: 260px !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    order: -1;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }

  .hero-fullbleed-bg img {
    border-radius: 20px;
    object-position: center center;
  }

  .hero-fullbleed-overlay {
    background: linear-gradient(to bottom, transparent 40%, #F8F6F0 100%);
  }

  .scalloped-badge-fullbleed {
    top: 12px !important;
    right: 12px !important;
    width: 85px !important;
    height: 85px !important;
    padding: 6px !important;
  }

  .badge-text-top {
    font-size: 0.5rem !important;
  }
  .badge-sprout-icon {
    width: 12px !important;
    height: 12px !important;
  }
  .badge-text-main {
    font-size: 0.52rem !important;
  }

  .hero-fullbleed-content {
    max-width: 100% !important;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
  }

  .hero-target-title {
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem;
  }

  .hero-target-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 auto 1.5rem;
  }

  .hero-target-buttons {
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }

  .btn-explore, .btn-request {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }

  /* Metric Items on Mobile (2x2 Grid) */
  .hero-target-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem 1rem !important;
    padding-top: 1.4rem;
    max-width: 100% !important;
  }

  .metric-item {
    align-items: center !important;
    text-align: center;
  }

  .metric-icon {
    margin-bottom: 4px;
  }

  .metric-number {
    font-size: 1.25rem !important;
  }

  .metric-label {
    font-size: 0.78rem !important;
  }

  /* Feature Strip on Mobile */
  .feature-strip {
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .feature-strip-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    padding: 0 1rem;
    width: max-content;
  }

  .strip-item {
    white-space: nowrap;
    font-size: 0.85rem;
  }

  /* Who We Are Section Mobile */
  .who-we-are-section {
    padding: 60px 0;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .who-we-are-title {
    font-size: 28px !important;
  }

  .who-we-are-image-wrap {
    height: 280px !important;
    border-radius: 18px !important;
  }

  /* Products Section Mobile */
  .products-premium-section {
    padding: 60px 0;
  }

  .products-main-title {
    font-size: 28px !important;
  }

  .products-description-lead {
    font-size: 15px !important;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .products-feature-badges {
    gap: 6px;
    margin-bottom: 2.5rem;
  }

  .feature-badge-pill {
    font-size: 12px;
    padding: 5px 12px;
  }

  .products-card-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .premium-product-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .premium-card-image-wrap {
    height: 200px !important;
  }

  .premium-card-title {
    font-size: 20px !important;
  }

  .premium-card-desc {
    font-size: 14px !important;
  }

  .products-cta-banner {
    padding: 2rem 1.2rem !important;
    border-radius: 20px !important;
  }

  .products-cta-banner h3 {
    font-size: 24px !important;
  }

  .products-cta-banner p {
    font-size: 15px !important;
  }

  .cta-button-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-cta-download, .btn-cta-quote {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Contact Section Mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem;
  }

  .contact-form, .contact-details {
    padding: 1.8rem 1.2rem !important;
    border-radius: 18px !important;
  }

  .contact-details .map-placeholder {
    height: 200px !important;
  }
}

@media (max-width: 480px) {
  .hero-target-title {
    font-size: 1.9rem !important;
  }

  .hero-fullbleed-bg {
    height: 220px !important;
  }

  .who-we-are-title, .products-main-title {
    font-size: 24px !important;
  }
}
/* Category Filter Tabs (Products Page) */
.filter-tab-pill {
  background: #F4F1E6;
  border: 1.5px solid #2E7D32;
  color: #2E7D32;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 25px;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.filter-tab-pill:hover {
  background: rgba(46,125,50,0.12);
  color: #1B5E20;
}

.filter-tab-pill.active {
  background: #2E7D32 !important;
  border-color: #2E7D32 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(46,125,50,0.35);
}
