/* ================================================
   Health Link Care Services — main.css
   Custom theme styles. Bootstrap & Font Awesome
   are loaded separately via functions.php.
================================================ */

/* ==============================
   CSS VARIABLES
============================== */
:root {
  --green: #1e6b3a;
  --green-light: #2d8a4f;
  --green-dark: #134726;
  --green-faint: #e8f5ee;
  --green-mid: #c5e4cf;
  --red: #c0392b;
  --red-light: #e74c3c;
  --red-faint: #fdecea;
  --dark: #0c1c13;
  --text: #1e2d26;
  --muted: #5a7060;
  --bg: #f4fbf6;
  --white: #ffffff;
  --border: #d0e8d9;
  --radius: 18px;
  --shadow: 0 24px 64px rgba(30, 107, 58, .13);
  --shadow-sm: 0 6px 24px rgba(30, 107, 58, .09);
}

/* ==============================
   BASE
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Fraunces', serif;
}

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

a {
  transition: color .2s;
}

/* ==============================
   ANNOUNCEMENT BAR
============================== */
.top-bar {
  background: var(--green);
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
  padding: 9px 0;
  text-align: center;
  letter-spacing: .2px;
}

.top-bar a {
  color: #7de9a4;
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  color: #fff;
}

/* ==============================
   NAVBAR
============================== */
#navbar {
  position: fixed;
  top: 36px;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all .45s cubic-bezier(.4, 0, .2, 1);
}

#navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 32px rgba(30, 107, 58, .11);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 46px;
  transition: filter .3s;
}

/* Custom logo WordPress output */
.navbar-brand .custom-logo-link img {
  height: 46px;
  width: auto;
}

.footer-logo-wrap .custom-logo-link img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88) !important;
  padding: 7px 15px !important;
  transition: color .2s;
  position: relative;
  text-decoration: none;
}

#navbar.scrolled .nav-link {
  color: var(--text) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 15px;
  width: calc(100% - 30px);
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(192, 57, 43, .3);
  transition: all .25s !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(192, 57, 43, .4) !important;
}

.nav-cta::after {
  display: none;
}

#mobMenu a {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* ==============================
   HERO
============================== */
#home {
  min-height: 100vh;
  background: linear-gradient(140deg, #081810 0%, #0f2819 35%, #1a4d30 70%, #256b41 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 138, 79, .25);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(192, 57, 43, .12);
  bottom: -80px;
  right: 100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(74, 222, 128, .12);
  top: 40%;
  right: -60px;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(.95);
  }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  margin-bottom: 26px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-anim 2s ease-in-out infinite;
}

@keyframes pulse-anim {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .4);
  }

  50% {
    opacity: .7;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-title em {
  color: #7de9a4;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 510px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.btn-red {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  box-shadow: 0 8px 28px rgba(192, 57, 43, .35);
}

.btn-red:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(192, 57, 43, .5);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .28);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  color: white;
  background: rgba(255, 255, 255, .2);
  transform: translateY(-3px);
}

.hero-kpi-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-kpi {
  text-align: center;
}

.hero-kpi-num {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #7de9a4;
  line-height: 1;
}

.hero-kpi-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .35);
}

.hero-img-wrap img {
  width: 100%;
  display: block;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  display: flex;
  align-items: center;
  gap: 13px;
  animation: card-float 4s ease-in-out infinite;
}

.hero-card.c1 {
  bottom: 28px;
  left: -24px;
  animation-delay: 0s;
}

.hero-card.c2 {
  top: 28px;
  right: -24px;
  animation-delay: -2s;
}

@keyframes card-float {

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

  50% {
    transform: translateY(-8px);
  }
}

.hcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.hcard-icon.g {
  background: var(--green-faint);
  color: var(--green);
}

.hcard-icon.r {
  background: var(--red-faint);
  color: var(--red);
}

.hcard-text strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
}

.hcard-text span {
  font-size: .73rem;
  color: var(--muted);
}

/* ==============================
   WAVE DIVIDERS
============================== */
.wave-wrap {
  overflow: hidden;
  line-height: 0;
}

.wave-wrap svg {
  display: block;
  width: 100%;
}

/* ==============================
   SECTION COMMONS
============================== */
section {
  padding: 96px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.tag.green {
  background: var(--green-faint);
  color: var(--green);
}

.tag.red {
  background: var(--red-faint);
  color: var(--red);
}

.tag.white {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
}

.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 14px;
}

.sec-title em {
  color: var(--green);
  font-style: italic;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ==============================
   ABOUT
============================== */
#about {
  background: var(--bg);
}

.about-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.about-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
}

.about-badge-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.abn {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.abt {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 0;
}

.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.af-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-faint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all .3s;
}

.about-feat:hover .af-icon {
  background: var(--green);
  color: white;
}

.af-title {
  font-size: .93rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.af-desc {
  font-size: .84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ==============================
   STATS
============================== */
#stats {
  background: white;
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-wrap {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-wrap:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.9rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: .83rem;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ==============================
   SERVICES
============================== */
#services {
  background: white;
}

.svc-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-faint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: all .3s;
}

.svc-card:hover .svc-icon {
  background: var(--green);
  color: white;
}

.svc-card h5 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.svc-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ==============================
   CORE VALUES
============================== */
#values {
  background: linear-gradient(140deg, #081810 0%, #0f2819 40%, #1e5030 100%);
  position: relative;
  overflow: hidden;
}

.orb-v1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(45, 138, 79, .18);
  filter: blur(100px);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

#values .sec-title {
  color: white;
}

#values .sec-sub {
  color: rgba(255, 255, 255, .65);
}

.val-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
  backdrop-filter: blur(10px);
}

.val-card:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-8px);
  border-color: rgba(125, 233, 164, .3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.val-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(74, 222, 128, .13);
  color: #7de9a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all .3s;
}

.val-card:hover .val-icon {
  background: rgba(74, 222, 128, .25);
}

.val-card h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 11px;
  font-family: 'DM Sans', sans-serif;
}

.val-card p {
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
  line-height: 1.65;
  margin: 0;
}

/* ==============================
   WHY CHOOSE US
============================== */
#why {
  background: var(--green);
  padding: 80px 0;
}

.why-item {
  text-align: center;
  padding: 16px;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
  transition: all .3s;
}

.why-item:hover .why-icon {
  background: rgba(255, 255, 255, .22);
  transform: scale(1.1);
}

.why-item h5 {
  color: white;
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.why-item p {
  color: rgba(255, 255, 255, .68);
  font-size: .83rem;
  line-height: 1.55;
  margin: 0;
}

/* ==============================
   PROCESS
============================== */
#process {
  background: var(--bg);
}

.proc-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 38px;
  position: relative;
}

.proc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 58px;
  height: calc(100% - 18px);
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--green-mid));
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 22px rgba(30, 107, 58, .35);
  font-family: 'DM Sans', sans-serif;
}

.proc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: 'DM Sans', sans-serif;
}

.proc-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.proc-side-img {
  width: 100%;
  border-radius: 22px;
  height: 230px;
  object-fit: cover;
  margin-top: 28px;
}

/* ==============================
   CONTACT
============================== */
.cinfo-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1.5px solid var(--border);
  transition: all .28s;
  text-decoration: none;
}

.cinfo-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.cinfo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.cinfo-icon.wa {
  background: #25d366;
}

.cinfo-icon.red {
  background: var(--red);
}

.cinfo-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
  margin-bottom: 3px;
}

.cinfo-val {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.form-box {
  background: white;
  border-radius: 22px;
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text);
  transition: all .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 107, 58, .1);
  outline: none;
}

.btn-green {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s;
  cursor: pointer;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 107, 58, .3);
}

.btn-green:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.success-msg {
  display: none;
  background: var(--green-faint);
  border: 1px solid var(--green-mid);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--green);
  font-size: .9rem;
}

.error-msg {
  display: none;
  background: var(--red-faint);
  border: 1px solid #f5c4b3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--red);
  font-size: .9rem;
}

/* ==============================
   FOOTER
============================== */
#footer {
  background: var(--dark);
  padding: 72px 0 28px;
}

.footer-logo {
  height: 46px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .52);
  max-width: 285px;
}

.footer-heading {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 18px;
}

.flinks {
  list-style: none;
  padding: 0;
}

.flinks li {
  margin-bottom: 10px;
}

.flinks a {
  color: rgba(255, 255, 255, .58);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flinks a:hover {
  color: #7de9a4;
}

.flinks a i {
  font-size: .6rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  font-size: .85rem;
}

.footer-contact-row i {
  color: #7de9a4;
  font-size: .85rem;
  width: 14px;
}

.footer-contact-row a {
  color: rgba(255, 255, 255, .58);
  text-decoration: none;
}

.footer-contact-row a:hover {
  color: #7de9a4;
}

.footer-contact-row span {
  color: rgba(255, 255, 255, .58);
}

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

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  transition: all .22s;
}

.soc-btn:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: .79rem;
  color: rgba(255, 255, 255, .3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: .79rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .65);
}

/* ==============================
   BACK TO TOP + WHATSAPP FLOAT
============================== */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s;
  box-shadow: 0 6px 22px rgba(30, 107, 58, .35);
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

#btt:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.wa-btn {
  position: fixed;
  bottom: 80px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
  animation: wa-pulse 3s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, .7);
  }
}

.wa-btn:hover {
  color: white;
  transform: scale(1.1);
}

/* ==============================
   SCROLL ANIMATIONS
============================== */
.fu {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.fu.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .08s !important;
}

.d2 {
  transition-delay: .18s !important;
}

.d3 {
  transition-delay: .28s !important;
}

.d4 {
  transition-delay: .38s !important;
}

.d5 {
  transition-delay: .48s !important;
}

.d6 {
  transition-delay: .58s !important;
}

.d7 {
  transition-delay: .68s !important;
}

.d8 {
  transition-delay: .78s !important;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 991px) {
  section {
    padding: 72px 0;
  }

  .hero-card {
    display: none;
  }

  .hero-img-wrap img {
    height: 380px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  #stats {
    padding: 50px 0;
  }

  #why {
    padding: 60px 0;
  }

  .stat-wrap:not(:last-child)::after {
    display: none;
  }

  .proc-step:not(:last-child)::after {
    display: none;
  }

  .form-box {
    padding: 28px 20px;
  }

  .hero-kpi-row {
    gap: 24px;
  }

  .about-frame img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .form-box {
    padding: 20px 16px;
  }
}

/* ==============================
   FOOTER WHATSAPP ROW
============================== */
.footer-contact-row .fa-whatsapp {
  color: #25d366;
}

/* ==============================
   INLINE SVG LOGO — all uses
============================== */
.footer-logo-link {
  text-decoration: none;
  display: inline-block;
}

.footer-logo-link:hover {
  opacity: .85;
  transition: opacity .25s;
}

.hlcs-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Wordmark: centered column */
.hlcs-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ← centres CARE SERVICES under HEALTH LINK */
}

.hlcs-name {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}

.hlcs-name span {
  color: #ffffff;
}

.hlcs-rule {
  height: 3px;
  background: linear-gradient(to right, #e74c3c 42%, #4ade80 42%);
  margin: 5px 0 5px;
  width: 100%;
  /* stretches to HEALTH LINK width — tagline centres below */
}

.hlcs-tagline {
  font-family: 'DM Sans', 'Arial', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.2px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

/* Light (navbar) variant */
.hlcs-logo-light .hlcs-name {
  color: #1a1a1a;
}

.hlcs-logo-light .hlcs-name span {
  color: #1e6b3a;
}

.hlcs-logo-light .hlcs-tagline {
  color: #555;
}

/* Footer WhatsApp row green icon */
.footer-contact-row .fa-whatsapp {
  color: #25d366;
}