/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Body */
body {
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(63, 163, 77, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(63, 163, 77, 0.6);
  }
}

/* Header / Navbar */
header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.brand-name {
  color: #2d5016;
  font-weight: 700;
}

/* Desktop Menu */
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #2d5016;
}

.menu li a i {
  font-size: 1rem;
}

.cta-btn {
  background-color: #2d5016 !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #1e3610 !important;
}

.language-switcher {
  margin-left: 1rem;
}

.lang-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background-color: #e0e0e0;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        max-height: 500px;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu li a:hover {
        background-color: #f9f9f9;
    }

    .menu li:last-child a {
        border-bottom: none;
    }

    .cta-btn {
        background-color: #2d5016 !important;
        color: white !important;
        margin: 0.5rem 2rem !important;
        display: inline-block;
    }

    .language-switcher {
        margin-left: 0;
        width: 100%;
        padding: 1rem 2rem;
        border-top: 1px solid #f0f0f0;
    }

    .lang-btn {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Mobile (Extra Small) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo img {
        height: 35px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-btn {
        margin: 0.5rem 1.5rem !important;
        padding: 0.6rem 1rem !important;
    }

    .language-switcher {
        padding: 0.75rem 1.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .nav-container {
        padding: 1.5rem 3rem;
    }

    .menu {
        gap: 2.5rem;
    }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(11, 93, 30, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%),
              url("hero-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 150px 20px 120px 20px;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(106, 222, 76, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(63, 163, 77, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease-out, textGlow 3s ease-in-out infinite;
  letter-spacing: 1.5px;
  font-weight: 900;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 0 6px 25px rgba(106, 222, 76, 0.3);
  }
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
  animation: fadeInUp 1.4s ease-out;
  position: relative;
  z-index: 2;
  line-height: 1.8;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  margin: 12px;
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(63, 163, 77, 0.4);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(63, 163, 77, 0.6);
  background: linear-gradient(135deg, #2e7d32 0%, #1f5c23 100%);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  animation: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
  background: #fff;
  color: #2e7d32;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.product-btn {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  margin-top: 10px;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(63, 163, 77, 0.4);
  background: linear-gradient(135deg, #2e7d32 0%, #1f5c23 100%);
}

/* Sections */
section {
  padding: 70px 60px;
  animation: fadeInUp 0.8s ease-out;
}

section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #0b5d1e;
  margin-bottom: 30px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3fa34d, #a6e22e);
  margin: 15px auto 0;
  border-radius: 2px;
  animation: pulse 2s infinite;
}

/* About Section */
#about {
  background: linear-gradient(135deg, #f9fafb 0%, #f0f7f1 100%);
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  animation: fadeInUp 1s ease-out;
}

.about-text h3 {
  font-size: 1.3rem;
  color: #0b5d1e;
  margin-top: 20px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text h3:hover {
  color: #3fa34d;
  transform: translateX(5px);
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeInUp 1.2s ease-out;
}

.stat-box {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(63, 163, 77, 0.2);
  border-color: #3fa34d;
  background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
}

.stat-box h4 {
  font-size: 2.5rem;
  color: #3fa34d;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-box:hover h4 {
  font-size: 2.8rem;
  color: #a6e22e;
}

.stat-box p {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}

/* Why Choose Us */
#why {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9f6 100%);
}

#why ul {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
}

#why ul li {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-weight: 600;
  color: #2e7d32;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  animation: fadeInUp 0.8s ease-out;
}

#why ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(63, 163, 77, 0.2);
  border-color: #3fa34d;
  background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
}

#why ul li i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
  color: #3fa34d;
  transition: all 0.3s ease;
}

#why ul li:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #a6e22e;
}

/* Products Section */
#products {
  background: linear-gradient(135deg, #f1f7f2 0%, #e8f5e9 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

#products .product {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#products .product:hover .product-image img {
  transform: scale(1.1);
}

#products .product::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(166, 226, 46, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

#products .product:hover::before {
  left: 100%;
}

#products .product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(63, 163, 77, 0.2);
  border-color: #3fa34d;
}

.product-icon {
  font-size: 3rem;
  color: #3fa34d;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

#products .product:hover .product-icon {
  transform: scale(1.3) rotateY(360deg);
  color: #a6e22e;
}

#products .product h3 {
  font-size: 1.3rem;
  color: #0b5d1e;
  margin: 20px 20px 8px 20px;
  transition: color 0.3s ease;
}

#products .product:hover h3 {
  color: #3fa34d;
}

.product-details {
  color: #3fa34d;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 20px 8px 20px;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 20px 15px 20px;
  flex-grow: 1;
}

#products .product p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Testimonials */
#testimonials {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 226, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

#testimonials::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(63, 163, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 4rem;
  color: rgba(166, 226, 46, 0.15);
  font-family: Georgia, serif;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3fa34d 0%, #a6e22e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(63, 163, 77, 0.2);
  background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
  border-color: #a6e22e;
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.star-rating {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  display: flex;
  gap: 5px;
}

.testimonial-card:hover .star-rating {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

.star-rating i {
  transition: all 0.3s ease;
}

.testimonial-card:hover .star-rating i {
  animation: starPop 0.4s ease;
}

@keyframes starPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.testimonial-card blockquote {
  font-style: italic;
  color: #444;
  margin: 20px 0;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.testimonial-card:hover blockquote {
  color: #2e7d1e;
}

.testimonial-author {
  color: #3fa34d;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.testimonial-author::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #a6e22e;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
  transform: translateX(5px);
}

.testimonial-card:hover .testimonial-author::before {
  width: 12px;
  height: 12px;
  background: #3fa34d;
}

/* Enquiry Section */
#enquiry {
  background: linear-gradient(135deg, #f9fafb 0%, #f0f7f1 100%);
  position: relative;
  overflow: hidden;
}

#enquiry::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 226, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.enquiry-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.enquiry-form-wrapper {
  position: relative;
}

.enquiry-form {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8f5e9;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.enquiry-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(166, 226, 46, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.enquiry-form:hover {
  border-color: #3fa34d;
  box-shadow: 0 25px 60px rgba(63, 163, 77, 0.18);
  transform: translateY(-5px);
}

.enquiry-form:hover::before {
  left: 100%;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: #0b5d1e;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.form-group:focus-within label {
  color: #3fa34d;
  transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3fa34d;
  box-shadow: 0 0 15px rgba(63, 163, 77, 0.25);
  background: #f9fdfb;
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: #3fa34d;
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233fa34d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(63, 163, 77, 0.35);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(63, 163, 77, 0.5);
  background: linear-gradient(135deg, #2e7d32 0%, #1f5c23 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn i {
  font-size: 1.1rem;
}

.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.success-message.show {
  opacity: 1;
}

.success-content {
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  color: #fff;
  padding: 40px 50px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(63, 163, 77, 0.5);
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-content i {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.success-content p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.enquiry-info {
  animation: fadeInUp 1s ease-out;
}

.enquiry-info h3 {
  font-size: 1.4rem;
  color: #0b5d1e;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.enquiry-info h3:hover {
  color: #3fa34d;
  transform: translateX(8px);
}

.enquiry-info h3 i {
  font-size: 1.6rem;
  color: #3fa34d;
  transition: all 0.3s ease;
}

.enquiry-info h3:hover i {
  transform: scale(1.2) rotate(10deg);
}

.enquiry-info ul {
  list-style: none;
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #3fa34d;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.enquiry-info ul:hover {
  box-shadow: 0 12px 35px rgba(63, 163, 77, 0.15);
  border-left-color: #a6e22e;
}

.enquiry-info li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.enquiry-info li:last-child {
  margin-bottom: 0;
}

.enquiry-info li:hover {
  color: #0b5d1e;
  transform: translateX(10px);
}

.enquiry-info li i {
  color: #3fa34d;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.3s ease;
}

.enquiry-info li:hover i {
  transform: scale(1.3);
  color: #a6e22e;
}

.contact-card {
  background: linear-gradient(135deg, #fff 0%, #f9fdfb 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border-left: 4px solid #3fa34d;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(63, 163, 77, 0.2);
  border-left-color: #a6e22e;
}

.contact-card strong {
  color: #0b5d1e;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 8px;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.enquiry-info a {
  color: #3fa34d;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.enquiry-info a:hover {
  color: #2e7d32;
  transform: translateX(4px);
  text-decoration: underline;
}

/* Footer / Contact */
footer {
  background: linear-gradient(135deg, #0b5d1e 0%, #051a08 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 40px;
  animation: slideInLeft 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(166, 226, 46, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(63, 163, 77, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: gradientShift 8s ease-in-out infinite;
}

footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 226, 46, 0.3), transparent);
}

footer h2 {
  color: #a6e22e;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease-out;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

footer h2::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3fa34d, #a6e22e);
  margin: 0 auto 20px;
  border-radius: 2px;
  animation: pulse 2s infinite;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section h3 {
  font-size: 1.2rem;
  color: #a6e22e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-section h3:hover {
  transform: translateY(-3px);
}

.footer-section h3 i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-section h3:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

.footer-section p {
  margin: 10px 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.footer-section p:hover {
  color: #a6e22e;
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  transition: all 0.3s ease;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info:hover {
  transform: translateX(8px);
}

.contact-info i {
  color: #3fa34d;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-info:hover i {
  color: #a6e22e;
  transform: scale(1.3);
}

.footer-section a {
  color: #a6e22e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a6e22e, #3fa34d);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-divider {
  max-width: 1200px;
  margin: 40px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 226, 46, 0.3), transparent);
  position: relative;
  z-index: 2;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 8px 0;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease-out;
}

.footer-bottom p:hover {
  color: #a6e22e;
}

.footer-bottom .company-name {
  color: #a6e22e;
  font-weight: 700;
  font-size: 1rem;
}

.footer-bottom .rights {
  color: #888;
  font-size: 0.85rem;
  margin-top: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(166, 226, 46, 0.1);
  border: 2px solid #3fa34d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3fa34d;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.social-links a:hover {
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  border-color: #a6e22e;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(63, 163, 77, 0.4);
}

.social-links a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 226, 46, 0.3) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.social-links a:hover::before {
  opacity: 1;
}

.footer-back-to-top {
  margin-top: 30px;
}

.back-to-top-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3fa34d 0%, #2e7d32 100%);
  border: 2px solid #a6e22e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out, pulse 2s infinite;
  box-shadow: 0 8px 20px rgba(63, 163, 77, 0.4);
}

.back-to-top-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(63, 163, 77, 0.6);
  background: linear-gradient(135deg, #2e7d32 0%, #1f5c23 100%);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  nav {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 50px 25px;
  }

  section h2 {
    font-size: 1.9rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  #why ul {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .enquiry-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-form {
    padding: 30px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .submit-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .enquiry-info h3 {
    font-size: 1.2rem;
  }

  .enquiry-info ul {
    padding: 20px;
  }

  .enquiry-info li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  footer {
    padding: 60px 25px;
  }

  footer h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 30px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .footer-divider {
    margin: 30px auto;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 15px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
