/* Root Variables */
:root {
  --primary-green: #6cb52d;
  --dark-green: #5a9c25;
  --light-green: #8fd44f;
  --dark-teal: #1b5e5e;
  --dark-bg: #0a0a0a;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-700: #495057;
  --gray-900: #212529;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(27, 94, 94, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 2px solid rgba(108, 181, 45, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(27, 94, 94, 0.98) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  padding: 0.5rem 0;
  box-shadow: 0 10px 50px rgba(108, 181, 45, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 3px solid rgba(108, 181, 45, 0.5);
}

.logo-img {
  height: 70px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 12px;
  border: 2px solid rgba(108, 181, 45, 0.3);
}

/* ✅ WhatsApp Chat Button Highlight */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-top: 5px;
}
/* WhatsApp link style */
.footer-contact a.whatsapp-link {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a.whatsapp-link:hover {
  color: #1ebe5d;
  text-decoration: underline;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.navbar.scrolled .logo-img {
  height: 55px;

  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(108, 181, 45, 0.5);
}

.navbar-brand {
  transition: transform 0.3s ease;
}

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

}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  background: transparent;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
  background: rgba(108, 181, 45, 0.15);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(108, 181, 45, 0.8);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
  background-size: 200% 100%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(108, 181, 45, 0.8);
  animation: shimmer 3s ease infinite;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
  background: rgba(108, 181, 45, 0.2);
  text-shadow: 0 0 15px rgba(108, 181, 45, 0.6);
}

.navbar-toggler {
  border: 2px solid var(--primary-green);
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(108, 181, 45, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(108, 181, 45, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(108, 181, 45, 0.5);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.3rem rgba(108, 181, 45, 0.4);
}

.navbar-collapse {
  transition: all 0.4s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1b5e5e 40%, #2a7a7a 70%, #6cb52d 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(108, 181, 45, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27, 94, 94, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(143, 212, 79, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(108, 181, 45, 0.25) 0%, transparent 40%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(5%, 5%) rotate(5deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(27, 94, 94, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size:50px ;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 40px rgba(108, 181, 45, 0.5));
  }
  to {
    filter: drop-shadow(0 0 80px rgba(108, 181, 45, 1));
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

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

.mouse {
  width: 32px;
  height: 52px;
  border: 3px solid rgba(108, 181, 45, 0.8);
  border-radius: 25px;
  position: relative;
  box-shadow: 0 0 40px rgba(108, 181, 45, 0.8), inset 0 0 20px rgba(108, 181, 45, 0.2);
}

.mouse::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 3px;
  animation: scroll 2s infinite;
  box-shadow: 0 0 20px rgba(108, 181, 45, 1), 0 0 40px rgba(108, 181, 45, 0.6);
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
}

/* Buttons */
.btn {
  padding: 1.1rem 2.75rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, var(--primary-green) 100%);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(108, 181, 45, 0.6);
  animation: gradientMove 3s ease infinite;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 50%, var(--light-green) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(108, 181, 45, 0.8);
}

.btn-outline-light {
  border: 3px solid var(--white);
  color: var(--white);
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark-teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--dark-teal);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(108, 181, 45, 0.05) 50%, var(--light-bg) 100%);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, rgba(108, 181, 45, 0.12) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  animation: shimmer 3s ease infinite;
}

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

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

.stat-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 25px 70px rgba(108, 181, 45, 0.35);
  border-color: var(--primary-green);
  background: linear-gradient(135deg, var(--white) 0%, rgba(108, 181, 45, 0.18) 100%);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 1.05rem;
  color: var(--gray-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Services Section */
.services-section {
  padding: 2rem 0;
  background: var(--light-bg);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, var(--light-bg) 0%, transparent 100%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.title-underline {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--light-green));
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(108, 181, 45, 0.4);
}

.service-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 181, 45, 0.05), rgba(27, 94, 94, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(108, 181, 45, 0.15);
  border-color: var(--primary-green);
}

.service-number {
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-number {
  opacity: 0.25;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.service-text {
  color: var(--gray-700);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* Featured Section */
.featured-section {
  padding: 7rem 0;
  background: var(--white);
}

.product-category-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.product-category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(108, 181, 45, 0.2);
}

.category-image {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category-card:hover .category-image img {
  transform: scale(1.15) rotate(2deg);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 181, 45, 0.97), rgba(27, 94, 94, 0.97));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.category-link {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border: 3px solid var(--white);
  border-radius: 50px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.category-link:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: scale(1.1);
}

.category-content {
  padding: 2.5rem;
  background: linear-gradient(180deg, var(--white) 0%, rgba(108, 181, 45, 0.02) 100%);
}

.category-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.category-content p {
  color: var(--gray-700);
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-green) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-teal) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=800&width=1920") center / cover;
  opacity: 0.1;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Content Section */
.content-section {
  padding: 6rem 0;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-wrapper {
  padding: 2rem 0;
}

.content-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.content-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Mission & Vision */
.mission-vision-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.mission-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mission-icon i {
  font-size: 2rem;
  color: var(--white);
}

.mission-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--white);
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.4s ease;
  height: 100%;
}

.value-card:hover {
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

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

.value-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

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

.value-text {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary-green);
}

.feature-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-700);
  margin-bottom: 0;
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.product-category-section {
  margin-bottom: 5rem;
}

.category-header {
  margin-bottom: 2rem;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(108, 181, 45, 0.15);
}

.product-image {
  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.1);
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

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

.product-link {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-link:hover {
  gap: 1rem;
  color: var(--dark-teal);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-info {
  padding: 2rem 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-content p {
  color: var(--gray-700);
  margin-bottom: 0;
  line-height: 1.6;
}

.social-links-contact h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(108, 181, 45, 0.15);
}

/* Map Section */
.map-section {
  margin-top: 4rem;
}

.map-wrapper {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(1.15) contrast(1.1) drop-shadow(0 6px 20px rgba(108, 181, 45, 0.5));
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 10px;
  border: 2px solid rgba(108, 181, 45, 0.2);
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(108, 181, 45, 0.1);
  border: 2px solid rgba(108, 181, 45, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s ease;
}

.social-links a:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(108, 181, 45, 0.4);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 8px;
  transform: translateX(5px);
}

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.footer-contact i {
  color: var(--primary-green);
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(108, 181, 45, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(108, 181, 45, 0.5);
}

.back-to-top i {
  font-size: 1.3rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 10rem 0 5rem;
  }

  .navbar-nav {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(27, 94, 94, 0.95) 100%);
    border-radius: 15px;
    margin-top: 1rem;
    backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(108, 181, 45, 0.3);
    box-shadow: 0 10px 40px rgba(108, 181, 45, 0.3);
  }

  .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    margin: 0.5rem 0;
    border-radius: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .stats-section {
    margin-top: 0;
    padding: 2rem 0;
  }

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

  .service-number {
    font-size: 5rem;
  }

  .services-section,
  .featured-section,
  .cta-section {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .stat-card {
    margin-bottom: 1.5rem;
  }

  .back-to-top {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .category-image {
    height: 250px;
  }

  .logo-img {
    height: 50px;
  }

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