* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --accent: #ff3333;
  --accent-dark: #e60000;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f5f5f5;
  --border-color: #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* Custom Alert Notification */
.custom-alert {
  position: fixed;
  top: 80px;
  right: -400px;
  z-index: 200;
  opacity: 0;
  transition: all 0.5s ease;
}

.custom-alert.show {
  right: 20px;
  opacity: 1;
}

.custom-alert.hide {
  animation: slideOutRight 0.5s ease forwards;
}

.alert-content {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 350px;
  border-left: 5px solid #ffffff;
}

.alert-icon {
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.alert-text {
  flex: 1;
}

.alert-customer {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.alert-product {
  font-size: 12px;
  opacity: 0.95;
  line-height: 1.4;
}

.alert-close {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.alert-close:hover {
  opacity: 1;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 24px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.header-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
  animation: bounce 3s infinite;
}

.header-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 51, 51, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #00a8ff 100%);
  color: white;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
  opacity: 0.95;
}

.discount-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
  animation: bounce 2s infinite;
}

.discount-text {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-image {
  text-align: center;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.hero-image img:hover {
  transform: scale(1.05);
}

.cta-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
  animation: bounce 2.5s infinite;
}

.cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
}

/* Benefits Section */
.benefits {
  background: var(--primary);
  color: white;
  padding: 50px 20px;
  margin-top: 40px;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease-out;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
}

.benefit-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefit-item p {
  font-size: 14px;
  opacity: 0.9;
}

/* Why Section */
.why-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}

.why-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-image {
  animation: slideInLeft 0.8s ease-out;
}

.why-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.why-image img:hover {
  transform: scale(1.03);
}

.why-text {
  animation: slideInRight 0.8s ease-out;
}

.why-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: bold;
}

.why-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.why-list {
  list-style: none;
  margin: 25px 0;
}

.why-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.why-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 20px;
}

.why-section .farm-story {
  margin-top: 50px;
}

.story-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.story-content.reverse .story-image {
  order: 2;
}

.story-content.reverse .story-text {
  order: 1;
}

.story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.03);
}

.story-text h3,
.story-text h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.story-text p {
  line-height: 1.8;
  color: var(--text-light);
}

.usp-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.usp-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.usp-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Comparison Table */
.comparison {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}

.comparison h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: bold;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:hover {
  background: var(--bg-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-mark {
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}

/* Comparison Image Section */
.comparison-image {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}

.comparison-image h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}

.comparison-carousel {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 20px;
}

.comparison-carousel-main {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.comparison-carousel-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.4s ease;
  opacity: 1;
}

.comparison-carousel-main img.fade-out {
  opacity: 0;
}

.comparison-carousel-main img:hover {
  transform: scale(1.02);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: white;
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.comparison-carousel-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.comparison-carousel-thumbs .thumb {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: 110px;
  height: 82px;
  overflow: hidden;
}

.comparison-carousel-thumbs .thumb.active {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.comparison-carousel-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.comparison-carousel p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}


.cross-mark {
  color: #dc3545;
  font-weight: bold;
  font-size: 18px;
}

/* Products Section */
.products {
  background: var(--bg-light);
  padding: 80px 20px;
  margin-top: 60px;
}

.products h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0ff 0%, #f0f8ff 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.discount-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-specs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
}

.product-price {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.price-new {
  font-size: 26px;
  font-weight: bold;
  color: var(--accent);
}

.product-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
}

.product-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}

.testimonials h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

.testimonials-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-container::-webkit-scrollbar {
  height: 8px;
}

.testimonials-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.testimonials-container::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary);
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease-out;
  min-width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.author-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-dark);
  font-weight: bold;
}

.author-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
  color: white;
  padding: 80px 20px;
  margin-top: 80px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease-out;
}

.countdown {
  text-align: center;
  margin: 50px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.countdown h3 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: bold;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 24px;
  font-weight: bold;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 8px;
  min-width: 100px;
}

.countdown-value {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 8px;
}

.countdown-label {
  font-size: 12px;
  opacity: 0.9;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pricing-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  animation: fadeInUp 0.6s ease-out;
}

.pricing-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.pricing-item.featured {
  background: var(--accent);
  border: 2px solid var(--accent);
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(255, 51, 51, 0.4);
}

.pricing-item.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.pricing-item h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: bold;
}

.pricing-item p {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}

.pricing-item ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

.pricing-item li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.pricing-item li:last-child {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
}

.faq h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.faq-question {
  padding: 20px;
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--text-dark);
  transition: all 0.3s;
}

.faq-question:hover {
  background: #e8e8e8;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.3s ease-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.modal-header h2 {
  color: var(--primary);
  font-size: 24px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-options {
  margin-bottom: 20px;
}

.product-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-radio-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-radio-card input {
  accent-color: #1976d2;
  width: 18px;
  height: 18px;
  margin: 0;
}

.product-radio-card strong {
  font-size: 15px;
  display: block;
}

.product-radio-card p {
  margin: 0;
  font-weight: bold;
}

.product-radio-card small {
  color: #666;
}

.product-radio-card:hover {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.15);
}

.product-radio-card input:checked + div {
  background: #f2f7ff;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  font-size: 24px;
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  color: white;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content,
  .why-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .header-container {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-btn {
    padding: 10px 18px;
  }

  .hero {
    padding: 40px 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-image {
    order: 2;
  }

  .hero-text {
    order: 1;
  }

  .hero-text p {
    font-size: 15px;
  }

  .comparison-image h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .comparison-carousel {
    padding: 16px;
  }

  .comparison-carousel-thumbs {
    gap: 10px;
  }

  .comparison-carousel-thumbs .thumb {
    width: 90px;
    height: 70px;
  }

  .comparison-carousel p {
    font-size: 15px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.mobile-active {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-btn {
    display: block;
  }

  .pricing-item.featured {
    transform: scale(1);
  }

  .countdown-timer {
    gap: 15px;
  }

  .countdown-item {
    min-width: 80px;
    padding: 15px 20px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-section .farm-story {
    padding-top: 20px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .story-content.reverse {
    direction: ltr;
  }

  .story-content.reverse .story-image,
  .story-content.reverse .story-text {
    order: unset;
  }

  .story-text h3,
  .story-text h4 {
    font-size: 1.5rem;
  }

  .modal-content {
    padding: 25px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .header-container {
    padding: 0 16px;
  }

  .nav-menu a {
    font-size: 15px;
  }

  .hero {
    padding: 30px 16px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .comparison-image h2 {
    font-size: 26px;
  }

  .comparison-carousel {
    padding: 14px;
  }

  .comparison-carousel-main img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .comparison-carousel-thumbs {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-carousel-thumbs .thumb {
    min-width: 84px;
    width: auto;
    flex: 0 0 auto;
    height: 64px;
  }

  .comparison-carousel-thumbs .thumb img {
    height: 100%;
  }

  .comparison-carousel p {
    font-size: 14px;
  }

  .products-container {
    grid-template-columns: 1fr;
  }

  .testimonials-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    min-width: 280px;
    flex: 0 0 280px;
  }

  .pricing-table {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-item {
    min-width: 70px;
    padding: 12px 15px;
  }

  .modal-content {
    width: 95%;
    padding: 20px;
    max-height: 95vh;
  }

  .form-group {
    margin-bottom: 15px;
  }
}
