/* ===================== FONTS =====================
   Poppins is loaded from Google Fonts in includes/header.php
   (weights 300-800). Letter-spacing / weight rules below follow
   a Samsung One UI-inspired brand style: bold, tight-tracked
   headlines, wide-tracked uppercase micro-labels, pill buttons. */

/* ===================== BASE ===================== */
:root {
  --hs-teal: #1ca7a5;
  --hs-teal-dark: #178f8d;
  --hs-dark: #1f2937;
  --hs-text: #4b5563;
  --hs-muted: #6b7280;
  --hs-bg-soft: #f7fbfb;
  --hs-border: #e5e7eb;
  --hs-font: "Poppins", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--hs-font);
  color: var(--hs-text);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--hs-font); }

img { max-width: 100%; }

.hs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hs-container-narrow {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

html { overflow-x: hidden; }

/* ===================== NAVBAR ===================== */
.hs-navbar {
  background-color: var(--hs-teal);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hs-logo {
  height: 80px;
  width: auto;
  display: block;
}

.hs-nav .nav-link {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.9rem;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.hs-nav .nav-link:hover,
.hs-nav .nav-link.active {
  opacity: 1;
  font-weight: 600;
}

.navbar-toggler:focus { box-shadow: none; }

/* Home navbar: keep links clear of the overlapping hero photo */
@media (min-width: 992px) {
  .hs-navbar-home .hs-container { padding-right: 0; }
}

/* ===================== HERO ===================== */
.hs-hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 64px;
  border-bottom: 2px dashed rgba(28, 167, 165, 0.45);
}

.hs-hero-text {
  padding: 20px 12px 30px 12px;
  max-width: 600px;
}

.hs-hero-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hs-dark);
  margin-bottom: 1.5rem;
}

.hs-accent { color: var(--hs-teal); }

.hs-hero-sub {
  font-size: 1.02rem;
  color: #000000;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 25px;
}

.hs-hero-badges span {
  font-size: 0.9rem;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hs-badge-icon { width: 20px; height: 20px; object-fit: contain; }
.hs-badge-icon-font { font-size: 1.15rem; color: var(--hs-teal, #1ca7a5); }

.hs-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-bottom-left-radius: 46%;
  border-bottom-right-radius: 46%;
}

.hs-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes hsKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
  }
  .hs-hero-photo img {
    animation: hsKenBurns 12s ease-in-out infinite alternate;
  }
}

/* ===================== BUTTONS ===================== */
.btn.hs-btn-primary {
  background-color: var(--hs-teal);
  border: 2px solid var(--hs-teal);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  margin-top: 10px;
}
.btn.hs-btn-primary:hover {
  background-color: var(--hs-teal-dark);
  border-color: var(--hs-teal-dark);
  color: #fff;
}

.btn.hs-btn-outline {
  background: #ffffff;
  border: 1px solid var(--hs-teal);
  color: var(--hs-teal);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.btn.hs-btn-outline:hover {
  background-color: var(--hs-teal);
  color: #fff;
}
.hs-hero-text .btn.hs-btn-primary { margin-top: 0; }

/* ===================== SECTIONS ===================== */
.hs-section { padding: 80px 0; }

.hs-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 35px auto;
}

section#appointment { padding-top: 0; }

.hs-eyebrow {
  display: inline-block;
  color: #1CA7A6;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hs-section-title {
  font-weight: 700;
  font-size: 2.0rem;
  letter-spacing: -0.015em;
  color: var(--hs-dark);
  margin-bottom: 1rem;
}

.hs-section-desc {
  color: #000000;
  font-size: 1rem;
  line-height: 25px;
  max-width: 640px;
  margin: 0 auto;
}

/* ===================== SERVICE CARDS ===================== */
#services .hs-section-head {
  text-align: left;
  max-width: 100%;
  margin-bottom: 44px;
}
#services .hs-section-desc { margin: 0; max-width: 560px; }

.hs-service-card {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 0px;
  padding: 20px 28px;
  height: 100%;
  box-shadow: 0 6px 22px rgb(17 24 39 / 13%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(28, 167, 165, 0.16);
  border-color: transparent;
}

.hs-service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}
.hs-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hs-service-card h5 {
  font-weight: 500;
  color: var(--hs-dark);
  margin-bottom: 0.6rem;
}

.hs-service-card p {
  color: #000000BF;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ===================== ABOUT / WHY CHOOSE ===================== */
.hs-about-img-wrap { position: relative; height: 100%; }

.hs-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.hs-experience {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 0;
  padding: 14px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.hs-exp-num {
  display: block;
  color: var(--hs-teal);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hs-exp-text {
  font-size: 0.78rem;
  color: #000000;
}

.hs-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}
.hs-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: #000000;
  font-size: 0.96rem;
  line-height: 20px;
}
.hs-check-list i { color: var(--hs-teal); font-size: 1.2rem; }

/* ===================== TEAM ===================== */
section#team { padding-top: 0; }
.hs-team-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eef0f2;
  height: 100%;
  box-shadow: 0 6px 22px rgb(17 24 39 / 8%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hs-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.hs-team-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f4f6f8;
}
.hs-team-card.hs-team-noimg .hs-team-info { padding-top: 26px; }
.hs-team-info { padding: 20px 22px 24px 20px; }
.hs-team-info h5 {
  font-weight: 600;
  color: var(--hs-dark);
  margin-bottom: 4px;
}
.hs-team-role {
  display: block;
  color: var(--hs-teal);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.hs-team-info p {
  color: #000000;
  font-size: 0.85rem;
  margin: 0;
}

/* ===================== VIDEO GALLERY ===================== */
.hs-video-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.hs-video-main .hs-video-poster {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hs-video-main video {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  background: #000;
}
.hs-video-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.hs-video-main.is-playing::after { opacity: 0; }
.hs-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hs-teal);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.hs-video-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.hs-video-main.is-playing .hs-video-play { display: none; }

.hs-video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.hs-video-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hs-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease;
}
.hs-video-thumb:hover img { transform: scale(1.06); }
.hs-video-thumb:hover::after { background: rgba(0, 0, 0, 0.05); }
.hs-video-thumb.active { border-color: var(--hs-teal); }
.hs-video-thumb.active::after { background: rgba(28, 167, 165, 0.12); }
.hs-video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hs-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
}

.hs-video-modal-content {
  background: #000;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.hs-video-modal-content video {
  max-height: 80vh;
}
.hs-video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 8px;
}

/* ===================== APPOINTMENT FORM ===================== */
.hs-form-card {
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  padding: 44px 44px 48px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  position: relative;
}
.hs-form-card::before, .hs-appt-card::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(28, 167, 165, 0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: -1;
  pointer-events: none;
}
.hs-form-title {
  font-weight: 600;
  color: var(--hs-dark);
  margin-bottom: 1.8rem;
}
.hs-form-card .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hs-dark);
  margin-bottom: 0.4rem;
}
.hs-input {
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}
.hs-input:focus {
  border-color: var(--hs-teal);
  box-shadow: 0 0 0 0.2rem rgba(28, 167, 165, 0.15);
}
.hs-btn-submit {
  min-width: 280px;
  padding: 0.8rem 1.6rem;
}

/* Contact info cards + map */
.hs-contact-card {
  background: #fff;
  border: 1px solid var(--hs-border);
  border-radius: 14px;
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 22px rgb(17 24 39 / 8%);
}
.hs-contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(28,167,165,0.14); }
.hs-contact-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(28,167,165,0.12); color: var(--hs-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1.1rem;
}
.hs-contact-card h5 { font-weight: 500; color: var(--hs-dark); margin-bottom: 0.6rem; }
.hs-contact-card p { color: #000000BF; font-size: 0.9rem; line-height: 1.7; margin: 0; }
.hs-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hs-border);
  min-height: 420px;
}

/* ===================== FOOTER ===================== */
.hs-footer {
  background: var(--hs-teal);
  color: #ffffff;
  padding: 64px 0 28px;
}
.hs-footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}
.hs-footer-about {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 280px;
}
.hs-footer-follow { font-weight: 500; }
.hs-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgb(255 255 255 / 0%);
  color: #fff;
  margin-right: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hs-socials a:hover { background: rgba(255, 255, 255, 0.3); }

.hs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hs-footer-links li { margin-bottom: 14px; }
.hs-footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.hs-footer-links a:hover { color: #fff; text-decoration: underline; }

.hs-footer-contact-title {
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hs-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hs-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
}
.hs-footer-contact li i {
  flex-shrink: 0;
  line-height: 1.5;
}
.hs-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hs-footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hs-footer-payments-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.hs-footer-payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}
.hs-footer-payment-logos img {
  height: 32px;
  width: auto;
  /* background: #fff; */
  border-radius: 6px;
  padding: 4px 0px;
}
.hs-footer-divider {
  border-color: rgb(255 255 255);
  margin: 36px 0 18px;
}
.hs-footer-copy {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.hs-footer-bottom-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hs-footer-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.hs-footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.hs-footer-credit-logo {
  height: 22px;
  width: auto;
  display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .hs-navbar { padding-top: 8px; padding-bottom: 8px; }
  #navItems {
    background: var(--hs-teal-dark);
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px 14px;
  }
  .hs-hero { padding-top: 96px; padding-bottom: 0; }
  .hs-hero-title { font-size: 2.5rem; }
  .hs-hero-text { padding: 30px 12px; text-align: center; max-width: 100%; }
  .hs-hero-sub { margin-left: auto; margin-right: auto; }
  .hs-hero-badges { justify-content: center; }
  .hs-hero-photo {
    position: static;
    width: 100%;
    height: auto;
    z-index: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: 10px;
  }
  .hs-hero-photo img { max-height: 420px; }
  .hs-section-title.text-start { text-align: center !important; }
  .hs-experience { right: 16px; bottom: 16px; }
}

@media (max-width: 575.98px) {
  .hs-hero-title { font-size: 2rem; }
  .hs-section { padding: 56px 0; }
  .hs-section-title { font-size: 1.7rem; }
  .hs-form-card { padding: 28px 20px 32px; }
  .hs-btn-submit { min-width: 100%; }
  .hs-gallery-main img { height: 260px; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* Page hero (banner with dark overlay + centered text) */
.hs-page-hero {
  position: relative;
  margin-top: 100px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hs-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 33, 0.55);
}
.hs-page-hero.hs-hero-gray::before { background: #5d5d5d; }
.hs-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(28, 167, 165, 0.4) 0%, rgba(28, 167, 165, 0) 42%),
    radial-gradient(circle at 88% 82%, rgba(28, 167, 165, 0.3) 0%, rgba(28, 167, 165, 0) 38%);
  pointer-events: none;
}
.hs-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 40px 24px;
}
.hs-page-hero .hs-eyebrow { color: #ffffff; opacity: 0.9; }
.hs-page-hero-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hs-page-hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 560px;
}

/* Mission split (image + text) */
.hs-mission-img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.hs-lead-text { color: #000000; line-height: 1.9; font-size: 0.98rem; }

/* Stats bar */
.hs-stats {
  background: var(--hs-teal);
  color: #fff;
  padding: 44px 0;
}
.hs-stat { text-align: center; }
.hs-stat-num { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
section.hs-stats {
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  margin: auto;
}
.hs-stat-label { font-size: 0.92rem; opacity: 0.92; margin-top: 6px; }

/* Value cards */
.hs-value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0px;
  padding: 30px 26px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 22px rgb(17 24 39 / 13%);
}
.hs-value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(28,167,165,0.12); }
.hs-value-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(28,167,165,0.12); color: var(--hs-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1.1rem;
}
.hs-value-card h5 { font-weight: 500; color: #000000; margin-bottom: 0.7rem; }
.hs-value-card p { color: #000000BF; font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Numbered process-step cards (service detail pages) */
.hs-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0px;
  padding: 30px 26px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 22px rgb(17 24 39 / 13%);
}
.hs-step-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(28,167,165,0.12); }
.hs-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--hs-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 600; margin-bottom: 1.1rem;
}
.hs-step-card h5 { font-weight: 500; color: var(--hs-dark); margin-bottom: 0.6rem; }
.hs-step-card p { color: #000000BF; font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Mission / Vision boxes */
.hs-mv-box { background: rgba(28,167,165,0.16); border-radius: 0; padding: 40px 40px; height: 100%; }
.hs-mv-box-divider { position: relative; }
.hs-mv-box-divider::before { content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 1px; background: rgba(0,0,0,0.18); }
.hs-mv-box h4 { color: var(--hs-dark); font-weight: 600; margin-bottom: 0.9rem; }
.hs-mv-box p { color: #000000; line-height: 1.8; margin: 0; }

/* Service zigzag rows */
.hs-svc-row { margin-bottom: 80px; }
.hs-svc-row:last-child { margin-bottom: 0; }
.hs-svc-img { width: 100%; height: 380px; border-radius: 14px; display: block; object-fit: cover; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes hsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  /* Only applied to images that aren't also driven by the JS scroll-reveal
     transform, so this animation never fights an inline reveal transform. */
  .hs-svc-img { animation: hsFloat 6s ease-in-out infinite; }
}
.hs-svc-row h3, .hs-svc-title { font-weight: 500; color: var(--hs-dark); font-size: 1.9rem; margin-bottom: 0.7rem; }
.hs-svc-row > div p.hs-svc-desc { color: var(--hs-muted); margin-bottom: 1.4rem; }
.hs-svc-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.hs-svc-list li { display: flex; align-items: center; gap: 12px; padding: 7px 0; color: #000000; font-size: 0.96rem; }
.hs-svc-list i { color: var(--hs-teal); font-size: 1.15rem; }

/* Gallery grid (clinic page) */
.hs-grid-tile { display: block; border-radius: 14px; overflow: hidden; cursor: pointer; }
.hs-grid-tile img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.hs-grid-tile:hover img { transform: scale(1.05); }

/* Dark CTA */
.hs-cta-dark { background: #232323; color: #fff; padding: 90px 0; text-align: center; }
.hs-cta-dark h2 { font-weight: 800; font-size: 2.6rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hs-cta-dark p { color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; }
.hs-btn-light {
  display: inline-block;
  background: var(--hs-teal);
  color: #fff;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 13px 34px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hs-btn-light:hover { background: var(--hs-teal-dark); color: #fff; box-shadow: 0 10px 24px rgba(28,167,165,0.3); }
.hs-form-label { font-weight: 500; color: var(--hs-dark); font-size: 0.9rem; margin-bottom: 6px; display: block; }

/* Contact / appointment form */
.hs-appt-card {
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  padding: 44px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  margin-top: -90px;
  position: relative;
  z-index: 2;
}
.hs-appt-section-title { font-weight: 600; color: var(--hs-dark); margin-bottom: 1.4rem; }
.hs-chip-group { display: flex; flex-wrap: wrap; gap: 12px; }
.hs-chip {
  border: 1px solid var(--hs-border);
  background: #fff;
  color: var(--hs-text);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.15s ease;
}
.hs-chip:hover { border-color: var(--hs-teal); color: var(--hs-teal); }
.hs-chip.active { background: var(--hs-teal); border-color: var(--hs-teal); color: #fff; }
.hs-divider-soft { border-color: var(--hs-border); margin: 36px 0; }
.hs-appt-note { text-align: center; color: var(--hs-muted); font-size: 0.85rem; margin-top: 1rem; }

/* Direct-visit callout on the appointment page */
.hs-visit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(28, 167, 165, 0.08);
  border: 1px solid rgba(28, 167, 165, 0.25);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 40px;
}
.hs-visit-note i { color: var(--hs-teal); font-size: 1.3rem; margin-top: 2px; }
.hs-visit-note p { margin: 0; color: #000000; font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 991.98px) {
  .hs-page-hero-title { font-size: 2.4rem; }
  .hs-svc-row { margin-bottom: 56px; }
  .hs-svc-row .order-lg-2 { order: -1; }
  .hs-appt-card { padding: 28px 20px; }
  .hs-mv-box-divider::before { top: 0; left: 28px; right: 28px; bottom: auto; width: auto; height: 1px; }
}
@media (max-width: 575.98px) {
  .hs-page-hero-title { font-size: 1.9rem; }
  .hs-cta-dark h2 { font-size: 1.9rem; }
  .hs-grid-tile img { height: 200px; }
}
@media (max-width: 767px) {
  .hs-footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .hs-hero-title {
    font-size: 23px;
    line-height: 35px;
  }
  .d-flex.flex-wrap.gap-3.mb-4 {
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .hs-section-title.text-start {
    text-align: left !important;
  }
  .hs-page-hero {
    position: relative;
    margin-top: 100px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
  }
  .hs-svc-row h3, .hs-svc-title {
    font-weight: 500;
    color: var(--hs-dark);
    font-size: 22px;
    margin-bottom: 0.7rem;
  }
  .hs-cta-dark h2 {
    font-size: 20px;
  }
  .hs-section-title {
    font-size: 22px;
  }
  .hs-lead-text {
    color: #000000;
    line-height: 25px;
    font-size: 0.98rem;
  }
}


a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: auto !important;
}

/* ===================== BREADCRUMB ===================== */
.hs-breadcrumb-wrap { background: var(--hs-bg-soft); border-bottom: 1px solid var(--hs-border); }
.hs-breadcrumb {
  margin: 0;
  padding: 14px 0;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.hs-breadcrumb .breadcrumb-item a { color: var(--hs-teal); text-decoration: none; font-weight: 500; }
.hs-breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }
.hs-breadcrumb .breadcrumb-item.active { color: var(--hs-muted); }
.hs-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--hs-muted); }

/* ===================== FAQ ACCORDION (AEO) ===================== */
.hs-faq-accordion .accordion-item {
  border: 1px solid var(--hs-border);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 16px;
}
.hs-faq-accordion .accordion-button {
  font-family: var(--hs-font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--hs-dark);
  padding: 20px 24px;
  background: #fff;
}
.hs-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--hs-teal-dark);
  background: rgba(28, 167, 165, 0.08);
  box-shadow: none;
}
.hs-faq-accordion .accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(28, 167, 165, 0.15); }
.hs-faq-accordion .accordion-button::after { filter: hue-rotate(140deg) saturate(3); }
.hs-faq-accordion .accordion-body {
  padding: 4px 24px 22px;
  color: var(--hs-text);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   ANIMATIONS & DECORATIVE GRAPHICS
   ============================================================ */

/* Scroll-reveal: JS adds .hs-reveal + inline opacity/transform, then
   clears the inline styles once the element enters the viewport. Using
   inline styles (not a resting class) keeps this from ever fighting the
   :hover transforms already defined on cards above. Page is fully
   visible with JS disabled since the class/styles are never present. */
.hs-reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* Hero / page-hero entrance (pure CSS, plays automatically on load) */
@keyframes hsFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hs-hero-text > * {
  opacity: 0;
  animation: hsFadeUp 0.8s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}
.hs-hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hs-hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hs-hero-text > *:nth-child(3) { animation-delay: 0.35s; }
.hs-hero-text > *:nth-child(4) { animation-delay: 0.5s; }
.hs-hero-photo { opacity: 0; animation: hsFadeIn 1s ease 0.15s forwards; }

.hs-page-hero-inner > * {
  opacity: 0;
  animation: hsFadeUp 0.8s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}
.hs-page-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hs-page-hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hs-page-hero-inner > *:nth-child(3) { animation-delay: 0.35s; }

/* Navbar: subtle shrink + shadow once the page is scrolled */
.hs-navbar { transition: padding 0.3s ease, box-shadow 0.3s ease; }
.hs-navbar.hs-navbar-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* Minimal decorative graphics — soft blurred blobs / dot-grid on the
   solid-colour sections only, kept out of the photography-heavy areas */
.hs-hero { position: relative; }
.hs-hero::before,
.hs-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hs-hero::before {
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(28, 167, 165, 0.14) 0%, rgba(28, 167, 165, 0) 70%);
}
.hs-hero::after {
  bottom: -160px;
  left: 6%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(28, 167, 165, 0.1) 0%, rgba(28, 167, 165, 0) 70%);
}
.hs-hero > .container-fluid.hs-container { position: relative; z-index: 1; }

.hs-stats { position: relative; overflow: hidden; }
.hs-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hs-stats .container { position: relative; z-index: 1; }

.hs-cta-dark { position: relative; overflow: hidden; }
.hs-cta-dark::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -110px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 167, 165, 0.28) 0%, rgba(28, 167, 165, 0) 70%);
  pointer-events: none;
}
.hs-cta-dark .container { position: relative; z-index: 1; }

.hs-footer { position: relative; overflow: hidden; }
.hs-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.hs-footer .container { position: relative; z-index: 1; }

/* Line-art decorative graphics — minimal SVG line drawings on plain
   white content sections to reduce the white-space feel */
#services { position: relative; overflow: hidden; }
#services::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -10px;
  width: 190px;
  height: 228px;
  background: url('../img/deco/tooth-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#services .container { position: relative; z-index: 1; }

#about { position: relative; overflow: hidden; }
#about::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 240px;
  height: 240px;
  background: url('../img/deco/ring-arc.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

#team { position: relative; overflow: hidden; }
#team::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: url('../img/deco/sparkle-cluster.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#team .container { position: relative; z-index: 1; }

#gallery { position: relative; overflow: hidden; }
#gallery::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: url('../img/deco/swirl-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#gallery .container { position: relative; z-index: 1; }

#appointment { position: relative; overflow: hidden; }
#appointment::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 170px;
  height: 204px;
  background: url('../img/deco/tooth-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#appointment .container { position: relative; z-index: 1; }

#servicesList { position: relative; overflow: hidden; }
#servicesList::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: url('../img/deco/swirl-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#servicesList::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: -30px;
  width: 190px;
  height: 228px;
  background: url('../img/deco/tooth-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#servicesList .container { position: relative; z-index: 1; }

#mission { position: relative; overflow: hidden; }
#mission::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: url('../img/deco/ring-arc.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#mission .container { position: relative; z-index: 1; }

#values { position: relative; overflow: hidden; }
#values::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 150px;
  height: 150px;
  background: url('../img/deco/sparkle-cluster.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#values .container { position: relative; z-index: 1; }

#trust { position: relative; overflow: hidden; }
#trust::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 210px;
  height: 210px;
  background: url('../img/deco/swirl-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#trust .container { position: relative; z-index: 1; }

#benefits { position: relative; overflow: hidden; }
#benefits::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 160px;
  height: 192px;
  background: url('../img/deco/tooth-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#benefits .container { position: relative; z-index: 1; }

#process { position: relative; overflow: hidden; }
#process::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: url('../img/deco/ring-arc.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#process .container { position: relative; z-index: 1; }

#teamGrid { position: relative; overflow: hidden; }
#teamGrid::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 150px;
  height: 150px;
  background: url('../img/deco/sparkle-cluster.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#teamGrid .container { position: relative; z-index: 1; }

#clinicGallery { position: relative; overflow: hidden; }
#clinicGallery::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 210px;
  height: 210px;
  background: url('../img/deco/swirl-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#clinicGallery .container { position: relative; z-index: 1; }

#contactInfo { position: relative; overflow: hidden; }
#contactInfo::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 170px;
  height: 204px;
  background: url('../img/deco/tooth-line.svg') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
#contactInfo .container { position: relative; z-index: 1; }

@media (max-width: 767.98px) {
  #services::before, #about::after, #team::before, #gallery::after, #appointment::before,
  #servicesList::before, #servicesList::after, #mission::after, #values::before, #trust::after,
  #benefits::before, #process::after, #teamGrid::before, #clinicGallery::after, #contactInfo::before {
    display: none;
  }
}

/* Back to top */
.hs-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hs-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, visibility 0.25s;
  z-index: 1040;
}
.hs-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.hs-back-to-top:hover { background: var(--hs-teal-dark); transform: translateY(-3px); }

/* Floating Call + WhatsApp buttons */
.hs-float-actions {
  position: fixed;
  right: 24px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1040;
}
.hs-float-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hs-float-btn:hover { color: #fff; transform: translateY(-3px); }
.hs-float-call { background: var(--hs-teal); }
.hs-float-call:hover { background: var(--hs-teal-dark); }
.hs-float-whatsapp { background: #25d366; }
.hs-float-whatsapp:hover { background: #1ebd5a; }
@media (prefers-reduced-motion: no-preference) {
  .hs-float-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: hsPulseRing 2.4s ease-out infinite;
  }
  @keyframes hsPulseRing {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
  }
}
@media (max-width: 575.98px) {
  .hs-float-actions { right: 16px; bottom: 80px; gap: 12px; }
  .hs-float-btn { width: 44px; height: 44px; font-size: 1.15rem; }
  .hs-back-to-top { right: 16px; }
}

/* Extra hover lift on primary buttons/CTAs to match the card hover language */
.btn.hs-btn-primary:hover,
.btn.hs-btn-outline:hover,
.hs-btn-light:hover { transform: translateY(-2px); }

@media (max-width: 575.98px) {
  .hs-back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; font-size: 1.05rem; }
}

/* Respect reduced-motion preferences: kill all of the above motion */
@media (prefers-reduced-motion: reduce) {
  .hs-reveal,
  .hs-hero-text > *,
  .hs-hero-photo,
  .hs-page-hero-inner > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hs-back-to-top { transition: none; }
  .btn.hs-btn-primary:hover,
  .btn.hs-btn-outline:hover,
  .hs-btn-light:hover,
  .hs-service-card:hover,
  .hs-team-card:hover,
  .hs-value-card:hover,
  .hs-contact-card:hover {
    transform: none;
  }
}

/* Spam honeypot: hidden from humans, visible to naive bots that fill it. */
.hs-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Post-submit confirmation panel (replaces the form on success). */
.hs-form-success {
  text-align: center;
  padding: 24px 12px 8px;
  animation: hsSuccessIn 0.4s ease both;
}
.hs-form-success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  background: var(--hs-teal);
  box-shadow: 0 8px 22px rgba(28, 167, 165, 0.35);
}
.hs-form-success-title {
  font-weight: 600;
  color: var(--hs-dark);
  margin-bottom: 0.6rem;
}
.hs-form-success-text {
  color: var(--hs-text);
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.hs-form-success-again {
  min-width: 220px;
}
@keyframes hsSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hs-form-success { animation: none; }
}