:root {
  --navy: #0d2e63;
  --navy-2: #123e7d;
  --green: #4e9d2d;
  --green-dark: #15552d;
  --mint: #eef7ec;
  --cream: #fbfaf3;
  --gold: #c8a54a;
  --ink: #132238;
  --muted: #647084;
  --line: #e6e9ee;
  --white: #fff;
  --shadow: 0 18px 50px rgba(13, 46, 99, 0.1);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.topbar span {
  opacity: 0.9;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 46, 99, 0.08);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 82px;
  height: auto;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 7px;
}
.navlinks a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #41516a;
  transition: 0.2s;
}
.navlinks a:hover,
.navlinks a.active {
  color: var(--navy);
  background: var(--mint);
}
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(13, 46, 99, 0.18);
}
/* WhatsApp Button Styles */
.whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  padding: 0 !important;
  margin-left: 8px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: 0.2s;
}
.whatsapp-btn:hover {
  background: #128c7e !important;
  transform: translateY(-2px);
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--mint);
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 20px;
}

main {
  overflow: hidden;
}
section {
  padding: 100px 0;
  scroll-margin-top: 82px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green);
}
h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: clamp(45px, 6vw, 76px);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.04em;
}
h3 {
  font-size: 21px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 25px rgba(13, 46, 99, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #092654;
}
.btn-secondary {
  background: #fff;
  border-color: #d9e0e9;
  color: var(--navy);
}
.btn-secondary:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.hero {
  /* min-height: calc(100vh - 122px); */
  display: grid;
  align-items: center;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(78, 157, 45, 0.16),
      transparent 26%
    ),
    radial-gradient(circle at 0% 100%, rgba(13, 46, 99, 0.08), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f7fbf5 100%);
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(78, 157, 45, 0.18);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 65px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  color: var(--navy);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-copy .lead {
  margin: 25px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.proof strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
}
.proof span {
  font-size: 12px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: #fff;
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}
.float-card {
  position: absolute;
  left: -17px;
  bottom: -8px;
  background: #fff;
  border-radius: 20px;
  padding: 15px 18px;
  box-shadow: 0 18px 40px rgba(13, 46, 99, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-size: 20px;
}
.float-card strong {
  font-size: 13px;
}
.float-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.strip {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.strip-item:last-child {
  border: 0;
}
.strip-icon {
  font-size: 24px;
}
.strip-item strong {
  font-size: 13px;
  display: block;
}
.strip-item span {
  font-size: 11px;
  opacity: 0.68;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 45px;
}
.section-head .lead {
  max-width: 480px;
  font-size: 15px;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about {
  background: #fbfaf3;
}

/* -----------------------------------------
   About Introduction
----------------------------------------- */

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;

  margin-bottom: 55px;
}

.about-content h2 {
  max-width: 620px;
}

.about-content h2 span {
  color: #4e9d2d;
}

.about-content p {
  max-width: 650px;

  margin: 22px 0 0;

  color: #647084;

  font-size: 16px;
  line-height: 1.75;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 28px;
}

.about-highlight span {
  color: #15552d;

  font-size: 18px;
  font-weight: 800;
}

.about-highlight small {
  padding-left: 15px;

  border-left: 1px solid #d5ddd1;

  color: #7a8494;

  font-size: 12px;
}

/* -----------------------------------------
   About Image
----------------------------------------- */

.about-visual {
  height: 423px;

  overflow: hidden;

  border-radius: 26px;

  background: #eef4ea;
}

.about-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* -----------------------------------------
        Vision / Mission Cards
      ----------------------------------------- */

/* =========================================
   VISION & MISSION
========================================= */

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

/* -----------------------------------------
   Card
----------------------------------------- */

.about-value-card {
  min-height: 360px;

  padding: 25px;

  background: #ffffff;

  border-radius: 22px;

  box-shadow: 0 8px 30px rgba(13, 46, 99, 0.06);

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 45px rgba(13, 46, 99, 0.1);
}

/* -----------------------------------------
   Icon
----------------------------------------- */

.about-value-icon {
  width: 58px;
  height: 58px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #4e9d2d;

  font-size: 38px;
}

/* -----------------------------------------
   Heading
----------------------------------------- */

.about-value-label {
  display: block;

  margin-bottom: 10px;

  color: #0d2e63;

  font-size: 24px;
  font-weight: 700;
}

.about-value-content h3 {
  max-width: 510px;

  margin: 0 auto 16px;

  color: #0d2e63;

  font-size: 16px;
  font-weight: 500;

  line-height: 1.55;
}

/* -----------------------------------------
   Description
----------------------------------------- */

.about-value-content p {
  max-width: 560px;

  margin: 0 auto;

  color: #647084;

  font-size: 14px;

  line-height: 1.75;
}

/* -----------------------------------------
   Mission List
----------------------------------------- */

.about-value-content ul {
  max-width: 570px;

  margin: 8px auto 0;
  padding: 0 0 0 20px;

  color: #647084;

  text-align: left;
}

.about-value-content li {
  margin-bottom: 8px;

  padding-left: 3px;

  font-size: 14px;

  line-height: 1.55;
}

.about-value-content li::marker {
  color: #4e9d2d;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {
  .about-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-value-card {
    min-height: auto;

    padding: 32px 28px;
  }
}

@media (max-width: 500px) {
  .about-value-card {
    padding: 28px 22px;
  }

  .about-value-label {
    font-size: 21px;
  }

  .about-value-content h3 {
    font-size: 15px;
  }

  .about-value-content p,
  .about-value-content li {
    font-size: 13px;
  }
}

/* -----------------------------------------
        Value Icon
      ----------------------------------------- */

.about-value-icon {
  width: 112px;
  height: 112px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
}

.about-value-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

/* -----------------------------------------
        Value Content
      ----------------------------------------- */

.about-value-label {
  margin-bottom: 7px;

  color: #4e9d2d;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-value-content h3 {
  margin: 0 0 12px;

  color: #0d2e63;

  font-size: 24px;
  line-height: 1.3;
}

.about-value-content p {
  max-width: 900px;

  margin: 0;

  color: #647084;

  font-size: 15px;
  line-height: 1.75;
}

/* -----------------------------------------
   Mission List
----------------------------------------- */

.about-value-content ul {
  margin: 12px 0 0;
  padding: 0;

  list-style: none;
}

.about-value-content li {
  position: relative;

  padding-left: 25px;

  margin-bottom: 9px;

  color: #647084;

  font-size: 15px;
  line-height: 1.6;
}

.about-value-content li::before {
  content: "";

  position: absolute;

  left: 2px;
  top: 10px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #4e9d2d;
}

/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .about-visual {
    height: 280px;
  }

  .about-value-card {
    grid-template-columns: 110px 1fr;

    gap: 30px;

    padding: 32px;
  }

  .about-value-icon {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    margin-bottom: 35px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-highlight {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .about-highlight small {
    padding-left: 0;
    border-left: 0;
  }

  .about-visual {
    height: 220px;

    border-radius: 20px;
  }

  .about-value-card {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 28px 22px;

    text-align: left;
  }

  .about-value-icon {
    width: 85px;
    height: 85px;

    margin: 0;
  }

  .about-value-content h3 {
    font-size: 20px;
  }

  .about-value-content p,
  .about-value-content li {
    font-size: 14px;
  }
}
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.vm {
  background: #fff;
  border: 1px solid #e8ece5;
  border-radius: 20px;
  padding: 23px;
}
.vm .mini {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vm h3 {
  margin: 7px 0 8px;
  color: var(--navy);
}
.vm p {
  font-size: 13px;
  margin: 0;
}

.why {
  background:
    radial-gradient(circle at 88% 12%, rgba(78, 157, 45, 0.2), transparent 24%),
    var(--navy);
  color: var(--white);
}

.why .eyebrow {
  color: #bfe7ac;
}

.why .eyebrow::before {
  background: var(--green);
}

.why h2,
.why .lead {
  color: var(--white);
}

.why .lead {
  opacity: 0.76;
}
/* =========================================
   WHY CHOOSE US
========================================= */

/* -----------------------------------------
   Grid
----------------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

/* -----------------------------------------
   Card
----------------------------------------- */

.why-card {
  min-height: 285px;

  padding: 32px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: #ffffff;

  border: 1px solid rgba(13, 46, 99, 0.05);
  border-radius: 18px;

  text-align: center;

  box-shadow: 0 5px 18px rgba(13, 46, 99, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* -----------------------------------------
   Icon
----------------------------------------- */

.why-icon {
  width: 70px;
  height: 70px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #edf6e9;
  color: #43a62b;

  font-size: 27px;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* -----------------------------------------
   Content
----------------------------------------- */

.why-card h3 {
  margin: 0 0 12px;

  color: #0d2e63;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.why-card p {
  margin: 0;

  color: #697386;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

/* -----------------------------------------
   Hover
----------------------------------------- */

.why-card:hover {
  transform: translateY(-6px);

  border-color: rgba(78, 157, 45, 0.16);

  box-shadow: 0 18px 40px rgba(13, 46, 99, 0.09);
}

.why-card:hover .why-icon {
  background: #43a62b;
  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 750px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .why-card {
    min-height: 260px;
    padding: 28px 20px;
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .why-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 18px;

    font-size: 24px;
  }
}

.products {
  background: #f7fafc;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 220px;
  background: #f4f7f3;
  display: grid;
  place-items: center;
  padding: 25px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-body {
  padding: 22px;
}
.product-body .tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--green-dark);
  font-weight: 900;
}
.product-body h3 {
  color: var(--navy);
  font-size: 19px;
  margin: 7px 0;
}
.product-body p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 17px;
}
.product-link {
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
}

.catalog-banner {
  margin-top: 25px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.catalog-copy {
  padding: 40px;
}
.catalog-copy p {
  opacity: 0.72;
  max-width: 470px;
}
.catalog-banner img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.contact {
  background: var(--navy);
  color: #fff;
  position: relative;
}
.contact .eyebrow {
  color: #bfe7ac;
}
.contact .eyebrow:before {
  background: var(--green);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: start;
}
.contact h2 {
  color: #fff;
}
.contact .lead {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
}
.contact-card .cicon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(78, 157, 45, 0.2);
  display: grid;
  place-items: center;
}
.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.contact-card strong {
  font-size: 14px;
  display: block;
  margin-top: 2px;
}
.contact-card span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}
.form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.form h3 {
  color: var(--navy);
  margin-bottom: 4px;
}
.form p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0;
}
.field {
  margin: 14px 0;
}
.field label {
  font-size: 11px;
  font-weight: 800;
  color: #566276;
  display: block;
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-size: 13px;
  outline: none;
  background: #fff;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(78, 157, 45, 0.1);
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.form .btn {
  width: 100%;
  border: 0;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .testimonial-trigger {
    min-height: 78px;
    padding: 18px 3px;

    gap: 15px;
  }

  .testimonial-title {
    gap: 15px;
  }

  .testimonial-number {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    font-size: 10px;
  }

  .testimonial-label strong {
    font-size: 15px;
  }

  .testimonial-label small {
    font-size: 10px;
  }

  .testimonial-chevron {
    width: 32px;
    height: 32px;

    flex-basis: 32px;
  }

  .testimonial-chevron svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-content {
    padding: 4px 20px 28px 55px;
  }

  .quote-mark {
    left: 8px;
    font-size: 45px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}
/* =========================================
        FOOTER
      ========================================= */

.site-footer {
  background: #0b234d;
  color: #ffffff;
  padding: 70px 0 0;
}

.footer-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1.3fr;
  gap: 80px;
}

/* Company */

.footer-logo {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.footer-logo span {
  color: #48a82f;
}

.footer-company p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

/* Social */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;
  font-size: 17px;
  font-weight: 700;

  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #48a82f;
  transform: translateY(-3px);
}

/* Headings */

.footer-links h4,
.footer-contact h4 {
  position: relative;

  margin: 0 0 25px;

  font-size: 18px;
  font-weight: 800;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";

  display: block;

  width: 30px;
  height: 2px;

  background: #48a82f;

  margin-top: 10px;
}

/* Quick Links */

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 12px;

  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #63c446;
  padding-left: 4px;
}

/* Contact */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-icon {
  width: 20px;
  flex-shrink: 0;

  color: #48a82f;

  font-size: 17px;
  line-height: 1.5;
}

.footer-contact-item strong {
  display: block;

  margin-bottom: 3px;

  font-size: 15px;
  color: #ffffff;
}

.footer-contact-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.88);

  font-size: 15px;
  line-height: 1.8;

  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #63c446;
}

/* Bottom */

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 45px auto 0;

  padding: 22px 0 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  text-align: center;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1.3fr 1fr;
    gap: 45px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-company p {
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-container {
    width: min(calc(100% - 30px), 500px);

    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-company {
    grid-column: auto;
  }

  .footer-logo {
    font-size: 21px;
  }

  .footer-company p {
    font-size: 14px;
  }

  .footer-bottom {
    width: calc(100% - 30px);
    margin-top: 35px;

    font-size: 11px;
  }

  .footer-bottom span {
    display: none;
  }
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--navy);
  color: #fff;
  padding: 13px 17px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.25s;
  z-index: 100;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1000px) {
  .navlinks {
    gap: 0;
  }
  .navlinks a {
    padding: 9px 10px;
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero {
    padding: 75px 0;
  }
  .hero-card img {
    height: 430px;
  }
  .about-grid {
    gap: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-banner {
    grid-template-columns: 1fr;
  }
  .catalog-banner img {
    height: 260px;
    order: -1;
  }
}
@media (max-width: 720px) {
  .topbar {
    display: none;
  }
  .nav {
    height: 70px;
  }
  .brand img {
    width: 130px;
  }
  .menu-btn {
    display: block;
  }
  .navlinks {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .navlinks.open {
    display: flex;
  }
  .whatsapp-btn {
    margin: 10px auto 0 auto;
  }
  .navlinks a {
    border-radius: 11px;
  }
  .nav-cta {
    margin-top: 3px;
    text-align: center;
  }
  section {
    padding: 75px 0;
  }
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .hero {
    min-height: auto;
    padding: 65px 0;
  }
  .hero-copy h1 {
    font-size: 48px;
  }
  .hero-proof {
    gap: 15px;
  }
  .hero-card {
    padding: 10px;
    border-radius: 24px;
  }
  .hero-card img {
    height: 330px;
    border-radius: 18px;
  }
  .float-card {
    left: 12px;
    bottom: 18px;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head .lead {
    margin-top: 15px;
  }
  .vision-mission {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-image {
    height: 170px;
    padding: 15px;
  }
  .product-body {
    padding: 16px;
  }
  .product-body h3 {
    font-size: 16px;
  }
  .catalog-copy {
    padding: 28px;
  }
  .catalog-banner img {
    height: 210px;
  }
  .contact-grid {
    gap: 35px;
  }
  .form {
    padding: 22px;
  }
}
@media (max-width: 450px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 43px;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* AOS, load-in animation and layered parallax enhancements */
.hero-card,
.float-card,
.about-visual img,
.catalog-banner img {
  --parallax-offset: 0px;
  --hero-mouse-x: 0px;
  --hero-mouse-y: 0px;
  will-change: transform;
}

.hero-card,
.float-card {
  transition: transform 180ms ease-out;
}

.hero-card,
.float-card {
  transform: translate3d(
    var(--hero-mouse-x),
    calc(var(--parallax-offset) + var(--hero-mouse-y)),
    0
  );
}

.about-visual img,
.catalog-banner img {
  transform: translate3d(0, var(--parallax-offset), 0) scale(1.025);
}

body.hero-intro-ready .hero-copy {
  animation: hero-copy-enter 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.hero-intro-ready .hero-visual {
  animation: hero-visual-enter 1050ms 130ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.hero-intro-ready .float-card {
  animation: hero-float-enter 700ms 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translate3d(38px, 18px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-float-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(
      var(--hero-mouse-x),
      calc(var(--parallax-offset) + var(--hero-mouse-y)),
      0
    );
  }
}

@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;
  }

  .hero-card,
  .float-card,
  .about-visual img,
  .catalog-banner img {
    transform: none;
  }
}

/* Product detail page */
.mc-product-page {
  overflow: hidden;
}
.mc-product-hero {
  padding: 30px 0 72px;
  background: linear-gradient(135deg, #f7fbf7 0%, #fff 55%, #eef6ed 100%);
}
.mc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 36px;
  white-space: nowrap;
  overflow: hidden;
}
.mc-breadcrumb a:hover {
  color: var(--green);
}
.mc-breadcrumb strong {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}
.mc-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.mc-gallery-main {
  aspect-ratio: 1 / 0.84;
  position: relative;
  display: grid;
  place-items: center;
  padding: 36px;
  background: #fff;
  border: 1px solid #e8eee7;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(17, 66, 42, 0.1);
  overflow: hidden;
}
.mc-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  mix-blend-mode: multiply;
}
.mc-zoom-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 25px rgba(13, 46, 99, 0.18);
  cursor: pointer;
}
.mc-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  overflow-x: auto;
  padding: 3px;
}
.mc-gallery-thumb {
  flex: 0 0 76px;
  height: 76px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e4eae3;
  border-radius: 12px;
  cursor: pointer;
}
.mc-gallery-thumb.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(78, 157, 45, 0.16);
}
.mc-gallery-thumb img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mc-product-badge {
  display: inline-block;
  padding: 7px 12px;
  color: var(--green-dark);
  background: #e5f2df;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mc-product-summary h1 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: clamp(37px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.mc-product-tagline {
  margin: 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
}
.mc-product-intro {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.mc-summary-rule {
  width: 72px;
  height: 3px;
  margin: 25px 0;
  border-radius: 5px;
  background: var(--green);
}
.mc-feature-points {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}
.mc-feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mc-feature-point > span {
  flex: 0 0 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
}
.mc-feature-point strong,
.mc-feature-point small {
  display: block;
}
.mc-feature-point strong {
  color: var(--ink);
  font-size: 15px;
}
.mc-feature-point small {
  color: var(--muted);
  font-size: 13px;
}
.mc-enquiry-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.mc-product-details {
  padding: 88px 0;
}
.mc-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 5vw, 72px);
}
.mc-product-description h2,
.mc-specification-card h2 {
  margin: 5px 0 18px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.mc-wysiwyg {
  color: var(--muted);
}
.mc-wysiwyg > :first-child {
  margin-top: 0;
}
.mc-specification-card {
  overflow: hidden;
  border: 1px solid #e3eae1;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.mc-spec-head {
  padding: 27px 30px 19px;
  background: var(--navy);
  color: #fff;
}
.mc-spec-head .eyebrow {
  color: #b6dfaa;
}
.mc-spec-head h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 0;
}
.mc-specification-card dl {
  margin: 0;
  padding: 8px 30px;
}
.mc-specification-card dl > div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mc-specification-card dl > div:last-child {
  border: 0;
}
.mc-specification-card dt {
  color: var(--muted);
}
.mc-specification-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.mc-specification-scroll {
  overflow-x: auto;
}
.mc-specification-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.mc-specification-table th {
  padding: 14px 16px;
  background: #f1f6ef;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}
.mc-specification-table td {
  padding: 15px 16px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  white-space: nowrap;
}
.mc-specification-table tbody tr:nth-child(even) {
  background: #fbfcfa;
}
.mc-assurance {
  padding: 27px 0;
  background: var(--green-dark);
  color: #fff;
}
.mc-assurance .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mc-assurance .container > div {
  display: flex;
  align-items: center;
  gap: 13px;
}
.mc-assurance i {
  font-size: 25px;
  color: #ccebbd;
}
.mc-assurance span,
.mc-assurance strong,
.mc-assurance a {
  display: block;
}
.mc-assurance span {
  color: #d4e8d2;
  font-size: 12px;
}
.mc-assurance strong {
  color: #fff;
  font-size: 14px;
}
.mc-assurance a {
  color: #ccebbd;
  font-weight: 700;
}
.mc-image-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(5, 19, 35, 0.84);
}
.mc-image-modal[hidden] {
  display: none;
}
.mc-image-modal img {
  max-width: min(100%, 980px);
  max-height: 88vh;
  object-fit: contain;
}
.mc-image-modal button {
  position: absolute;
  top: 21px;
  right: 27px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}
.mc-modal-open {
  overflow: hidden;
}
/* All products listing */
.mc-products-page {
  background: #f7fafc;
}
.mc-products-hero {
  padding: 82px 0 94px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(115, 181, 79, 0.45),
      transparent 30%
    ),
    linear-gradient(115deg, #0c2b5d, #123e7d);
}
.mc-products-hero-copy {
  max-width: 700px;
}
.mc-products-hero .eyebrow {
  color: #addc9a;
}
.mc-products-hero h1 {
  max-width: 620px;
  margin: 7px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.mc-products-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #d9e4f5;
  font-size: 17px;
}
.mc-products-listing {
  padding: 65px 0 88px;
}
.mc-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mc-products-grid .product-image {
  height: 245px;
}
.mc-products-grid .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.mc-products-grid .product-body h2 {
  margin: 7px 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}
.mc-products-grid .product-body h2 a:hover {
  color: var(--green-dark);
}
.mc-products-grid .product-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.mc-pagination {
  margin-top: 44px;
}
.mc-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mc-pagination a,
.mc-pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dbe4dc;
  border-radius: 10px;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
.mc-pagination a:hover,
.mc-pagination .current {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}
.mc-pagination .dots {
  border: 0;
  background: transparent;
}
.mc-no-products {
  padding: 85px 20px;
  text-align: center;
  border: 1px dashed #cad7cc;
  border-radius: 20px;
  background: #fff;
}
.mc-no-products i {
  color: var(--green);
  font-size: 36px;
}
.mc-no-products h2 {
  margin: 13px 0 5px;
  color: var(--navy);
}
.mc-no-products p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 800px) {
  .mc-product-hero {
    padding-bottom: 52px;
  }
  .mc-product-layout,
  .mc-details-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .mc-product-summary {
    max-width: 650px;
  }
  .mc-assurance .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mc-product-details {
    padding: 58px 0;
  }
}
@media (max-width: 1000px) {
  .mc-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .mc-products-hero {
    padding: 58px 0 65px;
  }
  .mc-products-listing {
    padding: 42px 0 58px;
  }
  .mc-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mc-products-grid .product-image {
    height: 190px;
  }
  .mc-products-grid .product-body {
    padding: 17px;
  }
}
@media (max-width: 500px) {
  .mc-product-hero {
    padding-top: 20px;
  }
  .mc-breadcrumb {
    margin-bottom: 23px;
  }
  .mc-gallery-main {
    padding: 20px;
    border-radius: 18px;
  }
  .mc-product-summary h1 {
    font-size: 37px;
  }
  .mc-spec-head,
  .mc-specification-card dl {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mc-specification-card dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .mc-specification-card dd {
    text-align: left;
  }
  .mc-image-modal {
    padding: 16px;
  }
}
@media (max-width: 460px) {
  .mc-products-grid {
    grid-template-columns: 1fr;
  }
  .mc-products-grid .product-image {
    height: 225px;
  }
}
