/* =========================================================
   Aparajita Health Kavach — Premium Healthcare Frontend
   Author: E1 (Emergent) | Stack: HTML5 + Bootstrap 5.3
   ========================================================= */

:root {
  --ahk-primary: #0F4C81;
  --ahk-primary-dark: #0a3760;
  --ahk-teal: #1FA2A6;
  --ahk-teal-dark: #167c80;
  --ahk-green: #28C76F;
  --ahk-green-dark: #1fa15b;
  --ahk-red: #E63946;
  --ahk-amber: #F5A623;
  --ahk-ink: #0e1b2c;
  --ahk-body: #4a5567;
  --ahk-muted: #7a8494;
  --ahk-line: #e6ebf2;
  --ahk-bg: #f5f8fb;
  --ahk-white: #ffffff;
  --ahk-shadow-sm: 0 2px 10px rgba(15, 76, 129, 0.06);
  --ahk-shadow: 0 10px 30px rgba(15, 76, 129, 0.09);
  --ahk-shadow-lg: 0 20px 50px rgba(15, 76, 129, 0.14);
  --ahk-radius: 14px;
  --ahk-radius-lg: 22px;
  --font-heading: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Hide React root – we render static HTML */
#root {
  display: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ahk-body);
  background: var(--ahk-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--ahk-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

a {
  color: var(--ahk-primary);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--ahk-teal);
}

.container {
  max-width: 1240px;
}

/* ============ Buttons ============ */
.btn {
  border-radius: 999px;
  padding: .75rem 1.6rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .28s cubic-bezier(.2, .7, .2, 1);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--ahk-primary);
  border-color: var(--ahk-primary);
}

.btn-primary:hover {
  background: var(--ahk-primary-dark);
  border-color: var(--ahk-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 76, 129, .24);
}

.btn-teal {
  background: var(--ahk-teal);
  color: #fff;
  border-color: var(--ahk-teal);
}

.btn-teal:hover {
  background: var(--ahk-teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 162, 166, .28);
}

.btn-green {
  background: var(--ahk-green);
  color: #fff;
  border-color: var(--ahk-green);
}

.btn-green:hover {
  background: var(--ahk-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(40, 199, 111, .28);
}

.btn-outline-primary {
  color: var(--ahk-primary);
  border-color: var(--ahk-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--ahk-primary);
  border-color: var(--ahk-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light-glass {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
}

.btn-light-glass:hover {
  background: rgba(255, 255, 255, .28);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: .95rem 2rem;
  font-size: 1.02rem;
}

.btn-emergency {
  background: var(--ahk-red);
  color: #fff;
  border-color: var(--ahk-red);
  box-shadow: 0 8px 24px rgba(230, 57, 70, .28);
}

.btn-emergency:hover {
  background: #c92a37;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 57, 70, .36);
}

/* ============ Top Contact Bar ============ */
.topbar {
  background: var(--ahk-primary);
  color: #fff;
  font-size: .88rem;
  padding: .55rem 0;
}

.topbar a {
  color: rgba(255, 255, 255, .9);
}

.topbar a:hover {
  color: #fff;
}

.topbar .divider {
  opacity: .35;
  margin: 0 .8rem;
}

.topbar .fa-solid,
.topbar .fa-brands,
.topbar .fa-regular {
  color: var(--ahk-green);
  margin-right: 6px;
}

/* ============ Navigation ============ */
.site-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ahk-line);
  transition: all .3s ease;
  z-index: 1030;
  padding: 4px 0;
  min-height: 72px;
}

.site-nav.scrolled {
  box-shadow: var(--ahk-shadow-sm);
}

.site-nav .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ahk-primary);

  display: flex;
  align-items: center;
  gap: .6rem;

  padding: 0;
  margin: 0;
  height: 72px;
}

.site-nav .navbar-brand img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-nav .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: var(--ahk-shadow-sm);
}

.site-nav .brand-sub {
  display: block;
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--ahk-teal);
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.site-nav .nav-link {
  color: var(--ahk-ink);
  font-weight: 500;
  padding: .6rem 1rem !important;
  position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--ahk-primary);
}

.site-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: .1rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--ahk-teal);
  border-radius: 2px;
}

.site-nav .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: var(--ahk-shadow);
  padding: .6rem;
  margin-top: .4rem;
}

.site-nav .dropdown-item {
  border-radius: 8px;
  padding: .55rem .8rem;
  font-weight: 500;
}

.site-nav .dropdown-item:hover {
  background: var(--ahk-bg);
  color: var(--ahk-primary);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  color: #fff;
  padding: 4.5rem 0 6.5rem;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 76, 129, 0.88) 0%, rgba(15, 76, 129, 0.72) 35%, rgba(15, 76, 129, 0.1) 65%, rgba(15, 76, 129, 0) 85%);
  z-index: -1;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  max-width: 750px;
}

.hero .lead {
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  font-size: .85rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero .hero-eyebrow .fa-solid {
  color: var(--ahk-green);
}

.hero .hindi-tag {
  font-family: var(--font-heading);
  color: #b7f5c2;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: .8rem;
}

/* Custom Buttons for Hero */
.btn-wine-solid {
  background: var(--ahk-green);
  color: #fff;
  border: 2px solid var(--ahk-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-wine-solid:hover {
  background: var(--ahk-green-dark);
  border-color: var(--ahk-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(40, 199, 111, 0.25);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-white-outline:hover {
  background: #fff;
  color: var(--ahk-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}


/* Redesigned Why Choose Us Centered Layout with Feature Cards Grid */
.why-choose-section {
  background: linear-gradient(135deg, rgba(240, 247, 249, 0.95) 0%, rgba(226, 240, 245, 0.95) 100%),
    url('https://images.unsplash.com/photo-1584515979956-d9f6e5d09982?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 3.5rem 0;
}

.why-choose-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: #b30b42;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.why-choose-eyebrow .wc-line {
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: #b30b42;
}

.why-choose-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ahk-ink);
}

.why-choose-title .text-accent {
  color: #b30b42;
}

.why-choose-sub {
  font-size: 0.95rem;
  color: var(--ahk-muted);
  max-width: 620px;
  line-height: 1.6;
}

/* Left Image Stack with blob shape */
.why-visual-stack-wrapper {
  position: relative;
  padding: 30px 10px 10px 10px;
}

.why-blob-bg {
  position: absolute;
  top: 0;
  left: -20px;
  right: -10px;
  bottom: -10px;
  background: #FFF1F2;
  border-radius: 50% 30% 60% 40% / 40% 50% 30% 60%;
  transform: rotate(-3deg);
  z-index: 1;
  opacity: 0.75;
}

.why-decor-leaf {
  position: absolute;
  bottom: -15px;
  left: -35px;
  font-size: 2.2rem;
  color: #b8dfc4;
  transform: rotate(-25deg);
  z-index: 2;
}

.why-decor-dots-left {
  position: absolute;
  left: -35px;
  top: 50%;
  width: 40px;
  height: 60px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
  z-index: 2;
}

.why-decor-dots-right {
  position: absolute;
  right: -20px;
  top: 15%;
  width: 50px;
  height: 70px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
  z-index: 2;
}

.why-main-image-container {
  position: relative;
  border-radius: 24px;
  z-index: 3;
}

.why-visual-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid #ffffff;
  box-shadow: var(--ahk-shadow-lg);
}

.why-heart-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #b30b42;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(179, 11, 66, 0.18);
  border: 2px solid #fff;
  z-index: 5;
}

/* Floating Stats Card on image */
.why-floating-stats-card {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 16px;
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.08);
  border: 1.5px solid var(--ahk-line);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  max-width: 280px;
}

.wfsc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF5FF;
  color: #8B5CF6;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.wfsc-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ahk-ink);
  margin-bottom: 8px;
  line-height: 1.35;
  font-family: var(--font-body);
  text-align: left;
}

.wfsc-avatars-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wfsc-avatar-group {
  display: flex;
  margin-right: -4px;
}

.wfsc-avatar-group img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  margin-left: -6px;
  object-fit: cover;
}

.wfsc-avatar-group img:first-child {
  margin-left: 0;
}

.wfsc-count {
  font-size: 0.72rem;
  color: var(--ahk-muted);
  line-height: 1.25;
  text-align: left;
}

.wfsc-count strong {
  color: #8B5CF6;
  font-size: 0.85rem;
}

/* Feature Cards Grid (2x2) */
.why-feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  border: 1px solid var(--ahk-line);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.why-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ahk-shadow);
}

.wfc-dots-pattern {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 36px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
}

.wfc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.why-feature-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ahk-ink);
  margin-bottom: 8px;
}

.why-feature-card p {
  font-size: 0.85rem;
  color: var(--ahk-muted);
  line-height: 1.55;
  margin: 0 0 4px;
  flex-grow: 1;
}

.wfc-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Card Categories styling colors */
.wfc-pink .wfc-icon-wrap {
  background: #FFF1F2;
  color: #F43F5E;
}

.wfc-pink h4 {
  color: #F43F5E;
}

.wfc-pink .wfc-bottom-bar {
  background: #F43F5E;
}

.wfc-pink:hover {
  border-color: #F43F5E;
}

.wfc-purple .wfc-icon-wrap {
  background: #FAF5FF;
  color: #8B5CF6;
}

.wfc-purple h4 {
  color: #8B5CF6;
}

.wfc-purple .wfc-bottom-bar {
  background: #8B5CF6;
}

.wfc-purple:hover {
  border-color: #8B5CF6;
}

.wfc-green .wfc-icon-wrap {
  background: #ECFDF5;
  color: #10B981;
}

.wfc-green h4 {
  color: #10B981;
}

.wfc-green .wfc-bottom-bar {
  background: #10B981;
}

.wfc-green:hover {
  border-color: #10B981;
}

.wfc-blue .wfc-icon-wrap {
  background: #EFF6FF;
  color: #3B82F6;
}

.wfc-blue h4 {
  color: #3B82F6;
}

.wfc-blue .wfc-bottom-bar {
  background: #3B82F6;
}

.wfc-blue:hover {
  border-color: #3B82F6;
}

/* Bottom Spanning Banner Strip */
.why-bottom-banner-row {
  margin-top: 2.5rem;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--ahk-line);
  border-radius: 18px;
  box-shadow: var(--ahk-shadow-sm);
}

.wbb-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.wbb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.wbb-icon.red-tint {
  background: #FFF1F2;
  color: #F43F5E;
}

.wbb-icon.purple-tint {
  background: #FAF5FF;
  color: #8B5CF6;
}

.wbb-icon.green-tint {
  background: #ECFDF5;
  color: #10B981;
}

.wbb-icon.blue-tint {
  background: #EFF6FF;
  color: #3B82F6;
}

.wbb-content h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ahk-ink);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.wbb-content p {
  font-size: 0.78rem;
  color: var(--ahk-muted);
  margin: 0;
}

/* How It Works Redesigned Process Cards & Timeline */
.process-timeline {
  position: relative;
  margin-top: 20px;
}

.process-card {
  text-align: left;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--ahk-radius);
  border: 1px solid var(--ahk-line);
  transition: all 0.3s;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ahk-shadow);
  border-color: var(--ahk-teal);
}

.pc-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.pc-num {
  width: 42px;
  height: 42px;
  background: var(--ahk-primary);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 2;
  transition: background 0.25s;
}

.process-card:hover .pc-num {
  background: var(--ahk-green);
}

.pc-line {
  position: absolute;
  left: 42px;
  right: -20px;
  height: 2px;
  border-top: 2px dashed var(--ahk-line);
  z-index: 1;
}

.process-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--ahk-ink);
}

.process-card p {
  font-size: 0.88rem;
  color: var(--ahk-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .pc-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3.5rem 0 5.5rem;
    text-align: center;
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(15, 76, 129, 0.92);
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-split-card {
    margin-top: -4rem;
  }

  .why-main-img-wrap {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 4.5rem;
  }

  .hero-split-card {
    margin-top: -3rem;
  }
}

/* ============ Sections ============ */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-bg {
  background: var(--ahk-bg);
}

.section-dark {
  background: var(--ahk-ink);
  color: rgba(255, 255, 255, .85);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  background: rgba(31, 162, 166, .12);
  color: var(--ahk-teal);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: .8rem;
}

.section-sub {
  color: var(--ahk-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ============ Emergency Bar ============ */
.emergency-strip {
  background: linear-gradient(90deg, #E63946, #b1263a);
  color: #fff;
  padding: 1.6rem 0;
}

.emergency-strip .icon-pulse {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, .16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

/* ============ Quick Booking ============ */
.quick-book {
  background: #fff;
  border-radius: var(--ahk-radius-lg);
  box-shadow: var(--ahk-shadow-lg);
  padding: 2rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}

.quick-book .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ahk-ink);
  margin-bottom: .4rem;
}

.quick-book .form-control,
.quick-book .form-select {
  border-radius: 12px;
  border: 1.5px solid var(--ahk-line);
  padding: .75rem .95rem;
  font-size: .95rem;
  transition: all .2s;
}

.quick-book .form-control:focus,
.quick-book .form-select:focus {
  border-color: var(--ahk-teal);
  box-shadow: 0 0 0 4px rgba(31, 162, 166, .12);
}

/* ============ Service Cards ============ */
.service-card {
  background: #fff;
  border: 1px solid var(--ahk-line);
  border-radius: var(--ahk-radius);
  padding: 1.8rem 1.5rem;
  transition: all .35s cubic-bezier(.2, .7, .2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ahk-primary), var(--ahk-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ahk-shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon-square {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 76, 129, .08), rgba(31, 162, 166, .12));
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: all .35s;
}

.service-card:hover .icon-square {
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.service-card p {
  color: var(--ahk-muted);
  font-size: .93rem;
  margin-bottom: 1rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ahk-teal);
  font-weight: 600;
  font-size: .92rem;
}

.service-card .learn-more i {
  transition: transform .3s;
}

.service-card:hover .learn-more i {
  transform: translateX(4px);
}

/* ============ Why Choose Us ============ */
.feature-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem;
  background: #fff;
  border-radius: var(--ahk-radius);
  border: 1px solid var(--ahk-line);
  transition: all .3s;
  height: 100%;
}

.feature-item:hover {
  border-color: var(--ahk-teal);
  box-shadow: var(--ahk-shadow);
  transform: translateY(-4px);
}

.feature-item .fi-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(40, 199, 111, .12);
  color: var(--ahk-green);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.feature-item h5 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.feature-item p {
  color: var(--ahk-muted);
  font-size: .9rem;
  margin: 0;
}

/* ============ How It Works ============ */
.step-card {
  text-align: center;
  padding: 2rem 1.4rem;
  position: relative;
}

.step-card .step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 20px;
  background: #fff;
  color: var(--ahk-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: var(--ahk-shadow);
  position: relative;
}

.step-card .step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(15, 76, 129, .25);
  border-radius: 24px;
}

/* ============ Category Chip ============ */
.cat-chip {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--ahk-line);
  border-radius: 14px;
  transition: all .3s;
  font-weight: 500;
  color: var(--ahk-ink);
}

.cat-chip:hover {
  border-color: var(--ahk-teal);
  color: var(--ahk-primary);
  transform: translateX(4px);
  box-shadow: var(--ahk-shadow-sm);
}

.cat-chip .cat-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(31, 162, 166, .1);
  color: var(--ahk-teal);
  display: grid;
  place-items: center;
}

/* ============ Doctors ============ */
.doctor-card {
  background: #fff;
  border-radius: var(--ahk-radius);
  overflow: hidden;
  box-shadow: var(--ahk-shadow-sm);
  transition: all .35s;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
}

.doctor-card .doc-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--ahk-bg);
}

.doctor-card .doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.doctor-card:hover .doc-img img {
  transform: scale(1.08);
}

.doctor-card .doc-info {
  padding: 1.2rem 1.3rem 1.4rem;
  text-align: center;
}

.doctor-card .doc-info h5 {
  margin-bottom: .2rem;
}

.doctor-card .doc-info .spec {
  color: var(--ahk-teal);
  font-size: .9rem;
  font-weight: 500;
}

.doctor-card .doc-social {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .8rem;
}

.doctor-card .doc-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ahk-bg);
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: .85rem;
}

.doctor-card .doc-social a:hover {
  background: var(--ahk-primary);
  color: #fff;
}

/* ============ Counter ============ */
.counter-block {
  text-align: center;
  padding: 1.5rem 1rem;
}

.counter-block .cnum {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ahk-primary);
  display: block;
  line-height: 1;
}

.counter-block .clabel {
  color: var(--ahk-muted);
  font-size: .95rem;
  margin-top: .4rem;
}

.counter-block .cicon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(31, 162, 166, .14);
  color: var(--ahk-teal);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

/* ============ Testimonials ============ */
.testi-card {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: 2rem 1.7rem;
  border: 1px solid var(--ahk-line);
  height: 100%;
  position: relative;
}

.testi-card .quote-mark {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ahk-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: var(--ahk-shadow);
}

.testi-card .stars {
  color: var(--ahk-amber);
  margin-bottom: .8rem;
}

.testi-card p {
  color: var(--ahk-body);
  font-size: .98rem;
  line-height: 1.7;
}

.testi-card .testi-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ahk-line);
}

.testi-card .testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card .testi-author b {
  display: block;
  color: var(--ahk-ink);
}

.testi-card .testi-author span {
  font-size: .85rem;
  color: var(--ahk-muted);
}

/* ============ Gallery ============ */
.gallery-item {
  border-radius: var(--ahk-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 76, 129, .7));
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gcap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .35s;
}

.gallery-item:hover .gcap {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Blog ============ */
.blog-card {
  background: #fff;
  border-radius: var(--ahk-radius);
  overflow: hidden;
  box-shadow: var(--ahk-shadow-sm);
  transition: all .35s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
}

.blog-card .b-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card .b-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .b-img img {
  transform: scale(1.06);
}

.blog-card .b-body {
  padding: 1.5rem;
}

.blog-card .b-meta {
  display: flex;
  gap: 1rem;
  font-size: .82rem;
  color: var(--ahk-muted);
  margin-bottom: .6rem;
}

.blog-card .b-meta .badge {
  background: rgba(31, 162, 166, .14);
  color: var(--ahk-teal);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-weight: 600;
}

.blog-card h5 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: .6rem;
}

.blog-card p {
  color: var(--ahk-muted);
  font-size: .92rem;
}

/* ============ CTA ============ */
.cta-band {
  background: linear-gradient(120deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  border-radius: var(--ahk-radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
}

/* ============ Partner CTA ============ */
.partner-tile {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
  border: 1px solid var(--ahk-line);
  transition: all .3s;
  height: 100%;
}

.partner-tile:hover {
  border-color: var(--ahk-primary);
  transform: translateY(-4px);
  box-shadow: var(--ahk-shadow);
}

.partner-tile .p-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 76, 129, .08), rgba(31, 162, 166, .14));
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.partner-tile h5 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.partner-tile p {
  color: var(--ahk-muted);
  font-size: .85rem;
  margin: 0;
}

/* ============ FAQ ============ */
.accordion-item {
  border: 1px solid var(--ahk-line);
  border-radius: var(--ahk-radius) !important;
  margin-bottom: .9rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--ahk-ink);
  padding: 1.1rem 1.3rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(31, 162, 166, .06);
  color: var(--ahk-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--ahk-body);
  padding: 0 1.3rem 1.3rem;
}

/* ============ Contact ============ */
.contact-card {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--ahk-line);
  height: 100%;
}

.contact-card .ct-ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.35rem;
  color: #fff;
}

.contact-card.blue .ct-ic {
  background: var(--ahk-primary);
}

.contact-card.teal .ct-ic {
  background: var(--ahk-teal);
}

.contact-card.green .ct-ic {
  background: var(--ahk-green);
}

.contact-card h5 {
  font-size: 1.05rem;
}

.contact-card p,
.contact-card a {
  color: var(--ahk-body);
  font-size: .95rem;
  margin: .2rem 0;
  display: block;
}

.contact-card a:hover {
  color: var(--ahk-teal);
}

/* ============ Form ============ */
.form-card {
  background: #fff;
  border-radius: var(--ahk-radius-lg);
  box-shadow: var(--ahk-shadow);
  padding: 2.5rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1.5px solid var(--ahk-line);
  padding: .8rem 1rem;
  font-size: .96rem;
  transition: all .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ahk-teal);
  box-shadow: 0 0 0 4px rgba(31, 162, 166, .12);
}

.form-label {
  font-weight: 600;
  color: var(--ahk-ink);
  font-size: .9rem;
  margin-bottom: .4rem;
}

textarea.form-control {
  min-height: 120px;
}

/* ============ Page Header (breadcrumb hero) ============ */
.page-head {
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.page-head h1 {
  color: #fff;
  margin-bottom: .5rem;
}

.page-head .breadcrumb {
  justify-content: center;
  margin-top: .5rem;
}

.page-head .breadcrumb-item,
.page-head .breadcrumb-item a {
  color: rgba(255, 255, 255, .85);
}

.page-head .breadcrumb-item.active {
  color: #fff;
}

/* ============ Badges ============ */
.badge-soft-teal {
  background: rgba(31, 162, 166, .14);
  color: var(--ahk-teal);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}

.badge-soft-green {
  background: rgba(40, 199, 111, .14);
  color: var(--ahk-green-dark);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}

.badge-soft-blue {
  background: rgba(15, 76, 129, .1);
  color: var(--ahk-primary);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}

/* ============ Footer ============ */
.site-footer {
  background: #0b1a2c;
  color: rgba(255, 255, 255, .72);
  padding: 4rem 0 1.5rem;
}

.site-footer h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.site-footer a {
  color: rgba(255, 255, 255, .7);
  font-size: .94rem;
}

.site-footer a:hover {
  color: var(--ahk-green);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  padding: .3rem 0;
}

.site-footer .social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  display: inline-grid;
  place-items: center;
  margin-right: .4rem;
  transition: all .3s;
}

.site-footer .social a:hover {
  background: var(--ahk-teal);
  color: #fff;
  transform: translateY(-3px);
}

.site-footer .footer-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 2rem 0 1rem;
}

.site-footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .86rem;
}

/* ============ Emergency Card ============ */
.emergency-hero {
  background: linear-gradient(135deg, #E63946, #b1263a);
  color: #fff;
  border-radius: var(--ahk-radius-lg);
  padding: 2.5rem;
}

.emergency-hero h2 {
  color: #fff;
}

/* ============ Dashboard ============ */
.dash-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--ahk-bg);
}

.dash-sidebar {
  background: var(--ahk-ink);
  color: rgba(255, 255, 255, .7);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.dash-sidebar .db-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: .5rem .8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dash-sidebar .db-brand .brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.dash-sidebar .db-nav {
  padding-top: 1rem;
}

.dash-sidebar .db-section-label {
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  padding: 1rem .8rem .5rem;
  text-transform: uppercase;
}

.dash-sidebar .db-nav a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .9rem;
  color: rgba(255, 255, 255, .7);
  border-radius: 10px;
  font-size: .94rem;
  margin-bottom: .15rem;
}

.dash-sidebar .db-nav a:hover,
.dash-sidebar .db-nav a.active {
  background: rgba(31, 162, 166, .16);
  color: #fff;
}

.dash-sidebar .db-nav a i {
  width: 20px;
  text-align: center;
}

.dash-main {
  padding: 1.2rem 1.8rem 2rem;
}

.dash-topbar {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: .8rem 1.2rem;
  box-shadow: var(--ahk-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dash-topbar .db-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}

.dash-topbar .db-search input {
  border-radius: 999px;
  border: 1px solid var(--ahk-line);
  padding: .5rem 1rem .5rem 2.4rem;
  width: 100%;
  font-size: .9rem;
}

.dash-topbar .db-search i {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ahk-muted);
}

.dash-topbar .db-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.dash-topbar .db-actions .db-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ahk-bg);
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  position: relative;
  border: none;
}

.dash-topbar .db-actions .db-btn .dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--ahk-red);
  border-radius: 50%;
  border: 2px solid #fff;
}

.dash-topbar .db-user {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .3rem .6rem;
}

.dash-topbar .db-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.stat-card {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: 1.4rem;
  border: 1px solid var(--ahk-line);
}

.stat-card .stat-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--ahk-ink);
  font-weight: 700;
  line-height: 1;
}

.stat-card .stat-label {
  color: var(--ahk-muted);
  font-size: .88rem;
  margin-top: .4rem;
}

.stat-card .stat-trend {
  font-size: .82rem;
  font-weight: 600;
  margin-top: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.stat-card .stat-trend.up {
  color: var(--ahk-green-dark);
}

.stat-card .stat-trend.down {
  color: var(--ahk-red);
}

.dash-panel {
  background: #fff;
  border-radius: var(--ahk-radius);
  padding: 1.5rem;
  border: 1px solid var(--ahk-line);
}

.dash-panel h5 {
  font-size: 1.05rem;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.dash-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.dash-panel .table {
  font-size: .92rem;
}

.dash-panel .table thead th {
  color: var(--ahk-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--ahk-line);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.dash-panel .table tbody td {
  padding: .8rem .5rem;
  border-bottom: 1px solid var(--ahk-line);
  vertical-align: middle;
}

.dash-panel .table tbody tr:last-child td {
  border-bottom: none;
}

.notif-item {
  display: flex;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--ahk-line);
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item .n-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.notif-item .n-body {
  font-size: .9rem;
}

.notif-item .n-body b {
  color: var(--ahk-ink);
  font-weight: 600;
}

.notif-item .n-time {
  color: var(--ahk-muted);
  font-size: .78rem;
}

/* ============ Utilities ============ */
.rounded-xl {
  border-radius: var(--ahk-radius) !important;
}

.rounded-xxl {
  border-radius: var(--ahk-radius-lg) !important;
}

.text-primary-ahk {
  color: var(--ahk-primary) !important;
}

.text-teal {
  color: var(--ahk-teal) !important;
}

.text-green {
  color: var(--ahk-green) !important;
}

.bg-primary-ahk {
  background: var(--ahk-primary) !important;
  color: #fff;
}

.bg-teal {
  background: var(--ahk-teal) !important;
  color: #fff;
}

.bg-green {
  background: var(--ahk-green) !important;
  color: #fff;
}

.bg-red-soft {
  background: rgba(230, 57, 70, .1);
}

.bg-teal-soft {
  background: rgba(31, 162, 166, .1);
}

.bg-green-soft {
  background: rgba(40, 199, 111, .1);
}

.bg-blue-soft {
  background: rgba(15, 76, 129, .08);
}

.divider-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ahk-teal);
  margin: 0 .6rem;
  vertical-align: middle;
}

.loader {
  width: 44px;
  height: 44px;
  border: 4px solid var(--ahk-line);
  border-top-color: var(--ahk-teal);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
  .hero {
    padding: 3rem 0 4rem;
  }

  .quick-book {
    margin-top: 2rem;
  }

  .hero .floating-card {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .dash-shell {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: fixed;
    left: -280px;
    z-index: 1050;
    width: 260px;
    height: 100vh;
    transition: left .3s;
  }

  .dash-sidebar.open {
    left: 0;
  }

  .dash-main {
    padding: 1rem;
  }
}

@media (max-width: 575px) {
  .form-card {
    padding: 1.5rem;
  }

  .cta-band {
    padding: 2rem 1.4rem;
  }

  .site-nav .brand-sub {
    display: none;
  }
}

/* ============ Scroll to top ============ */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ahk-primary);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: var(--ahk-shadow);
  z-index: 999;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

.scroll-top:hover {
  background: var(--ahk-teal);
  transform: translateY(-3px);
}

.scroll-top.visible {
  display: grid;
}

/* ============ WhatsApp Float ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .6);
  animation: wa-pulse 2.4s infinite;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08) rotate(-6deg);
  color: #fff;
  background: #1ebc57;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .5);
}

.wa-float .wa-bubble {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #fff;
  color: var(--ahk-ink);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .55rem .9rem;
  border-radius: 999px;
  box-shadow: var(--ahk-shadow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  font-family: var(--font-body);
}

.wa-float .wa-bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4), 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 575px) {
  .wa-float {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 72px;
  }

  .wa-float .wa-bubble {
    display: none;
  }

  .scroll-top {
    right: 16px;
    bottom: 138px;
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .wa-float {
    bottom: 80px;
  }

  .scroll-top {
    bottom: 152px;
  }
}


/* ============ Service Hero Cards (image-top, Manju-style) ============ */
.svc-hero-card {
  background: #fff;
  border-radius: var(--ahk-radius-lg);
  overflow: hidden;
  box-shadow: var(--ahk-shadow-sm);
  transition: all .4s cubic-bezier(.2, .7, .2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ahk-line);
}

.svc-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ahk-shadow-lg);
  border-color: transparent;
}

.svc-hero-card .svc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--ahk-bg);
}

.svc-hero-card .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc-hero-card:hover .svc-img img {
  transform: scale(1.08);
}

.svc-hero-card .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 76, 129, .35));
  opacity: 0;
  transition: opacity .3s;
}

.svc-hero-card:hover .svc-img::after {
  opacity: 1;
}

.svc-hero-card .svc-body {
  padding: 1.6rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-hero-card .svc-body h4 {
  font-size: 1.25rem;
  margin-bottom: .55rem;
  font-family: var(--font-heading);
}

.svc-hero-card .svc-body p {
  color: var(--ahk-muted);
  font-size: .96rem;
  margin-bottom: 1.1rem;
  flex: 1;
}

.svc-hero-card .svc-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ahk-teal);
  font-weight: 600;
  font-size: .95rem;
  align-self: flex-start;
  padding: .5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, gap .25s ease;
}

.svc-hero-card:hover .svc-cta {
  border-bottom-color: var(--ahk-teal);
  gap: .8rem;
}

.svc-hero-card .svc-cta i {
  transition: transform .3s ease;
}

.svc-hero-card:hover .svc-cta i {
  transform: translateX(4px);
}

/* Featured mini-card (Manju's 4-col row) */
.svc-mini {
  padding: 1.6rem 1.4rem;
  border-radius: var(--ahk-radius);
  background: #fff;
  border: 1px solid var(--ahk-line);
  height: 100%;
  transition: all .3s;
}

.svc-mini:hover {
  border-color: var(--ahk-teal);
  box-shadow: var(--ahk-shadow);
  transform: translateY(-4px);
}

.svc-mini .mini-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 76, 129, .08), rgba(31, 162, 166, .14));
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.svc-mini h5 {
  font-size: 1.08rem;
  margin-bottom: .55rem;
}

.svc-mini p {
  color: var(--ahk-muted);
  font-size: .9rem;
  margin-bottom: .9rem;
}

.svc-mini .learn-link {
  color: var(--ahk-teal);
  font-weight: 600;
  font-size: .88rem;
}

.svc-mini-cta {
  padding: 1.8rem 1.4rem;
  border-radius: var(--ahk-radius);
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.svc-mini-cta::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.svc-mini-cta h5 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}

.svc-mini-cta p {
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.svc-mini-cta .learn-link {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  position: relative;
  z-index: 1;
}

/* ============ Hero Call Card (right rail) ============ */
.hero-call-card {
  background: #fff;
  border-radius: var(--ahk-radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--ahk-shadow-lg);
  color: var(--ahk-ink);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
}

.hero-call-card .hc-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ahk-green), var(--ahk-green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-call-card .hc-label {
  font-size: .78rem;
  color: var(--ahk-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-call-card .hc-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ahk-ink);
}

.hero-call-card .hc-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ahk-primary);
  font-weight: 700;
  margin-top: .2rem;
}

/* ============ Who We Are section ============ */
.who-img-stack {
  position: relative;
  padding-bottom: 4rem;
  padding-right: 3rem;
}

.who-img-stack .who-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--ahk-radius-lg);
  box-shadow: var(--ahk-shadow);
  display: block;
}

.who-img-stack .who-img.small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  aspect-ratio: 3/4;
  border: 6px solid #fff;
  box-shadow: var(--ahk-shadow-lg);
}

@media (max-width: 767px) {
  .who-img-stack {
    padding-bottom: 2rem;
    padding-right: 1.5rem;
  }

  .who-img-stack .who-img.small {
    width: 50%;
  }
}

.who-tick {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.who-tick .wt-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(40, 199, 111, .14);
  color: var(--ahk-green-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.who-tick h5 {
  font-size: 1.05rem;
  margin-bottom: .2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.who-tick p {
  color: var(--ahk-muted);
  margin: 0;
  font-size: .93rem;
}

/* ============ Independent Seniors Section ============ */
.indep-band {
  background: linear-gradient(135deg, #0F4C81, #1FA2A6);
  color: #fff;
  border-radius: var(--ahk-radius-lg);
  overflow: hidden;
  position: relative;
}

.indep-band .indep-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.indep-band h2 {
  color: #fff;
}

.indep-band .play-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .4);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

/* ============ Need More Help (3-col support) ============ */
.help-card {
  background: #fff;
  border-radius: var(--ahk-radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid var(--ahk-line);
  transition: all .3s;
  height: 100%;
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
  border-color: transparent;
}

.help-card .help-ic {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  color: #fff;
  font-size: 1.6rem;
}

.help-card h5 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.help-card p {
  color: var(--ahk-muted);
  font-size: .93rem;
  margin-bottom: 1.2rem;
}

/* ============ Team card ============ */
.team-card {
  text-align: center;
}

.team-card .tc-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--ahk-radius);
  position: relative;
  margin-bottom: 1rem;
}

.team-card .tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.team-card:hover .tc-img img {
  transform: scale(1.06);
}

.team-card .tc-social {
  position: absolute;
  inset: auto 0 -50px 0;
  padding: .7rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(180deg, transparent, rgba(15, 76, 129, .9));
  transition: bottom .35s ease;
}

.team-card:hover .tc-social {
  inset: auto 0 0 0;
}

.team-card .tc-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
}

.team-card .tc-social a:hover {
  background: #fff;
  color: var(--ahk-primary);
}

.team-card h5 {
  font-size: 1rem;
  margin-bottom: .2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.team-card .tc-role {
  font-size: .85rem;
  color: var(--ahk-teal);
}

/* ============ Testimonials — Manju-style horizontal slider ============ */
.testi-slider .swiper-slide {
  height: auto;
}

.testi-slider .testi-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ============ Print-friendly ============ */
@media print {

  .topbar,
  .site-nav,
  .site-footer,
  .scroll-top,
  .wa-float {
    display: none !important;
  }
}

/* ============ Service Detail Page ============ */
.sd-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 1.2rem;
}

@media (max-width: 575px) {
  .sd-feature-grid {
    grid-template-columns: 1fr;
  }
}

.sd-check-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.sd-check-item .check-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(40, 199, 111, .14);
  color: var(--ahk-green-dark);
  display: grid;
  place-items: center;
  font-size: .7rem;
  margin-top: .15rem;
}

.sd-check-item span {
  font-size: .93rem;
  color: var(--ahk-ink);
  font-weight: 500;
  line-height: 1.4;
}

.sd-target-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--ahk-line);
}

.sd-target-item:last-child {
  border-bottom: none;
}

.sd-target-item .tgt-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ahk-teal);
  margin-top: .5rem;
}

.sd-target-item span {
  font-size: .95rem;
  color: var(--ahk-body);
}

.sd-protocol-step {
  text-align: center;
  padding: .5rem;
}

.sd-protocol-step .step-bubble {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--ahk-shadow-sm);
  margin: 0 auto 1rem;
}

.sd-protocol-step h5 {
  font-size: .95rem;
  margin-bottom: .4rem;
}

.sd-protocol-step p {
  font-size: .85rem;
  color: var(--ahk-muted);
  line-height: 1.5;
  margin: 0;
}

.sd-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .8rem;
  border-radius: 10px;
  text-decoration: none;
  background: var(--ahk-bg);
  transition: background .2s ease, transform .2s ease;
  margin-bottom: .35rem;
}

.sd-sidebar-link:hover {
  background: var(--ahk-line);
  transform: translateX(3px);
}

.sd-sidebar-link span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ahk-ink);
}

.sd-sidebar-link i {
  color: var(--ahk-primary);
  font-size: .78rem;
}

/* object-fit helper (for older Bootstrap versions) */
.object-fit-cover {
  object-fit: cover;
}

/* ============ Partner / Join Page ============ */

/* Hero overrides */
.partner-hero-head {
  padding: 5rem 0 3.5rem;
}

.partner-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: .45rem 1.2rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.partner-eyebrow-pill i {
  color: var(--ahk-green);
}

/* Stats strip */
.partner-stats-strip {
  background: var(--ahk-ink);
  color: #fff;
  padding: 1.6rem 0;
  margin-top: -1px;
  border-bottom: 3px solid var(--ahk-teal);
}

.pss-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ahk-green);
  line-height: 1;
}

.pss-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .3rem;
  letter-spacing: .04em;
}

/* Role cards */
.partner-role-card {
  background: #fff;
  border: 1px solid var(--ahk-line);
  border-radius: var(--ahk-radius-lg);
  padding: 2rem 1.6rem;
  transition: all .35s cubic-bezier(.2, .7, .2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.partner-role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ahk-primary), var(--ahk-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.partner-role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
  border-color: transparent;
}

.partner-role-card:hover::before {
  transform: scaleX(1);
}

.prc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--ahk-shadow-sm);
}

.partner-role-card h5 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.partner-role-card p {
  color: var(--ahk-muted);
  font-size: .92rem;
  margin-bottom: 1rem;
}

.prc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.prc-tags span {
  padding: .25rem .65rem;
  font-size: .75rem;
  font-weight: 600;
  background: var(--ahk-bg);
  color: var(--ahk-primary);
  border-radius: 999px;
  border: 1px solid var(--ahk-line);
}

/* Benefits */
.partner-benefit {
  background: #fff;
  border: 1px solid var(--ahk-line);
  border-radius: var(--ahk-radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
  height: 100%;
  transition: all .3s;
}

.partner-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--ahk-shadow);
  border-color: var(--ahk-teal);
}

.pb-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 76, 129, .1);
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.partner-benefit h5 {
  font-size: 1.02rem;
  margin-bottom: .4rem;
}

.partner-benefit p {
  color: var(--ahk-muted);
  font-size: .88rem;
  margin: 0;
}

/* Onboarding steps (vertical timeline) */
.partner-steps {
  max-width: 640px;
  margin: 0 auto;
}

.ps-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--ahk-line);
  border-radius: var(--ahk-radius);
  padding: 1.6rem 1.5rem;
  transition: all .3s;
}

.ps-step:hover {
  border-color: var(--ahk-teal);
  box-shadow: var(--ahk-shadow);
  transform: translateX(6px);
}

.ps-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ahk-primary), var(--ahk-teal));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: var(--ahk-shadow-sm);
}

.ps-content h5 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.ps-content p {
  font-size: .9rem;
  color: var(--ahk-muted);
  margin: 0;
}

.ps-connector {
  text-align: center;
  padding: .5rem 0;
  color: var(--ahk-line);
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
}

/* Form card extensions */
.partner-form-card {
  border: 2px solid transparent;
  background-clip: padding-box;
}

.partner-form-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ahk-green), var(--ahk-green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.partner-section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  color: var(--ahk-teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: .5rem;
  margin-bottom: .8rem;
  border-bottom: 1.5px solid var(--ahk-line);
}

/* ============ Premium Services Section & Cards ============ */
.services-page-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 5rem 0 5.5rem;
}

.services-heart-bg {
  position: absolute;
  right: -80px;
  top: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(179, 56, 100, 0.04) 0%, rgba(179, 56, 100, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.services-header-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f4c81;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  position: relative;
}

.services-header-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ahk-ink);
  z-index: 2;
  position: relative;
  line-height: 1.2;
}

.services-header-title .text-pink {
  color: #0f4c81;
}

.services-title-deco {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f4c81;
}

.services-title-deco .deco-line {
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: #0f4c81;
  opacity: 0.7;
}

.services-header-sub {
  font-size: 0.95rem;
  color: var(--ahk-muted);
  max-width: 480px;
  line-height: 1.6;
  display: inline-block;
  z-index: 2;
  position: relative;
  margin-bottom: 12px;
}

.btn-explore-services {
  background: #0f4c81;
  color: #fff;
  border: 2px solid #0f4c81;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  z-index: 2;
  position: relative;
}

.btn-explore-services:hover {
  background: #96254f;
  border-color: #96254f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 56, 100, 0.25);
}

.svc-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--ahk-line);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
}

.sc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .sc-img-wrap img {
  transform: scale(1.05);
}

.sc-icon-overlap {
  position: absolute;
  bottom: 8px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #ffffff;
  z-index: 10;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sc-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 28px;
  z-index: 4;
}

.sc-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sc-content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.sc-content h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ahk-ink);
  margin-bottom: 8px;
}

.sc-content p {
  font-size: 0.88rem;
  color: var(--ahk-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}

.sc-divider {
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  margin: 0 0 16px;
}

.sc-ticks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.sc-tick {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ahk-ink);
}

.sc-tick i {
  font-size: 1rem;
  flex-shrink: 0;
}

.sc-learn-link {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.sc-learn-link i {
  transition: transform 0.25s ease;
}

.sc-learn-link:hover i {
  transform: translateX(4px);
}

/* Card Categories specific colors */
.sc-pink .sc-icon-overlap {
  background: #EC4899;
}

.sc-pink .sc-tick i {
  color: #EC4899;
}

.sc-pink .sc-learn-link {
  color: #EC4899;
}

.sc-pink:hover {
  border-color: rgba(236, 72, 153, 0.3);
}

.sc-blue .sc-icon-overlap {
  background: #3B82F6;
}

.sc-blue .sc-tick i {
  color: #3B82F6;
}

.sc-blue .sc-learn-link {
  color: #3B82F6;
}

.sc-blue:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.sc-teal .sc-icon-overlap {
  background: #14B8A6;
}

.sc-teal .sc-tick i {
  color: #14B8A6;
}

.sc-teal .sc-learn-link {
  color: #14B8A6;
}

.sc-teal:hover {
  border-color: rgba(20, 184, 166, 0.3);
}

/* ============ Meet Our Team/Staff Section ============ */
.team-section {
  background: #ffffff;
  padding: 5rem 0;
}

.team-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f4c81;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.team-eyebrow .t-line {
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: #0f4c81;
}

.team-section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ahk-ink);
}

.team-section-title .text-pink {
  color: #0f4c81;
}

.team-sub {
  font-size: 0.95rem;
  color: var(--ahk-muted);
  max-width: 620px;
  line-height: 1.6;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--ahk-line);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ahk-shadow-lg);
  border-color: rgba(179, 56, 100, 0.2);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(40, 199, 111, 0.95);
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.team-info {
  padding: 24px;
}

.team-info h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ahk-ink);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ahk-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* .team-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ahk-ink);
}

.team-rating i {
  color: #FFB020;
  margin-right: 4px;
} */




/* ============ Meet Our Team (Administrative) Section ============ */
.team-admin-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.admin-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--ahk-line);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
}

.admin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ahk-shadow-md);
  border-color: rgba(179, 56, 100, 0.25);
}

.admin-img-wrap {
  background: #f0f2f5;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}

.admin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.admin-card:hover .admin-img-wrap img {
  transform: scale(1.04);
}

.admin-info {
  padding: 16px 10px 5px;
}

.admin-info h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f4c81;
  margin-bottom: 6px;
}

.admin-role {
  font-size: 0.76rem;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

/* Swiper Slider relative containers and navigation buttons styling */
.swiper-container-relative {
  position: relative;
}

.swiper-container-relative .swiper-button-prev,
.swiper-container-relative .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--ahk-line);
  border-radius: 50%;
  color: var(--ahk-primary);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  z-index: 12;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiper-container-relative .swiper-button-prev::after,
.swiper-container-relative .swiper-button-next::after {
  display: none;
  /* Hide default swiper font icon */
}

.swiper-container-relative .swiper-button-prev {
  left: -22px;
}

.swiper-container-relative .swiper-button-next {
  right: -22px;
}

.swiper-container-relative .swiper-button-prev:hover,
.swiper-container-relative .swiper-button-next:hover {
  background: #0f4c81;
  border-color: #0f4c81;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(179, 56, 100, 0.25);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 991px) {
  .swiper-container-relative .swiper-button-prev {
    left: -10px;
  }

  .swiper-container-relative .swiper-button-next {
    right: -10px;
  }
}

@media (max-width: 768px) {

  .swiper-container-relative .swiper-button-prev,
  .swiper-container-relative .swiper-button-next {
    display: none !important;
  }
}

/* ============ Call To Action Banner Section ============ */
.cta-banner-section {
  background: linear-gradient(rgba(15, 76, 129, 0.15), rgba(15, 76, 129, 0.15)),
    url('../media/cta.jpeg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 8rem 0;
  position: relative;
}

.cta-glass-box {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  color: #ffffff;
  border-right: 6px solid var(--ahk-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.cta-glass-box h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.cta-glass-box p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.btn-cta-started {
  background: var(--ahk-green);
  color: #ffffff;
  border: 2px solid var(--ahk-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  /* Pill-shaped */
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta-started:hover {
  background: var(--ahk-green-dark);
  border-color: var(--ahk-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 199, 111, 0.35);
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 5rem 0;
  }

  .cta-glass-box {
    padding: 2rem;
    border-right: none;
    border-bottom: 6px solid var(--ahk-green);
  }

  .cta-glass-box h3 {
    font-size: 1.8rem;
  }
}

/* ============ How It Works (Dark Cutout Style) ============ */
.how-works-dark-section {
  background: #0e302f;
  color: #ffffff;
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.hw-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ahk-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.hw-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #FAF7F2;
  line-height: 1.25;
}

.hw-title .text-white {
  color: #ffffff;
}

.hw-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 320px;
}

.hw-ticks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-tick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.hw-tick-item i {
  color: #28C76F;
  font-size: 1.05rem;
}

/* Middle Nurse col layout */
.hw-nurse-col {
  padding-bottom: 0;
  margin-bottom: 0;
  z-index: 5;
}

.hw-nurse-img-wrap {
  position: relative;
  margin-bottom: -2px;
  /* Flush bottom edge integration */
  width: 100%;
  display: flex;
  justify-content: center;
}

.hw-nurse-img {
  max-height: 575px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Steps Stack (Right) */
.hw-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 5rem;
  z-index: 6;
  position: relative;
}

.hw-step-box {
  background: #FAF7F2;
  border-radius: 4px;
  padding: 22px 26px;
  color: #0e302f;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  text-align: left;
}

.hw-step-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.hw-step-box h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.12rem;
  color: #0e302f;
  margin-bottom: 6px;
}

.hw-step-box p {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .how-works-dark-section {
    padding: 4rem 0;
  }

  .hw-steps-stack {
    padding-bottom: 0;
  }

  .hw-desc {
    max-width: 100%;
  }
}

/* Theme-blue override for how-it-works */
.how-works-blue {
  background: var(--ahk-primary);
  /* Theme blue #0F4C81 */
  padding: 1.5rem 0 0 !important;
  /* Compact height & flush bottom */
}

.how-works-blue .hw-eyebrow {
  color: #ffffff;

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.how-works-blue .hw-eyebrow .t-line {
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: #ffffff;
}

.how-works-blue .hw-tick-item i {
  color: #90caf9;
}

.how-works-blue .hw-steps-stack {
  padding-bottom: 1.5rem;
  gap: 8px;
  /* Tighter gap between boxes */
}

.how-works-blue .hw-step-box {
  padding: 10px 18px;
  /* Compact box */
}

.how-works-blue .hw-step-box h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.how-works-blue .hw-step-box p {
  font-size: 0.8rem;
}

.how-works-blue .hw-nurse-img {
  max-height: 575px;
}

@media (max-width: 768px) {
  .how-works-blue {
    padding: 1.5rem 0;
  }

  .how-works-blue .hw-steps-stack {
    padding-bottom: 0;
  }
}

/* Left col flex layout — title center, ticks pinned bottom */
.hw-row-stretch {
  min-height: 300px;
  /* Ensure row has height for flex alignment */
}

.hw-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* top = title, bottom = ticks */
  padding-bottom: 0.5rem;
}

.hw-left-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center the title block */
}

.hw-left-bottom {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* Arrow connectors between step cards */
.hw-step-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1;
  height: 10px;
  position: relative;
}

.hw-step-arrow i {
  animation: hw-arrow-bounce 1.4s ease-in-out infinite;
}

@keyframes hw-arrow-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hw-left-col {
    padding-bottom: 1rem;
    min-height: unset;
  }

  .hw-row-stretch {
    min-height: unset;
  }

  .hw-left-top {
    justify-content: flex-start;
  }
}

/* ============ Why Choose Us — New Split Layout ============ */
.wcu-section {
  padding: 0 0 0;
  overflow: visible;
  background: #f0f4f8;
  /* Background behind the overlapping cards */
}

/* Top half: image left + dark panel right */
.wcu-top-split {
  display: flex;
  min-height: 400px;
}

.wcu-img-panel {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  position: relative;
}

.wcu-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wcu-content-panel {
  flex: 0 0 50%;
  max-width: 50%;
  background: #0F2340;
  /* Deep navy matching mockup */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  color: #ffffff;
}

.wcu-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e35c5c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.wcu-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.wcu-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 380px;
  margin: 0;
}

/* Bottom feature cards row */
.wcu-cards-row {
  background: transparent;
  padding: 0 0 2.5rem;
  margin-top: -60px;
  /* Negative margin — cards overlap bottom of banner */
  position: relative;
  z-index: 5;
}

.wcu-feature-row {
  width: 100%;
}

.wcu-card {
  background: #ffffff;
  padding: 2rem 1.6rem;
  border-radius: 10px;
  border: 1px solid #e8edf2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: all 0.25s ease;
  cursor: default;
}

.wcu-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: rgba(227, 92, 92, 0.25);
}

.wcu-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fde8e8;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: background 0.25s ease;
}

.wcu-card:hover .wcu-card-icon {
  background: #e35c5c;
}

.wcu-card-icon i {
  font-size: 1.25rem;
  color: #e35c5c;
  transition: color 0.25s ease;
}

.wcu-card:hover .wcu-card-icon i {
  color: #ffffff;
}

.wcu-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #0F2340;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.wcu-card p {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .wcu-top-split {
    flex-direction: column;
  }

  .wcu-img-panel,
  .wcu-content-panel {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .wcu-img-panel {
    height: 280px;
  }

  .wcu-content-panel {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 576px) {
  .wcu-cards-row {
    padding: 1.5rem 0;
  }

  .wcu-img-panel {
    height: 220px;
  }

  .wcu-content-panel {
    padding: 2rem 1.5rem;
  }
}


/* ============================================================
   TESTIMONIAL — New Mockup Design (Image slide + overlay card)
   ============================================================ */
.testi-new-section {
  background: #eef2f7;
  padding: 5rem 0 4rem;
  font-family: var(--font-body);
}

/* Split header row */
.testi-header-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.testi-head-left {
  flex: 0 0 auto;
  max-width: 340px;
}

.testi-head-right {
  flex: 1;
  padding-top: 0.4rem;
}

.testi-head-right p {
  font-size: 0.95rem;
  color: var(--ahk-body);
  line-height: 1.7;
  max-width: 500px;
  margin: 0;
}

.testi-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e35c5c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.testi-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ahk-ink);
  line-height: 1.2;
  margin: 0;
}

/* Slider wrapper */
.testi-slider-wrap {
  padding-bottom: 1rem;
}

/* Static bg-image panel — image never moves */
.testi-bg-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 480px;
}

.testi-static-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Swiper lives inside the panel, positioned at bottom-left */
.testi-bg-panel .testi-slider {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: min(460px, 46%);
  z-index: 3;
  overflow: hidden;
  /* clips slides as they move */
}

/* Dark navy overlay card — fills the slide */
.testi-overlay-card {
  background: rgba(10, 25, 60, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1.8rem 1.8rem 1.4rem;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
}

/* Large decorative quote icon top-left */
.testi-quote-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Review text — italic */
.testi-review-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

/* Author name + role */
.testi-author-block strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-style: normal;
}

.testi-author-block span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

/* Pagination dots */
.testi-pagination .swiper-pagination-bullet {
  background: var(--ahk-primary);
  opacity: 0.3;
}

.testi-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ahk-primary);
}

@media (max-width: 768px) {
  .testi-new-section {
    padding: 3rem 0 2.5rem;
  }

  .testi-header-row {
    flex-direction: column;
    gap: 1rem;
  }

  .testi-head-left {
    max-width: 100%;
  }

  .testi-bg-panel {
    height: 420px;
  }

  .testi-bg-panel .testi-slider {
    width: calc(100% - 2rem);
    left: 1rem;
    bottom: 1rem;
  }
}


/* ============================================================
   PAGE HEADER — bg-image + overlay (all inner pages)
   ============================================================ */
.page-head {
  --ph-bg: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1600&q=80');
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background-image: var(--ph-bg);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

/* Dark gradient overlay */
.page-head::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  background: linear-gradient(135deg,
      rgba(4, 12, 30, 0.92) 0%,
      rgba(8, 40, 75, 0.85) 100%) !important;
  z-index: 1 !important;
}

/* Content sits above overlay */
.page-head .container {
  position: relative;
  z-index: 2;
}

.page-head h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-head p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

/* Breadcrumb inside page-head */
.page-head .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0.5rem 0 0;
  justify-content: center;
}

.page-head .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.page-head .breadcrumb-item a:hover {
  color: #ffffff;
}

.page-head .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.page-head .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Per-page bg-image overrides via PHP variable */
.page-head-about {
  --ph-bg: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&w=1600&q=80');
}

.page-head-contact {
  --ph-bg: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1600&q=80');
}

.page-head-services {
  --ph-bg: url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1600&q=80');
}

.page-head-service-detail {
  --ph-bg: url('https://images.unsplash.com/photo-1527613426441-4da17471b66d?auto=format&fit=crop&w=1600&q=80');
}

.page-head-book {
  --ph-bg: url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?auto=format&fit=crop&w=1600&q=80');
}

.page-head-legal {
  --ph-bg: url('https://images.unsplash.com/photo-1450133064473-71024230f91b?auto=format&fit=crop&w=1600&q=80');
}

@media (max-width: 768px) {
  .page-head {
    min-height: 200px;
    padding: 3rem 0 2rem;
  }
}


/* ============================================================
   UNIVERSAL TYPOGRAPHY & COLOR CONSISTENCY
   ============================================================ */

/* Consistent section padding */
.section {
  padding: 5rem 0;
}

/* Consistent section title */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ahk-ink);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

/* Consistent eyebrow label used across all sections */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ahk-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Consistent section subtitle / sub text */
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ahk-body);
  line-height: 1.7;
  max-width: 580px;
}

/* Consistent body text inside cards/sections */
p {
  font-family: var(--font-body);
  color: var(--ahk-body);
  line-height: 1.7;
}

/* Consistent heading font for h1–h6 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--ahk-ink);
}

/* Accent color for spans */
.text-accent {
  color: var(--ahk-teal);
}

.text-pink {
  color: #e35c5c;
}

.text-primary {
  color: var(--ahk-primary) !important;
}

/* Smooth image rendering */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.call-nav {
  background: #ffffff;
  color: var(--ahk-primary);
}

.call-nav:hover {
  background: #f8f9fa;
  color: var(--ahk-primary-dark);
}

.book-nav {
  background: var(--ahk-primary);
  color: #ffffff;
}

.book-nav:hover {
  background: var(--ahk-primary-dark);
  color: #ffffff;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 56px;
  }
}

/* ============================================================
   RESPONSIVE NAVIGATION BAR & LOGO ENHANCEMENTS
   ============================================================ */

/* Header Logo Sizing & Transition */
.site-nav .header-logo-img {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Smooth shrink on scroll (Desktop) */
.site-nav.scrolled .header-logo-img {
  height: 45px;
}

/* Tablet viewports (Large mobile / ipad) */
@media (max-width: 991px) {
  .site-nav .header-logo-img {
    height: 80px; /* Big logo on small screens */
  }
  .site-nav.scrolled .header-logo-img {
    height: 65px;
  }
  
  /* Collapsed Mobile Menu Layout & Animation */
  .site-nav .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 0.75rem;
    box-shadow: var(--ahk-shadow-lg);
    border: 1px solid rgba(31, 162, 166, 0.12);
  }
  
  .site-nav .navbar-nav {
    gap: 0.5rem;
  }
  
  .site-nav .nav-link {
    padding: 0.8rem 1.2rem !important;
    border-radius: 10px;
    transition: all 0.25s ease;
  }
  
  .site-nav .nav-link:hover,
  .site-nav .nav-link.active {
    background: rgba(31, 162, 166, 0.08);
    color: var(--ahk-teal) !important;
    padding-left: 1.6rem !important;
  }
  
  .site-nav .nav-link.active::after {
    display: none; /* Hide the line indicator on mobile */
  }
  
  /* Dropdown customizations on mobile */
  .site-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    background: rgba(15, 76, 129, 0.03);
    padding-left: 1rem;
    margin-top: 0.2rem;
    border-left: 2px solid rgba(31, 162, 166, 0.2);
    border-radius: 0;
  }
}

/* Extra Small mobile viewports */
@media (max-width: 575px) {
  .site-nav .header-logo-img {
    height: 90px; /* Very big logo on small screen */
  }
  .site-nav.scrolled .header-logo-img {
    height: 70px; /* Moderately sized when scrolled */
  }
}

/* Footer Logo & Brand Column Styling */
.site-footer .footer-logo-img {
  height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 991px) {
  .site-footer .footer-brand-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  
  .site-footer .footer-brand-col .social {
    justify-content: center;
    display: flex;
    width: 100%;
    margin-top: 1.2rem;
  }
  
  .site-footer .footer-brand {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .site-footer .footer-logo-img {
    height: 110px; /* Very big footer logo on small screen */
  }
}