/* ══════════════════════════════════════════
   SUKIRA AESTHETICS — SECTIONS
   Hero · Treatments · BA Slider · HIW · Team · Inner Pages
══════════════════════════════════════════ */

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; will-change: transform;
  background: linear-gradient(140deg, #050e25 0%, #0d1f4e 35%, #1339a0 68%, #3182FC 100%);
}
.hero-rays {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 75% 40%, rgba(49,130,252,.22) 0%, transparent 65%),
    radial-gradient(ellipse 500px 500px at 10% 80%, rgba(49,130,252,.12) 0%, transparent 65%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 72px; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1320px; margin: 0 auto;
  padding: 150px 32px 100px; width: 100%;
  display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 26px; backdrop-filter: blur(8px);
  animation: fadeUp .8s var(--ease) .2s both;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 8px rgba(74,222,128,.7); }
.hero-title { color: #fff; animation: fadeUp .8s var(--ease) .35s both; }
.hero-title em { display: block; color: #93c5fd; font-style: italic; margin-top: 0; }
.hero-sub {
  font-size: 16.5px; line-height: 1.73; color: rgba(255,255,255,.68);
  margin: 22px 0 38px; max-width: 510px; animation: fadeUp .8s var(--ease) .5s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s var(--ease) .65s both; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.13);
  animation: fadeUp .8s var(--ease) .8s both;
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: #fff; line-height: 1; }
.stat-lbl { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 5px; }

.hero-cards { display: flex; flex-direction: column; gap: 14px; animation: slideIn .9s var(--ease) .4s both; }
@keyframes slideIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.hero-card {
  background: rgba(255,255,255,.09); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 20px 24px;
}
.hc-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.hc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hc-tag {
  font-size: 12.5px; color: rgba(255,255,255,.8); font-weight: 500;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 4px 12px; border-radius: 50px; cursor: pointer; transition: background .2s;
}
.hc-tag:hover { background: rgba(255,255,255,.2); }
.hc-rating { display: flex; align-items: center; gap: 14px; }
.hc-score { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: #fff; line-height: 1; }
.hc-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 4px; }
.hc-meta { font-size: 12px; color: rgba(255,255,255,.5); }
.hc-badge { font-size: 11px; color: #4ade80; font-weight: 600; margin-top: 4px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Float animations for hero cards */
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-cards .hero-card:nth-child(1) { animation: floatA 5s ease-in-out infinite; }
.hero-cards .hero-card:nth-child(2) { animation: floatB 6s ease-in-out 1s infinite; }
.hero-cards .hero-card:nth-child(3) { animation: floatA 4.5s ease-in-out .5s infinite; }
.hero-cards .hero-card:nth-child(4) { animation: floatB 5.5s ease-in-out 1.5s infinite; }

/* ── TREATMENT CARDS ── */
.tc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.tc-card {
  border-radius: 16px; overflow: hidden; cursor: pointer; border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,26,46,.06);
  transition: transform .35s var(--ease), box-shadow .35s; background: #fff;
}
.tc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 52px rgba(26,26,46,.13); }
.tc-img { height: 240px; position: relative; overflow: hidden; }
.tc-img img { transition: transform .7s var(--ease); }
.tc-card:hover .tc-img img { transform: scale(1.06); }
.tc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,40,87,.78) 0%, transparent 55%); }
.tc-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.tc-title { position: absolute; bottom: 18px; left: 18px; right: 18px; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: #fff; }
.tc-body { padding: 22px 26px; }
.tc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.tc-tag { font-size: 12px; color: var(--blue); font-weight: 500; background: var(--surface); border: 1px solid var(--border); padding: 3px 11px; border-radius: 50px; }
.tc-cta { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.tc-arrow { display: flex; align-items: center; transition: transform .2s; }
.tc-arrow svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.tc-card:hover .tc-arrow { transform: translateX(5px); }

/* ── GUIDED TREATMENT GRID ── */
.guided-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.guided-card {
  background: #fff; border-radius: 16px; padding: 28px; border: 1px solid var(--border);
  cursor: pointer; transition: all .3s var(--ease); position: relative;
}
.guided-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 14px 36px rgba(49,130,252,.1); }
.guided-card--featured {
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-color: transparent; grid-column: span 2;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px 24px; align-items: center;
}
.guided-card--featured:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(49,130,252,.35); border-color: transparent; }
.guided-card--featured .guided-ico { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.guided-card--featured .guided-ico svg { stroke: #fff; }
.guided-card--featured .guided-title { color: #fff; font-size: 24px; }
.guided-card--featured .guided-desc { color: rgba(255,255,255,.75); grid-column: 2; }
.guided-card--featured .guided-cta { color: #93c5fd; grid-column: 3; grid-row: 1/3; align-self: center; white-space: nowrap; }
.guided-badge-tag {
  position: absolute; top: 20px; right: 20px;
  background: #4ade80; color: #064e3b;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.guided-card--featured .guided-badge-tag { background: rgba(74,222,128,.25); color: #4ade80; border: 1px solid rgba(74,222,128,.4); }
.guided-ico {
  width: 52px; height: 52px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  transition: background .3s, border-color .3s; flex-shrink: 0;
}
.guided-ico svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.guided-card:not(.guided-card--featured):hover .guided-ico { background: var(--blue); border-color: var(--blue); }
.guided-card:not(.guided-card--featured):hover .guided-ico svg { stroke: #fff; }
.guided-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.guided-desc { font-size: 13.5px; color: var(--ink-60); line-height: 1.65; margin-bottom: 16px; }
.guided-cta { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--blue); transition: gap .2s; }
.guided-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .2s; }
.guided-card:hover .guided-cta svg { transform: translateX(4px); }

/* ── BEFORE/AFTER DRAG SLIDER ── */
.ba-slider-section {
  background: linear-gradient(140deg, #050e25 0%, #0d1f4e 40%, #1339a0 75%, #3182FC 100%);
  padding: 100px 0;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatCardB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatCardC { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.ba-slider-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: 28px 22px; margin-top: 52px; align-items: start;
}
.ba-slider-card:nth-child(2), .ba-slider-card:nth-child(5) { margin-top: 48px; }
.ba-slider-card {
  border-radius: 22px; overflow: hidden; position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.2);
  aspect-ratio: 3/4; cursor: ew-resize; user-select: none;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05);
  transition: box-shadow .5s var(--ease), border-color .4s;
}
.ba-slider-card:nth-child(1) { animation: floatCard 5.2s ease-in-out 0s infinite; }
.ba-slider-card:nth-child(2) { animation: floatCardB 6.1s ease-in-out 0.8s infinite; }
.ba-slider-card:nth-child(3) { animation: floatCardC 4.8s ease-in-out 1.4s infinite; }
.ba-slider-card:nth-child(4) { animation: floatCard 5.8s ease-in-out 0.3s infinite; }
.ba-slider-card:nth-child(5) { animation: floatCardB 6.4s ease-in-out 1.1s infinite; }
.ba-slider-card:nth-child(6) { animation: floatCardC 5.0s ease-in-out 0.6s infinite; }
.ba-slider-card:hover, .ba-slider-card.dragging {
  animation-play-state: paused;
  box-shadow: 0 28px 72px rgba(0,0,0,.55), 0 4px 16px rgba(49,130,252,.3);
  border-color: rgba(255,255,255,.28);
}
.ba-card-label {
  position: absolute; top: 16px; left: 16px; z-index: 12;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}
.ba-img-before, .ba-img-after { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-img-before img, .ba-img-after img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ba-img-after { clip-path: inset(0 0 0 50%); transition: clip-path 0s; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 3px; background: linear-gradient(to bottom, transparent, #fff, transparent);
  z-index: 10; pointer-events: none; box-shadow: 0 0 12px rgba(255,255,255,.6);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  will-change: left; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 11; pointer-events: none; transition: transform .2s, box-shadow .2s;
}
.ba-handle svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.ba-slider-card:hover .ba-handle { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 6px 28px rgba(49,130,252,.5); }
@keyframes dragHint { 0%, 100% { transform: translate(-50%, -50%) translateX(0); } 25% { transform: translate(-50%, -50%) translateX(6px); } 75% { transform: translate(-50%, -50%) translateX(-6px); } }
.ba-slider-card:not(.dragging) .ba-handle { animation: dragHint 2s ease-in-out 1s 2; }

/* ── HOW IT WORKS ── */
.hiw-container {
  background: #fff; border-radius: 20px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 4px 32px rgba(26,26,46,.07); will-change: transform;
}
.hiw-tabs {
  display: flex; align-items: center; padding: 0 36px;
  border-bottom: 1px solid var(--border); background: var(--off);
}
.hiw-tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 22px 20px; cursor: pointer; border: none; background: none;
  font-family: 'DM Sans', sans-serif; position: relative; transition: all .2s;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.hiw-tab:hover .hiw-tab-num, .hiw-tab.active .hiw-tab-num { color: var(--blue); }
.hiw-tab.active { border-bottom-color: var(--blue); }
.hiw-tab-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--ink-60); transition: color .2s; line-height: 1; }
.hiw-tab-label { font-size: 11.5px; font-weight: 600; color: var(--ink-60); transition: color .2s; white-space: nowrap; }
.hiw-tab.active .hiw-tab-label { color: var(--blue); }
.hiw-tab-connector { flex: 1; height: 1px; background: var(--border); margin: 0 4px; }
.hiw-progress-track { height: 3px; background: var(--surface); position: relative; overflow: hidden; }
.hiw-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue-mid), var(--blue)); width: 25%; transition: width .6s var(--ease); }
.hiw-panels { padding: 40px 36px; }
.hiw-panel { display: none; grid-template-columns: 56px 1fr 280px; gap: 32px; align-items: start; }
.hiw-panel.active { display: grid; animation: hiwFadeIn .4s var(--ease) both; }
@keyframes hiwFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hiw-panel-ico {
  width: 56px; height: 56px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px;
}
.hiw-panel-ico svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hiw-panel-step { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.hiw-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.15; }
.hiw-panel-desc { font-size: 14px; color: var(--ink-60); line-height: 1.78; margin-bottom: 20px; }
.hiw-checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.hiw-checklist li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); font-weight: 500; }
.hiw-checklist li svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.hiw-panel-visual {
  border-radius: 14px; padding: 28px 22px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hiw-vis-icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.hiw-vis-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.hiw-vis-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--ink); }
.hiw-autoplay { display: flex; align-items: center; gap: 10px; padding: 14px 36px; background: var(--off); border-top: 1px solid var(--border); }
.hiw-autoplay-label { font-size: 12px; font-weight: 600; color: var(--ink-60); }
.hiw-progress-dots { display: flex; gap: 6px; }
.hiw-pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all .3s; }
.hiw-pdot.active { background: var(--blue); width: 20px; border-radius: 3px; }

/* ── TEAM ── */
.team-card-clean {
  background: #fff; border-radius: 16px; padding: 32px 28px; text-align: center;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.team-card-clean::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(49,130,252,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.team-card-clean:hover { border-color: var(--blue); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(49,130,252,.12); }
.team-card-clean:hover::before { opacity: 1; }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  box-shadow: 0 8px 24px rgba(49,130,252,.3);
  transition: transform .4s var(--ease), box-shadow .4s; flex-shrink: 0;
}
.team-card-clean:hover .team-avatar { transform: scale(1.1) translateY(-3px); box-shadow: 0 14px 36px rgba(49,130,252,.4); }
.team-card-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-card-role { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.team-card-bio { font-size: 13px; color: var(--ink-60); line-height: 1.65; }

/* ── INNER PAGE HERO (About / Contact) ── */
.page-hero { min-height: 36vh; display: flex; align-items: flex-end; padding-bottom: 52px; position: relative; overflow: hidden; }
.ph-bg { position: absolute; inset: 0; }
.ph-bg img { height: 100%; object-position: center 40%; }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,14,37,.88) 0%, rgba(5,14,37,.3) 100%); }
.ph-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 120px 32px 0; width: 100%; }

/* ── TREATMENT HERO (Hair / Skin) ── */
.tr-hero {
  min-height: 46vh; display: flex; align-items: flex-end; padding-bottom: 52px;
  position: relative; overflow: hidden;
}
.tr-hero-bg { position: absolute; inset: 0; }
.tr-hero-bg img { height: 100%; object-position: center 35%; }
.tr-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,14,37,.92) 0%, rgba(5,14,37,.35) 60%, rgba(5,14,37,.12) 100%); }
.tr-hero-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 120px 32px 0; width: 100%; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.breadcrumb a { cursor: pointer; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: rgba(255,255,255,.75); }
.breadcrumb .bc-sep { font-size: 10px; opacity: .4; }

/* ── TREATMENT LAYOUT (sidebar + panels) ── */
.tr-layout { max-width: 1320px; margin: 0 auto; padding: 52px 32px 80px; display: grid; grid-template-columns: 270px 1fr; gap: 52px; }
.sidebar { position: sticky; top: 86px; height: fit-content; }
.sb-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px; padding: 0 4px; }
.sb-list { display: flex; flex-direction: column; gap: 2px; }
.sb-link {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-60); padding: 10px 14px; border-radius: var(--r-sm); cursor: pointer;
  transition: all .2s;
}
.sb-link::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background .2s; }
.sb-link:hover { color: var(--blue); background: var(--surface); }
.sb-link:hover::before, .sb-link.active::before { background: var(--blue); }
.sb-link.active { color: var(--blue); background: var(--surface); font-weight: 600; }
.sb-book {
  margin-top: 24px; background: var(--blue-deep); border-radius: 14px; padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.08);
}
.sb-book h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; font-family: 'Cormorant Garamond', serif; }
.sb-book p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 16px; }
.panel { display: none; }
.panel.active { display: block; animation: hiwFadeIn .4s var(--ease) both; }
.panel-lbl { margin-bottom: 14px; }
.panel-title { margin: 8px 0 6px; }
.panel-tagline { font-size: 14px; color: var(--ink-60); font-style: italic; margin-bottom: 20px; line-height: 1.65; }
.panel-img { border-radius: 16px; overflow: hidden; height: 320px; margin-bottom: 26px; }
.panel-body { font-size: 15px; color: var(--ink-60); line-height: 1.8; margin-bottom: 26px; }

/* ── ABOUT PAGE ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ab-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.ab-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.ab-snum { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--blue); }
.ab-slbl { font-size: 12px; color: var(--ink-60); margin-top: 3px; }
.vm-list { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.vm-row {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  background: var(--off); border-radius: 10px; border: 1px solid var(--border); transition: border-color .2s;
}
.vm-row:hover { border-color: var(--blue); }
.vm-ico {
  width: 36px; height: 36px; background: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vm-ico svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.vm-t { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.vm-d { font-size: 12px; color: var(--ink-60); line-height: 1.6; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.vis-card {
  border-radius: 14px; padding: 28px; text-align: center; border: 1px solid var(--border); background: #fff;
  transition: all .3s var(--ease);
}
.vis-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 14px 36px rgba(49,130,252,.1); }
.vis-ico {
  width: 64px; height: 64px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all .3s;
}
.vis-ico svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.vis-card:hover .vis-ico { background: var(--blue); border-color: var(--blue); }
.vis-card:hover .vis-ico svg { stroke: #fff; }
.vis-h { font-size: 20px; margin-bottom: 10px; }
.vis-p { font-size: 13px; color: var(--ink-60); line-height: 1.68; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.team-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(26,26,46,.1); }
.team-img { height: 195px; overflow: hidden; }
.team-img img { transition: transform .7s var(--ease); height: 100%; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 18px; background: #fff; }
.team-name { font-size: 18px; margin-bottom: 3px; }
.team-role { font-size: 12.5px; color: var(--blue); font-weight: 600; }
.team-dept { font-size: 11.5px; color: var(--ink-60); }

/* ── CONTACT PAGE ── */
.ct-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; align-items: start; }
.ct-items { display: flex; flex-direction: column; gap: 12px; }
.ct-item {
  display: flex; gap: 13px; align-items: flex-start; padding: 16px 18px;
  background: var(--off); border-radius: 10px; border: 1px solid var(--border); transition: border-color .2s;
}
.ct-item:hover { border-color: var(--blue); }
.ct-ico {
  width: 40px; height: 40px; background: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ct-ico svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.ct-h { font-size: 12.5px; font-weight: 700; margin-bottom: 2px; }
.ct-p { font-size: 12.5px; color: var(--ink-60); }
.form-card { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 8px 44px rgba(26,26,46,.08); border: 1px solid var(--border); }
.map-box { border-radius: 12px; overflow: hidden; height: 260px; margin-top: 28px; border: 1px solid var(--border); }
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── LOCATION BUTTONS ── */
.clinic-loc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px; font-size: 13.5px; font-weight: 600;
  color: var(--ink); background: #fff; border: 1.5px solid var(--border);
  text-decoration: none; transition: all .2s var(--ease);
}
.clinic-loc-btn svg { width: 15px; height: 15px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.clinic-loc-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(49,130,252,.12); }
.clinic-loc-hq {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px; font-size: 13.5px; font-weight: 600;
  color: #fff; background: var(--blue); border: 1.5px solid var(--blue);
  text-decoration: none; transition: all .2s var(--ease);
  box-shadow: 0 4px 16px rgba(49,130,252,.28);
}
.clinic-loc-hq svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.clinic-loc-hq:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(49,130,252,.38); }

/* ── MOBILE CAROUSEL SYSTEM ── */
.m-carousel-wrap { position: relative; }
.m-carousel-controls { display: none; }
.m-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; box-shadow: 0 4px 14px rgba(26,26,46,.1);
  transition: all .2s var(--ease); color: var(--blue); font-family: inherit;
}
.m-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.m-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.m-arrow.m-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(8px); }
.m-arrow.m-light:hover { background: #fff; color: var(--blue); border-color: #fff; }
.m-carousel-dots { display: flex; gap: 6px; align-items: center; justify-content: center; flex: 1; flex-wrap: wrap; }
.m-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all .3s var(--ease); padding: 0;
}
.m-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }
.m-carousel-controls.m-light-controls .m-dot { background: rgba(255,255,255,.3); }
.m-carousel-controls.m-light-controls .m-dot.active { background: #fff; width: 22px; }

/* ── PARALLAX SYSTEM ── */
[data-parallax-section] { position: relative; overflow: hidden; }
.px-orb { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; z-index: 0; }
[data-parallax-section] > .wrap,
[data-parallax-section] > .strip-inner { position: relative; z-index: 1; }
.px-img-inner { will-change: transform; transition: none; }
.px-title { will-change: transform; transition: transform 0.1s linear; }
.px-card { will-change: transform; }
.px-stat { will-change: transform; }
.px-why { will-change: transform; }

/* ── WORD REVEAL ── */
.word-reveal .word { display: inline-block; opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.word-reveal.in .word { opacity: 1; transform: none; }
.word-reveal.in .word:nth-child(1) { transition-delay: .05s; }
.word-reveal.in .word:nth-child(2) { transition-delay: .12s; }
.word-reveal.in .word:nth-child(3) { transition-delay: .19s; }
.word-reveal.in .word:nth-child(4) { transition-delay: .26s; }
.word-reveal.in .word:nth-child(5) { transition-delay: .33s; }
.word-reveal.in .word:nth-child(6) { transition-delay: .40s; }
.word-reveal.in .word:nth-child(7) { transition-delay: .47s; }
.word-reveal.in .word:nth-child(8) { transition-delay: .54s; }

/* ── GRADIENT TEXT ANIMATION ── */
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.animated-gradient-text {
  background: linear-gradient(270deg, #3182FC, #93c5fd, #1a5fd4, #3182FC);
  background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gradientShift 5s ease infinite;
}

/* ── CTA BANNER (floating) ── */
.cta-banner-grid {
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-radius: 24px; padding: 60px 72px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  box-shadow: 0 20px 60px rgba(49,130,252,.28);
}

/* ── GUIDE DESKTOP/MOBILE ── */
.guide-mobile { display: none; }
.g-mcard {
  border-radius: 20px; overflow: hidden; position: relative; cursor: pointer;
  min-height: 480px; display: flex; align-items: flex-end;
  box-shadow: 0 8px 40px rgba(26,26,46,.16);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.g-mcard:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(26,26,46,.22); }
.g-mcard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .7s var(--ease); }
.g-mcard:hover > img { transform: scale(1.05); }
.g-mcard-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,14,37,.92) 0%, rgba(5,14,37,.18) 60%, rgba(5,14,37,0) 100%); pointer-events: none; }
.g-mcard-badge { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 13px; border-radius: 50px; }
.g-mcard-badge--green { background: #4ade80; color: #064e3b; }
.g-mcard-badge--glass { background: rgba(255,255,255,.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.24); color: #fff; }
.g-mcard-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; color: #fff; }
.g-mcard-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; line-height: 1.08; margin-bottom: 6px; }
.g-mcard-sub { font-size: 13.5px; color: rgba(255,255,255,.72); margin-bottom: 14px; line-height: 1.4; }
.g-mcard-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #93c5fd; }
.g-mcard-cta svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   INNER PAGE HEADERS — Gradient + Text
══════════════════════════════════════════ */

/* Background divs now carry gradient via inline style (injected in HTML).
   These rules ensure correct sizing, stacking, and text visibility. */

.tr-hero-bg,
.ph-bg {
  position: absolute;
  inset: 0;
  /* fallback gradient in case inline style ever changes */
  background: linear-gradient(140deg, #050e25 0%, #0d1f4e 35%, #1339a0 68%, #3182FC 100%);
}

/* Hide any stray img inside header bg divs */
.tr-hero-bg img,
.ph-bg img {
  display: none !important;
}

/* Decorative rays overlay — subtle depth on gradient */
.tr-hero::before,
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 80% 40%, rgba(49,130,252,.22) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 5% 75%,  rgba(49,130,252,.12) 0%, transparent 65%);
}

/* Content always above everything */
.tr-hero-content,
.ph-content {
  position: relative;
  z-index: 3 !important;
}

/* Heading */
.tr-hero-content h1,
.ph-content h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 24px rgba(5, 14, 37, .4);
}

/* Subtext */
.tr-hero-content > p,
.ph-content > p {
  color: rgba(255, 255, 255, .80) !important;
}

/* Breadcrumb */
.tr-hero-content .breadcrumb,
.ph-content .breadcrumb {
  color: rgba(255, 255, 255, .55) !important;
}
.tr-hero-content .breadcrumb span,
.ph-content .breadcrumb span { color: rgba(255, 255, 255, .85) !important; }
.tr-hero-content .breadcrumb a,
.ph-content .breadcrumb a     { color: rgba(255, 255, 255, .55) !important; transition: color .2s; }
.tr-hero-content .breadcrumb a:hover,
.ph-content .breadcrumb a:hover { color: #ffffff !important; }
.tr-hero-content .breadcrumb .bc-sep,
.ph-content .breadcrumb .bc-sep { color: rgba(255, 255, 255, .3) !important; }
