@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #003865;
  --navy-dark: #002040;
  --navy-mid: #00538a;
  --blue: #0070b8;
  --blue-light: #4ba3d3;
  --teal: #0d7a5f;
  --teal-light: #e1f5ee;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --grey-light: #edf2f7;
  --grey: #718096;
  --grey-dark: #2d3748;
  --text: #1a202c;
  --border: rgba(0,56,101,0.12);
  --shadow-sm: 0 2px 8px rgba(0,56,101,0.08);
  --shadow-md: 0 8px 24px rgba(0,56,101,0.12);
  --shadow-lg: 0 20px 48px rgba(0,56,101,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 500; color: var(--navy-dark); line-height: 1.25; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--grey); max-width: 560px; line-height: 1.7; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8952f; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; background: var(--teal-light); color: var(--teal); }

/* ── TOP BAR ── */
.topbar { background: var(--navy-dark); padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-links { display: flex; gap: 24px; }
.topbar-links a { color: rgba(255,255,255,0.65); font-size: 12px; transition: color var(--transition); }
.topbar-links a:hover { color: var(--white); }
.topbar-emergency { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 12px; font-weight: 500; }
.topbar-emergency .dot { width: 7px; height: 7px; background: #f87171; border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

/* ── HEADER / NAV ── */
.header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.header .container { display: flex; align-items: center; height: 68px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { color: var(--white); }
.logo-text .name { font-size: 15px; font-weight: 600; display: block; line-height: 1.2; }
.logo-text .sub { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; display: block; }
nav { flex: 1; display: flex; align-items: center; gap: 2px; }
.nav-link { color: rgba(255,255,255,0.75); font-size: 13.5px; padding: 8px 14px; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.header-cta { flex-shrink: 0; padding: 9px 20px; font-size: 13px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #005a8e 100%); padding: 80px 0 70px; position: relative; overflow: hidden; }

.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 5px 14px; margin-bottom: 20px; }
.hero-badge span { color: rgba(255,255,255,0.8); font-size: 12px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 500; color: var(--white); line-height: 1.18; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.75; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px; min-width: 240px; backdrop-filter: blur(4px); }
.hero-card h3 { color: var(--white); font-size: 14px; font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-card h3::before { content:''; width:8px; height:8px; background:var(--gold); border-radius:50%; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13px; }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { color: rgba(255,255,255,0.6); }
.hour-row .time { color: var(--white); font-weight: 500; }
.hour-row .emrg { color: #f87171; font-size: 11px; font-weight: 600; }

/* ── QUICK ACTIONS ── */
.quick-actions { background: var(--navy-mid); padding: 0; }
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.qa-item { display: flex; align-items: center; gap: 14px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: background var(--transition); text-decoration: none; }
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: rgba(255,255,255,0.08); }
.qa-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.qa-text .title { color: var(--white); font-size: 13px; font-weight: 500; }
.qa-text .sub { color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 2px; }

/* ── SERVICES SECTION ── */
.services-section { padding: 80px 0; background: var(--white); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.view-all { font-size: 13px; color: var(--blue); font-weight: 500; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.view-all:hover { gap: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--navy); opacity:0; transition: opacity var(--transition); }
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.svc-icon { width: 50px; height: 50px; border-radius: 10px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; transition: background var(--transition); }
.service-card:hover .svc-icon { background: #dbeafe; }
.svc-name { font-size: 16px; font-weight: 600; color: var(--navy-dark); margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--blue); font-weight: 500; margin-top: 16px; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--off-white); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.feature-text .ft { font-size: 13px; font-weight: 600; color: var(--navy-dark); }
.feature-text .fd { font-size: 12px; color: var(--grey); margin-top: 2px; }
.about-visual { position: relative; }
.about-img-box { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: var(--white); }
.about-img-box h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.about-img-box p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }
.about-stat-row { display: flex; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.ab-stat .n { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--gold); }
.ab-stat .l { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── SPECIALISTS ── */
.specialists-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-avatar { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; }
.team-initials { width: 72px; height: 72px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; font-family: var(--font-display); font-weight: 500; border: 2px solid rgba(255,255,255,0.25); }
.team-info { padding: 18px; }
.team-name { font-size: 14px; font-weight: 600; color: var(--navy-dark); }
.team-role { font-size: 12px; color: var(--grey); margin-top: 3px; line-height: 1.4; }

/* ── SPECIALISTS PAGE IMPROVEMENTS ── */
/* ── IMPROVED SPECIALISTS CARDS ── */
.spec-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.spec-avatar {
  height: 180px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.spec-avatar img {
  width: 110px !important;
  height: 110px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.spec-info {
padding: 24px 20px 28px;
	flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.spec-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.spec-role {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 8px;
}

.spec-qual {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 500;
  background: var(--teal-light);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.spec-bio {
  font-size: 13.4px;
  line-height: 1.65;
  color: var(--grey);
  flex-grow: 1;
  color: #555;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy-dark); padding: 80px 0; }
.testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--white); }
.testi-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testi-date { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ── BLOG SECTION ── */
.blog-section { padding: 80px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-thumb { height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.blog-cat { font-size: 11px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; }
.blog-date { font-size: 11px; color: var(--grey); }
.blog-title { font-size: 15px; font-weight: 600; color: var(--navy-dark); line-height: 1.4; margin-bottom: 8px; }
.blog-excerpt { font-size: 13px; color: var(--grey); line-height: 1.6; }
.blog-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--blue); font-weight: 500; margin-top: 14px; }

/* ── EMERGENCY BANNER ── */
.emergency-banner { background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%); padding: 20px 0; }
.emergency-banner .container { display: flex; align-items: center; gap: 20px; }
.emrg-text { flex: 1; }
.emrg-text h3 { color: var(--white); font-size: 17px; font-weight: 600; }
.emrg-text p { color: rgba(255,255,255,0.8); font-size: 13px; margin-top: 2px; }
.emrg-numbers { display: flex; gap: 16px; }
.emrg-num { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.15); border-radius: 8px; padding: 10px 20px; }
.emrg-num .n { color: var(--white); font-size: 22px; font-weight: 700; line-height: 1; }
.emrg-num .l { color: rgba(255,255,255,0.7); font-size: 10px; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── CONTACT / FOOTER ── */
.contact-section { padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-info h2 { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--navy-dark); margin-bottom: 16px; }
.contact-info p { color: var(--grey); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-label { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.c-val { font-size: 15px; color: var(--navy-dark); font-weight: 500; margin-top: 2px; }
.contact-form-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 13px; display: block; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }
.nhs-tag { background: #003087; color: var(--white); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 4px; letter-spacing: 1.5px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 52px 0; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 42px); color: var(--white); font-weight: 500; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 560px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 12px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gold); }

/* ── SERVICES PAGE ── */
.services-page { padding: 72px 0; }
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-page-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.service-page-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.spc-header { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 28px; }
.spc-icon { font-size: 36px; margin-bottom: 12px; }
.spc-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.spc-excerpt { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5; }
.spc-body { padding: 24px; }
.spc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.spc-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-dark); }
.spc-features li::before { content:'✓'; color: var(--teal); font-weight: 700; font-size: 12px; }

/* ── SPECIALISTS PAGE ── */
.specialists-page { padding: 72px 0; }
.specialists-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spec-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); text-align: center; }
.spec-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.spec-avatar { height: 160px; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; }
.spec-initials { width: 72px; height: 72px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; font-family: var(--font-display); border: 2px solid rgba(255,255,255,0.25); }
.spec-info { padding: 18px; }
.spec-name { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: 4px; }
.spec-role { font-size: 12px; color: var(--grey); line-height: 1.4; }
.spec-avatar img {
  width: 90px !important;
  height: 90px !important;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
}

.spec-card:hover .spec-avatar img {
  transform: scale(1.05);
  transition: 0.2s ease;
}

/* ── ABOUT PAGE ── */
.about-page { padding: 72px 0; }
.about-page-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 64px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.value-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-title { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: 6px; }
.value-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }
.about-stats-row { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.as-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--gold); }
.as-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── BLOG PAGE ── */
.blog-page { padding: 72px 0; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 72px 0; }

/* ── RESPONSIVE (basic) ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .services-page-grid, .blog-page-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid, .specialists-page-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .about-inner, .about-page-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 600px) {
  .services-grid, .services-page-grid, .blog-page-grid, .blog-grid, .team-grid, .specialists-page-grid { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr 1fr; }
  .about-values, .about-stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Services hero - diagnostics image background + yellow/gold accent */
.page-hero-services {
  background: linear-gradient(rgba(0, 56, 101, 0.78), rgba(0, 56, 101, 0.88)), 
              url('https://southerncarehospital.co.uk/wp-content/uploads/2026/03/diagnosis.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

/* Make sure the "Services" breadcrumb stays yellow/gold */
.page-hero-services .breadcrumb span {
  color: var(--gold);
}

/* Specialist hero - diagnostics image background + yellow/gold accent */
.page-hero-blog {
  background: linear-gradient(rgba(0, 56, 101, 0.78), rgba(0, 56, 101, 0.88)), 
              url('http://southerncarehospital.co.uk/wp-content/uploads/2026/03/su%CC%88nnitus-%20ja%20gu%CC%88nekoloogia%20osakond.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

/* Make sure the "Specialist" breadcrumb stays yellow/gold */
.page-hero-blog .breadcrumb span {
  color: var(--gold);
}

/* Specialist hero - diagnostics image background + yellow/gold accent */
.page-hero-about {
  background: linear-gradient(rgba(0, 56, 101, 0.78), rgba(0, 56, 101, 0.88)), 
              url('http://southerncarehospital.co.uk/wp-content/uploads/2026/03/Erakorralise%20meditsiini%20osakond.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

/* Make sure the "Specialist" breadcrumb stays yellow/gold */
.page-hero-about .breadcrumb span {
  color: var(--gold);
}

/* Specialist hero - diagnostics image background + yellow/gold accent */
.page-hero-specialists {
  background: linear-gradient(rgba(0, 56, 101, 0.78), rgba(0, 56, 101, 0.88)), 
              url('http://southerncarehospital.co.uk/wp-content/uploads/2026/03/room.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

/* Make sure the "Specialist" breadcrumb stays yellow/gold */
.page-hero-specialists .breadcrumb span {
  color: var(--gold);
}



.page-hero-contact {
  background: linear-gradient(rgba(0, 56, 101, 0.78), rgba(0, 56, 101, 0.88)), 
              url('https://southerncarehospital.co.uk/wp-content/uploads/2026/03/contact.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

/* Make sure the "Specialist" breadcrumb stays yellow/gold */
.page-hero-contact .breadcrumb span {
  color: var(--gold);
}



