/* =========================================================
   VARIABLES
========================================================= */

:root {
  --green: #6f9f05;
  --green-light: #83b20b;
  --green-dark: #163908;
  --green-deep: #102d06;

  --black: #0d0d0d;
  --dark: #151515;

  --white: #ffffff;
  --off-white: #f8f8f5;

  --light-border: #dedede;
  --text: #191919;
  --muted: #575757;

  --container: 1420px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(94%, var(--container));
  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: #fff;
  height: 112px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.logo {
  width: 340px;
  max-width: 28%;
}

.logo img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  padding: 15px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--green);
}

.phone-button {
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 11px;

  padding: 14px 20px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.2s ease;
}

.phone-button:hover {
  background: #5f8903;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--green-dark);
  font-size: 28px;
  cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 590px;

  display: grid;
  grid-template-columns: 46% 54%;

  background: var(--green-dark);
}

.hero-content {
  padding:
    clamp(50px, 5vw, 80px)
    clamp(35px, 5.4vw, 90px);

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    linear-gradient(
      110deg,
      #173e09 0%,
      #163a08 60%,
      #1c440a 100%
    );
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #8aac2e;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 13px;
}

.hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;
  max-width: 650px;
}

.hero-decoration {
  width: 320px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-light);
  margin: 30px 0 25px;
}

.hero-decoration span {
  height: 3px;
  flex-grow: 1;
  background: var(--green-light);
}

.hero-decoration i {
  font-size: 26px;
}

.hero-description {
  max-width: 550px;
  line-height: 1.65;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}

.primary-button {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 13px;

  background: var(--green);
  color: white;

  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;

  padding: 16px 22px;

  border-radius: 5px;

  transition: all 0.2s ease;
}

.primary-button:hover {
  background: #82ae0d;
  transform: translateY(-2px);
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   BENEFITS BAR
========================================================= */

.benefits-bar {
  background: #101010;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 24px 25px;

  display: flex;
  align-items: center;
  gap: 18px;

  position: relative;
}

.benefit:not(:last-child)::after {
  content: "";
  position: absolute;

  right: 0;
  top: 24%;

  width: 1px;
  height: 52%;

  background: #414141;
}

.benefit-icon {
  font-size: 42px;
  color: var(--green);
  min-width: 50px;
  text-align: center;
}

.benefit h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.benefit p {
  color: #e7e7e7;
  font-size: 12px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 20px;
}

.section-heading span,
.small-heading {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.section-heading h2 {
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1.2;
  font-weight: 800;
  margin: 8px 0;
}

.section-heading p {
  max-width: 770px;
  margin: auto;
  color: #393939;
  font-size: 14px;
}

.section-heading.compact {
  margin-bottom: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border: 1px solid var(--light-border);
  border-radius: 8px;

  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;

  background: white;

  border-right: 1px solid var(--light-border);
}

.service-card:last-child {
  border-right: none;
}

.service-info {
  text-align: center;
  padding: 25px 17px 20px;
  min-height: 240px;
}

.service-info > i {
  font-size: 43px;
  color: var(--green);
  margin-bottom: 16px;
}

.service-info h3 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 13px;
}

.service-info p {
  font-size: 12px;
  line-height: 1.55;
  color: #363636;
}

.service-card > img {
  height: 170px;
  object-fit: cover;
  margin-top: auto;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
  padding: 45px 0 35px;

  background:
    linear-gradient(
      90deg,
      rgba(245, 248, 240, 0.98),
      rgba(240, 244, 235, 0.96)
    );
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
}

.why-column h2,
.clients-column h2 {
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1.13;
  margin: 8px 0 20px;
}

.check-list {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 13px;

  margin-top: 20px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
}

.check-list i {
  font-size: 20px;
  color: var(--green);
}

.clients-column > p:not(.small-heading) {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.55;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 25px;
}

.client-logos img {
  width: 190px;
  max-height: 100px;
  object-fit: contain;
}


/* =========================================================
   GALLERY
========================================================= */

.work {
  background: #fff;
}

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

.gallery-item {
  height: 175px;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}


/* =========================================================
   CTA
========================================================= */

.cta {
  padding: 20px 0;
  color: white;

  background:
    linear-gradient(
      90deg,
      #254e04 0%,
      #183906 55%,
      #245005 100%
    );
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-message {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon {
  display: grid;
  place-items: center;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: var(--green);
  color: white;

  font-size: 29px;
}

.cta-message h2 {
  font-size: 24px;
  line-height: 1.1;
}

.cta-message p {
  font-size: 12px;
  max-width: 450px;
  margin-top: 4px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-phone,
.whatsapp-button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 27px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 700;
}

.cta-phone {
  border: 2px solid white;
  color: white;
}

.cta-phone:hover {
  background: white;
  color: var(--green-dark);
}

.whatsapp-button {
  background: var(--green);
  color: white;

  text-transform: uppercase;
}

.whatsapp-button i {
  font-size: 22px;
}

.whatsapp-button:hover {
  background: #81ae0b;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #101010;
  color: white;
  padding: 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr 1.5fr;

  align-items: center;
  gap: 45px;
}

.footer-logo img {
  width: 210px;
}

.footer p {
  font-size: 11px;
}

.footer-social > p,
.footer-email > p {
  margin-bottom: 8px;
}

.footer-social a {
  margin-right: 13px;
  font-size: 17px;
}

.footer-social a:hover {
  color: var(--green);
}

.footer-email a {
  font-size: 11px;
}

.footer-email a:hover {
  color: var(--green);
}

.footer-copy {
  border-left: 1px solid #444;
  padding-left: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .phone-button {
    font-size: 12px;
  }

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

  .benefit:nth-child(2)::after {
    display: none;
  }

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

  .service-card {
    border-bottom: 1px solid var(--light-border);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

  .site-header {
    position: relative;
    height: 90px;
    background: #ffffff;
    z-index: 9999;
  }

  .header-inner {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 230px;
    max-width: 70%;
  }


  /* Hide desktop phone button */
  .header-inner > .phone-button {
    display: none;
  }


  /* Burger button */
  .mobile-menu-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    padding: 0;

    border: none;

    background: transparent;

    color: var(--green-dark);

    font-size: 28px;

    cursor: pointer;

    z-index: 10001;
  }


  /* MOBILE MENU - CLOSED */
  .main-nav {
    display: none;

    position: absolute;

    top: 90px;
    left: 0;

    width: 100%;

    margin: 0;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: #ffffff;

    border-top: 3px solid var(--green);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    z-index: 10000;
  }


  /* MOBILE MENU - OPEN */
  .main-nav.mobile-open {
    display: flex;
  }


  .main-nav a {
    display: block;

    width: 100%;

    padding: 18px 25px;

    border-bottom: 1px solid #eeeeee;

    color: #222222;

    background: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-align: left;
    text-transform: uppercase;
  }


  .main-nav a:hover,
  .main-nav a.active {
    color: var(--green);
    background: #f5f7f1;
  }


  .main-nav a.active::after {
    display: none;
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .logo {
    width: 215px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-content {
    padding: 45px 25px;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-decoration {
    width: 220px;
  }


  /* BENEFITS */

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-bottom: 1px solid #3a3a3a;
  }

  .benefit::after {
    display: none;
  }


  /* SERVICES */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: 0;
  }

  .service-info {
    min-height: auto;
    padding: 30px 25px;
  }

  .service-card > img {
    height: 220px;
  }


  /* CLIENTS */

  .client-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }


  /* GALLERY */

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

  .gallery-item {
    height: 240px;
  }


  /* CTA */

  .cta-message {
    align-items: flex-start;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-phone,
  .whatsapp-button {
    width: 100%;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}






/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 530px;
  background: var(--green-dark);
}


.about-hero-content {
  padding:
    clamp(55px, 6vw, 95px)
    clamp(35px, 5.4vw, 90px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: white;

  background:
    linear-gradient(
      110deg,
      #173e09 0%,
      #163a08 60%,
      #1c440a 100%
    );
}


.about-hero-content h1 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;
}


.about-hero-description {
  max-width: 560px;

  font-size: 16px;
  line-height: 1.7;

  margin-bottom: 26px;
}


.about-hero-image {
  overflow: hidden;
}


.about-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}



/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {
  background: #101010;
  color: white;
}


.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.about-stat {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 25px 20px;
}


.about-stat:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 25%;

  width: 1px;
  height: 50%;

  background: #444;
}


.about-stat > i {
  color: var(--green);

  font-size: 37px;
}


.about-stat div {
  display: flex;
  flex-direction: column;
}


.about-stat strong {
  font-size: 14px;
  margin-bottom: 3px;
}


.about-stat span {
  font-size: 11px;
  color: #ddd;
}



/* =========================================================
   OUR STORY
========================================================= */

.about-story {
  padding: 75px 0;
  background: white;
}


.about-story-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}


.about-story-image {
  position: relative;

  height: 520px;
}


.about-story-image > img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 7px;
}


.about-image-badge {
  position: absolute;

  right: -25px;
  bottom: 35px;

  min-width: 190px;

  padding: 20px 25px;

  display: flex;
  align-items: center;

  gap: 15px;

  background: var(--green);

  color: white;

  border-radius: 5px;

  box-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.2);
}


.badge-year {
  font-size: 30px;
  font-weight: 800;
}


.badge-text {
  padding-left: 15px;

  border-left: 1px solid
    rgba(255, 255, 255, 0.5);

  font-size: 11px;

  line-height: 1.3;

  text-transform: uppercase;

  font-weight: 600;
}


.about-story-content h2 {
  max-width: 600px;

  margin-top: 7px;

  font-size: clamp(30px, 3vw, 44px);

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -1px;
}


.about-green-line {
  width: 90px;
  height: 4px;

  margin: 22px 0;

  background: var(--green);
}


.about-story-content > p:not(.small-heading) {
  margin-bottom: 17px;

  max-width: 650px;

  color: #404040;

  font-size: 14px;

  line-height: 1.8;
}


.about-story-content strong {
  color: #1d1d1d;
  font-weight: 700;
}



/* =========================================================
   CLIENTS
========================================================= */

.about-clients {
  padding: 60px 0;

  background:
    linear-gradient(
      90deg,
      #f4f7ef,
      #eef3e8
    );
}


.about-client-logos {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 70px;

  margin-top: 35px;
}


.about-client-logo {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 280px;
  height: 130px;
}


.about-client-logo img {
  max-width: 240px;
  max-height: 110px;

  object-fit: contain;
}


.client-divider {
  width: 1px;
  height: 90px;

  background: #cbd2c3;
}



/* =========================================================
   VALUES
========================================================= */

.about-values {
  padding: 70px 0;

  background: white;
}


.values-grid {
  margin-top: 38px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}


.value-card {
  padding: 35px 27px;

  text-align: center;

  border: 1px solid #dfdfdf;

  border-radius: 7px;

  background: white;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.value-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 15px 35px
    rgba(0, 0, 0, 0.08);
}


.value-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  margin:
    0 auto
    20px;

  border-radius: 50%;

  background:
    rgba(111, 159, 5, 0.1);

  color: var(--green);

  font-size: 30px;
}


.value-card h3 {
  margin-bottom: 12px;

  font-size: 17px;

  font-weight: 800;
}


.value-card p {
  color: #555;

  font-size: 12px;

  line-height: 1.7;
}



/* =========================================================
   ABOUT CTA
========================================================= */

.about-final-cta {
  padding: 35px 0;

  color: white;

  background:
    linear-gradient(
      90deg,
      #254e04 0%,
      #183906 55%,
      #245005 100%
    );
}


.about-final-cta-inner {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 40px;
}


.about-final-cta h2 {
  margin: 4px 0;

  font-size: 29px;

  line-height: 1.2;
}


.about-final-cta p {
  max-width: 620px;

  font-size: 12px;
}


.about-cta-small {
  color: #9abc40;

  text-transform: uppercase;

  font-size: 11px !important;

  font-weight: 700;

  letter-spacing: 1.5px;
}



/* =========================================================
   ABOUT TABLET
========================================================= */

@media (max-width: 1000px) {

  .about-story-grid {
    gap: 45px;
  }


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


  .about-stat:nth-child(2)::after {
    display: none;
  }


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


  .about-final-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

}



/* =========================================================
   ABOUT MOBILE
========================================================= */

@media (max-width: 750px) {

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


  .about-hero-image {
    height: 310px;

    order: 1;
  }


  .about-hero-content {
    order: 2;

    padding:
      45px
      25px;
  }


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


  .about-story {
    padding: 50px 0;
  }


  .about-story-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-story-image {
    height: 380px;
  }


  .about-image-badge {
    right: 15px;
    bottom: -25px;
  }


  .about-client-logos {
    flex-direction: column;

    gap: 20px;
  }


  .client-divider {
    width: 120px;
    height: 1px;
  }

}



/* =========================================================
   ABOUT SMALL MOBILE
========================================================= */

@media (max-width: 550px) {

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


  .about-stat {
    justify-content: flex-start;

    padding-left: 40px;

    border-bottom:
      1px solid #3d3d3d;
  }


  .about-stat::after {
    display: none;
  }


  .values-grid {
    grid-template-columns: 1fr;
  }


  .about-story-image {
    height: 320px;
  }


  .about-image-badge {
    min-width: 175px;

    padding: 16px 20px;
  }


  .badge-year {
    font-size: 25px;
  }

}


/* =========================================================
   HERO MOBILE FIX
========================================================= */

@media (max-width: 768px) {

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    order: 1;
    width: 100%;
    height: 260px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    order: 2;
    width: 100%;
    padding: 32px 22px 40px;
  }

  .eyebrow {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-decoration {
    width: 100%;
    max-width: 180px;
    margin: 18px 0 20px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .primary-button {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .hero-image {
    height: 220px;
  }

  .hero-content {
    padding: 28px 18px 34px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-description {
    font-size: 14px;
  }

  .primary-button {
    font-size: 13px;
    padding: 15px 16px;
  }
}