:root {
  --primary: #0B2D4D;
  --teal: #0E9F9A;
  --aqua: #E6F7F7;
  --soft: #F8FBFD;
  --white: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --gold: #F4B740;
  --border: #DDE7EE;
  --shadow: 0 2px 16px rgba(11,45,77,0.09);
  --shadow-md: 0 4px 24px rgba(11,45,77,0.13);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-right a { color: rgba(255,255,255,0.88); transition: color 0.2s; }
.top-bar-right a:hover { color: var(--teal); }
.top-book-btn {
  background: var(--teal);
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.top-book-btn:hover { background: #0b8a85 !important; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,45,77,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { line-height: 1.2; }
.logo-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.logo-tagline { font-size: 0.72rem; color: var(--muted); }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--teal); background: var(--aqua); }
.header-cta {
  background: var(--teal);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: #0b8a85; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
}
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); background: var(--aqua); }
.mobile-nav.open { display: flex; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #0b8a85; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,159,154,0.3); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }
.btn-navy { background: var(--primary); color: #fff; }
.btn-navy:hover { background: #0d3a61; transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ─── SECTION HEADERS ─── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.slides-wrapper {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  background: linear-gradient(135deg, #0B2D4D 0%, #0d3a61 60%, #0E4F6E 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.slide::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(14,159,154,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.slide::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14,159,154,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* Slide 1 – rich background with hospital interior + diagonal mesh */
.slide.slide-1 {
  background: url('/images/slide1-banner.png') center/cover no-repeat;
}
.slide-1::before,
.slide-1::after { display: none !important; }
.slide-1 .slide-content {
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.slide-1 .slide-badge {
  background: rgba(14,159,154,0.35);
  border-color: rgba(14,159,154,0.65);
}
.slide-1 .slide-inner {
  grid-template-columns: 1fr;
  max-width: 50%;
}

/* Slide 2 – robotic surgery tinted background */
.slide.slide-2 {
  background:
    linear-gradient(135deg, rgba(11,45,77,0.95) 0%, rgba(10,35,62,0.88) 50%, rgba(9,58,72,0.96) 100%),
    url('/images/robotic-surgery.jpg') right center/cover no-repeat;
}

/* Slide 3 – renal transplant tinted background */
.slide.slide-3 {
  background:
    linear-gradient(135deg, rgba(11,45,77,0.95) 0%, rgba(11,38,70,0.88) 50%, rgba(12,55,80,0.96) 100%),
    url('/images/renal-transplant.jpg') right center/cover no-repeat;
}

/* Scene image card – slides 2 & 3 */
.slide-scene-wrap {
  position: relative;
  width: 390px;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1.5px rgba(14,159,154,0.4);
}
.slide-scene-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.5s ease;
}
.slide-scene-wrap:hover img { transform: scale(1.04); }
.slide-scene-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(11,45,77,0.97) 0%, transparent 100%);
  padding: 44px 22px 18px;
}
.slide-scene-caption strong { display: block; font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.slide-scene-caption span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.slide-content { color: #fff; }
.slide-badge {
  display: inline-block;
  background: rgba(14,159,154,0.18);
  border: 1px solid rgba(14,159,154,0.4);
  color: #6de3df;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.slide-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.slide-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  font-weight: 400;
}
.slide-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.slide-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,159,154,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.doctor-photo-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.doctor-photo-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px 18px 0 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}
.doctor-placeholder {
  width: 100%;
  height: 460px;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  gap: 12px;
}
.doc-name-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.doc-name-badge strong { display: block; font-size: 0.9rem; color: var(--primary); font-weight: 700; }
.doc-name-badge span { font-size: 0.75rem; color: var(--muted); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }

/* ─── ACHIEVEMENTS ─── */
.achievements { background: var(--white); padding: 56px 0; }
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.achievement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.achievement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #0bc8c2);
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.achievement-icon {
  width: 52px; height: 52px;
  background: var(--aqua);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}
.achievement-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.achievement-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.achievement-text { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ─── ABOUT PREVIEW ─── */
.about-preview { background: var(--aqua); padding: 80px 0; }
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-badge-floating {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--aqua);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.about-badge-text strong { display: block; font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.about-badge-text span { font-size: 0.78rem; color: var(--muted); }
.about-content { }
.about-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.about-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── TREATMENTS PREVIEW ─── */
.treatments-section { background: var(--soft); padding: 80px 0; }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.treatment-icon-wrap {
  background: var(--aqua);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.treatment-icon-wrap svg { width: 56px; height: 56px; color: var(--teal); }
.treatment-body { padding: 20px; }
.treatment-name { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.treatment-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.treatments-cta { text-align: center; margin-top: 40px; }

/* ─── WHY CHOOSE ─── */
.why-choose { background: linear-gradient(135deg, rgba(11,45,77,0.97) 0%, rgba(11,45,77,0.94) 100%), url('/images/hospital-interior.jpg') center/cover no-repeat; padding: 80px 0; color: #fff; }
.why-choose .section-title { color: #fff; }
.why-choose .section-desc { color: rgba(255,255,255,0.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, transform 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(14,159,154,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #6de3df;
}
.why-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-text { font-size: 0.84rem; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* ─── PUBLICATIONS PREVIEW ─── */
.publications-section { background: var(--white); padding: 80px 0; }
.pub-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.pub-icon-large {
  width: 80px; height: 80px;
  background: var(--aqua);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 24px;
}
.pub-stats { display: flex; gap: 32px; margin: 28px 0; }
.pub-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.pub-stat-label { font-size: 0.8rem; color: var(--muted); }
.pub-list-preview { display: flex; flex-direction: column; gap: 16px; }
.pub-card-mini {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pub-card-mini:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.pub-num {
  width: 32px; height: 32px;
  background: var(--aqua);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.pub-card-text { font-size: 0.84rem; color: var(--text); line-height: 1.55; font-style: italic; }

/* ─── TESTIMONIALS PLACEHOLDER ─── */
.testimonials-section { background: var(--aqua); padding: 80px 0; }
.google-reviews-widget { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testimonial-placeholder {
  width: 56px; height: 56px;
  background: var(--aqua);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.testimonial-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.testimonial-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-style: italic; }
.testimonial-badge {
  display: inline-block;
  margin-top: 14px;
  background: var(--aqua);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ─── APPOINTMENT CTA ─── */
.appointment-cta { background: linear-gradient(135deg, #0B2D4D, #0E9F9A); padding: 72px 0; }
.appointment-cta-inner { text-align: center; color: #fff; }
.appointment-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.appointment-cta p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--aqua); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-logo-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.5; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a { font-size: 0.84rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-contact-mini a:hover { color: var(--teal); }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.65); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--teal); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.38); max-width: 520px; line-height: 1.5; text-align: right; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #0B2D4D 0%, #0d3a61 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,159,154,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.68); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.breadcrumb strong { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ─── ABOUT PAGE ─── */
.about-main { padding: 80px 0; }
.about-main-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: start; }
.about-sidebar { }
.about-sidebar img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.about-sidebar-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.about-sidebar-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.about-sidebar-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.about-sidebar-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.about-sidebar-card ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.about-details { }
.about-details h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.about-details .position-tag {
  display: inline-block;
  background: var(--aqua);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.about-section { margin-top: 40px; }
.about-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.about-section h3::before { content: ''; width: 4px; height: 20px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.edu-list { display: flex; flex-direction: column; gap: 14px; }
.edu-item {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.edu-icon {
  width: 38px; height: 38px;
  background: var(--aqua);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.edu-degree { font-size: 0.92rem; font-weight: 700; color: var(--primary); }
.edu-college { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.award-item {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.award-item::before { content: '★'; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.award-text { font-size: 0.82rem; color: var(--text); line-height: 1.45; }
.memberships-list { display: flex; flex-direction: column; gap: 10px; }
.membership-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.membership-dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.membership-name { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

/* ─── TREATMENTS PAGE ─── */
.treatments-main { padding: 72px 0; }
.treatments-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.treatment-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.treatment-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treatment-full-icon {
  background: var(--aqua);
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  height: 120px;
}
.treatment-full-icon svg { width: 60px; height: 60px; color: var(--teal); }
.treatment-full-body { padding: 24px; }
.treatment-full-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.treatment-full-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.treatment-procedures h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); margin-bottom: 10px; }
.treatment-procedures ul { display: flex; flex-direction: column; gap: 6px; }
.treatment-procedures ul li {
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.treatment-procedures ul li::before {
  content: '›';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PUBLICATIONS PAGE ─── */
.publications-main { padding: 72px 0; }
.research-areas { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 48px; }
.research-tag {
  background: var(--aqua);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(14,159,154,0.2);
}
.pub-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pub-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pub-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pub-full-num {
  width: 38px; height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pub-full-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; font-style: italic; }
.academic-section { background: var(--aqua); border-radius: var(--radius); padding: 40px; margin-top: 48px; }
.academic-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.academic-section p { font-size: 0.92rem; color: var(--text); line-height: 1.7; }

/* ─── TESTIMONIALS PAGE ─── */
.testimonials-main { padding: 72px 0; }
.testimonials-intro { text-align: center; margin-bottom: 48px; }
.testimonials-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.testimonial-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.testimonial-quote { font-size: 3rem; color: var(--teal); line-height: 1; margin-bottom: 14px; }
.testimonial-full-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--aqua);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 700;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.testimonial-label { font-size: 0.75rem; color: var(--muted); }
.share-cta-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: #fff;
}
.share-cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.share-cta-box p { color: rgba(255,255,255,0.68); margin-bottom: 24px; font-size: 0.95rem; }

/* ─── CONTACT PAGE ─── */
.contact-main { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
}
.contact-info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(14,159,154,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #6de3df;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-detail-value { font-size: 0.95rem; color: #fff; font-weight: 500; }
.contact-detail-value a { color: #6de3df; text-decoration: none; }
.contact-detail-value a:hover { color: #fff; }
.contact-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.contact-btns a {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}
.contact-btns a:hover { background: rgba(14,159,154,0.3); border-color: var(--teal); }
.contact-form-wrap { background: var(--soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,159,154,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 13px; margin-top: 4px; }
.form-success {
  display: none;
  background: #e6f7f5;
  border: 1px solid rgba(14,159,154,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #0b6b67;
  margin-top: 16px;
  text-align: center;
}
.emergency-note {
  background: #fff8e7;
  border: 1px solid rgba(244,183,64,0.4);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: #856404;
  line-height: 1.55;
}
.emergency-note strong { color: #6d4c00; }

/* ─── STOCK IMAGE CARDS ─── */
.treatment-img-wrap {
  height: 170px;
  overflow: hidden;
  position: relative;
}
.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.treatment-card:hover .treatment-img-wrap img { transform: scale(1.07); }
.treatment-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,45,77,0.28) 0%, rgba(14,159,154,0.08) 60%, transparent 100%);
  pointer-events: none;
}

.treatment-full-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.treatment-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.treatment-full-card:hover .treatment-full-img img { transform: scale(1.05); }
.treatment-full-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,45,77,0.25) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-preview-inner { grid-template-columns: 1fr; }
  .about-main-grid { grid-template-columns: 1fr 1.4fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .top-bar-right { gap: 10px; }
  .top-book-btn { display: none; }
  nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  
  .slide { padding: 48px 0 80px; }
  .slide-inner { grid-template-columns: 1fr; gap: 32px; }
  .slide-img-wrap { display: none; }
  .slide-title { font-size: 1.7rem; }
  .slide-subtitle { font-size: 0.9rem; }
  .slide.slide-1 {
    background:
      linear-gradient(to right, rgba(0,50,42,0.90) 0%, rgba(0,50,42,0.70) 45%, rgba(0,50,42,0.10) 75%, transparent 100%),
      url('/images/slide1-banner.png') 68% center / cover no-repeat;
    min-height: 520px;
  }
  .slide-1 .slide-inner { max-width: 100%; }
  
  .achievements-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .achievement-card { padding: 20px 16px; }
  .achievement-num { font-size: 1.4rem; }
  
  .about-preview-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-badge-floating { display: none; }
  .about-img-wrap img { height: 340px; }
  .about-main-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-sidebar img { height: 320px; }
  .awards-grid { grid-template-columns: 1fr; }
  
  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .treatment-icon-wrap { height: 90px; padding: 18px; }
  .treatment-icon-wrap svg { width: 42px; height: 42px; }
  .treatments-full-grid { grid-template-columns: 1fr; }
  
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-main-grid { grid-template-columns: 1fr; }
  
  .pub-cards-grid { grid-template-columns: 1fr; }
  
  .section-title { font-size: 1.5rem; }
  .page-hero h1 { font-size: 1.7rem; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  
  .cta-btns { flex-direction: column; align-items: center; }
  .slide-btns { flex-direction: column; gap: 10px; }
  
  .academic-section { padding: 28px; }
  .share-cta-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .achievements-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .treatments-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.35rem; }
}

/* ══════════════════════════════════════════
   FUTURISTIC AI VISUAL LAYER
══════════════════════════════════════════ */

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Floating glow orbs */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-orb-1 {
  width: 360px; height: 360px; top: -100px; right: 8%;
  background: radial-gradient(circle, rgba(14,159,154,0.13) 0%, transparent 70%);
  animation: floatOrb1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 220px; height: 220px; bottom: -50px; left: 4%;
  background: radial-gradient(circle, rgba(14,159,154,0.09) 0%, transparent 70%);
  animation: floatOrb2 7s ease-in-out infinite;
}
.hero-orb-3 {
  width: 160px; height: 160px; top: 45%; left: 44%;
  background: radial-gradient(circle, rgba(14,159,154,0.07) 0%, transparent 70%);
  animation: floatOrb3 11s ease-in-out infinite;
}
@keyframes floatOrb1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-28px) scale(1.06); }
}
@keyframes floatOrb2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(20px) scale(0.94); }
}
@keyframes floatOrb3 {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(14px,-12px); }
  66%     { transform: translate(-10px,16px); }
}

/* Scroll reveal base */
.reveal, .reveal-left, .reveal-right {
  transition: opacity 0.68s ease, transform 0.68s ease;
}
.reveal         { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left         { opacity: 0; transform: translateX(-44px); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right         { opacity: 0; transform: translateX(44px); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
[data-delay="1"] { transition-delay: 0.07s; }
[data-delay="2"] { transition-delay: 0.14s; }
[data-delay="3"] { transition-delay: 0.21s; }
[data-delay="4"] { transition-delay: 0.28s; }
[data-delay="5"] { transition-delay: 0.35s; }
[data-delay="6"] { transition-delay: 0.42s; }
[data-delay="7"] { transition-delay: 0.49s; }
[data-delay="8"] { transition-delay: 0.56s; }

/* Teal glow hover — treatment cards */
.treatment-card {
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(14,159,154,0.22), 0 0 0 1px rgba(14,159,154,0.3);
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,159,154,0.75), transparent);
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: 2;
}
.treatment-card:hover::before { opacity: 1; }

/* Teal glow hover — achievement cards */
.achievement-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(14,159,154,0.2);
}

/* Teal glow hover — why-cards */
.why-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(14,159,154,0.22);
  background: rgba(14,159,154,0.14);
}

/* Teal glow hover — publication cards */
.pub-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.pub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(14,159,154,0.18), 0 0 0 1px rgba(14,159,154,0.2);
}

/* Button radial ripple on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.22) 0%, transparent 65%);
  transform: scale(0);
  transition: transform 0.42s ease;
  pointer-events: none;
}
.btn:hover::after { transform: scale(2.8); }

/* Achievement number subtle pulse glow */
@keyframes numGlow {
  0%,100% { text-shadow: 0 0 0 rgba(14,159,154,0); }
  50%     { text-shadow: 0 0 20px rgba(14,159,154,0.45); }
}
.achievement-num { animation: numGlow 3.2s ease-in-out infinite; }

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.wa-float:active { cursor: grabbing; }

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  position: relative;
  animation: waBounce 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-btn:hover {
  transform: scale(1.13) !important;
  box-shadow: 0 12px 36px rgba(37,211,102,0.55), 0 2px 12px rgba(0,0,0,0.2);
}
.wa-btn svg { width: 34px; height: 34px; display: block; }

.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.32);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.wa-pulse-2 { animation-delay: 0.8s; }

@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.75); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
