/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Quicksand', sans-serif;
  color: #1a3c34;
  background: #fdfaf3;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.25; color: #064e3b; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 250, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(6, 78, 59, 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; color: #064e3b; font-size: 0.9rem; }
.logo-text { font-family: 'Nunito', sans-serif; font-weight: 700; line-height: 1.2; }
.logo-icon { color: #059669; }

/* ── Nav ── */
.nav-list { display: flex; gap: 8px; align-items: center; }
.nav-list a {
  padding: 8px 16px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  color: #1a3c34; transition: all 0.25s ease;
}
.nav-list a:hover { background: rgba(5, 150, 105, 0.1); color: #059669; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: #064e3b; padding: 8px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(5, 150, 105, 0.1); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-list {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253, 250, 243, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.12);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { padding: 14px 20px; width: 100%; text-align: center; border-radius: 12px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 25%, #a7f3d0 50%, #6ee7b7 75%, #34d399 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(253, 246, 227, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(251, 195, 21, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: #065f46;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: #064e3b;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(255, 255, 255, 0.4);
}
.text-cream { color: #fef3c7; }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1a3c34; opacity: 0.85;
  max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 800; color: #064e3b; }
.stat-label { font-size: 0.85rem; color: #1a3c34; opacity: 0.7; }
.stat-divider { width: 1px; background: rgba(6, 78, 59, 0.2); align-self: stretch; margin: 8px 4px; }
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  color: #fdfaf3;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #059669; color: #fff;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35);
}
.btn-primary:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(5, 150, 105, 0.4); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.7); color: #064e3b;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-2px); }
.btn-cream {
  background: #fef3c7; color: #064e3b;
  box-shadow: 0 4px 20px rgba(254, 243, 199, 0.5);
}
.btn-cream:hover { background: #fde68a; transform: translateY(-2px); }
.btn-outline-cream {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-cream:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #059669; margin-bottom: 12px;
  background: rgba(5, 150, 105, 0.08);
  padding: 6px 16px; border-radius: 50px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: #4a6b63;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Services ── */
.services { padding: 100px 0; background: #fdfaf3; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(6, 78, 59, 0.07);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #34d399, #fef3c7);
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #059669; margin-bottom: 20px;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, #059669, #34d399); color: #fff; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: #4a6b63; }

/* ── About ── */
.about { padding: 100px 0; background: #f0fdf4; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: -24px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.18);
  border: 4px solid #f0fdf4;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-accent {
  position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  color: #059669; z-index: 1;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text { font-size: 1rem; color: #4a6b63; margin-bottom: 16px; }
.about-features { margin-top: 28px; display: grid; gap: 14px; }
.about-features li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: #1a3c34;
}
.about-features svg { color: #059669; flex-shrink: 0; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
}

/* ── Products ── */
.products { padding: 100px 0; background: #fdfaf3; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 59, 0.07);
  transition: all 0.35s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1); }
.product-img { overflow: hidden; }
.product-img img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 24px; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-info p { font-size: 0.9rem; color: #4a6b63; }

/* ── CTA ── */
.cta {
  position: relative; padding: 100px 0;
  background: linear-gradient(160deg, #064e3b 0%, #065f46 40%, #047857 100%);
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(254, 243, 199, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff; margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem; color: rgba(255, 255, 255, 0.8);
  max-width: 520px; margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #f0fdf4; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(6, 78, 59, 0.07);
  transition: all 0.3s ease;
}
.contact-item:hover { box-shadow: 0 8px 30px rgba(6, 78, 59, 0.08); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #059669;
}
.contact-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: #4a6b63; }
.contact-item a:hover { color: #059669; text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; margin-top: 8px; box-shadow: 0 8px 30px rgba(6, 78, 59, 0.08); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Form ── */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(6, 78, 59, 0.07);
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.06);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-hint { font-size: 0.9rem; color: #4a6b63; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600; font-size: 0.85rem;
  color: #1a3c34; margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(6, 78, 59, 0.15);
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: #1a3c34;
  background: #fdfaf3;
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #059669;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { resize: vertical; }
.form-success {
  display: none; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 12px;
  color: #065f46; font-weight: 600; font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #059669; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: #064e3b; color: rgba(255, 255, 255, 0.7); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer .logo { color: rgba(255, 255, 255, 0.9); margin-bottom: 16px; }
.footer .logo-icon { color: #34d399; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: grid; gap: 12px; }
.footer-links a {
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: #34d399; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
}
.footer-contact svg { color: #34d399; flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #34d399; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
