/* Modern UI Styles for Good River Website */
:root {
  --primary-color: #4a6741;
  /* Dark green */
  --primary-light: #6b8c62;
  /* Lighter green */
  --primary-dark: #344d2c;
  /* Darker green */
  --secondary-color: #8c6e4a;
  /* Earthy brown */
  --accent-color: #c0392b;
  /* Red accent for onions */
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --transition-speed: 0.3s;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 1rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Account for fixed header */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--light-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--box-shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

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

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
  border-radius: 2px;
}

/* Product Cards */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  /* 4:3 Aspect Ratio */
  background: var(--gray-200);
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.season-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-varieties {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variety {
  display: inline-flex;
  align-items: center;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.variety i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.7rem;
}

.btn-outline {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Product Navigation Menu */
.product-nav-container {
  margin: 3rem 0 1rem;
}

.product-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
}

.product-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--gray-700);
}

.product-nav-item:hover {
  background-color: var(--gray-100);
  transform: translateY(-3px);
  color: var(--primary-color);
}

.product-nav-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.product-nav-item:hover .product-nav-icon {
  transform: scale(1.2);
}

.product-nav-item span {
  font-weight: 500;
}

/* Product Section Styles */
.product-section {
  scroll-margin-top: 100px;
  /* For smooth scrolling with fixed header */
  position: relative;
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.product-section:nth-child(even) {
  background-color: white;
}

.product-section .container {
  max-width: 1200px;
  width: 95%;
}

/* Product Cards Layout */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(365px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.product-card-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.product-card:hover .product-card-title::after {
  width: 80px;
}

.product-card-description {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-card-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-card-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px;
}

.product-card-fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-fact i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.product-card-fact-text {
  display: flex;
  flex-direction: column;
}

.product-card-fact-text strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.product-card-fact-text span {
  color: var(--gray-700);
  font-size: 0.85rem;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-season {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.product-card-season i {
  margin-right: 0.5rem;
}

/* Full-width product header */
.product-header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-header-title {
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-header-subtitle {
  color: var(--gray-700);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product Content Styles */
.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.product-title {
  color: var(--primary-color);
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.product-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.product-content:hover .product-title::after {
  width: 120px;
}

.product-description {
  color: var(--gray-700);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

/* Product Facts */
.product-facts {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.product-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  flex: 1 1 240px;
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-fact:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.product-fact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-fact i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.product-fact-text {
  display: flex;
  flex-direction: column;
}

.product-fact-text strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
  font-size: 1.1rem;
}

.product-fact-text span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* Varieties Section */
.varieties-section {
  background-color: rgba(var(--primary-rgb), 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.varieties-section h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.varieties-section h3:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.product-varieties {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.product-varieties li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.product-varieties li:hover {
  transform: translateX(5px);
}

.product-varieties li i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.product-varieties li strong {
  color: var(--primary-dark);
  margin-right: 0.5rem;
  font-weight: 600;
}

/* Season Section */
.season-section {
  margin-top: 2.5rem;
}

.season-section h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.season-section h3:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.product-season {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-season:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.4);
}

.product-season i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-section {
    padding: 4rem 0;
  }

  .product-section .grid {
    gap: 3rem;
  }

  .product-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 3rem 0;
  }

  .product-section .grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-section .order-1 {
    order: 2;
  }

  .product-section .order-2 {
    order: 1;
  }

  .product-section .image-container {
    padding-bottom: 60%;
    max-width: 100%;
  }

  .product-title {
    font-size: 2.2rem;
  }

  .product-facts {
    flex-direction: column;
    gap: 1rem;
  }

  .product-fact {
    flex: 1 1 100%;
  }
}

/* Quality Assurance Section Styles */
.quality-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.quality-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.quality-card:hover .quality-icon {
  transform: scale(1.1);
  color: var(--primary-dark);
}

.quality-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.quality-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
  margin: 0 auto 1.5rem;
  transition: width 0.3s ease;
}

.quality-card:hover .quality-divider {
  width: 80px;
}

.quality-text {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.quality-badge {
  display: inline-block;
  background-color: var(--gray-100);
  color: var(--primary-color);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quality-card:hover .quality-badge {
  background-color: var(--primary-color);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .products-showcase {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .products-showcase {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .product-content {
    padding: 1.25rem;
  }

  .product-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .products-showcase {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 100%;
  }
}

/* Modern Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  /* Above the mobile menu */
}

.logo img {
  height: 60px;
  transition: all var(--transition-speed);
}

header.scrolled .logo img {
  height: 50px;
}

/* Modern Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2rem;
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--gray-800);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

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

/* Modern Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
  /* Above the mobile menu */
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-in-out;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.card-text {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Contact Section */
.contact {
  background-color: var(--gray-100);
}

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

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--box-shadow-sm);
}

.contact-text {
  font-size: 1rem;
  color: var(--gray-700);
}

.contact-text strong {
  color: var(--gray-800);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: all var(--transition-speed);
  background-color: var(--gray-100);
}

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

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
}

/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 1.5rem;
}

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

.footer-logo img {
  height: 80px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
  font-weight: 600;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: white;
}

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

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

  .nav-item {
    margin: 1.5rem 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
  }

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

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

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-img {
    height: 180px;
  }
}

/* Dark Overlay for Mobile Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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