/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

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

/* Enhanced Color Palette */
:root {
  --primary-green: #2e8b57;
  --secondary-green: #3cb371;
  --accent-green: #90ee90;
  --light-green: #f0f8f0;
  --earth-brown: #8b4513;
  --warm-orange: #ff8c42;
  --sunny-yellow: #ffd700;
  --sky-blue: #87ceeb;
  --lavender: #e6e6fa;
  --coral: #ff7f7f;
  --sage: #9caf88;
  --cream: #fffdd0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

/* Header */
.header-top {
    background: linear-gradient(135deg, #2c5530 0%, #27ae60 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 0.9rem;
}

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

.social-links a {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    color: #e67e22;
    background: white;
    transform: translateY(-2px);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

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

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #2c5530;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

.w-logo {
  width: 90px !important;
  height: 85px;
  float:left;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-menu a:hover:before,
.nav-menu a.active:before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e67e22;
}

.donate-btn {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3) !important;
}

.donate-btn:before {
    display: none !important;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #d35400 0%, #c0392b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4) !important;
}

/* Hero Sections */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: gradientShift 15s ease infinite;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  filter: blur(2px) grayscale(20%) drop-shadow(100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: rgb(84, 250, 78);
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    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);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #27ae60 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/') center/cover;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 85, 48, 0.3), rgba(39, 174, 96, 0.3));
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Hero */
.about-hero {
  position: unset;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  font-weight: 300;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  border-radius: 30px;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background: white;
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Value Pillars */
.pillars {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--cream), var(--light-green));
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.pillar-card {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(46, 139, 87, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(46, 139, 87, 0.2);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.pillar-card:nth-child(2) .pillar-icon {
  animation-delay: -1s;
}

.pillar-card:nth-child(3) .pillar-icon {
  animation-delay: -2s;
}

.pillar-card h3 {
  color: var(--primary-green);
  font-weight: 400;
}

/* Featured Products Section */
.featured-products {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--lavender), var(--cream));
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.featured-products p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #666;
}

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

.featured-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-content {
  padding: 1.5rem;
}

.featured-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.featured-content .price {
  color: var(--warm-orange);
  font-weight: 500;
  font-size: 1.2rem;
}




/* Farm Gallery Section */
.farm-gallery {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sage), var(--light-green));
}

.farm-gallery h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.farm-gallery p {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  opacity: 0.9;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Awards Section */
.awards {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--coral), var(--warm-orange));
}

.awards h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

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

.award-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.award-item h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.award-item p {
  color: #666;
}

/* Process Timeline */
.process-timeline {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-green), var(--cream));
}

.process-timeline h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.process-timeline p {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 45%;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 55%;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Equipment Section */
.equipment {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sky-blue), var(--lavender));
}

.equipment h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.equipment-grid {
  display: grid;
  gap: 3rem;
}

.equipment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.equipment-item:nth-child(even) {
  direction: rtl;
}

.equipment-item:nth-child(even) .equipment-info {
  direction: ltr;
}

.equipment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-info {
  padding: 2rem;
}

.equipment-info h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.equipment-info ul {
  list-style: none;
  margin-top: 1rem;
}

.equipment-info li {
  padding: 0.25rem 0;
  color: #666;
}

/* Service Areas */
.service-areas {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sage), var(--secondary-green));
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

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

.areas-map img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.areas-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.areas-info h3 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.location-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--light-green);
  border-radius: 10px;
}

.location-item h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Product Categories */
.product-categories {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--cream), var(--light-green));
}

.product-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-grid {
  display: grid;
  gap: 3rem;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-card:nth-child(even) {
  direction: rtl;
}

.category-card:nth-child(even) .category-content {
  direction: ltr;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  padding: 2rem;
}

.category-features {
  list-style: none;
  margin: 1rem 0;
}

.category-features li {
  padding: 0.25rem 0;
  color: #666;
}

.category-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.category-link:hover {
  color: var(--secondary-green);
}

/* Seasonal Calendar */
.seasonal-calendar {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sunny-yellow), var(--warm-orange));
}

.seasonal-calendar h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.seasonal-calendar p {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  opacity: 0.9;
}

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

.season-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.season-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.season-card.spring {
  border-top: 5px solid var(--accent-green);
}

.season-card.summer {
  border-top: 5px solid var(--sunny-yellow);
}

.season-card.fall {
  border-top: 5px solid var(--warm-orange);
}

.season-card.winter {
  border-top: 5px solid var(--sky-blue);
}

.season-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.season-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.season-products span {
  background: var(--light-green);
  color: var(--primary-green);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Recipe Ideas */
.recipe-ideas {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--coral), var(--lavender));
}

.recipe-ideas h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.recipe-ideas p {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  opacity: 0.9;
}

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

.recipe-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.recipe-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Existing styles continue... */
/* Preview Section */
.preview {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-green), var(--cream));
}

.preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.preview-item:last-child {
  border-bottom: none;
}

.preview-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(46, 139, 87, 0.1);
}

.preview-link:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(5px);
}

/* Story Section */
.story {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--cream), var(--lavender));
}

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

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--accent-green);
  filter: grayscale(10%);
  transition: all 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Sustainability Section */
.sustainability {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--sage), var(--secondary-green));
  text-align: center;
}

.leaf-divider {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sustainability p {
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
}

/* Services */
.services-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--sky-blue), var(--lavender));
}

.services-header h1,
.services-header p {
  color: white;
}

.services-grid {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-green), var(--cream));
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid #eee;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(46, 139, 87, 0.2);
}

.service-icon {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  margin: 0;
}

.services-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--warm-orange), var(--sunny-yellow));
  text-align: center;
}

.services-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
}

.services-cta .cta-button {
  color: white;
  border-color: white;
}

.services-cta .cta-button:hover {
  background: white;
  color: var(--warm-orange);
}

/* Products */
.products-header {
  padding: 8rem 0 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--coral), var(--warm-orange));
}

.products-header h1,
.products-header p {
  color: white;
}

.products-filter {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--coral), var(--warm-orange));
  text-align: center;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: white;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  color: var(--primary-green);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
}

.products-grid {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-green), var(--cream));
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.product-item {
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product-item:hover {
  content: none;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(46, 139, 87, 0.2);
}

.product-item::after { 
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(90, 255, 159, 0.495), rgba(60, 179, 113, 0.9));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 400;
  font-size: 1.1rem;
}

.product-item:hover::after {
  opacity: 1;
}

.product-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.product-item:hover img {
  filter: grayscale(0%);
}

.product-item h3 {
  margin: 1rem;
  font-weight: 400;
  color: var(--primary-green);
}

.product-item p {
  color: var(--warm-orange);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-item.hidden {
  display: none;
}

/* Contact */
.contact-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--sage), var(--secondary-green));
}

.contact-header h1,
.contact-header p {
  color: white;
}

.contact-content {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-green), var(--cream));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-form-container h2,
.faq-container h2 {
  margin-bottom: 2rem;
  color: var(--primary-green);
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #eee;
  background: white;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 15px rgba(46, 139, 87, 0.2);
  transform: translateY(-2px);
}

.contact-form select {
  cursor: pointer;
}

.form-submit {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 2px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 20px rgba(46, 139, 87, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--light-green), white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--accent-green), var(--light-green));
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-green);
}

.faq-arrow {
  font-size: 1.2rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
  font-weight: bold;
}

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

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  margin: 4rem 0;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 2rem;
  color: var(--primary-green);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.direct-contact {
  text-align: center;
  padding: 3rem 0;
  border-top: 2px solid var(--accent-green);
  background: linear-gradient(135deg, var(--light-green), white);
  border-radius: 15px;
  margin-top: 2rem;
}

.direct-contact a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.direct-contact a:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

/* Footer */
.footer {
    background: #014616;
    padding: 40px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    font-size: large;
}

.footer-contact, 
.footer-links, 
.footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer span {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-newsletter input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.footer-newsletter button {
    background: #242924;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.footer-social a {
    color: #a0dc08;
    margin-left: 15px;
    font-size: 30px;
}

/* Enhanced Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 139, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

/* Staggered Animation Delays */
.products-container .product-item,
.services-cards .service-card,
.featured-grid .featured-item,
.testimonials-grid .testimonial-card,
.team-grid .team-member,
.categories-grid .category-card,
.recipe-grid .recipe-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.product-item:nth-child(1),
.service-card:nth-child(1),
.featured-item:nth-child(1),
.testimonial-card:nth-child(1),
.team-member:nth-child(1),
.category-card:nth-child(1),
.recipe-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-item:nth-child(2),
.service-card:nth-child(2),
.featured-item:nth-child(2),
.testimonial-card:nth-child(2),
.team-member:nth-child(2),
.category-card:nth-child(2),
.recipe-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-item:nth-child(3),
.service-card:nth-child(3),
.featured-item:nth-child(3),
.testimonial-card:nth-child(3),
.team-member:nth-child(3),
.category-card:nth-child(3),
.recipe-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-item:nth-child(4),
.service-card:nth-child(4),
.featured-item:nth-child(4),
.testimonial-card:nth-child(4),
.team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.product-item:nth-child(5),
.featured-item:nth-child(5) {
  animation-delay: 0.5s;
}

.product-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Enhanced Navigation Effects */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  transition: width 0.3s ease;
}

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

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, white, var(--light-green));
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .preview-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .products-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

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

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

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

  .newsletter-form {
    min-width: auto;
    width: 100%;
  }

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

  .gallery-grid .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
  }

  .equipment-item,
  .category-card {
    grid-template-columns: 1fr;
  }

  .equipment-item:nth-child(even),
  .category-card:nth-child(even) {
    direction: ltr;
  }

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

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

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

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

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

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

  .products-container {
    grid-template-columns: 1fr;
  }

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

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

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--primary-green);
  outline-offset: 2px;
}

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

/* Print Styles */
@media print {
  .header,
  .footer,
  .newsletter,
  .cta-button {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}
