/* ========================================
   SERVICES PAGE HERO
======================================== */

.services-hero {
  position: relative;
  min-height: 50vh;
  padding: 150px 0 95px;
  display: flex;
  align-items: center;
  background: url('../imgs/services/service-hero.jpg') center/cover no-repeat;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 48, 60, .94), rgba(18, 48, 60, .72)),
    rgba(0, 0, 0, .15);
}

.services-hero .container {
  z-index: 2;
}

.services-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.services-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ========================================
   SERVICES PAGE LAYOUT
======================================== */

.services-page,
.services-section,
.services-section .container,
.services-section .row {
  overflow: visible !important;
}

.services-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(143, 168, 107, .12), transparent 32%),
    linear-gradient(180deg, #f8f5ee 0%, #fffaf1 100%);
}

.services-sticky-pane {
  position: sticky;
  top: 105px;
  z-index: 10;
  overflow: hidden;
  border-radius: 30px;
  background: #12303c;
  border: 1px solid rgba(18, 48, 60, .12);
  box-shadow: 0 28px 80px rgba(18, 48, 60, .18);
}

.services-sticky-pane.is-fixed {
  position: fixed;
  top: 105px;
}

.sticky-img-wrap {
  height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.sticky-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-content {
  padding: 26px;
}

.services-sticky-pane .section-eyebrow {
  color: #b7ca93;
}

.sticky-content h2 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.sticky-content p {
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.services-side-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.services-side-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.services-side-nav a i {
  width: 22px;
  color: #b7ca93;
  font-size: 1rem;
}

.services-side-nav a:hover,
.services-side-nav a.active {
  background: #fff;
  color: #12303c;
  transform: translateX(4px);
}

.services-side-nav a:hover i,
.services-side-nav a.active i {
  color: #6f874d;
}

.sticky-book-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  color: #12303c;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.sticky-book-btn:hover {
  background: #8fa86b;
  color: #fff;
  transform: translateY(-3px);
}


/* ========================================
   SERVICE DETAIL CARDS
======================================== */

.services-card-list {
  display: grid;
  gap: 24px;
}

.service-detail-card {
  scroll-margin-top: 120px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 48, 60, .14);
  border-left: 5px solid #6f874d;
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(18, 48, 60, .08);
  transition: .3s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 135, 77, .45);
  border-left-color: #12303c;
  box-shadow: 0 28px 85px rgba(18, 48, 60, .13);
}

.service-card-img {
  height: 100%;
  min-height: 100%;
  background: rgba(18, 48, 60, .06);
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: .45s ease;
}

.service-detail-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-card-title i {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(111, 135, 77, .14);
  color: #4f6738;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.service-card-title h2 {
  color: #12303c;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.service-card-content > p {
  color: rgba(18, 48, 60, .74);
  font-size: .96rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 22px;
}

.service-info-grid > div {
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(18, 48, 60, .045);
  border: 1px solid rgba(18, 48, 60, .06);
}

.service-info-grid h3 {
  color: #12303c;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-info-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.service-info-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(18, 48, 60, .76);
  font-size: .88rem;
  line-height: 1.55;
}

.service-info-grid li i {
  color: #6f874d;
  font-size: .95rem;
  margin-top: 2px;
}

.service-book-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 21px;
  border-radius: 999px;
  background: #12303c;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.service-book-btn:hover {
  background: #6f874d;
  color: #fff;
  transform: translateY(-2px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
  .services-section {
    padding: 75px 0;
  }

  .services-sticky-pane {
    position: relative;
    top: 0;
  }

  .services-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-img-wrap {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .services-hero {
    min-height: 44vh;
    padding: 130px 0 75px;
  }

  .services-side-nav {
    grid-template-columns: 1fr;
  }

  .service-card-img img {
    min-height: 230px;
  }

  .service-card-content {
    padding: 25px 23px;
  }

  .service-card-title {
    align-items: flex-start;
  }

  .service-card-title h2 {
    font-size: 1.28rem;
  }

  .service-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .services-section {
    padding: 65px 0;
  }

  .services-sticky-pane,
  .service-detail-card {
    border-radius: 22px;
  }

  .sticky-content {
    padding: 24px;
  }

  .service-card-title {
    flex-direction: column;
    gap: 10px;
  }
}