/* 
Theme Name: KrishiNova Agro Solutions 
Description: Premium Agriculture & Rural Business Theme
Author: Digital Vayapari
Theme URI: ThemeBazar.shop
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {
  --primary: #1F5C3A;
  --dark-green: #153F2B;
  --gold: #E5A72E;
  --gold-hover: #d49520;
  --leaf-green: #6FAF44;
  --cream: #F7F4EA;
  --light-green: #F1F7F2;
  --text-dark: #18251D;
  --text-light: #556B5C;
  --white: #ffffff;
  --border-color: #E2E8F0;
  
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px -1px rgba(24, 37, 29, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(24, 37, 29, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(24, 37, 29, 0.1);
  --shadow-gold: 0 8px 20px rgba(229, 167, 46, 0.3);
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-green);
}

.hindi-text {
  font-family: var(--font-hindi);
}

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

ul {
  list-style: none;
}

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

/* Base Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 992px) {
  .section-padding {
    padding: 100px 0;
  }
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.15);
  z-index: -1;
  transform: translateY(100%);
  transition: var(--transition);
}

.btn:hover::after {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--dark-green);
}

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

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

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

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-green);
  color: var(--cream);
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--gold);
}

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

.social-links a:hover {
  color: var(--gold);
}

.lang-switch a {
  padding: 0 4px;
}

.lang-switch a.active {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

/* Header */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 5px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-inner {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
}

.logo-text .brand-tagline {
  font-size: 0.75rem;
  color: var(--leaf-green);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-nav ul {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn, .whatsapp-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-dark);
}

.whatsapp-btn {
  color: #25D366;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--dark-green);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1002;
  padding: 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-actions .btn {
  width: 100%;
}

/* Category Strip */
.category-strip {
  background-color: var(--light-green);
  border-bottom: 1px solid var(--border-color);
}

.category-list {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 12px 0;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 4px 8px;
  border-radius: 20px;
  transition: var(--transition);
}

.category-item:hover {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.category-item img, .category-item i {
  color: var(--leaf-green);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(21, 63, 43, 0.7), rgba(21, 63, 43, 0.7)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

.hero-tag {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark-green);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Quick Enquiry Panel */
.enquiry-panel {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.enquiry-form {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--cream);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 92, 58, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5C3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

@media (max-width: 991px) {
  .enquiry-form {
    flex-direction: column;
    align-items: stretch;
  }
  .enquiry-panel {
    margin-top: -30px;
    padding: 24px;
  }
}

/* Trust Stats */
.stats-section {
  padding: 60px 0;
  background-color: var(--white);
}

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

.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--border-radius-lg);
  background-color: var(--light-green);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  background-color: var(--primary);
}

.stat-card:hover .stat-icon, 
.stat-card:hover .stat-number, 
.stat-card:hover .stat-label {
  color: var(--white);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 8px;
  transition: var(--transition);
}

.stat-label {
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

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

/* About Section */
.about-section {
  background-color: var(--cream);
  overflow: hidden;
}

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

.about-image {
  position: relative;
}

.about-img-main {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--gold);
  color: var(--dark-green);
  padding: 24px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-weight: 600;
  font-size: 0.875rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-features {
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.about-feature i {
  color: var(--white);
  background-color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-feature h4 {
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-badge {
    bottom: 20px;
    right: 20px;
  }
}

/* Services */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover h3, 
.service-card:hover p {
  color: var(--white);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--gold);
}

/* Tabs */
.tabs-section {
  background-color: var(--light-green);
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-pane-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.tab-info {
  padding: 40px;
}

.tab-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.tab-list {
  margin: 24px 0;
}

.tab-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.tab-list li i {
  color: var(--leaf-green);
}

@media (max-width: 768px) {
  .tab-pane-inner {
    grid-template-columns: 1fr;
  }
}

/* Process Section */
.process-section {
  background-color: var(--white);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  border-style: dashed;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Split Features (Organic, Dairy, Rural) */
.split-feature {
  padding: 80px 0;
}

.split-feature:nth-child(even) {
  background-color: var(--cream);
}

.split-feature:nth-child(even) .about-grid {
  direction: rtl;
}
.split-feature:nth-child(even) .about-grid > * {
  direction: ltr;
}

/* Seasonal Farming */
.seasonal-section {
  background-color: var(--dark-green);
  color: var(--white);
}

.seasonal-section .section-title {
  color: var(--white);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.season-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.season-card:hover {
  background-color: var(--white);
  transform: translateY(-10px);
}

.season-card:hover h3, .season-card:hover p, .season-card:hover .season-months {
  color: var(--text-dark);
}

.season-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--dark-green);
}

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

.season-months {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

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

/* Testimonials */
.testimonials {
  background-color: var(--light-green);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--cream);
  z-index: 0;
}

.testi-content {
  position: relative;
  z-index: 1;
}

.stars {
  color: #FFB800;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* FAQ */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background-color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question {
  background-color: var(--light-green);
  border-bottom: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  padding: 24px;
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  background-image: linear-gradient(rgba(31, 92, 58, 0.9), rgba(31, 92, 58, 0.9)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Footer */
.site-footer {
  background-color: var(--dark-green);
  color: var(--cream);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-text {
  margin-bottom: 24px;
  opacity: 0.8;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.footer-social a:hover {
  background-color: var(--gold);
  color: var(--dark-green);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  opacity: 0.8;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-credits span {
  display: inline-block;
  margin-left: 16px;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-credits span {
    display: block;
    margin: 8px 0;
  }
}

/* Floating WhatsApp & Mobile Action Bar */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: whatsapp-pulse 2s infinite;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.action-bar-inner {
  display: flex;
}

.action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  border-right: 1px solid var(--border-color);
}

.action-btn:last-child {
  border-right: none;
}

.action-btn i {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.action-btn.call { color: var(--primary); }
.action-btn.whatsapp { color: #25D366; }
.action-btn.expert { 
  background-color: var(--gold); 
  color: var(--dark-green);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 80px; /* Above mobile bar */
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .mobile-action-bar {
    display: block;
  }
  body {
    padding-bottom: 60px; /* Space for action bar */
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Solutions Showcase */
.bg-cream { background-color: var(--cream); }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.solution-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.solution-card img { width: 100%; height: 200px; object-fit: cover; }
.solution-info { padding: 20px; text-align: center; }
.solution-info h4 { margin-bottom: 16px; font-size: 1.125rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* Blog Section */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-meta { font-size: 0.875rem; color: var(--text-light); margin-bottom: 12px; display: flex; gap: 16px; }
.blog-content h3 { font-size: 1.25rem; margin-bottom: 12px; }
.read-more { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { color: var(--gold); }

/* Contact Strip */
.contact-strip { background-color: var(--gold); padding: 30px 0; }
.contact-strip-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.contact-strip h3 { color: var(--dark-green); margin: 0; font-size: 1.5rem; }
.contact-strip .btn-primary { background-color: var(--dark-green); }
.contact-strip .btn-primary:hover { background-color: var(--primary); }

/* Impact / Success Story */
.success-story-section { background-image: linear-gradient(rgba(21, 63, 43, 0.95), rgba(21, 63, 43, 0.95)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=2000'); background-size: cover; background-attachment: fixed; color: var(--white); }
.success-story-section h2, .success-story-section h3 { color: var(--white); }
.video-wrapper { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--dark-green); animation: pulse-badge 2s infinite; cursor: pointer; z-index: 2; }

/* --- Updates for User Request --- */

/* 2. KrishiNova Advantage Background */
.why-choose-us {
    background: linear-gradient(rgba(24, 37, 29, 0.85), rgba(24, 37, 29, 0.85)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.why-choose-us .text-primary { color: var(--gold); }
.why-choose-us h2 { color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.why-choose-us p { color: var(--light-green); }
.why-choose-us .tab-list li { color: var(--white); font-weight: 500; }

/* 5. Our Impact Background */
.impact-stats {
    background: linear-gradient(rgba(21, 63, 43, 0.8), rgba(21, 63, 43, 0.9)), url('https://images.unsplash.com/photo-1530836369250-ef71a4eb5bfd?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}
.impact-stats h2 { text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.impact-stats .stat-card {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 6. Success Story Bright Background */
.success-story-section {
    background: linear-gradient(rgba(247, 244, 234, 0.9), rgba(247, 244, 234, 0.9)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--text-dark);
}
.success-story-section h2 { color: var(--dark-green); }
.success-story-section p { color: var(--text-dark); font-weight: 500; }

/* 8. CTA Section Background */
.cta-section {
    background: linear-gradient(rgba(229, 167, 46, 0.9), rgba(31, 92, 58, 0.9)), url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

/* Footer Colorful Icons */
.footer-links li a i {
    margin-right: 8px;
    font-size: 14px;
    width: 20px;
    text-align: center;
}
.icon-seed { color: #6FAF44; }
.icon-leaf { color: #25D366; }
.icon-cow { color: #E5A72E; }
.icon-water { color: #3498db; }
.icon-store { color: #e74c3c; }

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--white);
    align-items: center;
}
.payment-icons i { transition: var(--transition); }
.payment-icons i:hover { transform: scale(1.2); color: var(--gold); }

/* Floating Action Group */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background-color: #25D366; animation: whatsapp-pulse 2s infinite; }
.float-btn.call { background-color: #3498db; animation: pulse-badge 2s infinite; animation-delay: 0.5s; }
.float-btn.enquiry { background-color: var(--gold); color: var(--dark-green); animation: pulse-badge 2s infinite; animation-delay: 1s; }

/* Hide old floating whatsapp since we replace it */
a.floating-whatsapp { display: none !important; }
/* --- Slider & Background Updates --- */

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide .hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}
.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.slider-btn:hover { background: var(--gold); color: var(--dark-green); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Updated KrishiNova Advantage (Why Choose Us) */
.why-choose-us {
    background: linear-gradient(rgba(24, 37, 29, 0.4), rgba(24, 37, 29, 0.4)), url('https://images.unsplash.com/photo-1590682680695-43b964a3ae17?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}
.why-choose-us .why-content {
    background: rgba(24, 37, 29, 0.85);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
}
.why-choose-us .text-primary { color: var(--gold) !important; }
.why-choose-us h2 { color: var(--white) !important; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.why-choose-us p { color: var(--light-green) !important; }
.why-choose-us .tab-list li { color: var(--white) !important; font-weight: 500; }

/* Updated Our Impact (Black & Green Gradient) */
.impact-stats {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(21, 63, 43, 0.85) 100%), url('https://images.unsplash.com/photo-1586771107445-d3af9e173c66?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

@media (max-width: 768px) {
    .hero-slider { height: 100vh; min-height: 500px; }
    .slider-btn { display: none; }
}

/* --- Updates based on latest request --- */

/* 1. Our Impact: New better background image */
.impact-stats {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(21, 63, 43, 0.8) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* 2. Featured Success Story: Green transparent background */
.success-story-section {
    background: linear-gradient(rgba(21, 63, 43, 0.85), rgba(31, 92, 58, 0.9)), url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1920&auto=format&fit=crop') !important;
    color: var(--white) !important;
}
.success-story-section h2 { color: var(--gold) !important; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.success-story-section p { color: var(--white) !important; font-weight: 400 !important; }
.success-story-section .text-gold { color: var(--gold) !important; }

/* 3. CTA Section: Black tone transparency, more visible background image */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=1920&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}
.cta-section h2 { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }

