/* ============================================================
   Mitti Gold Organic – Main Stylesheet
   Colors: Green #2d7a1f | Gold #f5a623 | Dark #1a1a1a
   ============================================================ */

/* ---------- Google Fonts (Now loaded in header.php) ---------- */

/* ---------- CSS Variables ---------- */
:root {
  --green: #2d7a1f;
  --green-dark: #1f5814;
  --green-light: #4caf50;
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f4f6f0;
  --white: #ffffff;
  --border: #e2e8d9;
  --shadow: 0 4px 24px rgba(45, 122, 31, 0.10);
  --shadow-lg: 0 8px 48px rgba(45, 122, 31, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-family: 'Playfair Display', serif;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

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

.text-center {
  text-align: center;
}

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

.text-gold {
  color: var(--gold);
}

.bg-light {
  background: var(--gray-light);
}

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

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45, 122, 31, 0.35);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 122, 31, 0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

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

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

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

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

/* ---------- Section Heading ---------- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(45, 122, 31, 0.10);
  color: var(--green);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   LANGUAGE BAR
   ============================================================ */
.lang-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 6px 0;
}

.lang-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.lang-bar a {
  color: rgba(255, 255, 255, 0.75);
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.lang-bar a:hover,
.lang-bar a.active {
  background: rgba(255, 255, 255, 0.20);
  color: var(--white);
}

.lang-bar .lang-icon {
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.navbar-logo img {
  height: 56px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-menu>li {
  position: relative;
}

.navbar-menu>li>a {
  display: block;
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
}

.navbar-menu>li>a:hover,
.navbar-menu>li.active>a {
  color: var(--green);
  background: rgba(45, 122, 31, 0.08);
}

.navbar-menu .has-dropdown>a .dropdown-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
  display: inline-block;
  margin-left: 2px;
  color: var(--dark);
  transition: transform 0.2s;
}

.has-dropdown:hover>a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
}

.dropdown-menu a:hover {
  background: var(--gray-light);
  color: var(--green);
}

.navbar-cta .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f3d08 0%, #1f6b12 50%, #2d7a1f 100%);
  overflow: hidden;
}

.hero::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");
}

.hero-blob {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.20);
  border: 1px solid rgba(245, 166, 35, 0.40);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.20);
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 540px;
  opacity: 0.12;
}

.hero-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.95) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.95) 100%);
  border-radius: 0;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(45, 122, 31, 0.30);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.product-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-card-img::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--green);
}

.product-card-body p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.product-tag {
  display: inline-block;
  background: rgba(45, 122, 31, 0.10);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 2px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(45, 122, 31, 0.10);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open .faq-question {
  background: rgba(45, 122, 31, 0.05);
  color: var(--green);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   QUICK CONTACT FORM
   ============================================================ */
.quick-contact-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.quick-contact-section::before {
  content: '🌱';
  font-size: 200px;
  position: absolute;
  right: -40px;
  top: -60px;
  opacity: 0.08;
  line-height: 1;
}

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

.qc-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.qc-text p {
  color: rgba(255, 255, 255, 0.80);
}

.qc-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.qc-form h3 {
  color: var(--green);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--gray-light);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 122, 31, 0.12);
}

.form-group textarea {
  height: 90px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Removed legacy phone-field-wrap styles in favor of intl-tel-input integration */

/* intl-tel-input fixes */
.iti {
  display: block !important;
  width: 100% !important;
}

.iti input {
  width: 100% !important;
  padding-left: 85px !important; /* Specific left padding for flag and code */
}

.iti__country-list {
  color: var(--dark);
  z-index: 1001;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--green);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--green);
  margin-top: 16px;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ============================================================
   CONTENT PAGE LAYOUTS
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 72px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.6;
}

.content-section {
  padding: 72px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.content-body {
  color: var(--gray);
  font-size: 1.05rem;
}

.content-body h2 {
  font-size: 2rem;
  margin: 56px 0 24px 0;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 16px;
}

.content-body h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.content-body h3 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--dark);
}

.content-body p,
.content-body li,
.content_p,
.faq-answer,
.step-body p,
.info-box p,
.box-p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: inherit;
  text-align: justify;
  text-justify: inter-word;
}

.content-body ul {
  padding-left: 20px;
  color: inherit;
  list-style: none;
  margin-bottom: 32px;
}

.content-body ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.8;
}

.content-body ul li::before {
  content: '•';
  color: var(--green);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Steps / HowTo */
.content-body h4 {
  font-size: 1.4rem;
  color: var(--green);
  margin: 32px 0 16px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-body h4::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 1.2em;
  background: var(--gold);
  border-radius: 3px;
}

/* Specialized Content Boxes */
.science-box, .climate-tip, .synergy-box {
  margin: 36px 0;
  padding: 30px;
  border-radius: 16px;
  border-left: 6px solid;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.science-box { border-left-color: #2e7d32; background: #f1f8e9; }
.climate-tip { border-left-color: #fbc02d; background: #fffde7; }
.synergy-box { border-left-color: #1565c0; background: #e3f2fd; }

.science-box h4, .climate-tip h4, .synergy-box h4 {
  margin-top: 0 !important;
  color: var(--dark) !important;
  font-size: 1.25rem !important;
}

.science-box h4::before, .climate-tip h4::before, .synergy-box h4::before {
  display: none !important;
}

/* Steps / HowTo (Premium Refinement) */
.steps-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.step-num {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 122, 31, 0.25);
}

.step-body h4 {
  font-size: 1.1rem !important;
  margin: 0 0 8px 0 !important;
  color: var(--green-dark) !important;
}

.step-body h4::before { display: none !important; }

.step-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: rgba(45, 122, 31, 0.08);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  color: var(--dark);
  font-size: 0.94rem;
}

@media (min-width: 993px) {
  aside {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
  }
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-card h4 {
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-size: 0.9rem;
}

.sidebar-links a:last-child {
  border-bottom: none;
}

.sidebar-links a:hover {
  color: var(--green);
}

/* Certification badges */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.cert-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.cert-badge:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.cert-badge .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cert-badge p {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

/* Countries grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.country-item:hover {
  border-color: var(--green);
}

.country-item .flag {
  font-size: 1.8rem;
}

/* ============================================================
   BLOG / FARMER CORNER
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.blog-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 122, 31, 0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-info-item p,
.contact-info-item a {
  font-weight: 600;
  color: var(--dark);
}

.contact-info-item a:hover {
  color: var(--green);
}

.map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  border: 2px dashed var(--border);
  margin-top: 20px;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   CAREERS
   ============================================================ */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.job-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green);
}

.job-type {
  display: inline-block;
  background: rgba(45, 122, 31, 0.10);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.job-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.80);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer-bottom a {
  color: var(--gold);
}

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.wa-toggle {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.50);
  transition: var(--transition);
  border: none;
}

.wa-toggle:hover {
  transform: scale(1.1);
}

.wa-toggle svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 280px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: var(--transition);
  transform-origin: bottom right;
}

.wa-widget.open .wa-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popup-header {
  background: #25D366;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-popup-header .wa-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.wa-popup-header h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.wa-popup-header p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.78rem;
}

.wa-popup-body {
  padding: 16px 20px;
}

.wa-bubble {
  background: #f0f0f0;
  border-radius: 12px 12px 12px 0;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.wa-popup-body .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .qc-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu>li>a {
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-light);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 4px 8px;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-img {
    display: none;
  }

  .hero-banner-img {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

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

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

@media (max-width: 480px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .wa-popup {
    width: 260px;
  }

  .phone-field-wrap {
    flex-direction: row;
  }

  .phone-field-wrap .country-code-select {
    min-width: 90px;
    font-size: 0.82rem;
  }
}