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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Section Badges - Modern Creative Element */
.section-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-badge span {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.section-badge span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s;
}

.section-badge:hover span::before {
  left: 100%;
}

/* Hero Badge */
.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-badge span {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f3610 0%, #35571a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 124, 35, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2d5016;
  border: 2px solid #2d5016;
}

.btn-secondary:hover {
  background: #2d5016;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #4a7c23;
  border: 2px solid #4a7c23;
}

.btn-outline:hover {
  background: #4a7c23;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-brand h1 {
  color: #2d5016;
  font-size: 2rem;
  margin-bottom: 0;
}

.brand-tagline {
  color: #4a7c23;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4a7c23;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #4a7c23;
}

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

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.logo {
  width: 150px;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/hero.webp") center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 100px 0 50px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Feature Cards */
.hero-features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-feature-card:nth-child(1) {
  animation-delay: 0.3s;
  margin-left: 2rem;
}

.hero-feature-card:nth-child(2) {
  animation-delay: 0.6s;
  margin-right: 2rem;
}

.hero-feature-card:nth-child(3) {
  animation-delay: 0.9s;
  margin-left: 1rem;
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 16px;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.feature-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(74, 124, 35, 0.8);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.philosophy-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.philosophy-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fdf4;
  border-radius: 12px;
  /* border-left: 4px solid #4a7c23; */
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(74, 124, 35, 0.1);
}

.highlight-icon {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Legacy Section */
.legacy-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
}

/* Legacy Header - Image Left, Text Right */
.legacy-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.legacy-image {
  position: relative;
}

.legacy-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.legacy-text h2 {
  color: #2d5016;
  margin-bottom: 1.5rem;
}

.legacy-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Legacy Features Cards */
.legacy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.legacy-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(74, 124, 35, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legacy-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(74, 124, 35, 0.15);
  border-color: #4a7c23;
}

.legacy-feature i {
  color: #4a7c23;
  font-size: 2rem;
  flex-shrink: 0;
}

.legacy-feature h4 {
  color: #2d5016;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legacy-feature p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Legacy Integration Text */
.legacy-integration {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(74, 124, 35, 0.1);
}

.legacy-integration p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.team-member {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e8f5d8;
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.member-info {
  padding: 1rem;
  text-align: center;
}

.member-info h3 {
  color: #2d5016;
  margin-bottom: 0;
}

.member-role {
  color: #4a7c23;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0;
}

.member-bio {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s ease;
  transform: translateY(100%);
}

.team-member:hover .member-bio {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.member-bio .overlay-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.member-bio .overlay-role {
  font-size: 1rem;
  color: #8bc34a;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio .overlay-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.team-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-description p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

/* Doctors Section */
.doctors-section {
  padding: 80px 0;
  /* background: #f8faf9; */
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.doctor-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.02) 0%,
    rgba(74, 124, 35, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.doctor-card:hover::before {
  opacity: 1;
}

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

.doctor-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8f5e8;
  transition: border-color 0.3s ease;
}

.doctor-card:hover .doctor-image {
  border-color: #4a7c23;
}

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

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

.doctor-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #4a7c23, #2d5016);
  border-radius: 1px;
  flex-shrink: 0;
  position: relative;
}

.doctor-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #4a7c23;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.2);
}

.doctor-info {
  flex: 1;
  min-width: 0;
}

.doctor-info h3 {
  color: #2d5016;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.doctor-card:hover .doctor-info h3 {
  color: #1f3610;
}

.doctor-qualification {
  color: #4a7c23;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-role {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.4;
}

.doctor-specialty {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  font-style: italic;
}

/* Responsive Design for Doctors Section */
@media (max-width: 768px) {
  .doctors-section {
    padding: 60px 0;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .doctor-card {
    padding: 20px;
    gap: 15px;
  }

  .doctor-image {
    width: 60px;
    height: 60px;
  }

  .doctor-divider {
    height: 50px;
  }

  .doctor-info h3 {
    font-size: 1.1rem;
  }

  .doctor-qualification {
    font-size: 0.85rem;
  }

  .doctor-role {
    font-size: 0.9rem;
  }

  .doctor-specialty {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .doctor-card {
    padding: 15px;
    gap: 12px;
  }

  .doctor-image {
    width: 50px;
    height: 50px;
  }

  .doctor-divider {
    height: 40px;
  }

  .doctor-info h3 {
    font-size: 1rem;
  }

  .doctor-qualification {
    font-size: 0.8rem;
  }

  .doctor-role {
    font-size: 0.85rem;
  }

  .doctor-specialty {
    font-size: 0.8rem;
  }
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
}

.values-container {
  display: flex;
  gap: 1rem;
  height: 500px;
  margin-top: 3rem;
}

.value-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-width: 100px;
}

.value-card.active {
  flex: 2.5;
}

.value-card:hover {
  flex: 2.5;
}

.value-card:not(.active):not(:hover) {
  flex: 1;
}

.value-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

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

.value-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.8) 0%,
    rgba(45, 80, 22, 0.4) 50%,
    rgba(45, 80, 22, 0.2) 100%
  ); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.value-arrow {
  align-self: flex-end;
  width: 50px;
  height: 50px;
  /* background: rgba(255, 255, 255, 0.9); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2d5016;
  transition: all 0.3s ease;
}

.value-card:hover .value-arrow {
  /* background: rgba(255, 255, 255, 1); */
  transform: scale(1.1);
}

.value-content {
  color: white;
}

.value-tags {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.value-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  color: white;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Expanded card tag styles */
.value-card.active .value-tag,
.value-card:hover .value-tag,
.value-card.expanded .value-tag {
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 20px;
}

.value-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.value-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
  color: #ffffff !important;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Expanded card styles */
.value-card.active .value-content h3,
.value-card:hover .value-content h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card.active .value-content p,
.value-card:hover .value-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Remove ellipsis only after animation completes */
.value-card.expanded .value-content p {
  -webkit-line-clamp: none;
  display: block;
  overflow: visible;
  text-overflow: initial;
}

/* Movement Section */
.movement-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  text-align: center;
}

.movement-content {
  max-width: 1000px;
  margin: 0 auto;
}

.movement-text h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.movement-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.movement-tagline {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 3rem;
}

.movement-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.movement-cta .btn-primary {
  background: white;
  color: #2d5016;
}

.movement-cta .btn-primary:hover {
  background: #f8fdf4;
  transform: translateY(-2px);
}

.movement-cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.movement-cta .btn-secondary:hover {
  background: white;
  color: #2d5016;
}

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

.movement-stat {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.movement-stat h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.movement-stat p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

/* B2C Showcase Section */
.b2c-showcase-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  position: relative;
  overflow: hidden;
}

.b2c-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(74, 124, 35, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(45, 80, 22, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.b2c-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.b2c-showcase-text h2 {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.b2c-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.b2c-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.b2c-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.b2c-feature:hover {
  background: rgba(74, 124, 35, 0.05);
  padding-left: 16px;
}

.b2c-feature i {
  color: #4a7c23;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.b2c-feature span {
  font-weight: 500;
  color: #333;
}

.b2c-showcase-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(74, 124, 35, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.b2c-card-screenshot {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.b2c-card-screenshot:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.b2c-card-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.b2c-card-screenshot:hover img {
  transform: scale(1.02);
}

.screenshot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.8) 0%,
    rgba(74, 124, 35, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.b2c-card-screenshot:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #2d5016;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.b2c-card-screenshot:hover .screenshot-badge {
  transform: translateY(0);
}

.screenshot-badge i {
  font-size: 0.8rem;
}

.b2c-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.b2c-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.b2c-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(74, 124, 35, 0.3);
}

.b2c-card-title h3 {
  font-size: 1.8rem;
  color: #2d5016;
  margin-bottom: 4px;
  font-weight: 700;
}

.b2c-card-title p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b2c-card-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.b2c-card-highlights {
  margin-bottom: 32px;
}

.b2c-card-highlights .highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.b2c-card-highlights .highlight:last-child {
  margin-bottom: 0;
}

.b2c-card-highlights .highlight i {
  color: #4a7c23;
  font-size: 1rem;
}

.b2c-card-highlights .highlight span {
  color: #333;
  font-weight: 500;
}

.b2c-card-cta {
  text-align: center;
}

.b2c-card-cta .btn {
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.b2c-card-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.b2c-card-cta .btn:hover::before {
  left: 100%;
}

/* Responsive Design for B2C Showcase */
@media (max-width: 1024px) {
  .b2c-showcase-content {
    gap: 40px;
  }

  .b2c-showcase-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .b2c-showcase-section {
    padding: 60px 0;
  }

  .b2c-showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .b2c-showcase-text h2 {
    font-size: 2rem;
  }

  .b2c-description {
    font-size: 1rem;
  }

  .b2c-showcase-card {
    padding: 30px;
  }

  .b2c-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .b2c-card-title h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .b2c-showcase-section {
    padding: 40px 0;
  }

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

  .b2c-showcase-card {
    padding: 24px;
  }

  .b2c-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .b2c-features {
    gap: 0.5rem;
  }

  .b2c-feature {
    padding: 8px 0;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #2d5016;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.6) 0%,
    rgba(45, 80, 22, 0.4) 50%,
    rgba(45, 80, 22, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  background: linear-gradient(
    to top,
    rgba(45, 80, 22, 0.8) 0%,
    rgba(45, 80, 22, 0.6) 50%,
    rgba(45, 80, 22, 0.4) 100%
  );
}

.product-arrow {
  align-self: flex-end;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2d5016;
  transition: all 0.3s ease;
}

.product-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #2d5016;
  transition: all 0.3s ease;
}

.product-card:hover .product-arrow {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.product-card:hover .product-arrow svg {
  stroke: #4a7c23;
  transform: rotate(5deg);
}

.product-content {
  color: white;
}

.product-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 80%;
  color: #ffffff !important;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fdf4 0%, #ffffff 50%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 20%,
      rgba(74, 124, 35, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(139, 195, 74, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(45, 80, 22, 0.02) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      rgba(74, 124, 35, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(74, 124, 35, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px;
  pointer-events: none;
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(45, 80, 22, 0.08),
    0 4px 20px rgba(74, 124, 35, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 195, 74, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5016 0%, #4a7c23 50%, #8bc34a 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 124, 35, 0.02) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 80px rgba(45, 80, 22, 0.15),
    0 15px 40px rgba(74, 124, 35, 0.1);
  border-color: rgba(139, 195, 74, 0.2);
}

.service-icon {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, #4a7c23 0%, #8bc34a 100%);
  box-shadow: 0 15px 40px rgba(74, 124, 35, 0.4);
}

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

.service-card h3 {
  color: #2d5016;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #4a7c23;
}

.service-card p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #4a5a6d;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-features li {
  color: #5a6c7d;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 195, 74, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "🌿";
  margin-right: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.service-features li:hover::before {
  transform: scale(1.3);
}

.service-features li:hover {
  color: #2d5016;
  transform: translateX(15px);
  background: rgba(139, 195, 74, 0.05);
  padding-left: 1rem;
  border-radius: 8px;
}

.service-card:hover .service-features li {
  border-bottom-color: rgba(139, 195, 74, 0.2);
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background: #ffffff;
}

/* Why Choose Header - Image Left, Text Right */
.why-choose-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-text h2 {
  color: #2d5016;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: #f8fdf4;
  border-radius: 16px;
  border: 1px solid rgba(74, 124, 35, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(74, 124, 35, 0.15);
  border-color: #4a7c23;
}

.feature-item i {
  color: #4a7c23;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #2d5016;
  margin-bottom: 0.5rem;
}

/* Certifications */
.certifications {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: #f8fdf4;
  border-radius: 20px;
  border: 1px solid rgba(74, 124, 35, 0.1);
}

.certifications h4 {
  color: #2d5016;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cert-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 2rem; */
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: transparent;
  padding: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.cert-badge:hover {
  transform: translateY(-3px);
}

.cert-badge img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

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

.sourcing-note {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

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

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

.step-item {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(74, 124, 35, 0.1);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4a7c23, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(74, 124, 35, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a7c23, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 2rem;
  box-shadow: 0 10px 25px rgba(74, 124, 35, 0.2);
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.step-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.step-duration {
  background: rgba(74, 124, 35, 0.1);
  color: #4a7c23;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(74, 124, 35, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .step-item {
    padding: 2rem;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon i {
    font-size: 1.5rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .cert-badges {
    gap: 1rem;
    justify-content: center;
  }

  .cert-badge {
    padding: 8px;
  }

  .cert-badge img {
    max-height: 35px;
  }
}

/* Inquiry Section */
.inquiry-section {
  padding: 100px 0;
  background: #ffffff;
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.inquiry-text h2 {
  color: #2d5016;
  margin-bottom: 1.5rem;
}

.inquiry-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  /* background: #f8fdf4; */
  border-radius: 10px;
}

.contact-item i {
  /* color: #4a7c23; */
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.inquiry-form {
  background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8f5d8;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a7c23;
  box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.1);
}

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

/* Form Messages */
.form-messages {
  margin-bottom: 1.5rem;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-messages.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #c3e6cb;
}

.form-messages.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f5c6cb;
}

.form-messages i {
  margin-right: 8px;
  font-size: 18px;
}

/* Button Loading State */
.btn .button-loading {
  display: none;
}

.btn.loading .button-text {
  display: none;
}

.btn.loading .button-loading {
  display: inline-block;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
}

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

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date {
  color: #666;
  font-size: 0.9rem;
}

.blog-category {
  background: #4a7c23;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-content h3 {
  color: #2d5016;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  color: #666;
  margin-bottom: 1rem;
}

.blog-link {
  color: #4a7c23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #2d5016;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2d5016 0%, #1f3610 100%);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  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: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

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

.footer-mission {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf4 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
}

.modal-header {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.modal-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.modal-header .product-category {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.modal-body {
  padding: 2.5rem;
}

.modal-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-section {
  margin-bottom: 2.5rem;
}

.modal-section h3 {
  color: #2d5016;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section h3 i {
  color: #4a7c23;
  font-size: 1.2rem;
}

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

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.certification-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cert-badge {
  /* background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%); */

  background: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* box-shadow: 0 4px 12px rgba(74, 124, 35, 0.3); */
}

.cert-badge i {
  font-size: 1rem;
}

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

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #4a7c23;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  color: #2d5016;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.modal-footer {
  background: #f8fdf4;
  padding: 1.5rem 2.5rem;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-footer .btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  z-index: 2;
}

.close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 0;
  }

  .modal-header {
    padding: 1.5rem;
  }

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

  .modal-body {
    padding: 1.5rem;
  }

  .modal-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .product-features-grid {
    grid-template-columns: 1fr;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .certification-grid {
    justify-content: center;
  }
}

/* Medium screens - tablets and small laptops */
@media (max-width: 1024px) and (min-width: 769px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .product-card {
    height: 350px;
  }

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

  .product-content p {
    font-size: 0.95rem;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) and (min-width: 481px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card {
    max-width: 500px;
    margin: 0 auto;
    height: 380px;
  }

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

  .product-content p {
    font-size: 1rem;
    max-width: 90%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.5rem;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    gap: 0.5rem;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    margin-bottom: 0.5rem;
  }

  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  .nav-menu a:hover {
    color: #4a7c23;
  }

  .nav-cta {
    display: none;
  }

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

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

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-features {
    margin-top: 2rem;
  }

  .hero-feature-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1.5rem;
  }

  .hero-feature-card:nth-child(1),
  .hero-feature-card:nth-child(2),
  .hero-feature-card:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .feature-card-content h3 {
    font-size: 1.1rem;
  }

  .feature-card-content p {
    font-size: 0.9rem;
  }

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

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

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

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

  .product-card {
    max-width: 400px;
    margin: 0 auto;
    height: 350px;
  }

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

  .product-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

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

  .why-choose-text h2 {
    font-size: 2rem;
  }

  .inquiry-text h2 {
    font-size: 2rem;
  }
}

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

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

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-feature-card {
    padding: 1.2rem;
  }

  .feature-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .feature-card-content h3 {
    font-size: 1rem;
  }

  .feature-card-content p {
    font-size: 0.85rem;
  }

  .feature-card-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 16px;
  }

  .services-section {
    padding: 80px 0;
  }

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

  .service-card {
    padding: 2.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

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

  .product-card {
    max-width: 350px;
    margin: 0 auto;
    height: 320px;
    width: 100%;
  }

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

  .product-content p {
    font-size: 0.85rem;
    max-width: 100%;
  }

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

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

.text-green {
  color: #4a7c23;
}

.bg-green {
  background: #4a7c23;
}

.bg-light-green {
  background: #f8fdf4;
}

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

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

/* Smooth scroll offset for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Loading animation for form submission */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #4a7c23;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hover effects for interactive elements */
.product-card,
.service-card,
.blog-card {
  cursor: pointer;
}

.product-card:hover .product-content h3,
.service-card:hover h3,
.blog-card:hover .blog-content h3 {
  color: #4a7c23;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #4a7c23;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-toggle {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero-title,
  .section-header h2 {
    color: #000;
  }
}

/* Product Page Styles */
.product-page {
  margin-top: 80px;
}

.product-hero {
  background: linear-gradient(135deg, #f8fdf4 0%, #ffffff 50%, #f0f9ff 100%);
  padding: 50px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50" stroke="%234A7C23" stroke-width="1" fill="none" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
  pointer-events: none;
}

.product-hero .container {
  position: relative;
  z-index: 1;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.breadcrumb {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
}

.breadcrumb a {
  color: #4a7c23;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #2d5016;
  text-decoration: none;
}

.product-hero h1 {
  font-size: 3.5rem;
  color: #2d5016;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(45, 80, 22, 0.1);
}

.product-subtitle {
  font-size: 1.8rem;
  color: #4a7c23;
  margin-bottom: 25px;
  font-weight: 600;
  opacity: 0.9;
}

.product-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 35px;
  font-weight: 500;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.badge {
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(74, 124, 35, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 124, 35, 0.4);
}

.badge i {
  font-size: 1.1rem;
}

.product-hero-image {
  position: relative;
}

.product-hero-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, #4a7c23, #2d5016);
  border-radius: 30px;
  opacity: 0.1;
  z-index: -1;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(45, 80, 22, 0.15),
    0 16px 32px rgba(45, 80, 22, 0.1);
  transition: all 0.4s ease;
}

.product-hero-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 40px 80px rgba(45, 80, 22, 0.2),
    0 20px 40px rgba(45, 80, 22, 0.15);
}

.product-features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf4 100%);
  position: relative;
}

.product-features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%234A7C23" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.product-features-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 20px;
  position: relative;
}

.product-features-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 2px;
}

.product-features-section .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(45, 80, 22, 0.08),
    0 8px 16px rgba(45, 80, 22, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(74, 124, 35, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(45, 80, 22, 0.15),
    0 16px 32px rgba(45, 80, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(74, 124, 35, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 8px 24px rgba(74, 124, 35, 0.3);
  transition: all 0.4s ease;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #4a7c23, #2d5016, #4a7c23);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

.feature-icon i {
  color: white;
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-card h3 {
  color: #2d5016;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  padding: 8px 0;
  color: #4a7c23;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.feature-benefits li::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.export-info-section {
  background: linear-gradient(135deg, #f8fdf4 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.export-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234A7C23" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.export-info-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 20px;
  position: relative;
}

.export-info-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 2px;
}

.export-info-section .container {
  position: relative;
  z-index: 1;
}

.export-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.info-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(45, 80, 22, 0.08),
    0 8px 16px rgba(45, 80, 22, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(74, 124, 35, 0.1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(45, 80, 22, 0.15),
    0 16px 32px rgba(45, 80, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(74, 124, 35, 0.2);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  position: relative;
  box-shadow: 0 8px 24px rgba(74, 124, 35, 0.3);
  transition: all 0.4s ease;
}

.info-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #4a7c23, #2d5016, #4a7c23);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.info-card:hover .info-icon::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

.info-icon i {
  color: white;
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.info-card:hover .info-icon i {
  transform: scale(1.1);
}

.info-card h3 {
  color: #2d5016;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.info-card p {
  color: #4a7c23;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.info-card small {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.certifications-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf4 100%);
  position: relative;
}

.certifications-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="hex" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,2 38,12 38,28 20,38 2,28 2,12" fill="none" stroke="%234A7C23" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hex)"/></svg>');
  pointer-events: none;
}

.certifications-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 20px;
  position: relative;
}

.certifications-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  border-radius: 2px;
}

.certifications-section .container {
  position: relative;
  z-index: 1;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.cert-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(45, 80, 22, 0.08),
    0 8px 16px rgba(45, 80, 22, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(74, 124, 35, 0.1);
  position: relative;
  overflow: hidden;
}

.cert-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cert-item:hover::before {
  transform: scaleX(1);
}

.cert-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(45, 80, 22, 0.15),
    0 16px 32px rgba(45, 80, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(74, 124, 35, 0.2);
}

.cert-item i {
  font-size: 3.5rem;
  color: #4a7c23;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(74, 124, 35, 0.2));
}

.cert-item:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #2d5016;
}

.cert-item h3 {
  color: #2d5016;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.cert-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.product-cta-section {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="80" fill="url(%23grad)"/><circle cx="300" cy="700" r="120" fill="url(%23grad)"/><circle cx="700" cy="800" r="90" fill="url(%23grad)"/></svg>');
  pointer-events: none;
}

.product-cta-section .container {
  position: relative;
  z-index: 1;
}

.product-cta-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.product-cta-section p {
  font-size: 1.4rem;
  margin-bottom: 50px;
  opacity: 0.95;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.product-cta-section .cta-buttons {
  margin-bottom: 50px;
}

.product-cta-section .btn-primary {
  background: white;
  color: #2d5016;
  border: 3px solid white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.product-cta-section .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.product-cta-section .btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 20px 40px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.product-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.product-cta-section .contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.contact-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.contact-item i {
  color: #b8e994;
  font-size: 1.4rem;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Product Page Responsive Design */
@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .export-info-grid,
  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 100px 0 80px 0;
  }

  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-hero h1 {
    font-size: 2.8rem;
  }

  .product-subtitle {
    font-size: 1.5rem;
  }

  .product-description {
    font-size: 1.1rem;
  }

  .features-grid,
  .export-info-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .product-cta-section {
    padding: 80px 0;
  }

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

  .product-cta-section p {
    font-size: 1.2rem;
  }

  .product-cta-section .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-features-section,
  .export-info-section,
  .certifications-section {
    padding: 80px 0;
  }

  .product-features-section h2,
  .export-info-section h2,
  .certifications-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 80px 0 60px 0;
  }

  .product-hero h1 {
    font-size: 2.2rem;
  }

  .product-subtitle {
    font-size: 1.3rem;
  }

  .product-badges {
    justify-content: center;
  }

  .badge {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .info-card,
  .cert-item,
  .feature-card {
    padding: 30px 25px;
  }

  .info-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .info-icon i,
  .feature-icon i {
    font-size: 1.5rem;
  }

  .cert-item i {
    font-size: 3rem;
  }

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

  .product-cta-section .btn-primary,
  .product-cta-section .btn-secondary {
    font-size: 1rem;
    padding: 15px 30px;
  }

  .product-features-section h2,
  .export-info-section h2,
  .certifications-section h2 {
    font-size: 2rem;
  }

  .product-features-section,
  .export-info-section,
  .certifications-section,
  .product-cta-section {
    padding: 60px 0;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  /* Enhanced Mobile Navigation - styles moved to main mobile media query */

  /* Hero Section Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

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

  /* Philosophy Section Mobile */
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .philosophy-highlights {
    gap: 1rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .highlight-item:hover {
    transform: translateY(-5px);
  }

  /* Legacy Section Mobile */
  .legacy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legacy-image {
    order: -1;
  }

  .legacy-features {
    gap: 1rem;
  }

  .legacy-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  /* Team Section Mobile */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-member {
    max-width: 400px;
    height: auto !important;
    width: 100%;
    margin: 0 auto;
  }

  .member-image {
    height: 250px;
  }

  /* Values Section Mobile */
  .values-container {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .value-card {
    flex: none !important;
    height: 300px;
  }

  .value-card.active {
    flex: none !important;
  }

  .value-content h3 {
    font-size: 1rem;
  }

  .value-content p {
    font-size: 0.75rem;
  }

  .value-card.active .value-content h3,
  .value-card:hover .value-content h3 {
    font-size: 1.2rem;
  }

  .value-card.active .value-content p,
  .value-card:hover .value-content p {
    font-size: 0.8rem;
  }

  .value-card.expanded .value-content p {
    -webkit-line-clamp: none;
    display: block;
    overflow: visible;
    text-overflow: initial;
  }

  /* Movement Section Mobile */
  .movement-text h2 {
    font-size: 2.5rem;
  }

  .movement-text p {
    font-size: 1.1rem;
  }

  .movement-tagline {
    font-size: 1.3rem;
  }

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

  .movement-stat {
    padding: 1.5rem;
  }

  /* Service Cards Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  /* Products Section Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    height: 350px;
  }

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

  .product-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* Process Steps Mobile */
  /* Process Section Mobile */
  .process-section .section-header h2 {
    font-size: 2.2rem;
  }

  .process-timeline {
    padding: 0 1rem;
  }

  .timeline-progress {
    display: none;
  }

  .process-step {
    margin-bottom: 3rem;
  }

  .step-marker {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .process-step:nth-child(even) .step-marker,
  .process-step:nth-child(odd) .step-marker {
    left: 0;
    transform: none;
  }

  .step-card {
    max-width: 100%;
    padding: 2rem;
  }

  .process-step:nth-child(even) .step-card,
  .process-step:nth-child(odd) .step-card {
    margin-left: 0;
    margin-right: 0;
  }

  .step-arrow {
    display: none;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }

  .step-features {
    gap: 0.5rem;
  }

  .feature-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .summary-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .summary-card h4 {
    font-size: 1.5rem;
  }

  /* Legacy Section Mobile */
  .legacy-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .legacy-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  /* Why Choose Us Mobile */
  .why-choose-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  /* Inquiry Content Mobile */
  .inquiry-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inquiry-form {
    padding: 2rem 1.5rem;
  }

  /* Blog Grid Mobile */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .footer-bottom {
    text-align: center;
  }

  /* Section Headers Mobile */
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  /* Very Small Mobile Adjustments */
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

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

  .hero-stats {
    /* grid-template-columns: 1fr; */
    gap: 1rem;
  }

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

  .hero-cta .btn-large {
    width: 100%;
    text-align: center;
  }

  /* Section Badges Mobile */
  .section-badge span {
    font-size: 12px;
    padding: 6px 16px;
  }

  /* Philosophy Mobile */
  .highlight-item,
  .legacy-feature {
    padding: 1rem;
  }

  .highlight-icon,
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Team Mobile */
  .member-image {
    height: auto !important;
    max-height: 400px;
  }

  .member-info {
    padding: 1.5rem;
  }

  /* Movement Mobile */
  .movement-text h2 {
    font-size: 2rem;
  }

  .movement-tagline {
    font-size: 1.1rem;
  }

  .movement-stats {
    grid-template-columns: 1fr;
  }

  .movement-stat {
    padding: 1rem;
  }

  .movement-stat h3 {
    font-size: 1.5rem;
  }

  /* Service and Product Cards Mobile */
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    gap: 2rem;
  }

  .service-card,
  .value-card {
    padding: 1.5rem 1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  .service-card {
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 0.8rem 0;
    margin-bottom: 0.8rem;
  }

  .service-features li:hover {
    transform: translateX(10px);
    padding-left: 0.8rem;
  }

  .product-content {
    padding: 1.5rem;
  }

  /* Form Mobile */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 16px;
  }

  /* Typography Mobile */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .section-header p {
    font-size: 1rem;
  }

  /* Buttons Mobile */
  .btn-large {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* Tablet Landscape Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 3rem;
  }

  .philosophy-content,
  .legacy-header,
  .why-choose-header {
    gap: 3rem;
  }

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

  .values-container {
    height: 400px;
    gap: 1rem;
  }

  .value-card {
    min-width: 120px;
  }

  .value-content h3 {
    font-size: 1rem;
  }

  .value-content p {
    font-size: 0.75rem;
  }

  .value-card.active .value-content h3,
  .value-card:hover .value-content h3 {
    font-size: 1.3rem;
  }

  .value-card.active .value-content p,
  .value-card:hover .value-content p {
    font-size: 0.85rem;
  }

  .value-card.expanded .value-content p {
    -webkit-line-clamp: none;
    display: block;
    overflow: visible;
    text-overflow: initial;
  }

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

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

  /* Process Section Tablet */
  .process-section .section-header h2 {
    font-size: 2.5rem;
  }

  .timeline-progress {
    width: 85%;
  }

  .step-card {
    max-width: 450px;
    padding: 2.2rem;
  }

  .step-content h3 {
    font-size: 1.6rem;
  }

  .step-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .summary-card {
    padding: 2.5rem;
  }

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

  .legacy-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .philosophy-content,
  .legacy-content,
  .team-member,
  .value-card,
  .service-card,
  .product-card,
  .blog-card {
    animation: fadeInUp 0.6s ease-out;
  }

  .hero-content {
    animation-delay: 0.1s;
  }

  .team-member:nth-child(2) {
    animation-delay: 0.1s;
  }

  .team-member:nth-child(3) {
    animation-delay: 0.2s;
  }

  .team-member:nth-child(4) {
    animation-delay: 0.3s;
  }

  .value-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .value-card:nth-child(3) {
    animation-delay: 0.2s;
  }

  .value-card:nth-child(4) {
    animation-delay: 0.3s;
  }
}

/* Print Styles Enhancement */
@media print {
  .movement-section {
    background: white;
    color: black;
  }

  .section-badge span,
  .cert-badge,
  .blog-category {
    background: #f0f0f0;
    color: black;
  }

  .philosophy-highlights,
  .legacy-features,
  .service-features {
    break-inside: avoid;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .section-badge span,
  .btn-primary,
  .cert-badge {
    border: 2px solid currentColor;
  }

  .highlight-item,
  .legacy-feature,
  .feature-item {
    border: 1px solid #333;
  }
}

/* Dark Mode Preparation (for future implementation) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-primary: #4a7c23;
    --accent-secondary: #2d5016;
  }
}

/* Accessibility Enhancements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #4a7c23;
  outline-offset: 2px;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Download Modal Styles */
.download-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.download-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
  overflow: hidden;
}

.download-modal-header {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.download-modal-close {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.download-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.download-modal-body {
  padding: 24px;
}

.download-modal-body p {
  margin-bottom: 20px;
  color: #555;
  text-align: center;
  font-size: 16px;
}

.download-modal-body .form-group {
  margin-bottom: 20px;
}

.download-modal-body .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.download-modal-body .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.download-modal-body .form-group input:focus {
  border-color: #4a7c23;
  box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.1);
}

.download-modal-body .form-group input:invalid {
  border-color: #e74c3c;
}

.email-error {
  display: none;
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
  border-left: 3px solid #e74c3c;
}

.download-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.download-modal-footer .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-modal-footer .btn-secondary {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.download-modal-footer .btn-secondary:hover {
  background: #e9ecef;
  color: #495057;
}

.download-modal-footer .btn-primary {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
  color: white;
}

.download-modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, #1f3610 0%, #35571a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 124, 35, 0.3);
}

/* Modal Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Download Modal Mobile Responsive */
@media (max-width: 768px) {
  .download-modal-content {
    width: 95%;
    margin: 20px;
  }

  .download-modal-header {
    padding: 16px 20px;
  }

  .download-modal-header h3 {
    font-size: 18px;
  }

  .download-modal-body {
    padding: 20px;
  }

  .download-modal-footer {
    flex-direction: column;
  }

  .download-modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
}
