* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #12352b;
  --green: #2e7d52;
  --light-green: #a7d46f;
  --cream: #f5f6ef;
  --white: #ffffff;
  --text: #263b33;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: 92%;
  max-width: 1120px;
  margin: auto;
}

.section {
  padding: 70px 0;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

h2 {
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e5eae5;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  margin-right: auto;
  text-decoration: none;
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo span {
  color: var(--green);
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

nav a:hover {
  color: var(--green);
}

.whatsapp {
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: bold;
}

/* HERO */

.hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f1f7ed, #dfead7 42%, #eef7ef);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero h1 {
  color: var(--dark);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.02;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.description {
  max-width: 650px;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 13px 23px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 30px rgba(46,125,82,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.btn.outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(18,53,43,0.06);
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  width: min(100%, 520px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(18,53,43,0.18);
  border: 8px solid rgba(255,255,255,0.8);
}

.hero-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.floating-box {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(18,53,43,0.12);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

.floating-box strong {
  color: var(--green);
  font-size: 1.5rem;
}

.floating-box span {
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.box-one {
  left: 0;
  bottom: 55px;
}

.box-two {
  right: 0;
  top: 45px;
}

/* TRUST */

.trust-section {
  padding-top: 0;
  margin-top: -10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  background: white;
  border-radius: 20px;
  padding: 26px 20px;
  border: 1px solid #e7efe6;
  box-shadow: 0 20px 35px rgba(18,53,43,0.05);
  text-align: center;
}

.trust-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 6px;
}

.trust-card span {
  color: var(--dark);
  font-weight: 600;
}

/* SERVICES */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 24px 22px;
  border: 1px solid #e3e9e3;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 30px rgba(18,53,43,0.05);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* PRODUCTS */

.products-section {
  background: linear-gradient(180deg, #f7faf6 0%, #edf7ee 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  position: relative;
  background: white;
  border: 1px solid #e6efe7;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 35px rgba(18,53,43,0.05);
}

.product-card.highlight {
  border-color: rgba(46,125,82,0.35);
  box-shadow: 0 22px 42px rgba(46,125,82,0.10);
}

.product-badge {
  display: inline-block;
  background: rgba(46,125,82,0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.product-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.product-card p {
  margin-bottom: 16px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.product-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* GALLERY */

.gallery-section {
  background: #f7faf7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(18,53,43,0.08);
  border: 1px solid #e8efe8;
}

/* QUALITY ASSURANCE */

.quality-section {
  background: #0f2a22;
  color: white;
}

.quality-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.quality-copy h2 {
  color: white;
  margin-bottom: 18px;
}

.quality-copy p {
  color: rgba(255,255,255,0.82);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quality-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px 18px;
}

.quality-card strong {
  display: block;
  margin-bottom: 8px;
  color: #dff6e4;
  font-size: 1.1rem;
}

.quality-card span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ABOUT */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about p {
  margin-bottom: 15px;
}

.features {
  display: grid;
  gap: 15px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 22px;
  border-radius: 14px;
}

.features strong {
  font-size: 1.5rem;
  color: var(--green);
}

/* CONTACT */

.contact {
  padding: 90px 0;
  background: var(--dark);
  color: white;
}

.contact h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.contact-info-stack {
  display: grid;
  gap: 22px;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px;
}

.quote-form {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  border-radius: 20px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-weight: 600;
}

.quote-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: white;
  font: inherit;
}

.quote-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-btn {
  border: none;
  background: var(--green);
  color: white;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.form-btn:hover {
  opacity: 0.95;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-row span {
  font-size: 1.2rem;
}

.contact-details a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
}

.address-row strong {
  display: block;
  margin-bottom: 4px;
  color: white;
}

.address-row p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.map-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--green);
  font-weight: 700;
}

.map-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}

.map-card iframe {
  width: 100%;
  height: 290px;
  border: 0;
  display: block;
}

/* SOCIAL CARD */

.feature-post {
  background: linear-gradient(135deg, #f4f9f4 0%, #edf4ff 100%);
}

.post-card {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  background: #ffffff;
  border: 1px solid #e7efe7;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(18,53,43,0.08);
}

.post-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18,53,43,0.75), rgba(46,125,82,0.72)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.play-button {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.8);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: white;
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.post-media span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.post-content {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-tag {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-content h3 {
  color: var(--dark);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.post-content p {
  margin-bottom: 22px;
  color: var(--text);
}

.post-link {
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 22px rgba(46,125,82,0.25);
}

.post-link:hover {
  opacity: 0.95;
}

.instagram-feature {
  background: linear-gradient(135deg, #fff5f8 0%, #fef3ef 100%);
}

.instagram-card {
  border-color: #f1dfe6;
}

.instagram-media {
  background: linear-gradient(135deg, rgba(115, 32, 74, 0.75), rgba(214, 74, 122, 0.72)), url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

/* FOOTER */

footer {
  background: #0a251e;
  color: #c9d5d0;
  padding: 25px 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: #dfeae6;
  text-decoration: none;
  font-weight: 600;
}

.footer-socials a:hover {
  color: white;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-content,
  .about-grid,
  .contact-grid,
  .quality-wrap {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services,
  .product-grid,
  .gallery-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: 440px;
  }

  .floating-box {
    transform: scale(0.9);
  }

  .box-one {
    left: 15px;
    bottom: 25px;
  }

  .box-two {
    right: 15px;
    top: 20px;
  }

  .post-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .whatsapp {
    display: none;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .trust-grid,
  .quality-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: 350px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
