:root {
  --primary-color: #034624;
  --primary-light: #1b7343;
  --accent-green: #d6e8ce;
  --accent-bg-green: #eaf5f0;
  --bg-cream: #f9faf3;
  --text-dark: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --submenu-top-gap: 15px;
}

body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

.bi {
  margin-left: 8px;
}

.section-badge {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: 2rem;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.section-desc img {
  border-radius: 7px;
}

.link-arrow {
  position: relative;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.link-arrow:hover {
  color: var(--primary-light);
}
.link-arrow:hover::after {
  transform: scaleX(1);
}
.link-arrow i {
  margin-right: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 20px 0;
  background: none;
  border: none;
  box-shadow: none;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
.navbar-brand {
  padding: 0;
  max-width: 100px;
  transition: max-width ease-in-out 0.3s;
}
.navbar .nav-link {
  color: var(--text-dark);
  font-size: 1rem;
  padding: 12px 16px !important;
  transition: color 0.4s ease;
}
.navbar .nav-link:hover {
  color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 12px;
  margin-top: var(--submenu-top-gap);
  transition: margin-top 0.4s ease;
}
.navbar .dropdown-item {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--text-dark);
  transition: var(--transition);
}
.navbar .dropdown-item:hover {
  background-color: var(--accent-bg-green);
  color: var(--primary-color);
}
.navbar-toggler {
  border: none;
  color: var(--primary-color);
}

.btn-primary {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
  padding: 11px 26px;
  border-radius: 50px;
  box-shadow: unset;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-primary:hover {
  color: var(--primary-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover::before {
  transform: scaleX(1);
}
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:focus-visible,
.btn.btn-primary:focus-within,
.btn.btn-primary:target {
  color: var(--primary-color);
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: unset;
}
.btn-primary i {
  margin-right: 0;
  margin-left: 8px;
}

.header--scrolled {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header--scrolled .navbar-brand {
  max-width: 50px;
}

#main {
  padding-top: 200px;
  padding-bottom: 100px;
}

.section-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 30px 0;
  font-size: 1rem;
}
.section-footer .footer__logo {
  margin-bottom: 25px;
}
.section-footer .footer__logo img {
  max-width: 100px;
}
.section-footer .footer__address {
  line-height: 1.6;
  margin-bottom: 20px;
}
.section-footer .footer__title {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.section-footer .footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-footer .footer__list-item {
  margin-bottom: 12px;
}
.section-footer .footer__link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.section-footer .footer__link:hover {
  border-color: var(--white);
}
.section-footer .footer__link .bi {
  margin-left: 0;
  margin-right: 8px;
}
.section-footer .footer__bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.section-footer .footer__bottom-links {
  display: flex;
  gap: 20px;
}

/* XL */
@media (max-width: 1199.98px) {
}

/* LG */
@media (max-width: 991.98px) {
}

/* MD */
@media (max-width: 767.98px) {
  .navbar-brand {
    max-width: 50px;
  }

  .header {
    background-color: var(--white);
    padding: 15px 0;
  }
  .navbar .dropdown-menu {
    margin-top: 0;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  .navbar .dropdown-item {
    padding: 12px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-footer {
    padding-top: 30px;
  }
  .section-footer .footer__bottom {
    margin-top: 30px;
  }
}

/* SM */
@media (max-width: 575.98px) {
}
