:root {
  --green: #245c38;
  --green-dark: #173327;
  --green-soft: #e8f5e9;
  --coral: #d85d4f;
  --gold: #e9bf42;
  --ink: #173327;
  --muted: #5c6d63;
  --light: #f8fff9;
  --surface: #ffffff;
  --line: rgba(23, 51, 39, 0.12);
  --shadow: 0 16px 40px rgba(23, 51, 39, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 42%, #ffffff 100%);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #e9bf42;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 2000;
  transform: translateY(-140%);
  background: #ffffff;
  color: var(--green);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #efc537 0%, #e0a923 45%, #ef9900 100%);
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 28px rgba(23, 51, 39, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(180px, 24vw, 310px);
  height: 74px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 8px;
}

nav a:hover,
nav a[aria-current="page"] {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.whatsapp-btn,
.nav-order {
  background: var(--green);
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(36, 92, 56, 0.18);
}
.whatsapp-btn:hover,
.nav-order:hover {
  background: #1f7b45;
  transform: translateY(-2px);
}

/* MOBILE */
.menu-toggle {
  display: none;
  border: 1px solid rgba(33, 74, 46, 0.45);
  background: rgba(255,255,255,0.16);
  color: #214a2e;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  padding: 8px 10px;
  cursor: pointer;
}

@media(max-width:768px){
  nav {
    position: absolute;
    top: 86px;
    right: 16px;
    background: linear-gradient(180deg, #efc537 0%, #e4aa22 100%);
    flex-direction: column;
    align-items: stretch;
    width: min(240px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 8px;
    display: none;
    box-shadow: 0 18px 40px rgba(23, 51, 39, 0.22);
  }

  nav a {
    color: #214a2e;
  }

  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }

  .logo img {
    width: 190px;
    height: 58px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: #2E7D32;
  color: white;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(46, 125, 50, 0.20);
}
.premium-hero {
  position: relative; /* IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: min(760px, 82vh);
  padding: clamp(52px, 8vw, 96px) 8%;
  overflow: hidden;
  background: url("../images/hero-background-test.webp") center top / cover no-repeat;
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.1) 30%,
    rgba(255,255,255,0.05) 50%,
    transparent 70%
  );

  pointer-events: none;
  z-index: 1;
}
/* 🔥 OVERLAY */
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;

    background: linear-gradient(90deg, rgba(13, 45, 28, 0.7) 0%, rgba(13, 45, 28, 0.5) 40%, rgb(89 95 90 / 90%) 60%, rgb(78 84 79) 100%);

  z-index: 0;
}

/* ✅ CONTENT ABOVE OVERLAY */
.premium-hero > * {
  position: relative;
  z-index: 1;
}

.hero-image {
  margin-top: 20px;
}


/* IMAGE */
.hero-image img {
  width: min(625px, 44vw);
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* CONTENT */
.hero-content {
  max-width: 550px;
}

.eyebrow {
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.premium-hero .eyebrow {
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.subtext {
  font-size: 17px;
  color: #ffffff;
  margin-top: 15px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn.secondary {
  color: white;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: none;
}
.trust-row.premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 20px;
  text-align: center;
  padding: 24px clamp(20px, 6vw, 72px) 8px;
}

.trust-row.premium div {
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 51, 39, 0.06);
  transition: 0.3s;
}

.trust-row.premium div:hover {
  transform: translateY(-5px);
}
/* nre */


.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 18px;
}

.trust-row span {
  color: var(--muted);
  margin-top: 6px;
}

/* GRID */
.section {
  padding: clamp(44px, 7vw, 80px) clamp(20px, 6vw, 72px);
  text-align: center;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.featured-section {
  background: #ffffff;
  padding-bottom: 36px;
}

.featured-section + .testimonials {
  padding-top: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.product-showcase {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}






.product-showcase .card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f5faf6 0%, #eef7f1 100%);
}

.card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(23,51,39,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card-copy span {
  background: var(--green-soft);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #7a5300;
}

.card-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: #25D366;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.card-copy h3 {
  margin: 12px 0 8px;
  padding-bottom: 5px;
  font-size: 20px;
  line-height: 1.3;
}

.card-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin: 28px 0 48px;
}
.text-decoration-none {
  text-decoration: none;
}
.testimonial {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23,51,39,0.07);
}
.testimonial-comment{
line-height: 1.6;

}

.user-icon {
  display: flex;
  justify-content: center;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px var(--green-soft);
}

.cta {
  background: linear-gradient(135deg, #245c38 0%, #2e7d32 100%);
  color: #ffffff;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-top: 0;
  color: rgba(255,255,255,0.86);
}

.cta .btn.primary {
  background: #ffffff;
  color: var(--green);
  box-shadow: none;
}

/* FOOTER */
.footer {
  background: #173327;
  color: white;
  padding: 52px clamp(20px, 6vw, 72px) 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #c8e6c9;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-wa {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  padding: 10px 15px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* mobile responsive */
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 28px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icons a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}
.contact_social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 6px;
  border-radius: 6px;
  background: var(--green-soft);
  color: #404040;
  vertical-align: middle;
}

.contact_social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
/* about style */
.about-section {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 6vw, 72px);
  background: #f8fbf9;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-content span {
  color: #2E7D32;
}

.about-highlight {
  color: #2E7D32;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.about-features div {
  background: var(--green-soft);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}
/* contact style */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf5 100%);
}

.featured-section,
.testimonials,
.cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 6vw, 72px);
  align-items: start;
}

.contact-info h2 {
  color: #2E7D32;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-top: 0;
}

.contact-box p {
  margin: 14px 0;
}

.contact-box a {
  color: #25D366;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin: 8px 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #cfd8d2;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(36,92,56,0.10);
}

.contact-form select:invalid {
  color: #606f66;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form h3 {
  margin-top: 0;
  font-size: 26px;
}

.btn.primary {
  background: var(--coral);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(46, 125, 50, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 768px) {
  header {
    padding: 8px 16px;
  }

  .premium-hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 48px 20px;
  }

  .hero-image img {
   width: min(100%, 580px);
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .trust-row.premium {
    padding-top: 20px;
  }

  .product-showcase .card img {
    height: 250px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .social-icons {
    width: 100%;
  }

  .social-icons a:first-child {
    margin-left: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .contact-info,
  .contact-form {
    text-align: left;
  }

  .contact-form .btn {
    max-width: none;
  }
}

@media (max-width: 520px) {
  nav {
    right: 12px;
    width: calc(100vw - 24px);
  }

  .logo img {
    width: 170px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
