/*
Theme Name: Fieldgrow Chemicals
Theme URI: https://fieldgrowchemicals.com
Author: Fieldgrow Chemicals India Pvt. Ltd.
Author URI: https://fieldgrowchemicals.com
Description: Premium agrochemical company WordPress theme for Fieldgrow Chemicals India Pvt. Ltd., Rupnagar (Ropar), Punjab. Fully editable via WordPress dashboard with Advanced Custom Fields. Features GSAP animations, Custom Post Types for Products, Contact & Dealer forms, Instagram section, and complete SEO optimization.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://fieldgrowchemicals.com/license
Text Domain: fieldgrow
Tags: agrochemical, agriculture, business, custom-fields, full-site-editing, custom-post-types, responsive-layout, threaded-comments
*/

/* ========================================
   FIELDGROW CHEMICALS — PREMIUM DESIGN SYSTEM v2
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --deep-green: #0F5132;
  --green-dark: #092d1d;
  --green-medium: #1a6b45;
  --green-light: #2d8a5e;
  --light-green: #7ED957;
  --light-green-soft: rgba(126, 217, 87, 0.15);
  --accent-gold: #F9C74F;
  --gold-dark: #d4a017;
  --gold-light: #fde080;
  --white: #ffffff;
  --off-white: #f7faf8;
  --gray-50: #eef3f0;
  --gray-100: #dce8e0;
  --gray-200: #b8cfbf;
  --gray-500: #6b8074;
  --gray-600: #4a5c50;
  --gray-800: #1a2e22;
  --black: #080f0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 16px rgba(15, 81, 50, 0.08);
  --shadow-md: 0 10px 40px rgba(15, 81, 50, 0.13);
  --shadow-lg: 0 24px 70px rgba(15, 81, 50, 0.18);
  --shadow-xl: 0 40px 100px rgba(15, 81, 50, 0.22);
  --shadow-glow: 0 0 40px rgba(126, 217, 87, 0.35);
  --shadow-gold: 0 0 30px rgba(249, 199, 79, 0.35);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --navbar-h: 80px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.4s var(--ease-out);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.7s var(--ease-out);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* ---------- WP ADMIN BAR OFFSET ---------- */
.admin-bar .navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: 110px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-green);
  background: var(--light-green-soft);
  border: 1px solid rgba(126, 217, 87, 0.3);
  margin-bottom: 18px;
}

.section-tag i {
  color: var(--light-green);
  font-size: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--light-green) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 60px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--deep-green) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(126, 217, 87, 0.4);
}

.btn-primary::after {
  background: linear-gradient(135deg, var(--accent-gold), var(--light-green));
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(126, 217, 87, 0.5);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--deep-green);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark));
  color: var(--gray-800);
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(249, 199, 79, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249, 199, 79, 0.5);
}

.btn-green-outline {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
}

.btn-green-outline:hover {
  background: var(--deep-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================ NAVBAR ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  position: relative;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1001;
}

.navbar.scrolled {
  background: var(--white);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.navbar-solid {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm) !important;
}

.nav-logo-text,
.navbar.scrolled .nav-logo-text,
.navbar-solid .nav-logo-text {
  color: var(--gray-800);
}

.navbar.scrolled .nav-links a,
.navbar-solid .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover,
.navbar-solid .nav-links a:hover {
  color: var(--light-green);
}

.navbar.scrolled .nav-toggle span,
.navbar-solid .nav-toggle span {
  background: var(--gray-800);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-search-trigger {
  font-size: 1.15rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 5px;
}

.nav-search-trigger:hover {
  color: var(--light-green);
  transform: scale(1.1);
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(9, 45, 29, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 20px;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.search-overlay-close:hover {
  transform: rotate(90deg);
  color: var(--light-green);
}

.search-overlay-content {
  width: 100%;
  max-width: 700px;
  transform: translateY(30px);
  transition: transform 0.4s 0.1s;
}

.search-overlay.active .search-overlay-content {
  transform: translateY(0);
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  font-size: 2rem;
  color: #fff;
  font-family: var(--font-heading);
  outline: none;
  transition: border-color 0.3s;
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-field:focus {
  border-color: var(--light-green);
}

.search-submit {
  background: transparent;
  border: none;
  color: var(--light-green);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 10px;
}

.nav-logo,
.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 13px;
}

.custom-logo {
  max-height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .custom-logo {
  max-height: 40px;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--light-green), var(--accent-gold));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--deep-green);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(126, 217, 87, 0.35);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.15;
}

.nav-logo-text small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.mobile-menu-header,
.mobile-nav-footer {
  display: none !important;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition-fast);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.navbar-solid .nav-links a,
.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item>a,
.nav-links .current_page_item>a {
  color: var(--light-green);
}

/* Underline Hover Effect */
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--light-green);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
}

.nav-links a:hover::before,
.nav-links a.active::before,
.nav-links .current-menu-item>a::before,
.nav-links .current_page_item>a::before {
  width: 100%;
}

/* Hide underline on CTA button and dropdown items */
.nav-links a.nav-cta::before,
.nav-links .sub-menu a::before {
  display: none !important;
}



.nav-links .menu-item-has-children>a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-links .menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
}

/* SUBMENU DROPDOWN */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-links li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  width: 100%;
}

.nav-links .sub-menu a {
  color: var(--gray-700) !important;
  font-size: 0.88rem;
  padding: 12px 20px;
  width: 100%;
  display: block;
}

.nav-links .sub-menu a:hover {
  background: var(--off-white);
  color: var(--deep-green) !important;
  padding-left: 25px;
}

.nav-links a.active,
.nav-links .current-menu-item>a,
.nav-links .current_page_item>a {
  color: var(--light-green);
}

.nav-cta,
.nav-links .menu-cta>a {
  margin-left: 8px;
  padding: 11px 26px !important;
  background: linear-gradient(135deg, var(--accent-gold), var(--gold-dark)) !important;
  color: #1a1a00 !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(249, 199, 79, 0.35) !important;
}

.nav-cta:hover,
.nav-links .menu-cta>a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(249, 199, 79, 0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(8, 20, 12, 0.88) 0%, rgba(9, 45, 29, 0.72) 55%, rgba(9, 45, 29, 0.3) 100%), linear-gradient(to top, rgba(8, 20, 12, 0.7) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: var(--navbar-h);
}

.hero-content {
  max-width: 760px;
  padding: 120px 0 40px;
}

.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-float {
  position: absolute;
  color: rgba(126, 217, 87, 0.18);
  animation: floatAnim 8s ease-in-out infinite;
}

.hero-float:nth-child(1) {
  font-size: 3.5rem;
  left: 72%;
  top: 22%;
  animation-delay: 0s;
}

.hero-float:nth-child(2) {
  font-size: 2rem;
  left: 83%;
  top: 58%;
  animation-delay: 2.5s;
}

.hero-float:nth-child(3) {
  font-size: 4rem;
  left: 65%;
  top: 70%;
  animation-delay: 4s;
  color: rgba(249, 199, 79, 0.12);
}

.hero-float:nth-child(4) {
  font-size: 1.8rem;
  left: 90%;
  top: 38%;
  animation-delay: 1s;
}

.hero-float:nth-child(5) {
  font-size: 2.5rem;
  left: 58%;
  top: 48%;
  animation-delay: 3s;
  color: rgba(249, 199, 79, 0.1);
}

.hero-float:nth-child(6) {
  font-size: 1.5rem;
  left: 78%;
  top: 82%;
  animation-delay: 5s;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }

  33% {
    transform: translateY(-25px) rotate(8deg) scale(1.05);
    opacity: 1;
  }

  66% {
    transform: translateY(-10px) rotate(-5deg) scale(0.97);
    opacity: 0.8;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(249, 199, 79, 0.1);
  border: 1px solid rgba(249, 199, 79, 0.3);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 9px;
  background: var(--light-green);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
}

/* ============================================================ TRUST BAR ============================================================ */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(9, 45, 29, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-stat strong {
  color: var(--accent-gold);
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.trust-stat span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================ FEATURES ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-green-soft);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-icon.green {
  background: var(--light-green-soft);
  color: var(--deep-green);
}

.feature-icon.gold {
  background: rgba(249, 199, 79, 0.12);
  color: var(--gold-dark);
}

.feature-icon.deep {
  background: rgba(15, 81, 50, 0.08);
  color: var(--deep-green);
}

.feature-icon.teal {
  background: rgba(45, 138, 94, 0.12);
  color: var(--green-medium);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================ PRODUCT CARDS ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  cursor: pointer;
  display: block;
}

/* --- Marquee Specifics --- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 60px;
  position: relative;
}

.marquee-content {
  display: flex !important;
  gap: 30px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Adjust grid to row for marquee */
.marquee-content.products-grid {
  display: flex !important;
  grid-template-columns: none !important;
}

.marquee-content .category-showcase-item {
  width: 320px;
  flex-shrink: 0;
  margin: 0;
}

/* ============================================================ CATEGORY SHOWCASE (NEW) ============================================================ */
.category-showcase-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  padding: 24px;
  background: transparent;
}

.category-showcase-img {
  height: 260px;
  width: 100%;
  position: relative;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.category-showcase-img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(126, 217, 87, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  transition: var(--transition-slow);
}

.category-showcase-item:hover .category-showcase-img::before {
  transform: translate(-50%, -50%) scale(1.3);
  background: radial-gradient(circle, rgba(249, 199, 79, 0.25) 0%, transparent 70%);
}

.category-showcase-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  transition: transform 0.6s var(--ease-bounce), filter 0.6s var(--ease-out);
}

.category-showcase-item:hover .category-showcase-img img {
  transform: translateY(-12px) scale(1.08);
  filter: drop-shadow(0 25px 40px rgba(15, 81, 50, 0.25));
}

.category-showcase-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-green);
  border: 1px solid rgba(126, 217, 87, 0.3);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-showcase-body {
  position: relative;
  z-index: 1;
}

.category-showcase-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.category-showcase-item:hover .category-showcase-body h3 {
  color: var(--deep-green);
}

.category-showcase-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.category-showcase-item:hover .category-showcase-link {
  gap: 14px;
  color: var(--deep-green);
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(15, 81, 50, 0.08);
  position: relative;
  text-decoration: none;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--light-green), var(--accent-gold));
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card:hover::before {
  opacity: 0.06;
}

.product-card-img {
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(9, 45, 29, 0.85);
  color: var(--light-green);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(126, 217, 87, 0.2);
}

.product-card-body {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green);
  transition: var(--transition-fast);
}

.product-card:hover .product-card-link {
  gap: 14px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-tag {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  background: var(--light-green-soft);
  color: var(--deep-green);
  font-weight: 500;
}

/* ============================================================ STATS ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--green-medium) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 50px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================ CTA SECTION ============================================================ */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--green-medium) 100%);
  border-radius: var(--radius-xl);
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(126, 217, 87, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================ INSTAGRAM ============================================================ */
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.insta-follow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.35);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-card:hover img {
  transform: scale(1.08);
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 45, 29, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.insta-card:hover .insta-card-overlay {
  opacity: 1;
}

.insta-card-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* ============================================================ PAGE HEADER ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--green-medium) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--navbar-h);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 20px;
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}

.breadcrumb a {
  color: var(--light-green);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb i {
  font-size: 0.65rem;
}

/* ============================================================ ABOUT STORY ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.about-story-text p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================ DEALER SECTION ============================================================ */
.dealer-section {
  position: relative;
  overflow: hidden;
}

.dealer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dealer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(9, 45, 29, 0.92) 0%, rgba(15, 81, 50, 0.8) 100%);
}

.dealer-section .container {
  position: relative;
  z-index: 2;
}

.dealer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dealer-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.dealer-info h2 span {
  background: linear-gradient(135deg, var(--light-green), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealer-info>p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 30px;
}

.dealer-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dealer-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dealer-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(126, 217, 87, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-green);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(126, 217, 87, 0.2);
}

.dealer-benefit span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

/* ============================================================ FORMS ============================================================ */
.glass-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.glass-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.light-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.light-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.light-form .form-group label {
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.93rem;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  outline: none;
}

.light-form .form-group input,
.light-form .form-group select,
.light-form .form-group textarea {
  background: var(--gray-50);
  border-color: var(--gray-100);
  color: var(--gray-800);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.light-form .form-group input::placeholder,
.light-form .form-group textarea::placeholder {
  color: var(--gray-200);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--light-green);
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--gray-800);
  color: #fff;
}

.light-form .form-group select option {
  background: #fff;
  color: var(--gray-800);
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--light-green), var(--deep-green));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 217, 87, 0.4);
}

.form-notice {
  padding: 12px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  margin-top: 12px;
  display: none;
}

.form-notice.success {
  background: rgba(126, 217, 87, 0.15);
  color: var(--deep-green);
  border: 1px solid rgba(126, 217, 87, 0.3);
  display: block;
}

.form-notice.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
  display: block;
}

/* ============================================================ CONTACT ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--light-green-soft);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--light-green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--deep-green);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* ============================================================ FOOTER ============================================================ */
.footer {
  background: var(--green-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  background: var(--light-green);
  color: var(--gray-800);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--light-green);
}

.footer-col ul li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================ WHATSAPP FLOAT ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ============================================================ FILTER TABS ============================================================ */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-100);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-primary);
}

.filter-tab:hover {
  border-color: var(--light-green);
  color: var(--deep-green);
}

.filter-tab.active {
  background: var(--deep-green);
  color: #fff;
  border-color: var(--deep-green);
}

.section-header-left {
  max-width: 800px;
  margin-bottom: 40px;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-title span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green);
  background: var(--light-green-soft);
  padding: 4px 12px;
  border-radius: 20px;
}

.category-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Page Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* ============================================================ PRODUCT SINGLE ============================================================ */
.product-single {
  padding: 80px 0;
}

.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.product-single-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-50);
}

.product-single-img img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  padding: 30px;
}

.product-single-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.product-single-content .product-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--light-green-soft);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.product-single-content p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-detail-section {
  margin-bottom: 24px;
}

.product-detail-section h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-50);
}

.product-detail-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-detail-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.product-detail-section ul li::before {
  content: '✓';
  color: var(--deep-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================ 404 ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.page-404 .num {
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--light-green), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-404 h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto 30px;
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width:1024px) {

  .about-story,
  .dealer-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-single-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .container {
    padding: 0 20px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .site-header,
  .navbar {
    overflow-x: hidden;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 310px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.2);
    padding: 0;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-menu-header,
  .mobile-nav-footer {
    display: flex !important;
  }

  /* Hide burger and search when drawer is open */
  .nav-links.open~.nav-toggle,
  .nav-links.open~.nav-search-trigger {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav-links.open {
    left: 0;
    display: flex;
  }

  .mobile-menu-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .mobile-menu-header .custom-logo {
    max-height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .close-mobile-menu {
    font-size: 1.4rem;
    color: var(--gray-600);
    cursor: pointer;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-50);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-cta {
    margin: 20px 30px;
    width: calc(100% - 60px);
    text-align: center;
    border-radius: 12px !important;
  }

  .mobile-nav-footer {
    margin-top: auto;
    padding: 30px;
    background: var(--off-white);
  }

  .mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    overflow: hidden;
  }

  .mobile-contact a {
    padding: 0 !important;
    border: none !important;
    font-size: 0.88rem;
    color: var(--gray-600);
    white-space: normal;
    overflow: hidden;
    word-break: break-word;
  }

  .mobile-socials {
    display: flex;
    gap: 20px;
  }

  .mobile-socials a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    color: var(--deep-green);
    font-size: 1rem;
  }

  .nav-links a::before {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1005;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    flex-direction: column;
  }

  .hero .container {
    display: block;
    padding-bottom: 40px;
  }

  .trust-bar {
    position: relative;
    width: 100%;
    background: var(--deep-green);
    padding: 30px 20px;
    border-top: none;
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .trust-item {
    font-size: 0.95rem;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }


  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    gap: 8px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .page-header {
    padding: 110px 0 50px;
  }
}

@media (max-width:480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

/* ============================================================
   PRECISION DESIGN ADDITIONS (Stitch v1)
   ============================================================ */
:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
}

.precision-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 24px !important;
}

.precision-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  height: 100%;
}

.precision-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  border-color: var(--light-green);
  transform: translateY(-4px);
}

.precision-card-header {
  padding: 16px;
  border-bottom: 1px solid var(--slate-100);
  background: rgba(248, 250, 252, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.precision-badge-main {
  background: var(--deep-green);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.precision-id-badge {
  background: var(--slate-200);
  color: var(--slate-600);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.precision-title-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -15px;
  position: relative;
  z-index: 10;
  padding: 0 16px;
}

.precision-main-title {
  background: #2b4e7a; /* Dark Blue from image */
  color: #fff !important;
  padding: 6px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 1.1rem !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  letter-spacing: 0.05em;
  margin: 0 !important;
  text-align: center;
}

.precision-card-main {
  display: flex;
  justify-content: center;
  padding: 20px 16px 10px;
  flex-grow: 1;
}

.precision-img-wrapper {
  width: 140px;
  height: 140px;
  background: transparent;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  border: none;
}

.precision-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.precision-card:hover .precision-img-wrapper img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Precision Grid */
.precision-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 30px !important;
}

/* Precision Card */
.precision-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  height: 100%;
  margin-top: 20px;
}

.precision-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: #2b4e7a;
  transform: translateY(-10px);
}

.precision-specs-v2 {
  padding: 24px;
  background: #fdfdfd;
  border-top: 1px solid var(--slate-50);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.spec-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: flex-start;
  gap: 10px;
}

.spec-label {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2b4e7a !important;
  font-weight: 800 !important;
  line-height: 1.3;
}

.spec-value {
  font-size: 11.5px !important;
  font-weight: 500 !important;
  color: #333 !important;
  line-height: 1.5;
}

.precision-actions {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: auto;
}

.btn-precision-secondary {
  background: var(--slate-50);
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 700;
  padding: 11.5px;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  text-align: center;
  transition: all 0.2s ease;
}

.btn-precision-secondary:hover {
  background: var(--slate-100);
}

.btn-precision-primary {
  background: var(--deep-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 11.5px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-precision-primary:hover {
  opacity: 0.9;
  transform: scale(0.98);
}


/* ============================================================
   FIELD GROW PREMIUM - BRAND-ALIGNED SHOWCASE
   ============================================================ */

.fg-premium-hero {
  position: relative;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  background: #f8fafc;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.fg-premium-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
}

.fg-premium-title {
  color: #0b1326;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.fg-premium-subtitle {
  color: #735c00; /* Gold */
  display: block;
  font-size: 0.45em;
  margin-top: 10px;
}

.fg-premium-lead {
  color: #475569;
  font-size: 1.15rem;
  max-width: 800px;
  line-height: 1.6;
  margin: 0 auto;
}

/* Premium Technical Showcase */
.fg-premium-technical {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  padding: 100px 0;
}

.fg-premium-sec-title {
  color: #0b1326;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
}

.fg-premium-sec-title span {
  color: #2e7d32;
}

.fg-premium-visual-wrap {
  position: relative;
  text-align: center;
  padding: 40px;
  background: #f1f5f9;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.fg-premium-img {
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fg-premium-visual-wrap:hover .fg-premium-img {
  transform: scale(1.05) translateY(-10px);
}

/* Visual Glow Effect */
.fg-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  z-index: 1;
}

/* Feature Blocks (Instead of Spec Items) */
.fg-premium-feature-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.fg-premium-feature-block:hover {
  border-color: #2e7d32;
  transform: translateX(8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fg-feature-icon {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fg-feature-text h3 {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}

.fg-feature-text p {
  color: #0b1326;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Actions */
.fg-premium-btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #2e7d32;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.fg-premium-btn-secondary {
  display: inline-block;
  padding: 16px 30px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fg-premium-btn-primary:hover {
  transform: translateY(-3px);
  background: #1b5e20;
}

/* Sticky Bar Update */
.fg-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
}

.fg-btn-sticky-primary {
  flex: 2;
  background: #2e7d32;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.fg-btn-sticky-secondary {
  flex: 1;
  background: #f1f5f9;
  color: #475569;
  padding: 14px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

/* Ecosystem Section - Brand Aligned */
.fg-premium-ecosystem {
  background: #f8fafc;
  padding: 120px 0;
  border-top: 1px solid #e2e8f0;
}

.fg-premium-sub {
  display: block;
  color: #2e7d32;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.fg-premium-sec-title-light {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0b1326;
  margin: 0;
}

.fg-premium-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f5f9;
}

.fg-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #2e7d32;
}

.fg-card-tag {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #2e7d32;
  color: #fff;
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
  z-index: 2;
}

.fg-card-img-wrap {
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 25px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fg-card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.fg-premium-card:hover img {
  transform: scale(1.1) translateY(-5px);
}

.fg-premium-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #0b1326;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.fg-premium-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.fg-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2e7d32;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  transition: color 0.3s ease;
}

.fg-card-link:hover {
  color: #1b5e20;
}

/* Glass Panel Parallax CTA */
.fg-parallax-cta {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.fg-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 38, 0.75);
  backdrop-filter: blur(3px);
}

.fg-glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  max-width: 700px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.fg-glass-panel h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 25px;
}

.fg-glass-panel p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.fg-stats-row {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.fg-stat-num {
  font-weight: 800;
  font-size: 2.5rem;
  color: #e9c349;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.fg-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  font-weight: 600;
}

.fg-btn-parallax {
  display: block;
  width: 100%;
  padding: 20px;
  background: #e9c349;
  color: #0b1326;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(233, 195, 73, 0.2);
}

.fg-btn-parallax:hover {
  background: #fed65b;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(233, 195, 73, 0.3);
}

@media (max-width: 768px) {
  .fg-stats-row { gap: 20px; flex-direction: column; }
  .fg-glass-panel { padding: 40px 20px; }
}

/* ============================================================
   E-COMMERCE SINGLE PRODUCT REDESIGN
   ============================================================ */

.fg-eco-product {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.fg-eco-back-link {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.fg-eco-back-link:hover {
  color: #2e7d32;
}

/* LEFT COLUMN - GALLERY */
.fg-eco-gallery {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fg-eco-main-img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
  transition: transform 0.3s ease;
}

.fg-eco-gallery:hover .fg-eco-main-img {
  transform: scale(1.03);
}

/* RIGHT COLUMN - DETAILS */
.fg-eco-category {
  display: inline-block;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fg-eco-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0b1326;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.fg-eco-subtitle {
  font-size: 1.1rem;
  color: #735c00; /* Gold */
  font-weight: 600;
  margin-bottom: 20px;
}

.fg-eco-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.fg-eco-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 30px 0;
}

/* DATA BLOCKS */
.fg-eco-spec-table {
  display: flex;
  flex-direction: column;
}

.fg-eco-spec-row {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
}

.fg-eco-spec-row:last-child {
  border-bottom: none;
}

.fg-eco-spec-label {
  flex: 0 0 200px; /* Fixed width for label */
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fg-eco-spec-label i {
  color: #94a3b8;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.fg-eco-spec-value {
  flex: 1;
  color: #0b1326;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ACTIONS */
.fg-eco-btn-primary {
  background-color: #25d366; /* WhatsApp Green */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.fg-eco-btn-primary:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.fg-eco-btn-secondary {
  background-color: #f8fafc;
  color: #0b1326;
  border: 1px solid #cbd5e1;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.fg-eco-btn-secondary:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #0b1326;
}

.fg-eco-guarantee {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 991px) {
  .fg-eco-gallery { min-height: 400px; }
  .fg-eco-spec-row { flex-direction: column; gap: 8px; border-bottom: none; padding: 10px 0; }
  .fg-eco-spec-label { flex: none; }
  .fg-eco-spec-table { background: #f8fafc; padding: 20px; border-radius: 12px; }
}

@media (max-width: 768px) {
  .fg-eco-actions .d-flex {
    flex-direction: column;
  }
  .fg-eco-btn-primary, .fg-eco-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
  STYLE PRODUCT CARDS (services-two__single)
   ========================================================================= */
.services-two__single {
  position: relative;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  width: 100%;
  align-self: flex-start;
  height: max-content;
}

.services-two__single:hover {
  box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.services-two__img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f7faf8 /* matching off-white */;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 280px;
}

.services-two__img-box img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.services-two__single:hover .services-two__img-box img {
  transform: scale(1.08);
}

.service_title {
  padding: 20px 20px 10px 20px;
  text-align: left;
  z-index: 2;
  background-color: #fff;
}

.service_title h2,
.service_title h2 a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0;
  transition: color 0.3s;
}

.service_title h2 a:hover {
  color: var(--light-green);
}

/* Hover Reveal Effect from Bottom */
.services-two__hover-wrapper {
  padding: 0 20px;
  background-color: #fff;
  z-index: 2;
}

.services-two__hover-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-two__single:hover .services-two__hover-content {
  max-height: 250px;
  opacity: 1;
  padding-bottom: 10px;
  margin-top: 5px;
}

.services-two__hover-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.services-two__more-detail {
  padding: 10px 20px 25px 20px;
  background-color: #fff;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.services-two__more-detail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--deep-green);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.services-two__more-detail a i {
  transition: transform 0.3s ease;
}

.services-two__more-detail a:hover {
  color: var(--light-green);
}

.services-two__more-detail a:hover i {
  transform: translateX(4px);
}
