@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-straight/css/uicons-regular-straight.css");
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  color: #282828;
}

.background-black {
  background: #282828;
}

.font-white {
  color: #fff;
}

.background-white {
  background: #fff;
}

.font-red {
  color: #aa0607;
}

.background-red {
  background: #aa0607;
}

.font-gray {
  color: #828282;
}

.background-gray {
  background: #828282;
}

.font-darkprimary {
  color: #a3001c;
}

.background-darkprimary {
  background: #a3001c;
}

.font-primary {
  color: #00291d;
}

.background-primary {
  background: #00291d;
}

.font-lightprimary {
  color: #eaf6f1;
}

.background-lightprimary {
  background: #eaf6f1;
}

.font-secondary {
  color: #29b99a;
}

.background-secondary {
  background: #29b99a;
}

.font-lightsecondary {
  color: #c94f63;
}

.background-lightsecondary {
  background: #c94f63;
}

.font-darksecondary {
  color: #7a0c24;
}

.background-darksecondary {
  background: #7a0c24;
}

.font-thirdcolour {
  color: #39AEEE;
}

.background-thirdcolour {
  background: #39AEEE;
}

.font-lightthrdcolour {
  color: #66c2f3;
}

.background-lightthrdcolour {
  background: #66c2f3;
}

.font-darkbluecolour {
  color: #188fcf;
}

.background-darkbluecolour {
  background: #188fcf;
}

.font-lightgray {
  color: #e7eefa;
}

.background-lightgray {
  background: #e7eefa;
}

.font-lightgradient {
  color: linear-gradient(270deg, #E9DEFA 0%, rgba(251, 252, 219, 0.8) 100%);
}

.background-lightgradient {
  background: linear-gradient(270deg, #E9DEFA 0%, rgba(251, 252, 219, 0.8) 100%);
}

.font-darkblue {
  color: #000048;
}

.background-darkblue {
  background: #000048;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
body p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
}

.container-90 {
  width: 90%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-logo {
  height: 42px;
  width: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.page-loader-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #f0f0f0;
  border-top-color: #00291d;
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.94);
  }
}
@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #00291d;
  transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.site-header .navbar {
  padding: 0;
}
.site-header .top-header {
  background: #eaf6f1;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.35s ease;
  -moz-transition: max-height 0.35s ease;
  -webkit-transition: max-height 0.35s ease;
  -ms-transition: max-height 0.35s ease;
  -o-transition: max-height 0.35s ease;
}
.site-header.is-scrolled .top-header {
  max-height: 0;
}
.site-header.is-scrolled .top-header-inner {
  opacity: 0;
}
.site-header .top-header-inner {
  transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}
.site-header .top-header-col {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.site-header .top-welcome {
  font-weight: 500;
  color: #00291d;
  letter-spacing: 0.02em;
}
@media (max-width: 991.98px) {
  .site-header .top-welcome {
    display: none;
  }
}
.site-header .top-hours {
  color: rgba(0, 41, 29, 0.7);
}
.site-header .top-hours i {
  color: #29b99a;
  font-size: 0.9rem;
}
.site-header .top-contact {
  gap: 1.25rem;
}
.site-header .top-contact-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #00291d;
  font-weight: 500;
  transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.site-header .top-contact-link i,
.site-header .top-contact-link svg {
  color: #29b99a;
  fill: #29b99a;
}
.site-header .top-contact-link:hover, .site-header .top-contact-link:focus {
  color: #29b99a;
}
.site-header .site-logo {
  height: 60px;
  width: auto;
}
@media (max-width: 575.98px) {
  .site-header .site-logo {
    height: 26px;
  }
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .header-actions {
    gap: 0.5rem;
  }
}
.site-header .navbar-toggler {
  border: none;
  padding: 0.25rem 0.35rem;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .navbar-nav {
  align-items: center;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .navbar-nav {
    gap: 0;
  }
}
@media (min-width: 1200px) {
  .site-header .navbar-nav {
    gap: 0.2rem;
  }
}
.site-header .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.65rem 1rem !important;
  transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
}
.site-header .nav-link:hover, .site-header .nav-link:focus, .site-header .nav-link.active {
  color: #29b99a;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .nav-link {
    padding: 0.65rem 0.4rem !important;
  }
}
.site-header .dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 0.6rem;
  margin-top: 0 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  -ms-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}
@media (min-width: 992px) {
  .site-header .dropdown-menu {
    margin-top: 0 !important;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
}
.site-header .dropdown-item {
  color: #282828;
  font-size: 0.92rem;
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  white-space: normal;
  transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.site-header .dropdown-item:hover, .site-header .dropdown-item:focus {
  background: rgba(41, 185, 154, 0.12);
  color: #00291d;
}
@media (min-width: 992px) {
  .site-header .dropdown-item {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .site-header .dropdown-menu-services {
    display: block;
  }
}
@media (min-width: 992px) {
  .site-header .nav-item.dropdown:hover > .dropdown-menu,
  .site-header .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.site-header .btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.site-header .btn-book:hover, .site-header .btn-book:focus {
  background: #29b99a;
  border-color: #29b99a;
  color: #fff;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .btn-book {
    padding: 0.55rem 1rem;
  }
}
.site-header .btn-book-mobile {
  width: 100%;
  margin-top: 1.5rem;
}
.site-header .offcanvas {
  background: #00291d;
  width: min(300px, 85vw);
}
.site-header .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-header .offcanvas-header .site-logo {
  height: 28px;
}
@media (max-width: 991.98px) {
  .site-header .dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    margin: 0.2rem 0 0.4rem !important;
  }
  .site-header .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
  }
  .site-header .dropdown-item:hover, .site-header .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: #00291d;
  padding: 3.5rem 0 6rem;
}
@media (max-width: 767.98px) {
  .hero-main {
    padding: 2.5rem 0 5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroBgCycle 24s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-slide.hero-bg-slide-1 {
  background-image: url("../img/slider01.jpg");
  animation-delay: 0s;
}
.hero-bg-slide.hero-bg-slide-2 {
  background-image: url("../img/slider02.jpg");
  animation-delay: 8s;
}
.hero-bg-slide.hero-bg-slide-3 {
  background-image: url("../img/slider03.jpg");
  animation-delay: 16s;
}

@keyframes heroBgCycle {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  29% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 41, 29, 0.93) 0%, rgba(0, 41, 29, 0.8) 40%, rgba(0, 41, 29, 0.55) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 767.98px) {
  .hero-inner {
    justify-content: center;
    text-align: center;
  }
}

.hero-content {
  flex: 1 1 460px;
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .hero-badges {
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-badge i {
  color: #29b99a;
}

.hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-title span {
  color: #29b99a;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 1.75rem !important;
}
@media (max-width: 767.98px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #29b99a;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(41, 185, 154, 0.35);
  -moz-box-shadow: 0 10px 25px rgba(41, 185, 154, 0.35);
  -webkit-box-shadow: 0 10px 25px rgba(41, 185, 154, 0.35);
  -ms-box-shadow: 0 10px 25px rgba(41, 185, 154, 0.35);
  transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.hero-call-btn:hover, .hero-call-btn:focus {
  background: #22a086;
  color: #fff;
}

.hero-form-card {
  flex: 0 1 380px;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767.98px) {
  .hero-form-card {
    margin: 0 auto;
  }
}

.hero-form-header {
  background: #00291d;
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-form-header span {
  color: #29b99a;
}

.hero-form-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-form-control {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #282828;
  background: #fff;
  transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -webkit-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
}
.hero-form-control::placeholder {
  color: #9a9a9a;
}
.hero-form-control:focus {
  outline: none;
  border-color: #29b99a;
}

.hero-form-phone {
  display: flex;
  gap: 0.5rem;
}
.hero-form-phone .hero-form-code {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 0.7rem 0.7rem;
  font-size: 0.9rem;
  color: #282828;
}
.hero-form-phone .hero-form-control {
  flex: 1;
}

.hero-form-submit {
  background: #29b99a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.hero-form-submit:hover, .hero-form-submit:focus {
  background: #00291d;
}

.hero-form-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #767676;
}
.hero-form-note i {
  color: #29b99a;
}

.hero-strip-wrap {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
}
@media (max-width: 767.98px) {
  .hero-strip-wrap {
    margin-top: -2.5rem;
  }
}

.hero-strip {
  background: #00291d;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.hero-strip-item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-strip-item:last-child {
  border-right: none;
}
.hero-strip-item strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}
.hero-strip-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767.98px) {
  .hero-strip-item {
    flex: 1 1 50%;
  }
  .hero-strip-item:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 479.98px) {
  .hero-strip-item {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-strip-item:last-child {
    border-bottom: none;
  }
}

.hero-strip-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  text-align: center;
  line-height: 74px;
}
.hero-strip-icon i {
  line-height: 1;
  font-size: 1.8rem;
}
@media (max-width: 479.98px) {
  .hero-strip-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

.services-section {
  padding: 4.5rem 0;
  background: #fff;
}
@media (max-width: 767.98px) {
  .services-section {
    padding: 3rem 0;
  }
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-heading {
    margin-bottom: 2rem;
  }
}

.section-eyebrow {
  display: inline-block;
  color: #29b99a;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  color: #00291d;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: #828282;
  font-size: 1rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.25rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
@media (max-width: 767.98px) {
  .service-card {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -moz-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -webkit-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -ms-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
}
.service-card:hover .service-icon, .service-card:focus-visible .service-icon {
  background: #29b99a;
  color: #fff;
  transform: scale(1.08);
}
.service-card:hover .service-label, .service-card:focus-visible .service-label {
  color: #29b99a;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(41, 185, 154, 0.1);
  color: #00291d;
  font-size: 1.8rem;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.service-icon i {
  line-height: 1;
}
@media (max-width: 767.98px) {
  .service-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
}

.service-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #282828;
  line-height: 1.4;
  transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
}
@media (max-width: 767.98px) {
  .service-label {
    font-size: 0.8rem;
  }
}

.journey-section {
  padding: 4.5rem 0;
  background: #e7eefa;
}
@media (max-width: 767.98px) {
  .journey-section {
    padding: 3rem 0;
  }
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 1.25rem;
}
@media (max-width: 991.98px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
  }
}

.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #29b99a;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0, 41, 29, 0.1);
  -moz-box-shadow: 0 6px 16px rgba(0, 41, 29, 0.1);
  -webkit-box-shadow: 0 6px 16px rgba(0, 41, 29, 0.1);
  -ms-box-shadow: 0 6px 16px rgba(0, 41, 29, 0.1);
}
@media (max-width: 991.98px) {
  .journey-connector {
    display: none;
  }
}

.journey-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 41, 29, 0.1);
  -moz-box-shadow: 0 15px 35px rgba(0, 41, 29, 0.1);
  -webkit-box-shadow: 0 15px 35px rgba(0, 41, 29, 0.1);
  -ms-box-shadow: 0 15px 35px rgba(0, 41, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 41, 29, 0.18);
  -moz-box-shadow: 0 25px 45px rgba(0, 41, 29, 0.18);
  -webkit-box-shadow: 0 25px 45px rgba(0, 41, 29, 0.18);
  -ms-box-shadow: 0 25px 45px rgba(0, 41, 29, 0.18);
}
.journey-card:hover .journey-bg {
  transform: scale(1.08);
}

.journey-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .journey-media {
    height: 190px;
  }
}

.journey-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}

.journey-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 41, 29, 0.05) 0%, rgba(0, 41, 29, 0.85) 100%);
  pointer-events: none;
}

.journey-step {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #29b99a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.journey-media .journey-title {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.journey-body {
  padding: 1.5rem 1.5rem 1.75rem;
}
@media (max-width: 767.98px) {
  .journey-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

.journey-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.journey-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #282828;
  font-size: 0.88rem;
  line-height: 1.4;
}
.journey-points li i {
  flex-shrink: 0;
  color: #29b99a;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.journey-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00291d;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.journey-watch i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(41, 185, 154, 0.14);
  color: #29b99a;
  font-size: 0.7rem;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.journey-watch:hover, .journey-watch:focus-visible {
  color: #29b99a;
}
.journey-watch:hover i, .journey-watch:focus-visible i {
  background: #29b99a;
  color: #fff;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #00291d;
  padding: 5.5rem 0;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 185, 154, 0.28) 0%, rgba(41, 185, 154, 0) 70%);
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .about-section {
    padding: 3.5rem 0;
  }
}

.about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 991.98px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

.about-media {
  position: relative;
  flex: 0 0 42%;
  max-width: 440px;
}
@media (max-width: 991.98px) {
  .about-media {
    max-width: 320px;
    width: 100%;
  }
}

.about-media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}
.about-badge i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(41, 185, 154, 0.12);
  color: #29b99a;
  font-size: 1.1rem;
}
.about-badge strong {
  display: block;
  font-size: 0.88rem;
  color: #00291d;
  white-space: nowrap;
}
.about-badge span {
  display: block;
  font-size: 0.75rem;
  color: #828282;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .about-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
  }
}

.about-content {
  flex: 1;
  min-width: 0;
}

.about-title {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  margin: 0.6rem 0 1rem;
}
.about-title span {
  color: #29b99a;
}

.about-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 991.98px) {
  .about-text {
    margin-left: auto;
    margin-right: auto;
  }
}

.about-list {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}
.about-list li i {
  color: #29b99a;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .about-list {
    align-items: center;
  }
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #29b99a;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.about-btn:hover, .about-btn:focus {
  background: #fff;
  color: #00291d;
}

.testimonials-section {
  padding: 4.5rem 0;
  background: #00291d;
}
@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 3rem 0;
  }
}
.testimonials-section .section-title {
  color: #fff;
}
.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials-swiper {
  padding-bottom: 3rem;
  overflow: hidden;
}
.testimonials-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 4px;
  background: #29b99a;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.5rem;
  }
}

.testimonial-quote {
  color: rgba(41, 185, 154, 0.3);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  flex-grow: 1;
  color: #282828;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #00291d;
}
.testimonial-author span {
  display: block;
  color: #828282;
}

.testimonial-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(41, 185, 154, 0.14);
  color: #00291d;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 62px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: -0.5rem;
}
.testimonials-nav .swiper-button-next,
.testimonials-nav .swiper-button-prev {
  position: static;
  margin: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececec;
  color: #00291d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.testimonials-nav .swiper-button-next::after,
.testimonials-nav .swiper-button-prev::after {
  content: "" !important;
}
.testimonials-nav .swiper-button-next i,
.testimonials-nav .swiper-button-prev i {
  font-size: 1rem;
  line-height: 1;
}
.testimonials-nav .swiper-button-next:hover, .testimonials-nav .swiper-button-next:focus-visible,
.testimonials-nav .swiper-button-prev:hover,
.testimonials-nav .swiper-button-prev:focus-visible {
  background: #29b99a;
  border-color: #29b99a;
  color: #fff;
}
.testimonials-nav .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.recovery-journey {
  padding: 4.5rem 0;
  background: #e7eefa;
}
@media (max-width: 767.98px) {
  .recovery-journey {
    padding: 3rem 0;
  }
}

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 991.98px) {
  .recovery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .recovery-grid {
    grid-template-columns: 1fr;
  }
}

.recovery-step {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.recovery-step:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -moz-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -webkit-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
  -ms-box-shadow: 0 20px 35px rgba(0, 41, 29, 0.12);
}
.recovery-step:hover .recovery-step-icon {
  background: #29b99a;
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 767.98px) {
  .recovery-step {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.recovery-step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0, 41, 29, 0.2);
}

.recovery-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(41, 185, 154, 0.1);
  color: #00291d;
  font-size: 1.6rem;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.recovery-step-icon i {
  line-height: 1;
}

.recovery-step-title {
  color: #00291d;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.recovery-step-text {
  color: #828282;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem !important;
}

.recovery-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(41, 185, 154, 0.1);
  color: #29b99a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

.home-blogs {
  padding: 4.5rem 0;
  background: #fff;
}
@media (max-width: 767.98px) {
  .home-blogs {
    padding: 3rem 0;
  }
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: block;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.blog-card:hover, .blog-card:focus-visible {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 41, 29, 0.14);
  -moz-box-shadow: 0 20px 40px rgba(0, 41, 29, 0.14);
  -webkit-box-shadow: 0 20px 40px rgba(0, 41, 29, 0.14);
  -ms-box-shadow: 0 20px 40px rgba(0, 41, 29, 0.14);
}
.blog-card:hover .blog-img, .blog-card:focus-visible .blog-img {
  transform: scale(1.1);
}
.blog-card:hover .blog-title, .blog-card:focus-visible .blog-title {
  color: #29b99a;
}

.blog-media {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #00291d;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.blog-body {
  padding: 1.5rem 1.4rem 1.6rem;
}
@media (max-width: 767.98px) {
  .blog-body {
    padding: 1.25rem 1.1rem 1.4rem;
  }
}

.blog-tag {
  display: inline-block;
  background: rgba(41, 185, 154, 0.1);
  color: #29b99a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.blog-title {
  display: block;
  color: #00291d;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}

.blog-excerpt {
  color: #828282;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem !important;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #828282;
  font-size: 0.78rem;
  font-weight: 500;
}
.blog-meta i {
  color: #29b99a;
}

.site-footer {
  background: #00291d;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
@media (max-width: 991.98px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}
@media (max-width: 575.98px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 0 2rem;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 575.98px) {
  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 575.98px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.footer-social-link:hover, .footer-social-link:focus-visible {
  background: #29b99a;
  transform: translateY(-3px);
}

.footer-heading {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #29b99a;
}
@media (max-width: 575.98px) {
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.footer-links a:hover, .footer-links a:focus-visible {
  color: #29b99a;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer-contact li i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #29b99a;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.footer-contact li a:hover, .footer-contact li a:focus-visible {
  color: #29b99a;
}
@media (max-width: 575.98px) {
  .footer-contact li {
    justify-content: center;
  }
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: #29b99a;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.footer-book-btn:hover, .footer-book-btn:focus-visible {
  background: #fff;
  color: #00291d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 0;
}
.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin: 0;
}
@media (max-width: 575.98px) {
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.footer-legal a:hover, .footer-legal a:focus-visible {
  color: #29b99a;
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
@media (max-width: 575.98px) {
  .floating-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.7rem;
  }
}

.floating-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.floating-whatsapp:hover, .floating-whatsapp:focus-visible {
  background: #1ebe5a;
  transform: scale(1.08);
}
@media (max-width: 575.98px) {
  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }
  .floating-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

.floating-movetop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #00291d;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.floating-movetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-movetop:hover, .floating-movetop:focus-visible {
  background: #29b99a;
}
@media (max-width: 575.98px) {
  .floating-movetop {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

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