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

:root {
  --background: #1f2937;
  --foreground: #ffffff;
  --card: #374151;
  --card-foreground: #f1f5f9;
  --primary: #4caf50;
  --primary-foreground: #ffffff;
  --secondary: #ffc107;
  --secondary-foreground: #1f2937;
  --muted: #6b7280;
  --muted-foreground: #ffffff;
  --border: #4caf50;
  --radius: 0.5rem;
}
.product-card.hidden {
  display: none !important;
}
.products-grid .product-card {
  display: block;
}
.product-card.hidden {
  display: none !important;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Category Filter Styles */
.category-filter {
  padding: 2rem 0;
  background: #2d3748;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #68d391;
  font-weight: 500;
}

.filter-icon {
  color: #68d391;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #4a5568;
  background: transparent;
  color: #cbd5e0;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #4a5568;
  color: white;
  border-color: #718096;
}

.filter-btn.active {
  background: #68d391;
  color: white;
  border-color: #68d391;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand h2 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

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

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 18.5px;
  
}

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

.nav-mobile {
  display: none;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  transition: 0.3s;
}

/* Special styling for Order Now navigation link */
.order-nav-link {
  background: linear-gradient(135deg, #4caf50, #45a049) !important;
  color: white !important;
  padding: 8px 14px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3) !important;
  transition: all 0.3s ease !important;
  animation: pulse-glow 2s infinite !important;
  font-size: 18.0px !important;
  align-items: center !important;
  transform: translateY(-1px) !important;
}

.order-nav-link:hover {
  background: linear-gradient(135deg, #45a049, #4caf50) !important;
  transform: translateY(1px) !important;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--card) 50%, var(--background) 100%);
  opacity: 0.5;
  animation: parallax 20s ease-in-out infinite;
  
}

.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.floating-particles::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(76, 175, 80, 0.2), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(76, 175, 80, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(76, 175, 80, 0.2), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(76, 175, 80, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(76, 175, 80, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 15s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 4rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-accent {
  display: block;
  color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Special styling for Order button in hero */
.btn-order {
  background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  animation: pulse-glow 2s infinite !important;
}

.btn-order:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5) !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.scroll-mouse:hover {
  border-color: rgba(76, 175, 80, 0.8);
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
  animation: pulse 2s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  background: rgba(76, 175, 80, 0.9);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(76, 175, 80, 0.6);
}

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

.btn-outline:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
  transform: scale(1.05);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Enhanced product button styling */
.product-btn {
  background: linear-gradient(135deg, #4caf50, #45a049) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.product-btn:hover {
  background: linear-gradient(135deg, #45a049, #4caf50) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
}

/* Features Section */
.features-section {
  padding: 5rem 1rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--primary);
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  text-align: center;
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease-out;
}

.feature-card:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(76, 175, 80, 0.2);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.feature-description {
  color: var(--muted-foreground);
}

/* Products Page Styles */
.products-hero {
  padding: 8rem 1rem 4rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
  text-align: center;
}

.products-hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.products-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.products-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.products-section {
  padding: 4rem 1rem;
}

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

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease-out;
}

.product-card:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

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

.product-image img {
  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;
  inset: 0;
  background: rgba(31, 41, 55, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Enhanced small order buttons on product cards */
.btn-primary.btn-sm {
  background: linear-gradient(135deg, #4caf50, #45a049) !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-primary.btn-sm:hover {
  background: linear-gradient(135deg, #45a049, #4caf50) !important;
  transform: translateY(-1px) scale(1.05) !important;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4) !important;
}

/* About Page Styles */
.about-hero {
  padding: 8rem 1rem 4rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.about-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.story-section {
  padding: 5rem 1rem;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.story-paragraph {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.values-section {
  padding: 5rem 1rem;
  background: rgba(55, 65, 81, 0.3);
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

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

.value-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  text-align: center;
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease-out;
}

.value-card:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: rgba(76, 175, 80, 0.2);
  transform: scale(1.1);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.team-section {
  padding: 5rem 1rem;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

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

.team-member {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease-out;
}

.team-member:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 2rem;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.stats-section {
  padding: 5rem 1rem;
  background: rgba(55, 65, 81, 0.5);
}

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

.stat-item {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background: rgba(55, 65, 81, 0.5);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Contact Page Styles */
.contact-hero {
  padding: 8rem 1rem 4rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--card) 100%);
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.contact-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-section {
  padding: 4rem 1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  animation: fadeInUp 1s ease-out;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.form-submit {
  margin-top: 1rem;
  align-self: flex-start;
}

.contact-info {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.info-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
}

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

.info-content {
  flex: 1;
}

.info-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.info-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.info-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: rgba(76, 175, 80, 0.8);
}

.info-hours {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-section {
  padding: 5rem 1rem;
  background: rgba(55, 65, 81, 0.3);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

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

.faq-item {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.faq-item:hover {
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-4px);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--card);
  padding: 3rem 1rem 1rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--muted-foreground);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(76, 175, 80, 0.2);
  color: var(--muted-foreground);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

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

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

/* Added pulsing glow animation for Order buttons */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(76, 175, 80, 0.6);
  }
}

@keyframes bounce-glow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons,
  .cta-buttons,
  .products-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .contact-content,
  .faq-grid {
    flex-direction: row;
    justify-content: center;
  }

  .hero-content,
  .products-hero-content,
  .about-hero-content,
  .contact-form-container {
    max-width: 64rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

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

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

  .features-grid,
  .products-grid,
  .values-grid,
  .team-grid,
  .contact-content,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .story-image {
    order: -1;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .features-section,
  .cta-section,
  .products-section,
  .about-hero,
  .story-section,
  .values-section,
  .team-section,
  .stats-section,
  .contact-hero,
  .contact-section,
  .faq-section {
    padding: 3rem 1rem;
  }

  .btn,
  .product-btn,
  .btn-sm,
  .value-card,
  .team-member,
  .contact-form-container,
  .info-item,
  .faq-item {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .info-item {
    padding: 1rem;
  }

  .faq-item {
    padding: 1.5rem;
  }
}
