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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #2a313c;
  background-color: #fafcff;
  background-image: radial-gradient(circle at top right, rgba(60.35, 117.3, 85.85, 0.15), transparent 400px), radial-gradient(circle at bottom left, rgba(255, 176, 32, 0.1), transparent 400px);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: #fafcff;
}

.bg-alt {
  background-color: #ffffff;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.section-title__subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(26, 93, 56, 0.1);
  color: rgb(22.1, 79.05, 47.6);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.section-title__main {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(90deg, #0f172a, rgb(22.1, 79.05, 47.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section-title__main {
    font-size: 2.2rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-white {
  background-color: #ffffff;
}
.btn--primary {
  background: #1a5d38;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.btn--primary:hover {
  background: rgb(22.1, 79.05, 47.6);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(18, 110, 46, 0.15);
}
.btn--outline {
  background-color: transparent;
  color: #1a5d38;
  border: 2px solid #1a5d38;
  box-shadow: none;
}
.btn--outline:hover {
  background: #1a5d38;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(18, 110, 46, 0.15);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background-color: rgba(255, 255, 255, 0.95);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .header__inner {
    padding: 16px 15px;
  }
}
.header__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 180px;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 150px;
  }
}
.header__logo img {
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo span {
  color: #1a5d38;
}
.header__menu {
  display: flex;
  gap: 35px;
}
.header__menu li {
  position: relative;
}
.header__menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__menu a {
  font-weight: 600;
  color: #2a313c;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__menu a i {
  font-size: 0.75rem;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  z-index: 100;
}
.header .dropdown li {
  width: 100%;
}
.header .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #2a313c !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .dropdown li a::after {
  display: none;
}
.header .dropdown li a:hover {
  background-color: rgba(26, 93, 56, 0.05);
  color: #1a5d38 !important;
  padding-left: 25px;
}
.header--home {
  background-color: transparent;
  box-shadow: none;
}
.header--home .header__logo {
  color: #ffffff;
}
.header--home .header__toggle span {
  background: #ffffff;
}
.header--home .header__menu a {
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 992px) {
  .header--home .header__menu a {
    color: #2a313c;
  }
}
.header--home .header__menu a:hover, .header--home .header__menu a.active {
  color: #ffffff;
}
@media (max-width: 992px) {
  .header--home .header__menu a:hover, .header--home .header__menu a.active {
    color: #1a5d38;
  }
}
.header--home.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: none;
}
.header--home.scrolled .header__logo {
  color: #0f172a;
}
.header--home.scrolled .header__toggle span {
  background: #1a5d38;
}
.header--home.scrolled .header__menu a {
  color: #2a313c;
  text-shadow: none;
}
.header--home.scrolled .header__menu a:hover, .header--home.scrolled .header__menu a.active {
  color: #1a5d38;
}
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.header__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1a5d38;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 992px) {
  .header .btn {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fafcff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .header__nav.open {
    padding: 30px 0;
    max-height: 1000px;
  }
  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .header__menu li {
    width: 100%;
    text-align: center;
  }
  .header__menu li a {
    justify-content: center;
  }
  .header__menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__menu .dropdown.open {
    max-height: 800px;
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .header__menu .dropdown li a {
    padding: 8px 0 !important;
    font-size: 0.9rem;
    color: #2a313c !important;
    justify-content: center;
  }
  .header__menu .dropdown li a::after {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}
.hero .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.hero .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero .swiper-slide-active img {
  transform: scale(1);
}
.hero__content {
  position: relative;
  z-index: 10;
  color: #0f172a;
  text-align: center;
  max-width: 850px;
}
.hero__subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(26, 93, 56, 0.55);
  color: rgb(255, 255, 255);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(26, 93, 56, 0.1);
}
.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  color: #ffffff;
}
.hero__title span {
  background: #1a5d38;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__text {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #000000;
  max-width: 650px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero__actions .btn-white {
  background-color: #ffffff;
  color: #1a5d38;
}
@media (max-width: 576px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}
.hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(15, 23, 42, 0.2);
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background: #1a5d38;
  width: 30px;
  border-radius: 6px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(26, 93, 56, 0.5);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background: #ffffff;
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(255, 255, 255), transparent);
}
.service-card__body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.service-card:hover .service-card__image img {
  transform: scale(1.1);
}
.service-card:hover .service-card__icon {
  background: #1a5d38;
  color: #ffffff;
  transform: rotate(10deg);
}
.service-card__icon {
  width: 70px;
  height: 70px;
  background: #fafcff;
  color: #1a5d38;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: -65px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  border: 3px solid #ffffff;
}
.service-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}
.service-card__desc {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}
.service-card__btn {
  margin-top: auto;
  padding-top: 10px;
}
.service-card__link {
  color: #1a5d38;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-card__link i {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card__link:hover i {
  transform: translateX(8px);
}
.service-card--simple {
  overflow: visible;
  margin-top: 35px;
}
.service-card--simple .service-card__body {
  padding-top: 45px;
}
.service-card--simple .service-card__icon {
  position: absolute;
  top: -35px;
  left: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.vision-mission__grid {
  max-width: 900px;
  margin: 0 auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.product-item-4 {
  grid-column: span 2;
  display: flex;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-item-4__image, .product-item-4__content {
  flex: 0 0 50%;
  width: 50%;
}
.product-item-4__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.product-item-4__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-item-4__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}
.product-item-4__icon {
  font-size: 2rem;
  color: rgba(26, 93, 56, 0.4);
  margin-bottom: 12px;
}
.product-item-4__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.product-item-4__desc {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.product-item-4__link {
  color: #0f172a;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  border-bottom: 2px solid #0f172a;
  display: inline-block;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
}
.product-item-4__link:hover {
  color: #1a5d38;
  border-color: #1a5d38;
}
.product-item-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.product-item-4:hover .product-item-4__image img {
  transform: scale(1.05);
}
.product-item-4--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .product-item-4 {
    grid-column: span 1;
    flex-direction: row !important;
  }
  .product-item-4__image, .product-item-4__content {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 576px) {
  .product-item-4 {
    flex-direction: column !important;
  }
  .product-item-4__image, .product-item-4__content {
    width: 100%;
    flex: 0 0 auto;
  }
  .product-item-4__image {
    aspect-ratio: 16/9;
    height: auto;
  }
  .product-item-4__content {
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }
  .product-item-4__content .product-item-4__link {
    align-self: center;
  }
}

.experience {
  position: relative;
  background-image: url("../images/slider1.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
  padding: 60px 0;
  margin-top: 122px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .experience {
    margin-top: 105px;
  }
}
.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 30, 10, 0.9) 0%, rgba(18, 110, 46, 0.8) 100%);
  z-index: 1;
}
.experience .container {
  position: relative;
  z-index: 2;
}
.experience__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .experience__title {
    font-size: 2.5rem;
  }
}
.experience .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.experience .breadcrumb a {
  color: #ffffff;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.experience .breadcrumb__current {
  color: #ffffff;
  font-weight: 600;
}
.experience .btn {
  background-color: #ffffff;
  color: rgb(22.1, 79.05, 47.6);
  padding: 16px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.experience .btn:hover {
  background-color: rgb(22.1, 79.05, 47.6);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.footer {
  background-color: #131313;
  color: #ffffff;
  padding-top: 60px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.footer__brand {
  max-width: 400px;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}
.footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__links {
    justify-content: center;
  }
}
.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}
.footer__links a:hover {
  color: rgb(60.35, 117.3, 85.85);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.service-detail {
  padding: 40px 0;
  background: linear-gradient(#ffffff, rgba(26, 93, 56, 0.05));
  text-align: center;
  margin-top: 133px;
}
@media (max-width: 768px) {
  .service-detail {
    margin-top: 105px;
  }
}
.service-detail__desc {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

.service-content {
  padding: 60px 0 100px;
}
.service-content__img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 40px;
}
.service-content__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 20px;
}
.service-content__text {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.service-content__text--last {
  margin-bottom: 40px;
}
.service-content__advantages {
  background: rgba(26, 93, 56, 0.05);
  border-left: 4px solid #1a5d38;
  padding: 30px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 30px;
}
.service-content__advantages h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #1a5d38;
  margin-bottom: 15px;
}
.service-content__advantages ul {
  list-style: none;
  padding: 0;
}
.service-content__advantages ul li {
  margin-bottom: 10px;
  color: #2a313c;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-content__advantages ul li i {
  color: #1a5d38;
}

.service-cta {
  background: #1a5d38;
  border-radius: 24px;
  padding: 50px 30px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.service-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.service-cta p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-cta .btn--outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 15px 40px;
  font-size: 1.1rem;
}
.service-cta .btn--outline:hover {
  background: #ffffff;
  color: #1a5d38;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(18, 110, 46, 0.15);
  border-color: rgba(26, 93, 56, 0.1);
}
.contact-card:hover .contact-card__icon {
  background: #1a5d38;
  color: #ffffff;
  transform: scale(1.1) rotate(10deg);
}
.contact-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 93, 56, 0.05);
  color: #1a5d38;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}
.contact-card__text {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card__text[href]:hover {
  color: #1a5d38;
}

.map-section {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafcff;
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}
@media (max-width: 768px) {
  .map-section {
    height: 350px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-grid__img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-grid__title {
  margin-bottom: 20px;
}
.about-grid__text {
  color: #999;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-grid__text--last {
  margin-bottom: 30px;
}

.experience__title--large {
  font-size: 4rem !important;
}
@media (max-width: 768px) {
  .experience__title--large {
    font-size: 1.5rem !important;
  }
}

.experience__title--md {
  font-size: 3.5rem !important;
}
@media (max-width: 768px) {
  .experience__title--md {
    font-size: 2.8rem !important;
  }
}

.footer__copyright {
  color: #666;
}

.slogan-banner {
  padding: 40px 0;
  background: #1a5d38;
  position: relative;
  overflow: hidden;
}
.slogan-banner__content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 60px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}
.slogan-banner__content::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 8s infinite alternate ease-in-out;
}
.slogan-banner__text {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.slogan-banner__text span {
  color: #ffb020;
}
@media (max-width: 768px) {
  .slogan-banner__text {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .slogan-banner__text {
    font-size: 1.8rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(20px, 20px);
  }
}
/* Top Bar */
.top-bar {
  background-color: rgb(22.1, 79.05, 47.6);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 768px) {
  .top-bar__inner {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .top-bar__inner {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .top-bar__item {
    font-size: 10.5px;
    font-weight: 600;
    gap: 5px;
  }
}
.top-bar__item i {
  color: #ffb020;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .top-bar__item i {
    font-size: 13px;
  }
}
.top-bar__item a {
  color: inherit;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-bar__item a:hover {
  color: #ffb020;
}

/* Adjust Header for Top Bar */
.header {
  top: 0;
  display: flex;
  flex-direction: column;
}
.header.scrolled .top-bar {
  margin-top: -30px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .header.scrolled .top-bar {
    margin-top: -30px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1) rotate(15deg);
  background-color: #128c7e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

/* References */
.references {
  background-color: #ffffff;
}
.references__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.reference-item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}
.reference-item span {
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-align: center;
}
.reference-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.reference-item:hover {
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transform: translateY(-5px);
  background-color: #fff;
  border-color: #1a5d38;
}
.reference-item:hover span {
  color: #1a5d38;
}
.reference-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.equipment-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.equipment-item {
  display: flex;
  min-height: 500px;
  overflow: hidden;
}
.equipment-item__image, .equipment-item__content {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
}
.equipment-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.equipment-item__image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(22.1, 79.05, 47.6, 0.8));
  z-index: 2;
  clip-path: polygon(100% 0, 0% 50%, 100% 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.equipment-item__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: #1a5d38;
  z-index: 3;
  clip-path: polygon(100% 0, 0% 50%, 100% 100%);
  transform: translateX(30px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.equipment-item__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  z-index: 5;
}
.equipment-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}
.equipment-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 5px;
  background: #1a5d38;
  border-radius: 8px;
}
.equipment-item__text {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
}
.equipment-item--reverse {
  flex-direction: row-reverse;
}
.equipment-item--reverse .equipment-item__image::before {
  right: auto;
  left: 0;
  background: linear-gradient(to left, transparent, rgba(22.1, 79.05, 47.6, 0.8));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.equipment-item--reverse .equipment-item__image::after {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(-30px);
}
.equipment-item:hover .equipment-item__image img {
  transform: scale(1.05);
}
.equipment-item:hover .equipment-item__image::after {
  transform: translateX(0);
}
.equipment-item:hover.equipment-item--reverse .equipment-item__image::after {
  transform: translateX(0);
}
@media (max-width: 992px) {
  .equipment-item__content {
    padding: 50px;
  }
  .equipment-item__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .equipment-item {
    flex-direction: column;
    min-height: auto;
  }
  .equipment-item__image, .equipment-item__content {
    width: 100%;
    flex: 0 0 auto;
  }
  .equipment-item__image {
    height: 350px;
  }
  .equipment-item__image::before, .equipment-item__image::after {
    width: 100%;
    height: 80px;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }
  .equipment-item__image::before {
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, rgba(22.1, 79.05, 47.6, 0.8));
  }
  .equipment-item__image::after {
    right: 0;
    left: 0;
    transform: translateY(30px);
  }
  .equipment-item__content {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  .equipment-item__content::before {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    top: 0;
  }
  .equipment-item__title {
    padding-left: 0;
  }
  .equipment-item__title::before {
    display: none;
  }
  .equipment-item--reverse {
    flex-direction: column;
  }
  .equipment-item--reverse .equipment-item__image::after {
    transform: translateY(30px);
  }
  .equipment-item:hover .equipment-item__image::after, .equipment-item:hover.equipment-item--reverse .equipment-item__image::after {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=main.css.map */
