:root {
  --teal: #009688;
  --teal-dark: #00796b;
  --teal-deeper: #004d40;
  --teal-light: #e0f2f1;
  --teal-xlight: #f5fffe;
  --accent-yellow: #fdd835;
  --text-dark: #0d2b2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border-color: #e0f0ef;
  --bg-gray: #f4faf9;
  --white: #ffffff;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 100% !important;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 68px;
}

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

.hero-title mark.highlight-yellow {
  margin-right: 8px;
}

a {
  text-decoration: none;
}

.text-teal {
  color: var(--teal) !important;
}

.bg-teal {
  background-color: var(--teal) !important;
}

.fw-800 {
  font-weight: 800;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  white-space: nowrap;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: 0 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.btn-teal-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.btn-white:hover {
  background: #f0faf9;
  color: var(--teal-dark);
}

.site-navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s;
}

.site-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-navbar.nav-hidden {
  transform: translateY(-100%);
}

.site-navbar.menu-open {
  transform: translateY(0);
  overflow: visible;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-box {
  width: 42px;
  height: 42px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-text-main {
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
}

.brand-text-sub {
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: 0.2s;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--teal);
  background: 0 0;
}

.dropdown-parent {
  position: relative;
}

.dropdown-parent::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown-parent:hover .dropdown-menu-custom {
  display: block;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.dropdown-menu-custom a {
  border-radius: 6px;
  color: var(--text-body);
  font-size: 0.875rem;
}

.dropdown-menu-custom a:hover {
  background: var(--teal-xlight);
  color: var(--teal);
}

.hamburger {
  display: none;
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.hero-section {
  padding: 0;
  background: #fff;
  overflow: hidden;
  min-height: calc(100dvh - 68px);
}

.hero-inner {
  display: flex;
  align-items: stretch;
  min-height: calc(100dvh - 68px);
}

.hero-text-col {
  flex: 0 0 50%;
  background: #fff;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-text-content {
  padding: 40px 20px 44px 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
}

.hero-top {
  order: 1;
  margin-bottom: 0;
}

.hero-cta {
  order: 3;
}

.hero-badge {
  display: inline-block;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  background: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 14px;
  font-family: Poppins, sans-serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 460px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 12px;
  order: 2;
  justify-content: space-between;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  height: 100%;
  justify-content: space-between;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.feature-chip:hover {
  transform: translateY(-3px);
}

.feature-chip i {
  color: var(--teal);
  font-size: 2.5rem;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-chip:hover i {
  transform: scale(1.1);
  color: var(--teal-dark);
}

.feature-chip span {
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-cta .btn-teal {
  font-size: 0.95rem;
  padding: 13px 26px;
}

.hero-cta .cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-cta .cta-note i {
  color: var(--teal);
  margin-right: 4px;
}

.price-slide-label {
  display: inline-block;
  background: var(--teal);
  text-transform: uppercase;
}

.hero-img-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.hero-img-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right,
      #fff 0,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.hero-img-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60%;
  display: block;
}

.badge-float {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 96px;
  height: 96px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 150, 136, 0.4);
}

.badge-float .pct {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-float .lbl {
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.35;
}

.section-pad {
  padding: 70px 0;
  contain: content;
}

.section-pad-sm {
  padding: 50px 0;
  contain: content;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.problems-section {
  background: var(--bg-gray);
}

.section-eyebrow {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.problem-card-new {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.problem-card-new:hover {
  box-shadow: 0 10px 25px rgba(26, 122, 110, 0.08);
}

.problem-img-wrap {
  width: 100%;
}

.problem-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.problem-text-box {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.problem-text-box h6 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.whyus-card {
  background: var(--teal);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  height: 100%;
  box-shadow: 0 16px 40px rgba(0, 150, 136, 0.25);
}

.whyus-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.whyus-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.whyus-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.whyus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.whyus-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.whyus-list li i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: #7de8d8;
}

.whyus-cta {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.whyus-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1.5px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 150, 136, 0.15);
}

.service-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--teal-light);
  flex-shrink: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-light) 0, #b2dfdb 100%);
}

.service-img-placeholder i {
  font-size: 3.8rem;
  color: var(--teal-dark);
  opacity: 0.45;
}

.service-icon-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 150, 136, 0.35);
  z-index: 2;
}

.service-icon-badge i {
  font-size: 1rem;
  color: #fff;
}

.service-body {
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
}

.service-perks li {
  font-size: 0.77rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 5px;
  line-height: 1.45;
}

.service-perks li i {
  color: var(--teal);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  transition:
    gap 0.2s,
    color 0.2s;
  margin-top: auto;
}

.service-cta:hover {
  gap: 10px;
  color: var(--teal-dark);
}

@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-img-wrap {
    height: 180px;
  }
}

.solutions-section {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 0;
}

.solution-item {
  text-align: center;
  padding: 36px 20px;
  transition:
    background 0.25s,
    transform 0.25s;
  position: relative;
}

.solution-item:last-child {
  border-right: none;
}

.solution-item:hover .solution-icon {
  background: var(--teal);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
}

.solution-icon {
  width: 68px;
  height: 68px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.7rem;
  color: var(--teal);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}

.solution-item h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.4;
}

.solution-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px;
  }

  .solution-item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 575.98px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-item {
    padding: 24px 16px;
  }

  .solution-item:nth-child(2n) {
    border-right: none;
  }

  .solution-item:nth-child(5) {
    grid-column: span 2;
    border-right: none;
  }
}

.results-section {
  background: var(--bg-gray);
}

.ba-card {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.ba-img-wrap {
  position: relative;
  height: 230px;
}

.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
}

.ba-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.ba-tag.before {
  background: #4b5563;
  color: #fff;
}

.ba-tag.after {
  background: var(--teal);
  color: #fff;
}

.ba-card-body h6 {
  color: var(--text-dark);
}

.areaprice-section {
  background: #fff;
}

.area-block h4,
.price-block h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.area-block .sub,
.price-block .sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  background: #fff;
  transition: 0.2s;
}

.area-tag i {
  color: var(--teal);
  font-size: 0.85rem;
}

.area-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.price-card {
  border: none;
  border-radius: 20px;
  padding: 28px 28px 20px;
  box-shadow:
    0 8px 32px rgba(0, 150, 136, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  border-radius: 20px 20px 0 0;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}

.price-per {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.price-benefits {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.price-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 10px;
}

.price-benefits li i {
  color: var(--teal);
  font-size: 1rem;
}

.testi-art-section {
  background: var(--bg-gray);
}

.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 14px;
}

.testi-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.art-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.art-item:last-child {
  border-bottom: none;
}

.art-thumb {
  width: 76px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.art-item h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.art-item a.read-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

.cta-banner {
  background: var(--teal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.cta-banner h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin: 0;
}

.price-carousel-wrap {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.price-carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 !important;
  border-radius: 20px;
}

.price-slide-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  margin-bottom: -12px;
  margin-right: -12px;
}

@media (max-width: 575.98px) {
  .price-slide-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }

  .price-slide-img {
    width: calc(100% + 48px);
    height: 180px;
    margin: 0 -24px -24px;
    border-radius: 0;
  }
}

.price-slide-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 150, 136, 0.3);
}

.price-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  display: inline-block;
}

.pdot.active {
  background: var(--teal);
  width: 22px;
  border-radius: 4px;
}

.testi-carousel-wrap {
  overflow: hidden;
  padding: 24px 0;
  margin: -24px 0;
}

.testi-carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
}

.testi-quote {
  font-size: 2rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 8px;
}

.testi-quote i {
  color: var(--teal);
  opacity: 0.3;
}

.testi-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  display: inline-block;
}

.tdot.active {
  background: var(--teal);
  width: 22px;
  border-radius: 4px;
}

.site-footer {
  background: #022d33;
  color: #9ca3af;
  padding: 60px 0 24px;
}

.site-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-brand-text {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: #9ca3af;
}

.footer-contact li i {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--teal);
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 32px 0 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 991.98px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.is-open {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 18px 24px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(13, 43, 46, 0.12);
    pointer-events: auto;
  }

  .nav-menu.is-open a {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .nav-menu.is-open .dropdown-menu-custom {
    position: static;
    display: block;
    min-width: 0;
    margin: 0 0 4px 18px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 2px solid var(--teal-light);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu.is-open .dropdown-menu-custom a {
    padding: 9px 12px;
    font-size: 0.93rem;
    color: var(--text-muted);
  }

  .nav-menu.is-open .dropdown-parent::after {
    display: none;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 2100;
  }

  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-img-wrapper {
    margin-top: 32px;
  }

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

  .price-card {
    padding: 24px;
  }
}

body,
footer,
main {
  overflow-x: clip;
}

.site-navbar {
  overflow: visible;
}

.cta-banner,
.hero-section,
.section-pad {
  overflow-x: clip;
}

@media (max-width: 575.98px) {
  .d-flex.gap-5 {
    gap: 2rem !important;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .cta-banner h3 {
    font-size: 1.3rem;
  }

  .cta-banner p {
    font-size: 0.88rem;
  }

  .btn-white {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .whyus-section .bg-white.p-4 {
    padding: 1rem !important;
  }

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

  .section-desc {
    font-size: 0.85rem;
  }

  .solution-item {
    padding: 20px 10px;
  }

  .solution-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .area-tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 350px) {
  .hero-badge {
    font-size: 0.62rem;
  }
}

.brand-logo-box {
  background: 0 0 !important;
  border-radius: 0 !important;
  overflow: visible;
}

.brand-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-main {
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  color: var(--teal);
  -webkit-text-fill-color: initial;
}

.brand-text-sub {
  color: var(--teal) !important;
  font-size: 0.6rem;
  letter-spacing: 1.2px;
}

.hero-badge {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
  font-weight: 700;
}

.section-eyebrow {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid rgba(0, 150, 136, 0.25);
}

.ba-carousel-wrapper {
  position: relative;
}

.ba-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ba-scroll-track::-webkit-scrollbar {
  display: none;
}

.ba-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  scroll-snap-align: start;
}

.ba-card {
  background: #fff;
  border: 1px solid #e3eeee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(30, 76, 84, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 92, 86, 0.12);
}

.ba-card-body {
  padding: 14px 16px;
  text-align: center;
}

.ba-card-body h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ba-split-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-img-after,
.ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-img-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 5;
  transform: translateX(-50%);
  cursor: ew-resize;
  touch-action: none;
}

.ba-slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  color: #fff;
  z-index: 4;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.ba-label.before {
  left: 8px;
  background: rgba(75, 85, 99, 0.9);
}

.ba-label.after {
  right: 8px;
  background: var(--teal);
}

.ba-carousel-nav {
  display: none;
}

.problem-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 150, 136, 0.12);
  border-color: rgba(0, 150, 136, 0.25);
}

.solution-item:hover {
  background: var(--teal-xlight);
}

.price-card {
  border-color: rgba(0, 150, 136, 0.2);
  background: #fff;
}

.testi-card {
  border-color: rgba(0, 150, 136, 0.15);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 150, 136, 0.1);
}

.social-btn:hover {
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.35);
}

.whyus-section {
  background: var(--teal-xlight) !important;
}

.area-tag:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.article-page {
  background: linear-gradient(180deg, #f7fbfb 0, #fff 38%);
  color: #15333d;
}

.article-detail-wrap,
.article-list-hero {
  min-height: calc(100vh - 68px);
  padding: 38px 0 68px;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 150, 136, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbfb 0, #fff 44%);
}

.article-detail-page .article-detail-wrap {
  background: #fff;
}

.article-list-heading {
  max-width: 660px;
  margin: 0 auto 36px;
  text-align: center;
}

.article-list-heading h1 {
  margin: 0 0 12px;
  font-family: Poppins, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.16;
  color: var(--text-dark);
}

.article-list-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: #607384;
  font-size: 1rem;
  line-height: 1.65;
}

.article-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.article-search,
.article-select {
  height: 46px;
  background: #fff;
  border: 1px solid #dbe9e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: #718597;
  box-shadow: 0 10px 26px rgba(19, 74, 81, 0.04);
}

.article-search {
  width: 325px;
  padding: 0 14px 0 18px;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.article-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.article-search i {
  color: #4f6d7e;
  font-size: 1.1rem;
}

.article-select {
  position: relative;
  min-width: 210px;
}

.article-select select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  appearance: none;
  background: 0 0;
  color: #15333d;
  font-size: 0.88rem;
  padding: 0 42px 0 18px;
}

.article-select i {
  position: absolute;
  right: 16px;
  pointer-events: none;
  font-size: 0.85rem;
}

.article-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-chips::-webkit-scrollbar {
  display: none;
}

.article-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 18px;
  border: 1px solid #e3eeee;
  border-radius: 999px;
  background: #fff;
  color: #15333d;
  font-size: 0.86rem;
  font-weight: 600;
  transition: 0.22s;
}

.article-chips a.active,
.article-chips a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 150, 136, 0.2);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  overflow: hidden;
  border: 1px solid #dfeceb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(30, 76, 84, 0.07);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 92, 86, 0.13);
}

.article-card-img {
  position: relative;
  display: block;
  height: 172px;
  overflow: hidden;
  color: #fff;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.article-card:hover .article-card-img img {
  transform: scale(1.04);
}

.article-card-img span,
.article-label {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.article-card-img span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
}

.article-card-body {
  padding: 18px 18px 14px;
}

.article-card-body time {
  display: block;
  color: #6f8394;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.article-card-body h2 {
  margin: 0 0 8px;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-dark);
}

.article-card-body h2 a {
  color: inherit;
}

.article-card-body p {
  min-height: 48px;
  margin: 0 0 13px;
  color: #5f7384;
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-card-meta {
  display: flex;
  gap: 22px;
  padding: 11px 18px 15px;
  border-top: 1px solid #e6eeee;
  color: #65798a;
  font-size: 0.82rem;
}

.article-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.article-pagination a,
.article-pagination span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e2eceb;
  background: #fff;
  color: #15333d;
  font-size: 0.9rem;
  font-weight: 700;
}

.article-pagination a.active,
.article-pagination a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  color: #597186;
  font-size: 0.84rem;
  font-weight: 600;
}

.article-breadcrumb a {
  color: #15333d;
}

.article-breadcrumb i {
  color: #95a7b5;
  font-size: 0.72rem;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 42px;
}

.article-comments,
.article-detail-card,
.article-side-card {
  border: 1px solid #dfeceb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(30, 76, 84, 0.06);
}

.article-detail-card {
  overflow: hidden;
  border-radius: 12px;
}

.article-hero-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 18px 0;
  border-radius: 10px;
}

.article-detail-content {
  padding: 28px 26px 0;
}

.article-title-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.article-title-meta time {
  color: #6f8394;
  font-size: 0.82rem;
  font-weight: 600;
}

.article-label {
  padding: 7px 11px;
  margin-bottom: 0;
}

.article-detail-content h1 {
  max-width: 660px;
  margin: 0 0 14px;
  font-family: Poppins, sans-serif;
  color: var(--text-dark);
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 1.14;
}

.article-author-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 0;
  border-bottom: 0;
  color: #5f7384;
  font-size: 0.84rem;
}

.article-author-row>span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-author img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.article-author i {
  color: var(--teal);
}

.article-actions {
  margin-left: auto;
  gap: 10px !important;
}

.article-actions button {
  min-height: 34px;
  border: 1px solid #dfeceb;
  border-radius: 8px;
  background: #fff;
  color: #15333d;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.article-actions button:first-child i {
  color: #ff4b5c;
}

.article-body {
  padding: 0 0 16px;
}

.article-body p {
  margin: 0 0 18px;
  color: #5c7080;
  font-size: 0.92rem;
  line-height: 1.62;
}

.article-body h2 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.article-inline-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 8px 0 18px;
  border-radius: 10px;
}

.article-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 6px -26px 0;
  padding: 16px 26px;
  border-top: 1px solid #e4eeee;
}

.article-share-bar>div {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #15333d;
  font-size: 0.84rem;
  font-weight: 700;
}

.article-share-bar a,
.article-share-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-share-bar span i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f7f5;
  color: var(--teal);
  font-size: 0.95rem;
}

.article-share-bar small {
  color: #7a8d9c;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-share-bar span:first-child i {
  color: #fff;
  background: var(--teal);
}

.article-share-bar a {
  width: 28px;
  height: 28px;
  justify-content: center;
  border: 1px solid #dbe9e8;
  border-radius: 50%;
  color: var(--teal);
}

.article-share-bar strong {
  margin-right: 4px;
  font-size: 0.78rem;
  color: #15333d;
}

.article-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 1rem;
}

.article-side-card {
  padding: 26px;
  border-radius: 12px;
}

.article-side-card h2 {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
}

.side-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.side-title-row h2 {
  margin: 0;
}

.side-title-row a {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.side-article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.side-article:last-child {
  margin-bottom: 0;
}

.side-article img {
  width: 70px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.side-article strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 5px;
}

.side-article small {
  color: #6f8394;
  font-size: 0.75rem;
}

.side-more-link {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border: 1px solid #dfeceb;
  border-radius: 9px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-share-widget h2 {
  margin-bottom: 18px;
}

.side-share-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.side-share-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfeceb;
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  font-size: 1rem;
}

.side-more-link:hover,
.side-share-icons a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.article-category-list {
  display: grid;
  gap: 6px;
}

.article-category-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 7px;
  color: #15333d;
  font-size: 0.84rem;
  font-weight: 600;
}

.article-category-list a.active,
.article-category-list a:hover {
  background: var(--teal);
  color: #fff;
}

.article-comments {
  width: min(760px, 100%);
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: 0 0;
  box-shadow: none;
}

.article-comments h2 {
  margin: 0 0 20px;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.comment-form {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.comment-form input {
  flex: 1;
  height: 52px;
  border: 1px solid #dfeceb;
  border-radius: 10px;
  background: #fff;
  padding: 0 18px;
  outline: 0;
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(30, 76, 84, 0.04);
}

.comment-form button {
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  padding: 0 22px;
  font-weight: 800;
}

.comment-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 22px;
  border: 1px solid #dfeceb;
  border-radius: 10px;
  background: #fff;
}

.comment-item img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #eaf4f3;
}

.comment-item p {
  margin: 0 0 7px;
  color: #15333d;
  font-size: 0.9rem;
}

.comment-item strong {
  color: var(--teal);
}

.comment-item span {
  color: #8194a4;
  font-size: 0.78rem;
  margin-left: 8px;
}

.comment-item a {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.comment-like {
  color: #ff4b5c !important;
  font-weight: 700;
  font-size: 0.84rem !important;
}

@media (max-width: 1199.98px) {
  .article-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-detail-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 34px;
  }
}

mark.highlight-yellow {
  background: var(--teal-dark);
  color: white;
  padding: 2px 7px;
  border-radius: 5px;
  font-style: normal;
  font-weight: 800;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta-wa-section {
  background: linear-gradient(135deg,
      var(--teal-deeper) 0,
      var(--teal-dark) 60%,
      var(--teal) 100%);
  padding: 60px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wa-section::after,
.cta-wa-section::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-wa-section::before {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.04);
  top: -100px;
  left: -80px;
}

.cta-wa-section::after {
  width: 250px;
  height: 250px;
  background: rgba(253, 216, 53, 0.06);
  bottom: -60px;
  right: -60px;
}

.cta-wa-inner {
  position: relative;
  z-index: 1;
}

.cta-wa-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 50px;
}

.cta-wa-title {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cta-wa-title .cta-wa-accent {
  color: var(--accent-yellow);
}

.cta-wa-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.cta-wa-arrows {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.cta-arr {
  display: inline-flex;
  font-size: 2rem;
  animation: 1.1s ease-in-out infinite arrowBounceDown;
  line-height: 1;
}

.cta-wa-section .cta-arr {
  color: var(--accent-yellow);
  font-size: 2.4rem;
}

.cta-arr-1 {
  animation-delay: 0s;
}

.cta-arr-2 {
  animation-delay: 0.2s;
}

.cta-arr-3 {
  animation-delay: 0.4s;
}

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.2px;
}

.cta-wa-btn i {
  font-size: 1.4rem;
  color: #25d366;
}

.cta-wa-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.cta-wa-btn:hover i {
  color: var(--text-dark);
}

.cta-wa-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  margin-top: 18px;
  margin-bottom: 0;
}

.cta-wa-note i {
  margin-right: 4px;
}

.booking-section {
  background: linear-gradient(135deg, var(--teal-xlight) 0, #fff 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 150, 136, 0.06);
  pointer-events: none;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-left .section-title {
  text-align: left;
  font-size: 1.75rem;
}

.booking-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}

.booking-perks li i {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-right {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow:
    0 20px 60px rgba(0, 150, 136, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

.booking-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-form-title i {
  color: #25d366;
  font-size: 1.3rem;
}

.booking-field {
  margin-bottom: 18px;
}

.booking-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.12);
}

.booking-field input::placeholder {
  color: #b0bec5;
}

.booking-select-wrap {
  position: relative;
}

.booking-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.booking-select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

.booking-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  font-family: inherit;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.booking-submit i {
  font-size: 1.1rem;
}

.booking-submit:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.booking-submit:active {
  transform: translateY(0);
}

.booking-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.booking-note i {
  color: var(--teal);
  font-size: 0.75rem;
}

.social-section {
  background: var(--bg-gray);
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  transition: opacity 0.25s;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.social-card:hover::before {
  opacity: 0.14;
}

.social-ig {
  background: #fff;
  border-color: rgba(225, 48, 108, 0.2);
}

.social-ig::before {
  background: linear-gradient(45deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
}

.social-ig .social-card-icon {
  background: linear-gradient(45deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
  color: #fff;
}

.social-ig .social-card-name {
  color: #c62a8a;
}

.social-tiktok {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}

.social-tiktok::before {
  background: #000;
}

.social-tiktok .social-card-icon {
  background: #000;
  color: #fff;
}

.social-tiktok .social-card-name {
  color: #111;
}

.social-fb {
  background: #fff;
  border-color: rgba(24, 119, 242, 0.2);
}

.social-fb::before {
  background: #1877f2;
}

.social-fb .social-card-icon {
  background: #1877f2;
  color: #fff;
}

.social-fb .social-card-name {
  color: #1877f2;
}

.social-wa {
  background: #fff;
  border-color: rgba(37, 211, 102, 0.25);
}

.social-wa::before {
  background: #25d366;
}

.social-wa .social-card-icon {
  background: #25d366;
  color: #fff;
}

.social-wa .social-card-name {
  color: #128c7e;
}

.social-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.social-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.social-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.social-card-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.social-card-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    color 0.2s;
}

.social-card:hover .social-card-arrow {
  transform: translate(3px, -3px);
  color: var(--teal);
}

@media (max-width: 991.98px) {
  .ba-carousel-wrapper {
    overflow: hidden;
  }

  .ba-scroll-track {
    overflow: visible;
    scroll-snap-type: none;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ba-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .ba-split-wrap {
    height: 300px;
  }

  .ba-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }

  .ba-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #dbe9e8;
    border-radius: 50%;
    background: #fff;
    color: var(--teal);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(30, 76, 84, 0.08);
  }

  .ba-arrow:active,
  .ba-arrow:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 150, 136, 0.25);
  }

  .ba-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ba-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5e5e3;
    cursor: pointer;
    transition: 0.25s;
  }

  .ba-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--teal);
  }

  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .article-comments {
    width: 100%;
  }

  .social-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .hero-text-col::after {
    display: none;
  }

  .hero-img-col,
  .hero-text-col {
    flex: none;
    width: 100%;
  }

  .hero-text-col {
    padding: 0;
    background: #fff;
    align-items: stretch;
  }

  .hero-text-content {
    padding: 40px 24px 36px;
    max-width: 100%;
    justify-content: start;
    gap: 32px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-top {
    order: 1;
  }

  .hero-cta {
    order: 2;
    align-items: stretch;
  }

  .hero-cta .trust-boost {
    align-items: center;
  }

  .hero-features {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    margin-bottom: 0;
    justify-content: center;

    border-bottom: none;
    padding-top: 24px;
    padding-bottom: 0;
  }

  .hero-cta .btn-teal {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 10px;
  }

  .hero-cta .cta-note {
    text-align: center;
  }

  .feature-chip {
    padding: 10px 0;
    font-size: 0.75rem;
    min-width: 0;
    flex: 0 0 calc(25% - 15px);
    /* up to 4 per row */
    gap: 6px;
    height: auto;
  }

  .hero-cta>.d-flex {
    justify-content: center;
  }

  .hero-img-col {
    order: 10;
    box-shadow: none;
  }

  .hero-img-col::before {
    display: none;
  }

  .hero-img-wrapper {
    min-height: auto;
    height: auto;
  }

  .hero-img-wrapper img,
  .hero-img-wrapper picture {
    height: auto;
    width: 100%;
  }

  .hero-img-wrapper img {
    object-fit: unset;
    max-height: none;
    scale: 1.2;
  }

  .badge-float {
    display: none;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (min-width: 768px) and (max-width: 991.98px) {
  .ba-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 767.98px) {

  .article-detail-wrap,
  .article-list-hero {
    padding: 28px 0 48px;
  }

  .article-detail-content h1,
  .article-list-heading h1 {
    font-size: 1.65rem;
  }

  .article-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .article-search,
  .article-select {
    width: 100%;
    min-width: 0;
  }

  .article-card-grid,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-hero-img {
    height: 240px;
  }

  .article-detail-content {
    padding: 22px 18px 0;
  }

  .article-actions {
    width: 100%;
    margin-left: 0;
  }

  .article-share-bar {
    align-items: flex-start;
    flex-direction: column;
    margin-left: -18px;
    margin-right: -18px;
    padding: 16px 18px;
  }

  .comment-form {
    flex-direction: column;
  }

  .comment-form button {
    width: 100%;
  }

  .comment-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .comment-like {
    grid-column: 2;
    margin-left: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .article-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .article-chips a {
    white-space: nowrap;
  }

  .article-card-img {
    height: 190px;
  }

  .article-pagination {
    gap: 8px;
  }

  .cta-wa-title {
    font-size: 1.55rem;
  }

  .cta-wa-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .cta-wa-section .cta-arr {
    font-size: 1.8rem;
  }

  .booking-right {
    padding: 24px 20px;
  }

  .booking-left .section-title {
    font-size: 1.3rem;
  }

  .social-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .social-card {
    padding: 16px 18px;
  }

  .hero-cta>.d-flex {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    gap: 16px !important;
  }

  .hero-text-content {
    padding: 32px 20px 28px;
    gap: 40px;
    text-align: left;
  }

  .button-wa {
    width: 100%;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .feature-chip {
    font-size: 0.68rem;
    padding: 8px 0;
    flex: 0 0 calc(33.33% - 14px);
    /* 3 per row on very small screens */
  }

  .feature-chip i {
    font-size: 2rem;
  }
}

@keyframes arrowBounceDown {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* ==============================
   FAQ SECTION
   ============================== */
.faq-section {
  background: #fff;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}

.faq-item:hover {
  border-color: rgba(0, 150, 136, 0.4);
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0, 150, 136, 0.08);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  list-style: none;
  /* remove default arrow */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "\F282";
  /* bootstrap-icons chevron-down */
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* ==============================
   FLOATING WHATSAPP
   ============================== */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 1.15rem;
  font-family: Poppins, sans-serif;
  text-decoration: none;
  z-index: 1050;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: 2s infinite waPulse;
}

.floating-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-5px);
  animation: none;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.floating-wa i {
  font-size: 1.5rem;
  line-height: 1;
}

.floating-wa-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }

  .floating-wa-text {
    display: none;
  }

  .floating-wa i {
    font-size: 1.8rem;
  }
}

/* ==============================
   DOKUMENTASI PAGE
   ============================== */
.doc-body {
  background-color: var(--bg-gray);
}

.doc-page {
  padding-bottom: 80px;
}

.doc-hero {
  padding: 60px 0 40px;
}

.doc-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 16px 0;
  letter-spacing: -0.5px;
}

.doc-subtitle {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Bar */
.doc-filter-bar {
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--border-color);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  position: relative;
  flex: 1;
  min-width: 200px;
}

.filter-group i {
  color: #9ca3af;
  font-size: 1.1rem;
}

.filter-group.filter-search {
  flex: 2;
  border-right: 1px solid var(--border-color);
}

.filter-group.filter-select {
  border-right: 1px solid var(--border-color);
}

.filter-group input,
.filter-group select {
  border: none;
  background: transparent;
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
}

.filter-group input::placeholder {
  color: #9ca3af;
}

.filter-group select {
  appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 16px;
  pointer-events: none;
}

.filter-reset {
  background: transparent;
  border: none;
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.filter-reset:hover {
  color: #00796b;
}

/* Grid & Card */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.doc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 150, 136, 0.1);
}

.doc-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ba-split-static {
  display: flex;
  height: 100%;
  width: 100%;
}

.img-before,
.img-after {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-divider i {
  background: #fff;
  color: var(--teal);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.img-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.label-before {
  left: 12px;
}

.label-after {
  right: 12px;
  background: var(--teal);
}

.doc-card-body {
  padding: 24px;
}

.doc-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-body);
  font-size: 0.9rem;
}

.doc-info-row.multi-col {
  justify-content: space-between;
}

.doc-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-info-item i {
  color: var(--teal);
  font-size: 1rem;
}

.doc-service-name {
  margin-top: 16px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.doc-link:hover {
  color: #00796b;
  gap: 12px;
}

/* Pagination */
.doc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.page-link:hover {
  background: var(--bg-gray);
  color: var(--teal);
}

.page-link.active {
  background: var(--teal);
  color: #fff;
}

.page-dots {
  color: #9ca3af;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-group.filter-search {
    border-right: none;
    flex: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .filter-group.filter-select {
    flex: 1;
  }
}

@media (max-width: 767.98px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .filter-group.filter-select {
    border-right: none;
    flex: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .filter-reset {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   DOKUMENTASI DETAIL PAGE
   ============================== */
.doc-detail-body {
  background-color: #f9fafb;
}

.doc-detail-page {
  padding-bottom: 80px;
}

.doc-breadcrumb {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.doc-breadcrumb a:hover {
  color: var(--teal);
}

.doc-breadcrumb i {
  font-size: 0.75rem;
}

.doc-breadcrumb span {
  color: var(--teal);
  font-weight: 600;
}

.doc-detail-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.doc-detail-header-text {
  max-width: 600px;
}

.doc-detail-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.doc-detail-subtitle {
  color: var(--text-body);
  font-size: 1.05rem;
  margin: 0;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.btn-back:hover {
  background: var(--bg-gray);
  border-color: #d1d5db;
}

/* Layout */
.doc-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Content Left */
.doc-slider-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.slider-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-button {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--teal);
  font-size: 1rem;
}

.doc-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-section-title i {
  color: var(--teal);
}

.doc-desc-section p {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.doc-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.doc-chip {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 180px;
}

.doc-chip i {
  color: var(--teal);
  font-size: 1.1rem;
}

.doc-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

.process-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 1;
}

.process-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-num {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #fff;
  color: var(--teal);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-item p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

/* ==============================
   BENTO GRID - DOKUMENTASI FOTO
   ============================== */
.doc-foto-section {
  margin-bottom: 40px;
}

.doc-foto-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  margin-top: -8px;
}

.doc-bento-grid {
  columns: 3;
  column-gap: 10px;
}

.bento-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
  display: block;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}

.bento-item:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 24px rgba(0, 150, 136, 0.13);
  z-index: 1;
}

.bento-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Ratio modifier per orientasi */
.bento-portrait img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.bento-landscape img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bento-square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Lightbox overlay untuk foto */
.bento-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 150, 136, 0.0);
  transition: background 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

.bento-item:hover::after {
  background: rgba(0, 150, 136, 0.3);
  opacity: 1;
}

/* Sidebar */
.doc-detail-sidebar {
  display: flex;
  position: sticky;
  top: 1rem;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-list i {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 2px;
}

.info-list small {
  display: block;
  color: #6b7280;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.info-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.star-rating {
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.btn-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-review:hover {
  background: #00796b;
  color: #fff;
}

.share-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.share-icons {
  display: flex;
  gap: 12px;
}

.share-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #6b7280;
  background: var(--bg-gray);
  text-decoration: none;
  transition: 0.2s;
}

.share-icons .share-wa:hover {
  background: #25d366;
  color: #fff;
}

.share-icons .share-fb:hover {
  background: #1877f2;
  color: #fff;
}

.share-icons .share-ig:hover {
  background: #e1306c;
  color: #fff;
}

.share-icons .share-link:hover {
  background: var(--text-dark);
  color: #fff;
}

/* Responsive Detail */
@media (max-width: 991.98px) {
  .doc-detail-layout {
    grid-template-columns: 1fr;
  }

  .doc-slider-wrap {
    height: 350px;
  }

  .doc-bento-grid {
    columns: 2;
    column-gap: 8px;
  }

  .bento-item {
    margin-bottom: 8px;
  }
}

@media (max-width: 767.98px) {
  .doc-slider-wrap {
    height: 250px;
  }

  .doc-bento-grid {
    columns: 2;
    column-gap: 6px;
  }

  .bento-item {
    margin-bottom: 6px;
    border-radius: 8px;
  }
}