/* ═══════════════════════════════════════════════════════════════
   PAGES.CSS — KG Speciality Centre
   All page-specific components: Homepage, Department pages,
   Emergency, Visa Medical, About Us, Facilities, Master Health,
   and all inner section layouts.
   Link after common.css on all non-blog pages.
═══════════════════════════════════════════════════════════════ */

/* ── 1. HOMEPAGE HERO ── */
.hero {
  background: var(--ivory);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,42,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(54,44,106,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--kg-blue);
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; font-size: 88%; }
.hero-desc  { font-size: 16px; line-height: 1.7; color: var(--slate); margin-bottom: 28px; max-width: 480px; }
.hero-desc strong { color: var(--kg-blue); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Hero trust row */
.hero-trust { display: flex; gap: 0; padding-top: 8px; border-top: 1px solid rgba(54,44,106,.1); }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px 0;
}
.trust-item:first-child { padding-left: 0; }
.trust-item + .trust-item { border-left: 1px solid rgba(54,44,106,.1); }
.trust-num   { font-size: 21px; font-weight: 700; color: var(--kg-blue); font-family: var(--font-display); line-height: 1; }
.trust-label { font-size: 11px; color: var(--slate-light); line-height: 1.35; }

/* Centered hero variant (visa, health checkup) */
.hero-inner {
  position: relative; z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.hero-inner .hero-badges  { justify-content: center; margin-bottom: 22px; }
.hero-inner .hero-desc    { margin-left: auto; margin-right: auto; max-width: 600px; }
.hero-inner .hero-actions,
.hero-ctas { justify-content: center; margin-bottom: 44px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats (centred layout) */
.hero-stats {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(54,44,106,.1);
}
.hero-inner .hero-stats { justify-content: center; }
.hstat {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hstat:first-child { padding-left: 0; }
.hstat + .hstat    { border-left: 1px solid rgba(54,44,106,.1); }
.hstat-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--kg-blue); line-height: 1; }
.hstat-lbl { font-size: 11px; color: var(--slate-light); margin-top: 3px; line-height: 1.35; }

/* Hero contact card */
.hero-card {
  background: var(--white);
  border-radius: var(--rlg);
  border: 1px solid rgba(54,44,106,.1);
  padding: 28px;
  box-shadow: var(--sh-md);
}
.hero-card-title { font-size: 12px; font-weight: 600; color: var(--kg-blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.hero-quick-appt { margin-top: 14px; padding: 14px; background: var(--ivory); border-radius: 10px; border: 1px solid rgba(54,44,106,.08); }
.hero-quick-label{ font-size: 12px; color: var(--slate-light); margin-bottom: 8px; }
.hero-select     { width: 100%; background: var(--white); color: var(--text-dark); border: 1px solid rgba(54,44,106,.2); border-radius: 8px; padding: 9px 12px; font-size: 14px; font-family: var(--font-body); margin-bottom: 8px; appearance: none; }

/* ── 2. VISA FEATURE SECTION (Homepage) ── */
.visa-feature { background: var(--kg-blue); padding: 72px 0; position: relative; overflow: hidden; }
.visa-feature::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(201,150,42,.07); pointer-events: none; }
.visa-feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.visa-feature-left .section-eyebrow { color: var(--gold-light); }
.visa-feature-left h2 { font-family: var(--font-display); font-size: clamp(22px,3vw,34px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.visa-feature-left p  { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 20px; }
.visa-feature-left strong { color: var(--gold-light); }
.visa-feature-districts { display: flex; flex-wrap: wrap; gap: 6px; }
.dist-chip { font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,.09); color: rgba(255,255,255,.75); }
.dist-chip.dist-primary { background: rgba(201,150,42,.22); color: var(--gold-light); font-weight: 600; }
.dist-chip.dist-kerala  { border: 1px solid rgba(255,255,255,.15); }

.visa-feature-cards { display: flex; flex-direction: column; gap: 12px; }
.visa-country-pill  {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 18px 20px;
  transition: all .2s; cursor: pointer; text-decoration: none;
}
.visa-country-pill:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.vcp-name    { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.vcp-auth    { font-size: 12px; color: var(--gold-light); margin-bottom: 4px; }
.vcp-includes{ font-size: 12px; color: rgba(255,255,255,.6); }
.vcp-arrow   { font-size: 18px; color: var(--gold-light); margin-left: auto; flex-shrink: 0; transition: transform .2s; }
.visa-country-pill:hover .vcp-arrow { transform: translateX(4px); }

/* ── 3. HOMEPAGE DEPARTMENTS GRID ── */
.departments-section { padding: 80px 0; background: var(--ivory); }
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dept-card {
  background: var(--white);
  border-radius: var(--rlg);
  border: 1px solid rgba(54,44,106,.07);
  padding: 22px 18px;
  transition: all .25s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.dept-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transition: transform .25s;
}
.dept-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.dept-card:hover::after { transform: scaleX(1); }

.dept-card.emergency::after  { background: var(--red-acc); }
.dept-card.surgery::after    { background: #0369a1; }
.dept-card.gynec::after      { background: #be185d; }
.dept-card.checkup::after    { background: var(--green-acc); }
.dept-card.visa-card::after  { background: var(--gold); }
.dept-card.pediatric::after  { background: #7c3aed; }
.dept-card.medicine::after   { background: var(--kg-blue); }
.dept-card.cardiac::after    { background: var(--red-acc); }
.dept-card.ortho::after      { background: #0d9488; }
.dept-card.radiology::after  { background: #0369a1; }
.dept-card.ent::after        { background: #0891b2; }
.dept-card.eye::after        { background: #7c3aed; }
.dept-card.dental::after     { background: var(--kg-blue); }
.dept-card.pulmo::after      { background: #0f766e; }
.dept-card.psychiatry::after { background: #6d28d9; }
.dept-card.derma::after      { background: #be185d; }

.dept-icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.dept-card.emergency  .dept-icon-wrap { background: var(--red-bg); }
.dept-card.surgery    .dept-icon-wrap { background: var(--violet-tint); }
.dept-card.gynec      .dept-icon-wrap { background: #fdf2f8; }
.dept-card.checkup    .dept-icon-wrap { background: var(--green-bg); }
.dept-card.visa-card  .dept-icon-wrap { background: var(--amber-light); }
.dept-card.pediatric  .dept-icon-wrap { background: #ede9f8; }
.dept-card.medicine   .dept-icon-wrap { background: var(--violet-tint); }
.dept-card.cardiac    .dept-icon-wrap { background: var(--red-bg); }
.dept-card.ortho      .dept-icon-wrap { background: #ccfbf1; }
.dept-card.radiology  .dept-icon-wrap { background: var(--violet-tint); }
.dept-card.ent        .dept-icon-wrap { background: #e0f2fe; }
.dept-card.eye        .dept-icon-wrap { background: #ede9f8; }
.dept-card.dental     .dept-icon-wrap { background: #fef9ee; }
.dept-card.pulmo      .dept-icon-wrap { background: #ccfbf1; }
.dept-card.psychiatry .dept-icon-wrap { background: #ede9f8; }
.dept-card.derma      .dept-icon-wrap { background: #fdf2f8; }

.dept-name  { font-size: 14px; font-weight: 600; color: var(--kg-blue); margin-bottom: 6px; }
.dept-desc  { font-size: 12px; color: var(--slate); line-height: 1.55; margin-bottom: 12px; }
.dept-tags  { display: flex; flex-wrap: wrap; gap: 4px; }
.dept-tag   { font-size: 10px; font-weight: 500; padding: 2px 7px; border-radius: 4px; background: rgba(54,44,106,.06); color: var(--slate); }
.dept-arrow { position: absolute; top: 18px; right: 16px; font-size: 15px; color: rgba(54,44,106,.18); transition: color .2s, transform .2s; }
.dept-card:hover .dept-arrow { color: var(--kg-blue); transform: translateX(3px); }
.visa-only-badge { position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 700; padding: 3px 7px; background: var(--gold); color: var(--kg-blue); border-radius: 4px; text-transform: uppercase; }

/* ── 4. DEPARTMENT LISTING PAGE ── */
.page-hero {
  background: var(--ivory);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -100px; right: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(201,150,42,.09) 0%, transparent 70%); pointer-events: none; }
.page-hero::after  { content: ''; position: absolute; bottom: -60px; left: -40px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(54,44,106,.06) 0%, transparent 70%); pointer-events: none; }

.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px,3.8vw,46px); font-weight: 700; color: var(--kg-blue); line-height: 1.14; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-desc {
  font-size: 15px; color: var(--slate); line-height: 1.72;
  margin-bottom: 32px; max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.page-hero-desc strong { color: var(--kg-blue); }

/* Hero stat row */
.hero-stat-row { display: flex; padding-top: 24px; border-top: 1px solid rgba(54,44,106,.1); justify-content: center; flex-wrap: wrap; }

/* Featured dept cards */
.featured-section { padding: 48px 0 0; background: var(--ivory); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.featured-card {
  border-radius: var(--rlg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; transition: transform .2s, box-shadow .2s;
}
.featured-card:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.fc-emergency { background: var(--red-acc); }
.fc-visa      { background: var(--kg-blue); }
.fc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.fc-emergency .fc-eyebrow { color: rgba(255,255,255,.6); }
.fc-visa .fc-eyebrow      { color: var(--gold-light); }
.fc-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.fc-desc  { font-size: 13px; line-height: 1.55; }
.fc-emergency .fc-desc { color: rgba(255,255,255,.75); }
.fc-visa .fc-desc      { color: rgba(255,255,255,.65); }
.fc-cta {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 8px;
  transition: all .2s; white-space: nowrap; font-family: var(--font-body); text-decoration: none;
}
.fc-emergency .fc-cta { background: #fff; color: var(--red-acc); }
.fc-emergency .fc-cta:hover { background: var(--ivory); }
.fc-visa .fc-cta       { background: var(--gold); color: var(--kg-blue); }
.fc-visa .fc-cta:hover { background: var(--gold-light); color: var(--kg-blue); }

/* Department cards (department listing page) */
.depts-section { padding: 16px 0 72px; background: var(--ivory); }
.depts-section-head { margin-bottom: 28px; }
.depts-section-head h2 { font-family: var(--font-display); font-size: clamp(20px,2.4vw,28px); font-weight: 700; color: var(--kg-blue); margin-bottom: 4px; }
.depts-section-head p  { font-size: 14px; color: var(--slate-light); }

.dept-card.card-dept {
  background: var(--white);
  border-radius: var(--rlg);
  border: 1px solid rgba(54,44,106,.08);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
  padding: 0;
}
.dept-card.card-dept:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.dept-card-top  { padding: 20px 20px 0; min-height: 320px;}
.dept-card-tag  { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 4px; margin-bottom: 12px; letter-spacing: .04em; }
.dept-card-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; line-height: 1.3; }
.dept-card-desc { font-size: 12px; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }
.dept-card-highlights { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.dept-hl { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 4px; background: var(--ivory); border: 1px solid rgba(54,44,106,.08); color: var(--slate); }
.dept-card-footer {
  margin-top: auto; padding: 14px 20px;
  border-top: 1px solid rgba(54,44,106,.06);
  display: flex; align-items: center; justify-content: space-between;
}
.dept-card-link { font-size: 13px; font-weight: 700; color: var(--kg-blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; text-decoration: none; }
.dept-card.card-dept:hover .dept-card-link { gap: 8px; }
.dept-card-arrow { font-size: 15px; transition: transform .2s; }
.dept-card.card-dept:hover .dept-card-arrow { transform: translateX(3px); }
.dept-card-book  { font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 6px; background: var(--kg-blue); color: #fff; transition: background .2s; text-decoration: none; }
.dept-card-book:hover { background: var(--kg-blue-mid); }
.dept-card.hidden { display: none; }

/* Trust section */
.trust-section { padding: 56px 0; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: var(--ivory); border-radius: var(--rlg); padding: 24px; border: 1px solid rgba(54,44,106,.07); text-align: center; }
.trust-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--kg-blue); line-height: 1; margin-bottom: 6px; }
.trust-lbl { font-size: 13px; font-weight: 600; color: var(--kg-blue); margin-bottom: 4px; }
.trust-sub { font-size: 12px; color: var(--slate-light); line-height: 1.5; }

/* Geo section */
.geo-section { padding: 56px 0; background: var(--ivory); }
.geo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.geo-text h2 { font-family: var(--font-display); font-size: clamp(20px,2.4vw,28px); font-weight: 700; color: var(--kg-blue); margin-bottom: 12px; line-height: 1.25; }
.geo-text p  { font-size: 14px; color: var(--slate); line-height: 1.72; margin-bottom: 14px; }
.geo-chips   { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.geo-chip { font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 16px; background: var(--white); border: 1px solid rgba(54,44,106,.1); color: var(--text-dark); transition: all .2s; }
.geo-chip.primary { background: var(--kg-blue); color: #fff; border-color: transparent; font-weight: 600; }
.geo-chip:hover { background: var(--violet-tint); border-color: rgba(54,44,106,.2); color: var(--kg-blue); }

.contact-card { background: var(--white); border-radius: var(--rlg); padding: 24px; border: 1px solid rgba(54,44,106,.08); box-shadow: var(--sh-sm); }
.cc-title { font-size: 12px; font-weight: 700; color: var(--kg-blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.cc-row   { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(54,44,106,.06); }
.cc-row:last-of-type { border-bottom: none; }
.cc-icon  { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.cc-label { font-size: 11px; color: var(--slate-light); margin-bottom: 1px; }
.cc-val   { font-size: 14px; font-weight: 600; color: var(--kg-blue); }

/* ── 5. INNER PAGE HERO (dept pages) ── */
.hero-left  { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }

/* img placeholder slots */
.hero-img-slot, .img-slot-tall, .img-slot-wide {
  border-radius: var(--rlg); overflow: hidden; position: relative;
  background: var(--ivory-mid); border: 2px dashed rgba(54,44,106,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; transition: border-color .2s;
}
.hero-img-slot { height: 380px; }
.img-slot-tall { height: 320px; }
.img-slot-wide { height: 200px; }
.hero-img-slot:hover, .img-slot-tall:hover, .img-slot-wide:hover { border-color: rgba(201,150,42,.4); }
.hero-img-slot img, .img-slot-tall img, .img-slot-wide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-icon  { font-size: 32px; opacity: .3; }
.img-placeholder-label { font-size: 13px; font-weight: 600; color: var(--kg-blue); opacity: .5; text-align: center; padding: 0 20px; }
.img-placeholder-hint  { font-size: 11px; color: var(--slate-light); text-align: center; padding: 0 16px; line-height: 1.5; }
.iph  { font-size: 22px; opacity: .3; }
.ipl  { font-size: 12px; font-weight: 600; color: var(--kg-blue); opacity: .5; text-align: center; padding: 0 16px; }
.iph2 { font-size: 10.5px; color: var(--slate-light); text-align: center; padding: 0 12px; line-height: 1.5; }

/* Hero lead text */
.hero-lead { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 28px; max-width: 500px; }
.hero-lead strong { color: var(--kg-blue); }

/* ── 6. TRUST STRIP (About page) ── */
.trust-strip { background: var(--kg-blue); padding: 0; }
.trust-strip-inner { display: flex; align-items: stretch; }
.trust-strip .trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 36px; flex: 1;
  border-right: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}
.trust-strip .trust-item:last-child { border-right: none; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.trust-text span   { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── 7. ABOUT US PAGE ── */
.story-section { padding: 80px 0; background: var(--white); }
.story-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.story-text h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--kg-blue); line-height: 1.2; margin-bottom: 20px; }
.story-text p  { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 16px; }
.story-text strong { color: var(--kg-blue); font-weight: 600; }
.story-pull {
  margin: 24px 0; padding: 20px 24px;
  background: var(--ivory); border-radius: var(--r);
  border-left: 4px solid var(--gold);
}
.story-pull p { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--kg-blue); line-height: 1.6; margin: 0; }
.story-img-stack { display: flex; flex-direction: column; gap: 12px; }

.legacy-section { padding: 80px 0; background: var(--white); }
.legacy-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.legacy-text h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--kg-blue); line-height: 1.2; margin-bottom: 20px; }
.legacy-text p  { font-size: 15px; color: var(--slate); line-height: 1.75; margin-bottom: 16px; }
.legacy-text strong { color: var(--kg-blue); }
.legacy-text a.legacy-link { color: var(--kg-blue-mid); font-weight: 600; border-bottom: 1px solid rgba(54,44,106,.25); transition: border-color .2s; text-decoration: none; }
.legacy-text a.legacy-link:hover { border-color: var(--kg-blue); }
.legacy-card { background: var(--kg-blue); border-radius: var(--rlg); padding: 36px; color: #fff; }
.legacy-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.legacy-card .lc-role { font-size: 13px; color: var(--gold-light); margin-bottom: 20px; }
.legacy-awards { display: flex; flex-direction: column; gap: 14px; }
.award-item    { display: flex; align-items: flex-start; gap: 12px; }
.award-icon    { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.award-name    { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.award-body    { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.legacy-divider { height: 1px; background: rgba(255,255,255,.1); margin: 20px 0; }
.legacy-card-footer { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }
.legacy-card-footer a { color: var(--gold-light); font-weight: 600; text-decoration: none; }

/* Mission, Vision, Values */
.mvv-section { padding: 80px 0; background: var(--ivory); }
.mvv-top     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.mvv-card    { border-radius: var(--rlg); padding: 36px; position: relative; overflow: hidden; }
.mvv-card.mission { background: var(--kg-blue); }
.mvv-card.vision  { background: var(--kg-blue-mid); }
.mvv-card-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.mvv-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.mvv-card-body  { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.72; }
.mvv-card::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }

.qp-card  { background: var(--amber-light); border-radius: var(--rlg); padding: 28px 36px; margin-bottom: 24px; border: 1px solid rgba(201,150,42,.2); }
.qp-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.qp-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--kg-blue); margin-bottom: 16px; }
.qp-list  { display: flex; flex-direction: column; gap: 10px; }
.qp-item  { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate); line-height: 1.65; }

.values-block    { background: var(--white); border-radius: var(--rlg); padding: 36px; border: 1px solid rgba(54,44,106,.08); }
.values-label    { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.values-title    { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--kg-blue); margin-bottom: 6px; }
.values-subtitle { font-size: 13px; color: var(--slate-light); margin-bottom: 24px; font-style: italic; }
.values-grid     { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.value-card      { background: var(--ivory); border-radius: var(--r); padding: 20px; border: 1px solid rgba(54,44,106,.07); }
.value-letter    { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--kg-blue); opacity: .12; line-height: 1; margin-bottom: 6px; }
.value-name      { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 6px; }
.value-desc      { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* About Facilities section */
.facilities-section { padding: 80px 0; background: var(--ivory); }
.facilities-section h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; text-align: center; }
.facilities-section .sub { font-size: 15px; color: var(--slate); text-align: center; margin-bottom: 48px; }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fac-card { background: var(--white); border-radius: var(--r); padding: 20px; border: 1px solid rgba(54,44,106,.08); text-align: center; transition: box-shadow .2s, transform .2s; }
.fac-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.fac-icon { font-size: 30px; margin-bottom: 12px; }
.fac-name { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 4px; }
.fac-desc { font-size: 12px; color: var(--slate); line-height: 1.55; }

/* ── 8. EMERGENCY PAGE ── */
.emergency-banner { background: var(--red-acc); padding: 12px 0; }
.eb-inner  { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.eb-text   { font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.eb-text .pulse { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease infinite; }
.eb-number { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: .02em; }
.eb-tag    { font-size: 11px; font-weight: 600; background: rgba(255,255,255,.18); color: #fff; padding: 3px 10px; border-radius: 12px; }

.emerg-card {
  background: var(--white); border-radius: var(--rlg);
  border: 2px solid var(--red-acc); padding: 26px;
  box-shadow: 0 4px 20px rgba(185,28,28,.12);
}
.emerg-card-title { font-size: 12px; font-weight: 700; color: var(--red-acc); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.emerg-number { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--red-acc); margin-bottom: 4px; text-decoration: none; transition: color .2s; }
.emerg-number:hover { color: #9b1616; }
.emerg-sub  { font-size: 12px; color: var(--slate-light); margin-bottom: 18px; }
.emerg-row  { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(54,44,106,.07); }
.emerg-row:last-of-type { border-bottom: none; }
.emerg-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.emerg-label{ font-size: 11px; color: var(--slate-light); margin-bottom: 1px; }
.emerg-val  { font-size: 13px; font-weight: 600; color: var(--kg-blue); line-height: 1.4; }
.avail-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--green-acc); }
.avail-dot   { width: 8px; height: 8px; border-radius: 50%; background: var(--green-acc); }

.cap-strip  { background: var(--kg-blue); padding: 20px 0; }
.cap-inner  { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cap-item   { display: flex; align-items: center; gap: 0; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; }
.cap-item strong { color: #fff; font-weight: 700; }

.approach-section { padding: 72px 0; background: var(--ivory); }
.approach-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.approach-text h2 { font-family: var(--font-display); font-size: clamp(22px,2.8vw,32px); font-weight: 700; color: var(--kg-blue); line-height: 1.25; margin-bottom: 16px; }
.approach-text p  { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 14px; }
.approach-text strong { color: var(--kg-blue); }
.approach-points { display: flex; flex-direction: column; gap: 12px; }
.ap-item  { display: flex; align-items: flex-start; padding: 14px 16px; background: var(--white); border-radius: var(--r); border: 1px solid rgba(54,44,106,.07); }
.ap-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 3px; }
.ap-desc  { font-size: 12px; color: var(--slate); line-height: 1.55; }

/* ── 9. FACILITIES PAGE ── */
.fac-hero { background: var(--ivory); padding: 60px 0 52px; position: relative; overflow: hidden; }
.fac-hero::before { content: ''; position: absolute; top: -120px; right: -100px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(201,150,42,.09) 0%, transparent 70%); pointer-events: none; }
.fac-hero::after  { content: ''; position: absolute; bottom: -80px; left: -60px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(54,44,106,.06) 0%, transparent 70%); pointer-events: none; }
.fac-hero-grid    { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; position: relative; z-index: 1; }
.fac-hero h1 { font-family: var(--font-display); font-size: clamp(26px,3.4vw,48px); font-weight: 700; color: var(--kg-blue); line-height: 1.16; margin-bottom: 16px; }
.fac-hero h1 em { font-style: normal; color: var(--gold); display: block; font-size: 85%; }
.fac-hero-desc  { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 24px; max-width: 500px; }
.fac-hero-desc strong { color: var(--kg-blue); }
.fac-hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.fac-hero-stats { display: flex; padding-top: 28px; border-top: 1px solid rgba(54,44,106,.1); }
.fhs { padding: 0 24px; display: flex; flex-direction: column; }
.fhs:first-child { padding-left: 0; }
.fhs + .fhs { border-left: 1px solid rgba(54,44,106,.1); }
.fhs-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--kg-blue); line-height: 1; }
.fhs-lbl { font-size: 11px; color: var(--slate-light); margin-top: 3px; }

.fac-nav-strip { background: var(--white); border-bottom: 1px solid rgba(54,44,106,.08); position: sticky; top: 72px; z-index: 90; box-shadow: 0 2px 8px rgba(54,44,106,.06); }
.fac-nav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; height: 52px; }
.fac-nav-inner::-webkit-scrollbar { display: none; }
.fac-nav-tab { flex-shrink: 0; padding: 0 18px; height: 100%; display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--slate); text-decoration: none; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; }
.fac-nav-tab:hover { color: var(--kg-blue); }
.fac-nav-tab.active { color: var(--kg-blue); font-weight: 600; border-bottom-color: var(--kg-blue); }

.accred-banner { background: linear-gradient(135deg, var(--kg-blue) 0%, var(--kg-blue-soft) 100%); padding: 28px 0; }
.accred-inner  { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.accred-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.accred-badge  { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 10px; padding: 10px 16px; }
.accred-badge-icon { font-size: 24px; }
.accred-badge-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.accred-badge-text span   { font-size: 11px; color: rgba(255,255,255,.6); }
.accred-cta { flex-shrink: 0; text-align: right; }
.accred-cta p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; }

.fac-section { padding: 72px 0; }
.fac-section.bg-white { background: var(--white); }
.fac-section.bg-ivory { background: var(--ivory); }

.ot-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.ot-card   { background: var(--white); border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid rgba(54,44,106,.07); transition: transform .22s, box-shadow .22s; }
.ot-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.ot-card-header { padding: 28px 28px 22px; background: linear-gradient(135deg, var(--kg-blue) 0%, var(--kg-blue-mid) 100%); position: relative; overflow: hidden; }
.ot-card-header::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,.05); }
.ot-card-number { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: rgba(255,255,255,.12); line-height: 1; position: absolute; top: 14px; right: 22px; }
.ot-card-icon   { font-size: 36px; margin-bottom: 12px; }
.ot-card-title  { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ot-card-sub    { font-size: 12px; color: rgba(255,255,255,.65); }
.ot-card-body   { padding: 22px 28px 26px; }
.ot-feat-list   { display: flex; flex-direction: column; gap: 10px; }
.ot-feat        { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--slate); }
.ot-feat-check  { width: 20px; height: 20px; border-radius: 50%; background: var(--green-bg); color: var(--green-acc); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ot-feat strong { color: var(--kg-blue); font-weight: 600; }

.major-fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.mfac-card { background: var(--white); border-radius: var(--rlg); overflow: hidden; border: 1px solid rgba(54,44,106,.08); box-shadow: var(--sh-sm); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.mfac-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.mfac-top { padding: 28px 24px 22px; text-align: center; position: relative; overflow: hidden; }
.mfac-top.nicu   { background: linear-gradient(135deg, #fdf4ff 0%, #ede0ff 100%); }
.mfac-top.labour { background: linear-gradient(135deg, #fff0f6 0%, #ffe0ee 100%); }
.mfac-top.icu    { background: linear-gradient(135deg, #fff7ed 0%, #ffe8c8 100%); }
.mfac-top.emerg  { background: linear-gradient(135deg, #fef2f2 0%, #ffe0e0 100%); }
.mfac-top.ward-d { background: linear-gradient(135deg, #f0fdf4 0%, #d6f5e3 100%); }
.mfac-top.ward-g { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.mfac-icon  { font-size: 48px; margin-bottom: 12px; display: block; }
.mfac-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--kg-blue); margin-bottom: 4px; }
.mfac-sub   { font-size: 12px; color: var(--slate-light); }
.mfac-body  { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.mfac-desc  { font-size: 13px; color: var(--slate); line-height: 1.68; margin-bottom: 16px; flex: 1; }
.mfac-tags  { display: flex; flex-wrap: wrap; gap: 5px; }
.mfac-tag   { font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 5px; background: var(--violet-tint); color: var(--kg-blue); }

.diag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.diag-card { background: var(--white); border-radius: var(--r); padding: 22px 18px; border: 1px solid rgba(54,44,106,.08); text-align: center; transition: transform .2s, box-shadow .2s, background .2s; position: relative; overflow: hidden; }
.diag-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--kg-blue); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.diag-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); background: var(--ivory); }
.diag-card:hover::before { transform: scaleX(1); }
.diag-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.diag-name { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 6px; }
.diag-desc { font-size: 12px; color: var(--slate); line-height: 1.55; }

.wards-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.ward-card { background: var(--white); border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid rgba(54,44,106,.08); display: flex; transition: transform .22s, box-shadow .22s; }
.ward-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.ward-card-stripe { width: 6px; flex-shrink: 0; }
.ward-card-stripe.deluxe  { background: linear-gradient(to bottom, var(--gold), var(--gold-light)); }
.ward-card-stripe.general { background: linear-gradient(to bottom, var(--kg-blue), var(--kg-blue-soft)); }
.ward-body  { padding: 24px 24px 24px 20px; flex: 1; }
.ward-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.ward-badge.deluxe  { background: var(--amber-light); color: #7a4a0a; border: 1px solid rgba(201,150,42,.3); }
.ward-badge.general { background: var(--violet-tint); color: var(--kg-blue); border: 1px solid rgba(54,44,106,.18); }
.ward-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; }
.ward-desc  { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.ward-amenities { display: flex; flex-direction: column; gap: 6px; }
.ward-amen { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--slate); }
.ward-amen-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ward-amen-dot.deluxe  { background: var(--gold); }
.ward-amen-dot.general { background: var(--kg-blue-soft); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.sup-card { background: var(--ivory); border-radius: var(--r); padding: 22px 20px; border: 1px solid rgba(54,44,106,.07); display: flex; gap: 14px; align-items: flex-start; transition: box-shadow .2s, transform .2s, background .2s; }
.sup-card:hover { box-shadow: var(--sh-md); transform: translateX(4px); background: var(--white); }
.sup-icon  { font-size: 28px; flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); }
.sup-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 4px; }
.sup-desc  { font-size: 12px; color: var(--slate); line-height: 1.6; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 180px; gap: 10px; margin-top: 40px; }
.gal-slot { border-radius: var(--r); overflow: hidden; background: var(--ivory-mid); border: 2px dashed rgba(54,44,106,.12); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; transition: border-color .2s, background .2s; cursor: pointer; }
.gal-slot:hover { border-color: rgba(201,150,42,.5); background: var(--amber-light); }
.gal-slot.span2 { grid-column: span 2; }
.gal-icon  { font-size: 32px; opacity: .35; }
.gal-label { font-size: 12px; font-weight: 600; color: var(--kg-blue); opacity: .6; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.cert-card { background: var(--white); border-radius: var(--r); padding: 22px 18px; border: 1px solid rgba(54,44,106,.08); text-align: center; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; }
.cert-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.cert-icon  { font-size: 36px; margin-bottom: 10px; display: block; }
.cert-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 5px; }
.cert-desc  { font-size: 12px; color: var(--slate); line-height: 1.55; }
.cert-badge-pill { display: inline-block; margin-top: 10px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; background: var(--green-bg); color: var(--green-acc); border: 1px solid rgba(26,107,74,.2); }

/* ── 10. VISA MEDICAL (Australia & UK) ── */
.country-section { padding: 80px 0; background: var(--white); }
.country-cards   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ccard { border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh-md); transition: box-shadow .25s, transform .25s; }
.ccard:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.ccard-head   { padding: 32px 36px 28px; }
.ccard-aus .ccard-head { background: linear-gradient(135deg, var(--kg-blue) 0%, var(--kg-blue-mid) 100%); }
.ccard-uk  .ccard-head { background: linear-gradient(135deg, var(--kg-blue-mid) 0%, var(--kg-blue-soft) 100%); }
.ccard-flag  { font-size: 40px; margin-bottom: 14px; display: block; }
.ccard-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ccard-auth  { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.ccard-hl-list { display: flex; flex-direction: column; gap: 8px; }
.ccard-hl      { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.45; }
.ccard-hl-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.ccard-body    { background: var(--white); padding: 28px 36px; }
.ccard-blurb   { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; }
.ccard-callout { font-size: 13px; font-weight: 600; padding: 10px 14px; border-radius: 7px; margin-bottom: 22px; line-height: 1.55; }
.ccard-aus .ccard-callout { background: var(--amber-light); color: #7a4a0a; border-left: 3px solid var(--gold); }
.ccard-uk  .ccard-callout { background: var(--violet-tint); color: var(--kg-blue); border-left: 3px solid var(--kg-blue); }
.ccard-cta { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-radius: 9px; font-size: 15px; font-weight: 700; background: var(--kg-blue); color: #fff; transition: all .2s; text-decoration: none; }
.ccard-cta:hover { background: var(--kg-blue-mid); color: #fff; }
.ccard-cta-arrow { transition: transform .2s; }
.ccard:hover .ccard-cta-arrow { transform: translateX(4px); }

/* UK visa specifics */
.included-section { padding: 72px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { background: var(--ivory); border-radius: var(--rlg); padding: 24px 20px; border: 1px solid rgba(54,44,106,.08); text-align: center; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.feature-icon  { font-size: 32px; margin-bottom: 14px; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 7px; }
.feature-desc  { font-size: 12px; color: var(--slate); line-height: 1.6; }
.feature-tag   { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: var(--green-bg); color: var(--green-acc); margin-top: 8px; }

.details-section { padding: 72px 0; background: var(--white); }
.details-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.doc-card { background: var(--white); border-radius: var(--rlg); border: 1px solid rgba(54,44,106,.08); overflow: hidden; box-shadow: var(--sh-sm); }
.doc-card-header { background: var(--kg-blue); padding: 18px 26px; }
.doc-card-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.doc-card-header p  { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }
.doc-list  { padding: 6px 0; }
.doc-item  { display: flex; align-items: flex-start; gap: 12px; padding: 12px 26px; border-bottom: 1px solid rgba(54,44,106,.05); transition: background .15s; }
.doc-item:last-child { border-bottom: none; }
.doc-item:hover { background: var(--ivory); }
.doc-num  { width: 24px; height: 24px; border-radius: 50%; background: var(--kg-blue); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.doc-name { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.doc-sub  { font-size: 12px; color: var(--slate-light); margin-top: 2px; }
.doc-tag  { display: inline-block; font-size: 9.5px; font-weight: 700; padding: 1px 7px; border-radius: 3px; margin-left: 6px; vertical-align: middle; letter-spacing: .04em; }
.tag-req { background: var(--red-bg); color: var(--red-acc); border: 1px solid rgba(185,28,28,.15); }
.tag-imp { background: var(--amber-light); color: #7a4a0a; border: 1px solid rgba(201,150,42,.25); }
.tb-box  { margin: 0 26px 20px; padding: 14px 16px; background: var(--violet-tint); border-radius: 8px; border-left: 3px solid var(--kg-blue); }
.tb-box-title { font-size: 13px; font-weight: 700; color: var(--kg-blue); margin-bottom: 5px; }
.tb-box-body  { font-size: 12px; color: var(--slate); line-height: 1.6; }

.exam-card   { background: var(--kg-blue); border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh-sm); }
.exam-header { padding: 18px 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
.exam-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.dur-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(201,150,42,.15); border: 1px solid rgba(201,150,42,.25); border-radius: 8px; padding: 10px 16px; margin: 16px 26px; }
.dur-num  { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.dur-lbl  { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.4; }
.exam-list { padding: 0 26px 6px; }
.exam-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.exam-item:last-child { border-bottom: none; }
.exam-icon  { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; margin-top: 1px; }
.exam-title { font-size: 13px; font-weight: 700; color: var(--gold-light); margin-bottom: 3px; }
.exam-desc  { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.6; }
.lang-bar   { display: flex; align-items: center; gap: 8px; margin: 0 26px 22px; padding: 11px 14px; background: rgba(232,226,245,.08); border-radius: 7px; border: 1px solid rgba(255,255,255,.1); }
.lang-label { font-size: 12px; font-weight: 700; color: var(--gold-light); }
.lang-vals  { font-size: 12px; color: rgba(255,255,255,.6); }

.visacats-section { padding: 72px 0; background: var(--ivory); }
.visacats-section h2 { font-family: var(--font-display); font-size: clamp(22px,2.6vw,30px); font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; }
.lead { font-size: 15px; color: var(--slate); margin-bottom: 36px; }
.visa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.visa-card { background: var(--white); border-radius: var(--r); padding: 20px; border: 1px solid rgba(54,44,106,.08); position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.visa-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.visa-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--kg-blue); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.visa-card:hover::before, .visa-card.active::before { transform: scaleX(1); }
.visa-card.active::before { background: var(--gold); }
.visa-icon { font-size: 24px; margin-bottom: 10px; }
.visa-name { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 5px; }
.visa-desc { font-size: 12px; color: var(--slate); line-height: 1.55; }
.visa-note { font-size: 11px; color: var(--green-acc); font-weight: 600; margin-top: 6px; }
.pop-tag   { position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 3px; background: var(--amber-light); color: #7a4a0a; letter-spacing: .04em; }

/* Visa geo section */
.geo-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.geo-info-stack{ display: flex; flex-direction: column; gap: 14px; }
.geo-card      { background: var(--white); border-radius: var(--rlg); padding: 20px 22px; border: 1px solid rgba(54,44,106,.08); }
.geo-card h4   { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.geo-card p    { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 0; }
.d-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.d-chip  { font-size: 12px; font-weight: 500; padding: 3px 10px; border-radius: 12px; background: var(--ivory); border: 1px solid rgba(54,44,106,.1); color: var(--slate); }

.district-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dc { background: var(--ivory); border-radius: var(--r); padding: 14px 16px; border: 1px solid rgba(54,44,106,.07); }
.dc.primary { background: var(--kg-blue); border-color: transparent; }
.dc-name  { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.dc.primary .dc-name  { color: #fff; }
.dc-state { font-size: 11px; color: var(--slate-light); }
.dc.primary .dc-state { color: rgba(255,255,255,.6); }
.dc-time  { font-size: 12px; color: var(--kg-blue-mid); font-weight: 600; margin-top: 4px; }
.dc.primary .dc-time  { color: var(--gold-light); }
.dc-note  { font-size: 11px; color: var(--green-acc); font-weight: 500; margin-top: 2px; }
.dc.primary .dc-note  { color: var(--gold-light); }
.geo-note { margin-top: 12px; padding: 14px 16px; background: var(--violet-tint); border-radius: var(--r); border: 1px solid rgba(54,44,106,.1); font-size: 13px; color: var(--kg-blue); line-height: 1.6; }

.crosslink-section { padding: 48px 0; background: var(--ivory-mid); }
.crosslink-inner   { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--white); border-radius: var(--rlg); padding: 28px 36px; border: 1px solid rgba(54,44,106,.08); box-shadow: var(--sh-sm); }
.crosslink-text h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--kg-blue); margin-bottom: 5px; }
.crosslink-text p  { font-size: 14px; color: var(--slate); margin-bottom: 0; }
.crosslink-cta { flex-shrink: 0; }

/* ── 11. MASTER HEALTH CHECKUP ── */
.detect-section { padding: 72px 0; background: var(--ivory); }
.detect-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 36px; }
.detect-pill { background: var(--white); border-radius: var(--r); padding: 14px 16px; border: 1px solid rgba(54,44,106,.08); text-align: center; font-size: 13px; font-weight: 600; color: var(--kg-blue); transition: all .2s; }
.detect-pill:hover { background: var(--kg-blue); color: #fff; box-shadow: var(--sh-md); }

.packages-section { padding: 72px 0; background: var(--white); }
.packages-note    { background: var(--amber-light); border-radius: var(--r); padding: 14px 20px; border: 1px solid rgba(201,150,42,.2); font-size: 13px; color: #7a4a0a; margin-bottom: 32px; }
.packages-note strong { font-weight: 700; }

.benefit-cards { display: flex; flex-direction: column; gap: 10px; }
.benefit-card  { background: var(--ivory); border-radius: var(--r); padding: 14px 18px; border: 1px solid rgba(54,44,106,.07); border-left: 3px solid var(--gold); transition: box-shadow .2s; }
.benefit-card:hover { box-shadow: var(--sh-md); }
.benefit-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 3px; }
.benefit-desc  { font-size: 12px; color: var(--slate); line-height: 1.55; }

.corporate-section { padding: 80px 0; background: var(--kg-blue); position: relative; overflow: hidden; }
.corporate-section::before { content: ''; position: absolute; top: -100px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: rgba(201,150,42,.06); pointer-events: none; }
.corporate-section::after  { content: ''; position: absolute; bottom: -80px; left: -60px; width: 360px; height: 360px; border-radius: 50%; background: rgba(232,226,245,.04); pointer-events: none; }
.corp-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.corp-header .eyebrow { color: var(--gold-light); }
.corp-header h2 { font-family: var(--font-display); font-size: clamp(26px,3.2vw,40px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.corp-header p  { font-size: 15px; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }
.corp-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.corp-card   { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rlg); padding: 28px; transition: background .2s, transform .2s; }
.corp-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.corp-card-num      { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: rgba(201,150,42,.25); line-height: 1; margin-bottom: 8px; }
.corp-card-name     { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.corp-card-sub      { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 16px; font-style: italic; }
.corp-card-features { display: flex; flex-direction: column; gap: 8px; }
.corp-feat { font-size: 13px; color: rgba(255,255,255,.8); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.corp-feat::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; margin-top: 7px; }
.corp-card-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px; background: rgba(201,150,42,.15); color: var(--gold-light); border: 1px solid rgba(201,150,42,.2); margin-top: 16px; }
.corp-enquiry { margin-top: 48px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rlg); padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.corp-enquiry-text h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.corp-enquiry-text p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 0; }
.corp-enquiry-text .contact-row { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 8px; }
.corp-enquiry-text .contact-row a { color: var(--gold-light); font-weight: 600; text-decoration: none; }
.corp-enquiry-ctas { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

.partners-section { padding: 72px 0; background: var(--ivory); }
.partners-intro { text-align: center; margin-bottom: 48px; }
.partners-intro h2 { font-family: var(--font-display); font-size: clamp(22px,2.8vw,34px); font-weight: 700; color: var(--kg-blue); margin-bottom: 10px; }
.partners-intro p  { font-size: 15px; color: var(--slate); margin-bottom: 0; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 24px; }
.partner-logo { background: var(--white); border-radius: var(--r); padding: 16px 12px; border: 1px solid rgba(54,44,106,.08); display: flex; align-items: center; justify-content: center; min-height: 60px; font-size: 13px; font-weight: 700; color: var(--slate); text-align: center; transition: box-shadow .2s, border-color .2s; }
.partner-logo:hover { box-shadow: var(--sh-md); border-color: rgba(54,44,106,.15); }
.partner-placeholder { background: var(--ivory-mid); border-radius: var(--r); padding: 16px 12px; border: 2px dashed rgba(54,44,106,.12); display: flex; align-items: center; justify-content: center; min-height: 60px; font-size: 11px; color: var(--slate-light); text-align: center; }
.partners-note { text-align: center; font-size: 13px; color: var(--slate-light); font-style: italic; }

.book-section { padding: 72px 0; background: var(--white); }
.book-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.book-text h2 { font-family: var(--font-display); font-size: clamp(22px,2.8vw,34px); font-weight: 700; color: var(--kg-blue); margin-bottom: 14px; line-height: 1.25; }
.book-text p  { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 14px; }
.book-text strong { color: var(--kg-blue); }
.book-contact-card { background: var(--ivory); border-radius: var(--rlg); padding: 28px; border: 1px solid rgba(54,44,106,.08); box-shadow: var(--sh-sm); }
.bcc-title { font-size: 12px; font-weight: 700; color: var(--kg-blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.bcc-row   { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(54,44,106,.07); }
.bcc-row:last-of-type { border-bottom: none; }
.bcc-icon  { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.bcc-label { font-size: 11px; color: var(--slate-light); margin-bottom: 2px; }
.bcc-val   { font-size: 14px; font-weight: 600; color: var(--kg-blue); }
.bcc-val.sm { font-size: 13px; line-height: 1.5; }
.delivery-note { margin-top: 12px; padding: 12px 14px; background: var(--green-bg); border-radius: 8px; font-size: 12px; color: var(--green-acc); line-height: 1.6; border: 1px solid rgba(26,107,74,.15); }
.delivery-note strong { font-weight: 700; }

/* ── 12. RADIOLOGY PAGE ── */
.modalities-section { padding: 72px 0; background: var(--white); }
.modality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.modality-card { border-radius: var(--rlg); overflow: hidden; border: 1px solid rgba(54,44,106,.08); transition: box-shadow .2s, transform .2s; }
.modality-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.mc-header { background: var(--kg-blue); padding: 22px 24px 18px; }
.mc-header h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.mc-header p  { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 0; }
.mc-body  { background: var(--white); padding: 20px 24px; }
.mc-desc  { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 16px; }
.mc-note  { font-size: 11px; color: var(--slate-light); font-style: italic; background: var(--ivory-mid); border-radius: 6px; padding: 8px 10px; border-left: 3px solid rgba(54,44,106,.15); line-height: 1.55; }
.mc-scans { display: flex; flex-direction: column; gap: 6px; }
.mc-scan  { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--slate); line-height: 1.5; }
.mc-scan::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.mc-scan strong { color: var(--kg-blue); font-weight: 600; }

.womens-section { padding: 72px 0; background: var(--ivory); }
.womens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.womens-card { background: var(--white); border-radius: var(--rlg); padding: 26px; border: 1px solid rgba(54,44,106,.08); position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.womens-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.womens-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--kg-blue); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.womens-card:hover::before { transform: scaleX(1); }
.wc-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.wc-name    { font-size: 17px; font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; font-family: var(--font-display); }
.wc-desc    { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 12px; }
.wc-note    { font-size: 11px; color: var(--slate-light); font-style: italic; background: var(--ivory-mid); border-radius: 6px; padding: 8px 10px; border-left: 3px solid rgba(54,44,106,.12); line-height: 1.55; }

/* ── 13. GYNECOLOGY PAGE ── */
.facility-strip  { background: var(--kg-blue); padding: 20px 0; }
.fstrip-inner    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.fstrip-item     { background: var(--kg-blue); padding: 18px 24px; }
.fstrip-label    { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.fstrip-val      { font-size: 15px; font-weight: 700; color: #fff; }
.fstrip-sub      { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }

.maternity-block { background: var(--kg-blue); border-radius: var(--rlg); padding: 32px 36px; margin-bottom: 24px; }
.maternity-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.maternity-block .mb-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.maternity-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ms-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 14px 16px; }
.ms-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ms-desc { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ── 14. INVESTIGATIONS / CONDITIONS ── */
.invest-section { padding: 72px 0; background: var(--white); }
.invest-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.invest-card    { background: var(--ivory); border-radius: var(--rlg); padding: 24px; border: 1px solid rgba(54,44,106,.07); position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.invest-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); background: var(--white); }
.invest-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red-acc); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.invest-card:hover::before { transform: scaleX(1); }
.invest-icon  { font-size: 28px; margin-bottom: 12px; }
.invest-name  { font-size: 15px; font-weight: 700; color: var(--kg-blue); margin-bottom: 7px; }
.invest-abbr  { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.invest-desc  { font-size: 13px; color: var(--slate); line-height: 1.65; }
.invest-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.invest-tag   { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 4px; background: var(--red-bg); color: var(--red-acc); }

/* ── 15. PAGE-SPECIFIC RESPONSIVE ── */
@media (max-width: 1024px) {
  /* Hero */
  .hero-grid   { grid-template-columns: 1fr 360px; gap: 36px; }
  .fac-hero-grid { grid-template-columns: 1fr 300px; gap: 36px; }
  /* Visa */
  .country-cards   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  /* Facilities */
  .major-fac-grid  { grid-template-columns: 1fr 1fr; }
  .diag-grid       { grid-template-columns: 1fr 1fr; }
  .cert-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-slot.span2  { grid-column: span 1; }
  .support-grid    { grid-template-columns: 1fr 1fr; }
  /* Dept grid */
  .dept-grid       { grid-template-columns: repeat(3, 1fr); }
  /* Trust */
  .trust-grid      { grid-template-columns: 1fr 1fr; }
  /* Visa UK */
  .visa-grid       { grid-template-columns: 1fr 1fr; }
  /* Health checkup */
  .detect-grid     { grid-template-columns: repeat(4, 1fr); }
  .partners-grid   { grid-template-columns: repeat(4, 1fr); }
  .corp-models     { grid-template-columns: 1fr 1fr; }
  /* Modality */
  .modality-grid   { grid-template-columns: 1fr 1fr; }
  /* Blog */
  .blog-grid-area  { grid-template-columns: 1fr 280px; gap: 32px; }
  .feat-card       { grid-template-columns: 1fr; }
  .feat-img        { min-height: 200px; }
  .media-grid      { grid-template-columns: 1fr 1fr; }
  /* Gyn */
  .fstrip-inner    { grid-template-columns: 1fr 1fr; }
  .maternity-services { grid-template-columns: 1fr 1fr; }
  /* Services */
  .services-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero           { padding: 48px 0; }
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-card      { display: none; }
  .hero-stats     { flex-wrap: wrap; }
  .hstat          { padding: 0 14px; }
  .hero-stat-row  { flex-wrap: wrap; gap: 12px; }
  /* Visa feature */
  .visa-feature-inner { grid-template-columns: 1fr; gap: 36px; }
  /* Dept grid */
  .dept-grid      { grid-template-columns: 1fr 1fr; }
  /* Stories / legacy */
  .story-grid, .legacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-slot  { height: 260px; }
  /* MVV */
  .mvv-top        { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  /* Facilities */
  .fac-hero-grid  { grid-template-columns: 1fr; }
  .fac-hero-grid .book-card { display: none; }
  .ot-layout      { grid-template-columns: 1fr; }
  .major-fac-grid { grid-template-columns: 1fr; }
  .wards-layout   { grid-template-columns: 1fr; }
  .diag-grid      { grid-template-columns: 1fr 1fr; }
  .support-grid   { grid-template-columns: 1fr; }
  .cert-grid      { grid-template-columns: 1fr 1fr; }
  .accred-inner   { flex-direction: column; text-align: center; }
  .accred-cta     { text-align: center; }
  .fac-hero-stats { flex-wrap: wrap; }
  .fhs            { padding: 0 14px; }
  /* Trust strip */
  .trust-strip-inner { flex-direction: column; }
  .trust-strip .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-strip .trust-item:last-child { border-bottom: none; }
  /* Emergency */
  .emerg-card     { display: none; }
  .approach-grid  { grid-template-columns: 1fr; }
  .cap-inner      { justify-content: flex-start; gap: 12px; }
  .eb-inner       { gap: 10px; }
  /* Visa */
  .details-grid   { grid-template-columns: 1fr; }
  .geo-grid       { grid-template-columns: 1fr; }
  .crosslink-inner { flex-direction: column; gap: 16px; }
  .district-grid  { grid-template-columns: 1fr 1fr; }
  /* Health checkup */
  .why-grid.why-2col { grid-template-columns: 1fr; }
  .book-grid      { grid-template-columns: 1fr; }
  .corp-models    { grid-template-columns: 1fr; }
  .corp-enquiry   { flex-direction: column; align-items: flex-start; }
  .partners-grid  { grid-template-columns: repeat(3, 1fr); }
  .detect-grid    { grid-template-columns: repeat(3, 1fr); }
  .steps::before  { display: none; }
  /* Modality */
  .modality-grid  { grid-template-columns: 1fr; }
  /* Radiology womens */
  .womens-grid    { grid-template-columns: 1fr; }
  /* Gynec */
  .fstrip-inner   { grid-template-columns: 1fr 1fr; }
  .maternity-services { grid-template-columns: 1fr; }
  /* Departments */
  .featured-grid  { grid-template-columns: 1fr; }
  .featured-card  { flex-direction: column; align-items: flex-start; }
  .geo-inner      { grid-template-columns: 1fr; }
  .trust-grid     { grid-template-columns: 1fr 1fr; }
  /* Facilities about */
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  /* Services */
  .services-grid  { grid-template-columns: 1fr; }
  /* Invest */
  .invest-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Dept */
  .dept-grid      { grid-template-columns: 1fr 1fr; }
  /* Facilities */
  .diag-grid      { grid-template-columns: 1fr; }
  .cert-grid      { grid-template-columns: 1fr; }
  .fac-hero-ctas  { flex-direction: column; }
  /* Visa */
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .visa-grid      { grid-template-columns: 1fr 1fr; }
  .district-grid  { grid-template-columns: 1fr 1fr; }
  /* Health checkup */
  .detect-grid    { grid-template-columns: 1fr 1fr; }
  .partners-grid  { grid-template-columns: 1fr 1fr; }
  .steps          { grid-template-columns: 1fr; }
  .corp-enquiry-ctas { width: 100%; }
  .btn-corp-gold, .btn-corp-outline { justify-content: center; width: 100%; }
  /* Gynec */
  .fstrip-inner   { grid-template-columns: 1fr; }
  /* Radiology */
  .womens-grid    { grid-template-columns: 1fr; }
  /* Invest */
  .invest-grid    { grid-template-columns: 1fr; }
  /* About fac */
  .facilities-grid { grid-template-columns: 1fr 1fr; }
}
