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

:root {
  --primary-color: #1565c0;
  --secondary-color: #2196f3;
  --accent-color: #77ce7a;
  --success-color: #38ad69;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --text-dark: #0d47a1;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #f3f8ff;
  --bg-lighter: #fafbff;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(21, 101, 192, 0.1);
  --shadow-hover: 0 8px 30px rgba(21, 101, 192, 0.15);
  --shadow-light: 0 2px 10px rgba(21, 101, 192, 0.05);
  --border-radius: 12px;
  --border-radius-small: 8px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--success-color));
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  background: #eaf2fa;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* ✅ Fix mobile navbar size */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    width: auto;
    padding-top: 0;
  }

  .nav-link {
    padding: 0.25rem 0;
    font-size: 0.95rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* hide by default */
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex; /* show on hamburger click */
  }

  .hamburger {
    display: flex; /* show hamburger */
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 50%, #e8f5e8 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%234CAF50' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: var(--shadow-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
  color: var(--accent-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 1s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem;
  background: rgba(21, 101, 192, 0.05);
  border-radius: var(--border-radius-small);
  min-height: 50px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-trust {
  animation: fadeInUp 0.6s ease-out 1s both;
}

.hero-trust > span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.trust-indicators {
  display: flex;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.trust-item i {
  color: var(--success-color);
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Enhanced Tractor Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image-container {
  position: relative;
  width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-tractor-image {
  width: 100%;
  height: auto;
  max-width: 450px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  animation: tractorFloat 3s ease-in-out infinite;
}

@keyframes tractorFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: floatUpDown 3s ease-in-out infinite;
  animation-delay: var(--delay);
  font-size: 1.2rem;
}

.floating-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  color: var(--primary-color);
}

.floating-icon:nth-child(2) {
  top: 25%;
  right: 15%;
  color: var(--accent-color);
}

.floating-icon:nth-child(3) {
  bottom: 25%;
  left: 15%;
  color: var(--success-color);
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Benefit Cards with Farmer Images */
.benefit-card-with-image {
  position: relative;
  overflow: visible;
}

.benefit-farmer-image {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 80px;
  height: 80px;
  z-index: 1;
  opacity: 0.8;
}

.farmer-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card-with-image:hover .farmer-illustration {
  transform: scale(1.1);
  transition: var(--transition);
}

.benefit-card-with-image .benefit-icon {
  position: relative;
  z-index: 2;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid #e8f5e8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes tractorMove {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  25% {
    transform: translateX(-45%) translateY(-5px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
  75% {
    transform: translateX(-55%) translateY(-3px);
  }
}

@keyframes tractorBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes wheelRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes smokeRise {
  0% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(1.8);
  }
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

@keyframes sunGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

@keyframes sunRays {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes cropSway {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@keyframes headlightBlink {
  0%,
  90%,
  100% {
    opacity: 1;
  }
  95% {
    opacity: 0.3;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 8rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Fix alignment issues in benefit cards */
.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #e8f5e8;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: var(--transition);
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.benefit-highlight {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Process Section */
.process {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234CAF50' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color),
    var(--primary-color)
  );
  border-radius: 2px;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Fix alignment issues in process steps */
.step {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.step-time {
  display: inline-block;
  background: var(--success-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.process-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Partners Section */
.partners {
  padding: 8rem 0;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #e8f5e8;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.05), transparent);
  transition: var(--transition);
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.partner-logo {
  margin-bottom: 1.5rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 200px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%) opacity(1);
}

.partner-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.partner-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.trust-badge i {
  font-size: 1.2rem;
}

/* Claims Section */
.claims {
  padding: 6rem 0;
  background: var(--bg-light);
}

.claims-content {
  max-width: 1000px;
  margin: 0 auto;
}

.claims-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.claim-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(21, 101, 192, 0.1);
}

.claim-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.claim-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
}

.claim-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.claim-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.note-card {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.note-card i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.note-card p {
  margin: 0;
  line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials {
  padding: 8rem 0;
  background: var(--white);
}

/* Testimonials Google Reviews */
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.google-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.google-logo {
  height: 30px;
  object-fit: contain;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.rating-stars span {
  margin-left: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0.7;
  transform: scale(0.95);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.stars i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  text-align: center;
  font-size: 1.1rem;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-content p::after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

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

.author-details {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* FAQ Section */
.faq {
  padding: 8rem 0;
  background: var(--bg-light);
}

.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--gradient-primary);
  color: var(--white);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  font-size: 1.2rem;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.faq-contact {
  position: sticky;
  top: 100px;
}

.faq-contact-card {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-contact-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

.faq-contact-card .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 50%, #e8f5e8 100%);

  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  font-weight: 500;
}

.contact-feature i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.contact-stats {
  display: flex;
  gap: 2rem;
}

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

.contact-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.contact-stat span {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.primary-contact {
  margin-bottom: 2rem;
}

.whatsapp-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  padding: 2rem 3rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.whatsapp-btn i {
  font-size: 2.5rem;
}

.whatsapp-btn small {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.alternative-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  backdrop-filter: blur(10px);
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-item div strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item div span {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Updated Footer Styles */
.footer {
  background: #eaf2fa;
  color: var(--text-dark);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  font-weight: 500;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.8;
  color: var(--text-light);
}

.footer-contact-info i {
  color: var(--primary-color);
  width: 20px;
}

.footer-map {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
}

.footer-bottom-content {
  text-align: center;
}

.footer-bottom p {
  opacity: 0.8;
  margin: 0;
  color: var(--text-light);
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.floating-whatsapp a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.floating-whatsapp a:hover::before {
  left: 100%;
}

.floating-whatsapp a:hover {
  background: #128c7e;
  transform: scale(1.1);
}

.floating-text {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid var(--text-dark);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.floating-whatsapp:hover .floating-text {
  opacity: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

@keyframes 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);
  }
}

/* Loading States */
.loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .contact-content,
  .faq-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }

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

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

  .contact-stats {
    justify-content: center;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-item {
    justify-content: center;
    text-align: center;
    min-height: 45px;
  }

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

  .hero-image-container {
    width: 350px;
    height: 280px;
  }

  .hero-tractor-image {
    max-width: 320px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .tractor-scene {
    width: 350px;
    height: 280px;
  }

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

  .testimonials-header {
    flex-direction: column;
    gap: 1rem;
  }

  .step {
    min-height: 320px;
  }

  .benefit-card {
    min-height: 350px;
  }

  .benefits-grid,
  .process-steps,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .timeline-line {
    display: none;
  }

  .trust-indicators {
    justify-content: center;
  }

  .carousel-controls {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-whatsapp a {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 45px;
    height: 45px;
  }

  .floating-text {
    display: none;
  }

  .contact-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .claims-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .note-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .note-card i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .benefit-card,
  .step,
  .partner-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .feature-item {
    font-size: 0.9rem;
    padding: 0.4rem;
  }

  .claim-card {
    padding: 1.5rem;
  }

  .claim-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .whatsapp-btn {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }

  .whatsapp-btn i {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .hero-image-container {
    width: 280px;
    height: 220px;
  }

  .hero-tractor-image {
    max-width: 250px;
  }

  .tractor-scene {
    width: 280px;
    height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step {
    min-height: 300px;
    padding: 2rem 1.5rem;
  }

  .benefit-card {
    min-height: 320px;
    padding: 2rem 1.5rem;
  }

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

  .footer-links {
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .floating-whatsapp,
  .back-to-top,
  .carousel-controls {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section-header h2 {
    color: #000;
  }

  .btn-primary,
  .btn-secondary {
    border: 2px solid #000;
    color: #000;
    background: transparent;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  .benefit-card,
  .step,
  .partner-card,
  .testimonial-card {
    border: 2px solid var(--primary-color);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-whatsapp {
    animation: none;
  }

  .tractor-animation,
  .wheel,
  .exhaust-smoke {
    animation: none;
  }
}

/* Responsive adjustments for new images */
@media (max-width: 768px) {
  .hero-image-container {
    width: 350px;
    height: 280px;
  }

  .hero-tractor-image {
    max-width: 320px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .benefit-farmer-image {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -5px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    width: 280px;
    height: 220px;
  }

  .hero-tractor-image {
    max-width: 250px;
  }

  .benefit-farmer-image {
    width: 50px;
    height: 50px;
    top: -10px;
    right: 0;
  }
}

.google-review-badge {
    font-size: 14px;
    color: #4285F4;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.google-review-badge i {
    font-size: 18px;
}

