:root {
  --primary-color: #2E7D4F;
  --secondary-color: #1C5C38;
  --accent-color: #6BBF87;
  --light-color: #F4FAF6;
  --dark-color: #0F2E1C;
  --gradient-primary: linear-gradient(135deg, #3A9A60 0%, #2E7D4F 100%);
  --hover-color: #1C5C38;
  --background-color: #F7FBF8;
  --text-color: #1E3528;
  --border-color: rgba(46, 125, 79, 0.18);
  --divider-color: rgba(46, 125, 79, 0.1);
  --shadow-color: rgba(46, 125, 79, 0.11);
  --highlight-color: #E8A838;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
.hamburger .line {
  width: 28px; height: 3px;
  background-color: var(--light-color);
  margin: 3px 0; transition: 0.3s; border-radius: 2px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav { max-height: 400px; opacity: 1; }
.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--secondary-color);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18); z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 1rem 0; }
.mobile-nav a {
  display: block; padding: 1.1rem 1.6rem;
  color: var(--light-color); text-decoration: none;
  border-radius: 10px; transition: all 0.3s ease;
  font-size: 1.05rem; font-weight: 500; border: 2px solid transparent;
}
.mobile-nav a:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(5px);
}

/* Feature Cards — split diagonal accent */
.feature-card {
  transition: all 0.3s ease;
  background: white;
  border-radius: 18px;
  padding: 2.2rem 1.8rem 1.8rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 18px 18px 0 0;
}
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #E8A838, #C47A1A); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #6BBF87, #3A9A60); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #1C5C38, #2E7D4F); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, #3A9A60, #E8A838); }
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(46,125,79,0.2);
}
.feature-icon {
  margin: 0 auto 1.2rem auto;
  font-size: 2.6rem;
  width: 68px; height: 68px;
  display: flex; justify-content: center; align-items: center;
  background: linear-gradient(135deg, #E0F5E8 0%, #B8E8C8 100%);
  border-radius: 16px;
  border: 2px solid rgba(46,125,79,0.15);
  transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: rotate(-6deg) scale(1.1);
  border-color: var(--highlight-color);
  box-shadow: 0 6px 18px rgba(46,125,79,0.3);
}

/* Testimonials — card with left border + quote mark top */
.testimonial {
  transition: all 0.3s ease;
  background: white;
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.2rem;
  font-size: 6rem;
  color: rgba(46,125,79,0.12);
  font-family: var(--main-font);
  line-height: 1;
}
.testimonial::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: var(--gradient-primary);
  border-radius: 0 4px 4px 0;
}
.testimonial:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(46,125,79,0.18);
}

/* FAQ */
.faq-item {
  transition: all 0.3s ease;
  background: white;
  padding: 1.8rem 2rem;
  margin: 1.2rem 0;
  border-radius: 14px;
  box-shadow: 0 3px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.faq-icon {
  min-width: 40px; height: 40px;
  background: var(--gradient-primary);
  color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 22px rgba(46,125,79,0.18);
  border-color: var(--accent-color);
}

/* Form */
input, textarea {
  transition: all 0.3s ease; font-family: var(--alt-font);
  border: 2px solid var(--border-color); border-radius: 10px;
  padding: 1.1rem; background-color: white;
  color: var(--text-color); font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(46,125,79,0.10); transform: scale(1.01);
}
input:hover, textarea:hover {
  border-color: var(--accent-color);
  box-shadow: 0 3px 10px var(--shadow-color);
}

/* Buttons */
button, .btn {
  transition: all 0.3s ease; position: relative; overflow: hidden;
  background: var(--gradient-primary); color: white; border: none;
  padding: 1.2rem 2.6rem; border-radius: 50px; font-weight: 700;
  font-family: var(--alt-font); cursor: pointer; font-size: 1rem;
  text-decoration: none; display: inline-block; text-align: center;
  box-shadow: 0 6px 16px rgba(46,125,79,0.32);
  text-transform: uppercase; letter-spacing: 1px;
}
button:hover, .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(46,125,79,0.42);
  background: linear-gradient(135deg, #1C5C38 0%, #0F2E1C 100%);
}

html { scroll-behavior: smooth; }
.hero { position: relative; }
h1, h2, h3 { font-family: var(--main-font); font-weight: 700; line-height: 1.3; }
body { font-family: var(--alt-font); color: var(--text-color); background-color: var(--background-color); line-height: 1.7; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .container { padding: 0 1.5rem; }
  .feature-card { padding: 1.8rem 1.4rem; }
  .feature-icon { width: 54px; height: 54px; font-size: 2rem; }
  .testimonial { padding: 1.7rem; }
  .faq-item { padding: 1.4rem; flex-direction: column; }
  #contact .grid { max-width: 100% !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .feature-card { padding: 1.4rem; }
}
@media (min-width: 768px) {
  #contact .grid { max-width: 80% !important; }
}

header {
  background: var(--primary-color); color: var(--light-color);
  padding: 1.4rem 0; position: relative; z-index: 1000;
  box-shadow: 0 3px 12px rgba(46,125,79,0.28);
}
footer { background: var(--dark-color); color: var(--light-color); padding: 2rem 0 1rem; }
header img[alt="logo"] { filter: brightness(0) invert(1); }

a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid var(--highlight-color); outline-offset: 2px;
}

.active-link { position: relative; font-weight: 600; }
.active-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 3px;
  background: var(--highlight-color);
  border-radius: 2px;
}

/* Pattern BG — subtle leaf scatter */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    radial-gradient(ellipse at 8% 15%, rgba(46,125,79,0.07) 0%, transparent 52%),
    radial-gradient(ellipse at 92% 80%, rgba(107,191,135,0.08) 0%, transparent 48%),
    radial-gradient(circle at 48% 55%, rgba(58,154,96,0.04) 0%, transparent 58%);
  background-size: 780px 780px, 720px 720px, 680px 680px;
}

.info-banner {
  background: linear-gradient(135deg, #D8F0E2 0%, #B8E8C8 100%);
  color: var(--text-color); text-align: center; position: relative;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}
.info-banner h2 { color: var(--primary-color); margin-bottom: 1.5rem; }
.info-banner p { color: var(--text-color); font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* Pill badge */
.badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(46,125,79,0.12);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Icon-row for about page */
.icon-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: white;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.icon-row:hover {
  transform: translateX(5px);
  border-color: var(--accent-color);
}
.icon-row-icon {
  font-size: 2rem;
  min-width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E0F5E8, #B8E8C8);
  border-radius: 12px;
  flex-shrink: 0;
}