/* ====== GLOBAL RESET & VARIABLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5016;
  --secondary-color: #4caf50;
  --accent-color: #7cb342;
  --light-bg: #f8fdf5;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====== NAVBAR ====== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f3a0a 100%);
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideInDown 0.6s ease-out;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  gap: 12px;
  align-items: center;
  letter-spacing: 0.5px;
}

.navbar .logo img {
  transition: var(--transition);
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--accent-color);
}

/* ====== HAMBURGER MENU ====== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.menu-toggle.active {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}


/* Fixed nav-links to properly hide/show on mobile */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links.show {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f3a0a 100%);
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  gap: 0;
  animation: slideInDown 0.3s ease-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.nav-links.show li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.nav-links.show li:last-child {
  border-bottom: none;
}

/* ====== HERO SECTION WITH CAROUSEL ====== */
.hero {
  position: relative;
  color: white;
  padding: 8rem 2rem;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Carousel styling for rotating background images */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 80, 22, 0.65);
  z-index: 1;
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  animation: slideInDown 0.8s ease-out;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.2s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

/* ====== BUTTONS ====== */
.btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

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

.btn-light {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ====== HIGHLIGHTS SECTION ====== */
.highlights {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  animation: fadeIn 0.8s ease-out;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: slideInDown 0.6s ease-out;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  animation: slideInUp 0.6s ease-out 0.1s both;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 0;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  animation: slideInUp 0.6s ease-out both;
  border-top: 4px solid var(--secondary-color);
  overflow: hidden;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3) {
  animation-delay: 0.3s;
}
.card:nth-child(4) {
  animation-delay: 0.4s;
}
.card:nth-child(5) {
  animation-delay: 0.5s;
}

/* Enhanced card image styling with better fallbacks */
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.card-image img[src=""],
.card-image img:not([src]) {
  display: none;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card h3 {
  color: var(--primary-color);
  margin: 1.5rem 1rem 0.5rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 1rem 1.5rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent-color);
}

/* ====== SHOWCASE SECTION ====== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

.showcase-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.6s ease-out;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  animation: slideInLeft 0.6s ease-out both;
}

.benefits-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.benefits-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.benefits-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.benefits-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.showcase-image {
  animation: slideInRight 0.6s ease-out;
}

/* Improved showcase image styling */
.showcase-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: block;
  object-fit: cover;
}

.showcase-image img:hover {
  transform: scale(1.02);
}

/* ====== CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f3a0a 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.8s ease-out;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  animation: slideInDown 0.6s ease-out;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 0.6s ease-out 0.1s both;
}

/* ====== CONTENT PAGES ====== */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  animation: fadeIn 0.8s ease-out;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideInDown 0.6s ease-out;
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ====== ABOUT PAGE ====== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out;
}

.about-text h1 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.6s ease-out;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  animation: slideInLeft 0.6s ease-out 0.1s both;
}

.about-image {
  animation: slideInRight 0.6s ease-out;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.values-section {
  margin: 3rem 0;
  animation: fadeIn 0.8s ease-out;
}

.values-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  animation: slideInDown 0.6s ease-out;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
  animation: slideInUp 0.6s ease-out both;
}

.mission-card {
  animation-delay: 0.1s;
}
.vision-card {
  animation-delay: 0.2s;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.values-list {
  margin: 3rem 0;
  animation: fadeIn 0.8s ease-out;
}

.values-list h2 {
  color: var(--primary-color);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  animation: slideInDown 0.6s ease-out;
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
  animation: slideInUp 0.6s ease-out both;
  border-top: 4px solid var(--secondary-color);
}

.value-item:nth-child(1) {
  animation-delay: 0.1s;
}
.value-item:nth-child(2) {
  animation-delay: 0.2s;
}
.value-item:nth-child(3) {
  animation-delay: 0.3s;
}
.value-item:nth-child(4) {
  animation-delay: 0.4s;
}
.value-item:nth-child(5) {
  animation-delay: 0.5s;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent-color);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.cta-quote {
  margin: 3rem 0;
  animation: fadeIn 0.8s ease-out;
}

.cta-quote blockquote {
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  border-left: 5px solid var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.cta-quote blockquote:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ====== FARMS PAGE ====== */
.farms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.farm-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  animation: slideInUp 0.6s ease-out both;
}

.farm-card:nth-child(1) {
  animation-delay: 0.1s;
}
.farm-card:nth-child(2) {
  animation-delay: 0.2s;
}
.farm-card:nth-child(3) {
  animation-delay: 0.3s;
}
.farm-card:nth-child(4) {
  animation-delay: 0.4s;
}

.farm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Enhanced farm card images */
.farm-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
  display: block;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.farm-content {
  padding: 2rem;
}

.farm-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.farm-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Added farm link styling */
.farm-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.farm-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* ====== CONTACT PAGE ====== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  animation: fadeIn 0.8s ease-out;
}

.contact-info-section h2,
.contact-form-section h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  animation: slideInDown 0.6s ease-out;
}

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

.info-card {
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
  animation: slideInLeft 0.6s ease-out both;
  border-top: 4px solid var(--secondary-color);
}

.info-card:nth-child(1) {
  animation-delay: 0.1s;
}
.info-card:nth-child(2) {
  animation-delay: 0.2s;
}
.info-card:nth-child(3) {
  animation-delay: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-top-color: var(--accent-color);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-light);
}

/* Improved contact form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideInRight 0.6s ease-out;
  background: linear-gradient(135deg, var(--light-bg), #ffffff);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  animation: slideInUp 0.6s ease-out both;
  display: flex;
  flex-direction: column;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}

/* Enhanced form label and input styling */
.form-group label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
  background: #fafafa;
}

.contact-form button {
  align-self: flex-start;
  animation: slideInUp 0.6s ease-out 0.6s both;
  margin-top: 0.5rem;
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f3a0a 100%);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
  animation: slideInUp 0.6s ease-out;
}
.email{
  color: white;
  text-decoration: none;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer Social Icons */
.social-links {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f9d342; /* Golden accent color */
}

.social-links a {
  color: white;
}
.social-links a:hover {
  color: #28a745; /* green accent */
}


/* Make footer icons center on mobile */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}


/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInUp {
  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 bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar .logo {
    font-size: 1rem;
  }

  .navbar .logo img {
    height: 40px;
  }

  /* Properly show hamburger menu on mobile */
  .menu-toggle {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.show {
    display: flex !important;
  }

  .hero {
    padding: 4rem 1.5rem;
    min-height: 450px;
  }

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

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

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .highlights {
    padding: 3rem 1.5rem;
  }

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

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

  .showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .showcase-content h2 {
    font-size: 1.8rem;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 300px;
    object-fit: cover;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .farm-card {
    grid-template-columns: 1fr;
  }

  .farm-card img {
    height: 250px;
  }

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

  .content {
    padding: 2rem 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .navbar .logo {
    font-size: 0.9rem;
  }

  .navbar .logo img {
    height: 35px;
  }

  /* Ensure hamburger is visible on small screens */
  .menu-toggle {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .hero {
    padding: 2.5rem 1rem;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .carousel-controls {
    bottom: 1rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

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

  .card {
    padding: 0;
  }

  .card-image {
    height: 150px;
  }

  .card h3 {
    margin: 1rem 1rem 0.5rem;
  }

  .card p {
    padding: 0 1rem 1rem;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

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

  .value-item {
    padding: 1.5rem;
  }

  .farm-content {
    padding: 1.5rem;
  }

  .farm-content h2 {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .info-card {
    padding: 1.2rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
