/* ============================================================
   VIK VEER ENT SURGEON — DESIGN SYSTEM
   consultant-surgeon.co.uk
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --blue:        #29AAE1;
  --blue-dark:   #1d87b5;
  --blue-light:  #e8f6fd;
  --navy:        #1B3A5C;
  --navy-deep:   #0d2236;
  --navy-mid:    #234b75;
  --white:       #ffffff;
  --light:       #f5f8fc;
  --light-mid:   #eef3f9;
  --gray:        #667085;
  --gray-dark:   #344054;
  --border:      #d0dae8;
  --gold:        #c9a84c;

  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', system-ui, sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  .25s ease;
  --nav-h:       72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 600; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gray);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide {
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 80px; }
.section-sm { padding-block: 48px; }
.section-lg { padding-block: 110px; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--deep { background: var(--navy-deep); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41,170,225,.4);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .875rem; }

/* --- Section Headings --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  vertical-align: middle;
  margin-right: 8px;
}
.section-heading { margin-bottom: 20px; }
.section-intro { max-width: 640px; margin-inline: auto; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-body { padding: 28px; }
.card-img img { width: 100%; height: 220px; object-fit: cover; }

/* --- Top Bar --- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 9px 0;
}
.topbar a {
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.topbar a:hover { color: var(--white); }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-item svg { flex-shrink: 0; }
.topbar-book {
  background: var(--blue);
  color: var(--white) !important;
  padding: 5px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: .82rem;
  transition: background var(--transition);
}
.topbar-book:hover { background: var(--blue-dark) !important; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-h);
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-logo { flex-shrink: 0; margin-right: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-links > li > a .caret {
  display: inline-block;
  transition: transform var(--transition);
}
.nav-links > li:hover > a .caret { transform: rotate(180deg); }
.nav-book-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-book-btn:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* --- Mega Menu --- */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 640px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  pointer-events: none;
}
.nav-links > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-col h6 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.mega-col ul { list-style: none; }
.mega-col ul li a {
  display: block;
  padding: 5px 0;
  font-size: .875rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.mega-col ul li a:hover { color: var(--blue); }
.mega-col ul li a::before {
  content: '→ ';
  color: var(--blue);
  font-size: .75rem;
}

/* Dropdown (simple, non-mega) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  pointer-events: none;
  list-style: none;
  z-index: 100;
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  color: var(--gray-dark);
  border-radius: 4px;
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* --- Mobile Nav --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  font-size: 1.5rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links > li > a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links .mobile-sub {
  list-style: none;
  padding: 8px 0 8px 16px;
}
.mobile-nav-links .mobile-sub li a {
  display: block;
  padding: 7px 0;
  font-size: .9rem;
  color: var(--gray-dark);
  border-bottom: 1px solid #f0f0f0;
}
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: var(--font-body);
}
.mobile-sub-toggle .caret { transition: transform var(--transition); }
.mobile-sub-toggle.open .caret { transform: rotate(180deg); }
.mobile-sub-group { display: none; }
.mobile-sub-group.open { display: block; }
.mobile-sub-head {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 12px 0 4px 0;
}
.mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2329AAE1' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* --- Homepage Hero (Slider) --- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: flex-end;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,34,54,.85) 0%, rgba(13,34,54,.5) 50%, rgba(13,34,54,.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  max-width: 620px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.hero-dot.active { background: var(--white); }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  font-weight: 400;
}

/* --- Credential Badges --- */
.cred-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.cred-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--navy);
}
.cred-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { color: var(--blue); }

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; }
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 500;
  border-left: 3px solid var(--blue);
}
.about-quote {
  border-left: 3px solid var(--blue);
  padding: 16px 20px;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
}

/* --- Pathways / Cards Grid --- */
.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pathway-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pathway-card-img { height: 220px; overflow: hidden; }
.pathway-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pathway-card:hover .pathway-card-img img { transform: scale(1.04); }
.pathway-card-body { padding: 28px; }
.pathway-card-body h3 { margin-bottom: 12px; font-size: 1.4rem; }
.pathway-card-body p { font-size: .9rem; color: var(--gray); margin-bottom: 20px; }

/* --- Treatments List --- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.treatment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
  text-decoration: none;
}
.treatment-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  transform: translateX(4px);
}
.treatment-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--blue);
  line-height: .6;
  position: absolute;
  top: 20px;
  left: 24px;
  opacity: .4;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--gray-dark);
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-name { font-weight: 600; font-size: .87rem; color: var(--navy); }
.testimonial-source { font-size: .8rem; color: var(--gray); }
.stars {
  color: #f6a623;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray);
}
.review-badge img { height: 20px; }

/* --- Video Cards --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.video-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.video-thumb {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--navy-deep);
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background var(--transition);
}
.video-card:hover .video-play { background: rgba(0,0,0,.15); }
.video-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.video-card:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg { color: var(--navy); margin-left: 3px; }
.video-info { padding: 18px 20px; }
.video-info h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0;
}
.video-category {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

/* Video filter buttons */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .87rem;
  font-weight: 500;
  border: 2px solid var(--border);
  color: var(--gray-dark);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
}
.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  line-height: 1;
}

/* --- Content Pages (condition articles) --- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.content-body { min-width: 0; }
.content-body h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.9rem; }
.content-body h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.4rem; }
.content-body h4 { margin-top: 20px; margin-bottom: 10px; font-size: 1.1rem; }
.content-body p { margin-bottom: 1rem; color: var(--gray-dark); }
.content-body ul, .content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}
.content-body li { margin-bottom: .4rem; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-box h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-family: var(--font-head); font-size: 1.2rem; text-transform: none; letter-spacing: 0; border-bottom: none; padding-bottom: 0; }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.sidebar-nav-list { list-style: none; }
.sidebar-nav-list li a {
  display: block;
  padding: 7px 0;
  font-size: .87rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.sidebar-nav-list li a:hover { color: var(--blue); }
.sidebar-nav-list li:last-child a { border-bottom: none; }

/* Key facts box */
.key-facts {
  background: var(--blue-light);
  border: 1px solid rgba(41,170,225,.25);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.key-facts h4 { color: var(--navy); font-family: var(--font-body); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.key-facts ul { list-style: none; padding: 0; }
.key-facts ul li {
  padding: 4px 0;
  font-size: .9rem;
  color: var(--navy);
  padding-left: 16px;
  position: relative;
}
.key-facts ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Warning box */
.warning-box {
  background: #fff8e6;
  border: 1px solid #f6a623;
  border-left: 4px solid #f6a623;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .9rem;
}
.warning-box strong { color: #8a5a00; }

/* Info box */
.info-box {
  background: var(--blue-light);
  border: 1px solid rgba(41,170,225,.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: .9rem;
}

/* --- Locations --- */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.location-card:hover { box-shadow: var(--shadow); }
.location-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
.location-body { padding: 22px; }
.location-type {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.location-type--private { background: rgba(41,170,225,.15); color: var(--blue-dark); }
.location-type--nhs { background: #e8f4e8; color: #276527; }
.location-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .87rem;
  color: var(--gray);
  margin-bottom: 6px;
}
.location-detail svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--blue);
  margin-top: 14px;
  padding: 7px 14px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.location-directions:hover {
  background: var(--blue);
  color: var(--white);
}

/* --- Contact Form --- */
.contact-form { max-width: 680px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .87rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-label span { color: var(--blue); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41,170,225,.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.honey { display: none; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 54px; margin-bottom: 18px; }
.footer-desc { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.9);
  padding: 16px 24px;
  z-index: 5000;
  border-top: 2px solid var(--blue);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.cookie-banner a { color: var(--blue); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-outline-white { margin: 0 8px; }

/* --- Review Platforms Section --- */
.review-platforms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.review-platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .87rem;
  color: var(--navy);
  transition: all var(--transition);
}
.review-platform-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.review-platform-btn img { height: 22px; }

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--light); }
.accordion-header.open { background: var(--blue-light); color: var(--blue); }
.accordion-icon { transition: transform var(--transition); flex-shrink: 0; }
.accordion-header.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 20px 16px; }
.accordion-body.open { display: block; }

/* --- Table --- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 24px 0; }
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-dark);
}
.data-table tr:nth-child(even) td { background: var(--light); }
.data-table tr:hover td { background: var(--blue-light); }

/* --- Divider --- */
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* --- Tag/Badge --- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-book-btn-wrap { display: none !important; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { max-height: 600px; }
  .hero-content { padding-bottom: 60px; }
  .section { padding-block: 56px; }
  .stats-grid { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar .topbar-right { display: none; }
  .cta-banner .btn-outline-white { margin: 0 0 8px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .mega-menu { min-width: 100vw; }
  .btn-lg { padding: 14px 24px; }
}

/* --- Utility: No JS fallback --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── Patient quote / testimonial blocks ────────────────────── */
.patient-quote,
blockquote {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy);
  position: relative;
}
.patient-quote::before,
blockquote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--blue);
  line-height: 0.5;
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-family: var(--font-head);
  opacity: .6;
}
.patient-quote cite,
blockquote cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(41,170,225,.2);
}

/* ── Content body images ───────────────────────────────────── */
.content-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 3px 14px rgba(0,0,0,.1);
  height: auto;
}
.content-body h2 {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.content-body h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.content-body h3 { margin-top: 24px; }

/* ── Inline video embed ─────────────────────────────────────── */
.video-inline {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
