/* ═══════════════════════════════════════════════════════════════
   KEZZA CLINIC — LUXURY SKIN CARE & DERMATOLOGY STYLESHEET
   Clean White / Pearl Executive Aesthetic with Gold Accents
   ═══════════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00AFC0;
  --primary-dark: #008F9C;
  --primary-light: #e6f9fb;
  --navy: #0c2338;
  --navy-dark: #071524;
  --navy-light: #163654;
  --gold: #00AFC0;
  --gold-light: #b3ecf3;
  --gold-dark: #006d77;
  --white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-pearl: #faf8f5;
  --border-light: #e2ecf3;
  --border-gold: rgba(0, 175, 192, 0.35);
  --text-main: #334155;
  --text-muted: #64748b;
  --shadow-sm: 0 4px 12px rgba(12, 35, 56, 0.05);
  --shadow-md: 0 12px 30px rgba(12, 35, 56, 0.08);
  --shadow-lg: 0 20px 45px rgba(12, 35, 56, 0.12);
  --shadow-gold: 0 10px 30px rgba(0, 175, 192, 0.18);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 0 95px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

/* ─── Social Floating Sidebar ───────────────────────────────────── */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 10px;
  background: rgba(10, 14, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 40px;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201, 168, 76, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .social-sidebar {
    left: 8px;
    gap: 8px;
    padding: 10px 6px;
    transform: translateY(-50%) scale(0.88);
  }
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none !important;
  }
}

.social-sidebar:hover {
  border-color: #00AFC0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(201, 168, 76, 0.35);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover { transform: scale(1.18); }
.social-icon.instagram { color: #ff5480; }
.social-icon.instagram:hover { background: #E4405F; color: #fff; box-shadow: 0 5px 18px rgba(228, 64, 95, 0.6); }
.social-icon.facebook { color: #3b82f6; }
.social-icon.facebook:hover { background: #1877F2; color: #fff; box-shadow: 0 5px 18px rgba(24, 119, 242, 0.6); }
.social-icon.google { color: #fbbc05; }
.social-icon.google:hover { background: #4285F4; color: #fff; box-shadow: 0 5px 18px rgba(66, 133, 244, 0.6); }
.social-icon.whatsapp { color: #25d366; }
.social-icon.whatsapp:hover { background: #25D366; color: #fff; box-shadow: 0 5px 18px rgba(37, 211, 102, 0.6); }

@media (max-width: 768px) {
  .social-sidebar { left: 8px; gap: 8px; padding: 12px 6px; }
  .social-icon { width: 36px; height: 36px; font-size: 16px; }
}

/* ─── Navigation Header ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 2px 14px rgba(12, 35, 56, 0.04);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 38px !important;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 175, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 175, 192, 0.45);
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 14px;
}

.btn-nav-call i {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM GOLD ACCENTS & CLINICAL DIVIDERS
   ═══════════════════════════════════════════════════════════════ */
.gold-accent-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, #006d77 0%, #00AFC0 50%, #00AFC0 100%);
  border-radius: 4px;
  margin: 10px 0 16px 0;
  box-shadow: 0 1px 8px rgba(0, 175, 192, 0.4);
}

.gold-accent-line.centered {
  margin: 10px auto 18px auto;
}

.section-gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 32px auto;
  opacity: 0.9;
  padding: 0 20px;
}

.section-gold-divider .gold-divider-line,
.gold-divider-line {
  flex: 1 1 auto;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.45) 50%, transparent 100%);
}

.gold-divider-gem,
.section-gold-divider i.fa-gem,
.section-gold-divider i.fa-diamond {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION — EXECUTIVE WHITE / PEARL CLINICAL THEME
   ═══════════════════════════════════════════════════════════════ */
.skin-hero-section {
  min-height: auto;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 55%, rgba(0, 175, 192, 0.08) 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.skin-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(0, 175, 192, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 0 95px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .skin-hero-section {
    padding: 90px 0 40px;
  }
  .hero-container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 175, 192, 0.08);
  border: 1px solid rgba(0, 175, 192, 0.25);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 30px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, #0096a6 0%, #00c4d6 50%, #006d77 100%);
  color: #0c2338;
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.5);
  filter: brightness(1.06);
}

.btn-navy {
  background: var(--navy);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid rgba(0, 175, 192, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-navy:hover {
  background: #14324f;
  border-color: #00AFC0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 35, 56, 0.25);
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 35, 56, 0.12), 0 0 0 1px #e2ecf3;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE SUB-NAVIGATION JUMP PILLS
   ═══════════════════════════════════════════════════════════════ */
.skin-subnav-section {
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
  padding: 12px 0;
  position: sticky;
  top: 68px;
  z-index: 90;
  box-shadow: 0 4px 18px rgba(12, 35, 56, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.skin-subnav-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 6px;
}

.skin-subnav-pills::-webkit-scrollbar {
  display: none;
}

.subnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.subnav-pill:hover,
.subnav-pill.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 35, 56, 0.15);
}

.subnav-pill i {
  color: var(--primary);
  font-size: 0.8rem;
}

.subnav-pill:hover i,
.subnav-pill.active i {
  color: #00AFC0;
}

/* ═══════════════════════════════════════════════════════════════
   EXECUTIVE 2-COLUMN SERVICE SHOWCASE CARDS
   ═══════════════════════════════════════════════════════════════ */
.service-section-wrap,
.kezza-anchor,
#hydra-facial,
#acne,
#laser,
#pigmentation,
#anti-aging,
#stretch-marks,
#medical-derma,
#skin-process,
#patient-reviews,
#faq,
#consultation {
  scroll-margin-top: 140px;
}

.service-section-wrap {
  padding: 42px 0;
  background: #ffffff;
  position: relative;
}

.service-section-wrap.alt-bg {
  background: #fafbfc;
}

.service-showcase-split {
  background: #ffffff;
  border-radius: 26px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-showcase-split:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 175, 192, 0.12), 0 4px 14px rgba(12, 35, 56, 0.04);
  border-color: var(--primary);
}

.service-showcase-split.reverse {
  grid-template-columns: 1fr 1.15fr;
}

/* Media Frame with Floating Badges — Enlarged & Immersive */
.service-media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(12, 35, 56, 0.12);
  min-height: 520px;
  height: 100%;
  display: flex;
}

.service-media-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-showcase-split:hover .service-media-frame img {
  transform: scale(1.035);
}

.media-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(12, 35, 56, 0.92);
  color: #00AFC0;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 175, 192, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.media-badge-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 35, 56, 0.95) 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.media-badge-bottom i {
  color: var(--primary);
  font-size: 1rem;
}

/* Service Content Column */
.service-content-col {
  display: flex;
  flex-direction: column;
}

.service-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(0, 175, 192, 0.08);
  border: 1px solid rgba(0, 175, 192, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  width: fit-content;
}

.service-heading {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

/* Clinical Stat Grid */
.clinical-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  transition: all 0.25s ease;
}

.stat-box:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 175, 192, 0.12);
}

.stat-num {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Feature Checklist Grid */
.service-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 16px;
}

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

.feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 175, 192, 0.12);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.feat-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════
   CLINICAL SURGEON & DERMATOLOGIST COMMENT BOX
   ═══════════════════════════════════════════════════════════════ */
.surgeon-comment-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #00AFC0;
  border-radius: 12px;
  padding: 13px 16px;
  margin: 14px 0 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(12, 35, 56, 0.04);
  transition: all 0.3s ease;
}

.surgeon-comment-box:hover {
  border-color: #cbd5e1;
  border-left-color: #00AFC0;
  box-shadow: 0 6px 20px rgba(0, 175, 192, 0.15);
  transform: translateX(3px);
}

.surgeon-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c2338 0%, #1e3a5f 100%);
  border: 2px solid #00AFC0;
  color: #00AFC0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(12, 35, 56, 0.2);
}

.surgeon-quote-body {
  flex: 1;
}

.surgeon-header-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.surgeon-name {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0c2338;
}

.surgeon-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #006d77;
  background: rgba(0, 175, 192, 0.12);
  border: 1px solid rgba(0, 175, 192, 0.35);
  padding: 2px 7px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.surgeon-comment-text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #475569;
  font-style: italic;
  margin: 0 !important;
}

/* Service CTA Row */
.service-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-service-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
}

.btn-service-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}

.btn-service-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0c2338;
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(0, 175, 192, 0.5);
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.btn-service-book:hover {
  background: #14324f;
  border-color: #00AFC0;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12, 35, 56, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   PIGMENTATION & MEDICAL DERMATOLOGY CARD GRIDS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 6px;
}

.section-header p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 auto;
}

.pigmentation-cards,
.medical-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 10px;
}

.pigmentation-card,
.medical-card {
  background: #ffffff;
  border: 1.5px solid #e8eef3;
  border-top: 3.5px solid var(--primary);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pigmentation-card:hover,
.medical-card:hover {
  transform: translateY(-5px);
  border-top-color: #00AFC0;
  box-shadow: 0 16px 36px rgba(12, 35, 56, 0.1);
}

.pigmentation-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pigmentation-card:hover img {
  transform: scale(1.035);
}

.card-inner-pad {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pigmentation-card h3,
.medical-card h3,
.item-heading {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pigmentation-card p,
.medical-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 12px;
  flex-grow: 1;
}

.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s ease;
}

.card-action-link:hover {
  color: #006d77;
  transform: translateX(3px);
}

.medical-card {
  padding: 24px 20px;
  text-align: center;
}

.medical-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 175, 192, 0.1);
  border: 1px solid rgba(0, 175, 192, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.medical-card:hover .medical-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 175, 192, 0.4);
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════════
   EASY & PROFESSIONAL 6-STEP PATIENT TREATMENT JOURNEY
   ═══════════════════════════════════════════════════════════════ */
.treatment-process-section {
  padding: 46px 0 75px;
  background: #ffffff;
  position: relative;
}

.easy-journey-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  margin-bottom: 32px;
}

.journey-step-card {
  background: #ffffff;
  border: 1.5px solid #e2ecf3;
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 4px 18px rgba(12, 35, 56, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-step-card:hover {
  transform: translateY(-5px);
  border-color: #00AFC0;
  box-shadow: 0 16px 36px rgba(0, 175, 192, 0.12), 0 2px 6px rgba(12, 35, 56, 0.03);
}

.journey-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.journey-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, #173451 100%);
  color: #00AFC0;
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #00AFC0;
  box-shadow: 0 3px 10px rgba(12, 35, 56, 0.15);
  flex-shrink: 0;
}

.journey-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(0, 175, 192, 0.09);
  color: #008F9C;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.journey-step-card:hover .journey-icon-box {
  background: #00AFC0;
  color: #ffffff;
}

.journey-step-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 12px;
}

.journey-step-tag.phase-1 {
  background: rgba(0, 175, 192, 0.08);
  color: #008F9C;
  border: 1px solid rgba(0, 175, 192, 0.2);
}

.journey-step-tag.phase-2 {
  background: rgba(0, 175, 192, 0.1);
  color: #006d77;
  border: 1px solid rgba(0, 175, 192, 0.25);
}

.journey-title {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.journey-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.journey-benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #008F9C;
  background: rgba(0, 175, 192, 0.08);
  border: 1px solid rgba(0, 175, 192, 0.22);
  padding: 5px 11px;
  border-radius: 12px;
  width: fit-content;
}

.journey-benefit-pill i {
  color: #00AFC0;
}

.journey-flow-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: 1.5px solid #00AFC0;
  color: #006d77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: all 0.3s ease;
}

.journey-step-card:hover .journey-flow-arrow {
  background: #00AFC0;
  color: #ffffff;
  transform: translateY(-50%) translateX(2px);
}

/* Hide arrow on 3rd & 6th card (end of rows on desktop) */
.journey-step-card:nth-child(3) .journey-flow-arrow,
.journey-step-card:nth-child(6) .journey-flow-arrow {
  display: none;
}

/* 3-Pillar Confidence Bar */
.journey-confidence-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 30px;
  box-shadow: 0 4px 20px rgba(12, 35, 56, 0.04);
}

.confidence-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.confidence-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 175, 192, 0.12) 0%, rgba(0, 175, 192, 0.12) 100%);
  border: 1px solid rgba(0, 175, 192, 0.25);
  color: #008F9C;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.confidence-text {
  display: flex;
  flex-direction: column;
}

.confidence-text strong {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
}

.confidence-text span {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}

.confidence-divider {
  width: 1px;
  height: 38px;
  background: #e2e8f0;
}

/* ═══════════════════════════════════════════════════════════════
   VERIFIED PATIENT COMMENTS & RESULTS SECTION
   ═══════════════════════════════════════════════════════════════ */
.patient-comments-section {
  padding: 46px 0 52px !important;
  background: #fafbfc !important;
  position: relative;
}

.patient-comments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.patient-comment-card {
  background: #ffffff;
  border: 1.5px solid #e8eef3;
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(12, 35, 56, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.patient-comment-card:hover {
  transform: translateY(-5px);
  border-color: #00AFC0;
  box-shadow: 0 16px 36px rgba(0, 175, 192, 0.15), 0 4px 12px rgba(12, 35, 56, 0.04);
}

.patient-comment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.patient-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.patient-procedure-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #008F9C;
  background: rgba(0, 175, 192, 0.08);
  border: 1px solid rgba(0, 175, 192, 0.22);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  width: fit-content;
}

.patient-quote-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.patient-footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}

.patient-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #0c2338;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid #00AFC0;
  flex-shrink: 0;
}

.patient-author-info {
  display: flex;
  flex-direction: column;
}

.patient-author-name {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0c2338;
  line-height: 1.25;
}

.patient-author-loc {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FAQS ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 44px 0 54px;
  background: #ffffff;
  position: relative;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid #e2ecf3;
  box-shadow: 0 2px 8px rgba(12, 35, 56, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.final-cta-section {
  padding: 44px 0 48px;
  background: linear-gradient(135deg, rgba(0, 175, 192, 0.94) 0%, rgba(0, 143, 156, 0.94) 100%), url('../images/hero4.jpg') center/cover;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.final-cta-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  margin-bottom: 8px;
  font-weight: 700;
  color: #ffffff;
}

.final-cta-section p {
  font-size: 1rem;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
}

.btn-consultation {
  background: linear-gradient(135deg, #0c2338 0%, #1e293b 100%);
  color: #ffffff !important;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  padding: 13px 36px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-consultation:hover {
  transform: translateY(-2px);
  border-color: #00AFC0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 15px rgba(201, 168, 76, 0.3);
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-column .footer-nav-title,
p.footer-nav-title {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #00AFC0;
}

.footer-column p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: #94a3b8;
}

/* ─── Responsive Media Queries ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 68px;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 24px 0;
    z-index: 999;
  }
  .nav-menu.active { left: 0; }
  .nav-cta { display: none; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
    gap: 36px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image-wrap img {
    height: 360px;
  }
  .service-showcase-split,
  .service-showcase-split.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 24px;
  }
  .service-media-frame {
    height: 380px;
    min-height: 380px;
  }
  .service-media-frame img {
    min-height: 380px;
  }
  .easy-journey-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .journey-step-card:nth-child(3) .journey-flow-arrow {
    display: flex;
  }
  .journey-step-card:nth-child(2) .journey-flow-arrow,
  .journey-step-card:nth-child(4) .journey-flow-arrow,
  .journey-step-card:nth-child(6) .journey-flow-arrow {
    display: none;
  }
  .journey-confidence-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .confidence-divider {
    display: none;
  }
  .patient-comments-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.1rem; }
  .clinical-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-feat-grid {
    grid-template-columns: 1fr;
  }
  .service-media-frame {
    height: 300px;
    min-height: 300px;
  }
  .service-media-frame img {
    min-height: 300px;
  }
  .easy-journey-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-flow-arrow {
    display: none !important;
  }
  .btn-gold,
  .btn-navy {
    width: 100%;
    justify-content: center;
  }
}