/* ============================================
   SET 0056 - Lime/Green Fresh Theme
   Design: Organic Light Layout
   ============================================ */

/* --- Base & Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1a2e05;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- lmFloat: Floating Card Animation --- */
.lmFloat {
  animation: lmFloatAnim 3.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lmFloat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(132,204,22,0.2);
}
@keyframes lmFloatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- card-lm: Lime Themed Card --- */
.card-lm {
  background: #ffffff;
  border: 2px solid #ecfccb;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card-lm::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 4px;
  background: linear-gradient(90deg, #84cc16, #65a30d);
  transition: width 0.35s ease;
}
.card-lm:hover::after { width: 100%; }
.card-lm:hover {
  border-color: #84cc16;
  box-shadow: 0 12px 30px rgba(132,204,22,0.15);
  transform: translateY(-4px);
}

/* --- lmSlide: Slide-in Animation --- */
.lmSlide {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lmSlide.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- lmPulse: Pulse Effect --- */
.lmPulse {
  animation: lmPulseAnim 2.5s ease-in-out infinite;
}
@keyframes lmPulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(132,204,22,0.5); }
  50% { box-shadow: 0 0 0 18px rgba(132,204,22,0); }
}

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #ecfccb;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar .logo {
  font-size: 1.6rem; font-weight: 800;
  color: #3f6212;
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.navbar .logo i { color: #84cc16; font-size: 1.8rem; }
.nav-links { display: flex; list-style: none; gap: 2.2rem; }
.nav-links a {
  color: #4d7c0f; text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: #84cc16; border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #365314; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: #3f6212; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Hero (Full-width Overlay) --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(236,252,203,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3.8rem; font-weight: 900;
  line-height: 1.2; margin-bottom: 1.2rem;
  color: #365314;
}
.hero-content h1 span { color: #84cc16; }
.hero-content p {
  font-size: 1.2rem; color: #4d7c0f;
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: #84cc16;
  color: #1a2e05;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: #65a30d; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(101,163,13,0.35); }
.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: #3f6212;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #84cc16;
  transition: all 0.3s ease;
  margin-left: 0.8rem;
}
.btn-outline:hover { background: #84cc16; color: #1a2e05; }

/* --- Sections --- */
.section { padding: 5rem 2rem; }
.section-light { background: #f7fee7; }
.section-header {
  text-align: center; margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem; font-weight: 800;
  color: #365314; margin-bottom: 0.8rem;
}
.section-header p { color: #4d7c0f; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* --- Features: Alternating Layout (6 items) --- */
.features-alt { display: flex; flex-direction: column; gap: 3rem; }
.feature-row {
  display: flex; align-items: center; gap: 3rem;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .feature-icon-wrap {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ecfccb, #bef264);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: #3f6212;
}
.feature-row .feature-text h3 { font-size: 1.3rem; font-weight: 700; color: #365314; margin-bottom: 0.5rem; }
.feature-row .feature-text p { color: #4d7c0f; font-size: 0.95rem; line-height: 1.7; }

/* --- Stats (4 items) --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #ecfccb;
  border-radius: 20px;
  overflow: hidden;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-item:hover { background: #d9f99d; }
.stat-item + .stat-item { border-left: 1px solid #bef264; }
.stat-number {
  font-size: 3rem; font-weight: 900;
  color: #3f6212;
  line-height: 1;
}
.stat-label { color: #4d7c0f; margin-top: 0.4rem; font-size: 0.95rem; font-weight: 500; }

/* --- Testimonials (3 items - horizontal strip) --- */
.testimonials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #ffffff;
  border: 2px solid #ecfccb;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: #84cc16; box-shadow: 0 8px 28px rgba(132,204,22,0.12); }
.testimonial-card .stars {
  color: #eab308; font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card .quote {
  color: #3f6212; font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-card .author {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.testimonial-card .author img {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid #bef264;
}
.testimonial-card .author .name { font-weight: 700; color: #365314; }
.testimonial-card .author .role { color: #4d7c0f; font-size: 0.85rem; }

/* --- FAQ --- */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: #ffffff;
  border: 2px solid #ecfccb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: #84cc16; }
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: #365314;
  user-select: none;
  font-size: 1rem;
}
.faq-question i { transition: transform 0.3s ease; color: #84cc16; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #4d7c0f; font-size: 0.95rem;
  padding: 0 1.5rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

/* --- CTA (with pattern bg) --- */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 50%, #bef264 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 900; color: #365314; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: #3f6212; margin-bottom: 2rem; font-size: 1.1rem; position: relative; z-index: 1; }
.cta-section .btn-primary { background: #365314; color: #fff; position: relative; z-index: 1; }
.cta-section .btn-primary:hover { background: #1a2e05; }

/* --- Footer --- */
.footer {
  background: #1a2e05;
  padding: 3rem 2rem 2rem;
  color: #d9f99d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.footer-brand h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.8rem; }
.footer-brand p { color: #a3e635; font-size: 0.9rem; }
.footer-links h4 { color: #fff; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: #a3e635; text-decoration: none; font-size: 0.9rem; line-height: 2; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #365314;
  padding-top: 1.5rem;
  color: #65a30d;
  font-size: 0.85rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Page Hero (Subpages) --- */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #f7fee7, #ffffff);
  border-bottom: 2px solid #ecfccb;
}
.page-hero h1 { font-size: 3rem; font-weight: 900; color: #365314; margin-bottom: 0.8rem; }
.page-hero p { color: #4d7c0f; }

/* --- About Page --- */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h3 { font-size: 1.5rem; color: #365314; margin-bottom: 1rem; }
.about-text p { color: #3f6212; margin-bottom: 1rem; line-height: 1.8; }
.about-image img {
  width: 100%; border-radius: 24px;
  border: 3px solid #ecfccb;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-info h3 { color: #365314; font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: #3f6212; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem; color: #365314;
}
.contact-detail i { color: #84cc16; width: 20px; font-size: 1.1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.9rem 1.2rem;
  background: #ffffff;
  border: 2px solid #ecfccb;
  border-radius: 12px;
  color: #365314;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #84cc16; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 0.9rem 2.5rem;
  background: #84cc16;
  color: #1a2e05;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form button:hover { background: #65a30d; color: #fff; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .feature-row { flex-direction: column !important; text-align: center; }
  .features-alt { max-width: 500px; margin: 0 auto; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid #bef264; }
  .testimonials-strip { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .hero-content h1 { font-size: 2.5rem; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-bottom: 1px solid #bef264; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .btn-outline { margin-left: 0; margin-top: 1rem; }
  .section-header h2 { font-size: 2rem; }
}
