/* ============================================
   DESIGN SYSTEM - Mr Masha Singh
   Plastic, Reconstructive & Aesthetic Surgeon
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #0B1D3A;
  --color-secondary: #1B4B8A;
  --color-accent: #4A90D9;
  --color-accent-light: #E8F0FE;
  --color-bg: #FBFAF7;
  --color-bg-alt: #F5F2EC;
  --color-white: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-border: #E8E2D4;
  --color-success: #10B981;
  --color-gold: #C9A76C;
  --color-gold-light: #E8D5A8;
  --color-gold-dark: #A88548;
  --color-cream: #F5EFE0;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;

  --shadow-sm: 0 1px 2px rgba(11, 29, 58, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 29, 58, 0.07), 0 2px 4px -2px rgba(11, 29, 58, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(11, 29, 58, 0.08), 0 4px 6px -4px rgba(11, 29, 58, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(11, 29, 58, 0.1), 0 8px 10px -6px rgba(11, 29, 58, 0.05);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --max-width: 1200px;
  --nav-height: 104px;

  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
}

h1 { font-size: 4rem; font-weight: 600; }
h2 { font-size: 3rem; font-weight: 600; }
h3 { font-size: 1.85rem; font-weight: 600; }
h4 { font-size: 1.4rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

p + p { margin-top: 1rem; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--color-white);
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  background: var(--color-cream);
  color: var(--color-gold-dark);
  border: 1px solid var(--color-gold-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  letter-spacing: 0.05em;
}

.btn--primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 167, 108, 0.3);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
  letter-spacing: 0.05em;
}

.btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 133, 72, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
  padding: 10px 0;
}

.nav__logo-img {
  height: 100%;
  width: auto;
  max-width: 360px;
  display: block;
  object-fit: contain;
  object-position: left center;
  /* Crisp rendering on all display types */
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

/* Tablet */
@media (max-width: 1024px) {
  .nav__logo-img {
    max-width: 300px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__logo {
    padding: 8px 0;
  }
  .nav__logo-img {
    max-width: 230px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav__logo-img {
    max-width: 180px;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links > li {
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-secondary);
  background: var(--color-accent-light);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.nav__dropdown-toggle:hover {
  color: var(--color-secondary);
  background: var(--color-accent-light);
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown:focus-within .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Make dropdown toggle keyboard-focusable */
.nav__dropdown-toggle {
  cursor: pointer;
}
.nav__dropdown-toggle:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--color-accent-light);
  color: var(--color-secondary);
}

.nav__cta {
  margin-left: 1.5rem;
  white-space: nowrap;
}

/* Make nav__links stretch so CTA is pushed to far right */
.nav__inner {
  gap: 1.5rem;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 167, 108, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-bg) 0%, var(--color-cream) 100%);
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(201, 167, 108, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.005em;
  font-weight: 600;
}

.hero__credentials {
  font-size: 1rem;
  color: var(--color-gold-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gold-light);
  max-width: 520px;
}

.hero__description {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  font-size: 0.9rem;
  border: 1px solid var(--color-gold-light);
  box-shadow: 0 30px 60px -20px rgba(11, 29, 58, 0.15);
  position: relative;
  overflow: hidden;
}

.hero__image-placeholder::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a:hover {
  color: var(--color-white);
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-secondary);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.card__link:hover svg {
  transform: translateX(3px);
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Specialist Interests --- */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.interest-item:hover {
  border-color: var(--color-gold);
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -8px rgba(11, 29, 58, 0.15);
}

.interest-item::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88548' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  border: 1px solid var(--color-gold-light);
  transition: all 0.3s ease;
}

.interest-item:hover::before {
  background-color: var(--color-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  border-color: var(--color-gold);
}

@media (max-width: 1024px) {
  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Location Cards --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.location-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.location-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.location-card:hover .location-card__image img {
  transform: scale(1.04);
}

.location-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-card__body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.location-card__body address {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  min-height: 4.65em; /* reserve 3 lines so phone numbers align across cards */
}

.location-card__body .phone {
  display: block;
  font-weight: 600;
  color: var(--color-gold-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.location-card__body .card__link {
  margin-top: auto;
  justify-content: center;
  font-size: 0.78rem;
}

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  text-align: center;
}

.location-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.location-card address {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-card .phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-item__icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.trust-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Sidebar Layout (Service Pages) --- */
.sidebar-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  align-self: start;
}

.sidebar__nav {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.sidebar__link {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.sidebar__link:last-child {
  border-bottom: none;
}

.sidebar__link:hover,
.sidebar__link--active {
  background: var(--color-accent-light);
  color: var(--color-secondary);
  padding-left: 1.5rem;
}

.sidebar__link--active {
  border-left: 3px solid var(--color-secondary);
  font-weight: 600;
}

.content {
  min-width: 0;
}

.content h2 {
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content p {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}

.content ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: disc;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.7;
}

.content__cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-accent);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
  color: var(--color-gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.rating-banner {
  position: relative;
  max-width: 880px;
  margin: 0 auto 3rem;
  padding: 3rem 2.5rem 2.5rem;
  background:
    radial-gradient(ellipse at top, rgba(201, 167, 108, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0B1D3A 0%, #122A52 55%, #0B1D3A 100%);
  border-radius: var(--radius-xl);
  box-shadow:
    0 25px 60px -15px rgba(11, 29, 58, 0.45),
    0 0 0 1px rgba(201, 167, 108, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.rating-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.rating-banner__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.75rem;
  background: rgba(201, 167, 108, 0.12);
  border: 1px solid rgba(201, 167, 108, 0.4);
  border-radius: 100px;
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rating-banner__verified svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.rating-banner__score {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #E8D5A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff; /* fallback */
}

.rating-banner__stars {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.rating-banner__stars svg {
  filter: drop-shadow(0 2px 8px rgba(201, 167, 108, 0.5));
}

.rating-banner__headline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  letter-spacing: 0.01em;
}

.rating-banner__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rating-banner__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.rating-banner__stat--divided::before,
.rating-banner__stat--divided::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.rating-banner__stat--divided::before { left: 0; }
.rating-banner__stat--divided::after { right: 0; }

.rating-banner__stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.rating-banner__stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-accent-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  opacity: 0.3;
}

.gallery-item__info {
  padding: 1.25rem;
}

.gallery-item__info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.gallery-item__info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- FAQ Accordion --- */
.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent-light);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--color-accent-light);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.faq-item--open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-info-item a:hover {
  color: var(--color-secondary);
}

.form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
  background: var(--color-white);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__submit {
  width: 100%;
  justify-content: center;
}

.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.1rem 1.4rem;
  background: #FFFAF0;
  border: 1px solid #F3E0B5;
  border-left: 4px solid var(--color-gold-dark);
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.contact-notice__icon {
  flex-shrink: 0;
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.contact-notice p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.form__consent {
  margin-bottom: 1rem;
}

.form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
  cursor: pointer;
}

.form__consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold-dark);
  flex-shrink: 0;
}

.form__consent-label a {
  color: var(--color-navy);
  text-decoration: underline;
}

.form__privacy-note {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.form__field-error {
  color: #B91C1C;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  display: block;
  min-height: 1.1em;
}

.form__input[aria-invalid="true"],
.form__textarea[aria-invalid="true"] {
  border-color: #B91C1C;
  background: #FEF2F2;
}

.form__success {
  display: none;
  padding: 1rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  color: #065F46;
  font-weight: 500;
  text-align: center;
}

.form__success:focus,
.form__error:focus {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 2px;
}

/* --- Publications --- */
.publication-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.publication-item:last-child {
  border-bottom: none;
}

/* --- Qualifications Timeline --- */
.qual-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qual-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.qual-item__year {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.9rem;
  min-width: 50px;
}

.qual-item__title {
  font-size: 0.95rem;
  color: var(--color-text);
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.footer__badge {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
  color: var(--color-white);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .sidebar__link {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 84px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .section { padding: 3.5rem 0; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  /* Mobile Nav */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    overflow-y: auto;
    gap: 0;
  }

  .nav__links--open {
    right: 0;
  }

  .nav__link {
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
  }

  .nav__dropdown--open .nav__dropdown-menu {
    display: block;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay--visible {
    display: block;
  }

  .services-grid,
  .locations-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .interests-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rating-banner {
    padding: 2.25rem 1.25rem 2rem;
  }

  .rating-banner__score {
    font-size: 4.25rem;
  }

  .rating-banner__stars svg {
    width: 24px;
    height: 24px;
  }

  .rating-banner__headline {
    font-size: 1.05rem;
  }

  .rating-banner__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .rating-banner__stat--divided::before,
  .rating-banner__stat--divided::after {
    display: none;
  }

  .rating-banner__stat--divided {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .rating-banner__stat-number {
    font-size: 1.75rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sidebar__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar__link {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ============================================
   NEW PREMIUM COMPONENTS
   ============================================ */

/* --- Floating Book Consultation CTA --- */
/* Floating CTA removed — header "Book Consultation" button is visible on all pages */

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip to main content link (reliably hidden until focused) */
.skip-link {
  position: fixed;
  top: 0;
  left: -9999px;
  width: auto;
  height: auto;
  padding: 0.9rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 2000;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  color: var(--color-white);
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced focus-visible styles for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Remove outline from elements that don't need it (mouse users) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  .card,
  .procedure-card,
  .testimonial-card {
    border-width: 2px;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--color-gold);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.cookie-banner__message {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cookie-banner__message a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem 1.25rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-banner__buttons {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================
   BLOG / ARTICLES
   ============================================ */

.blog-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(201, 167, 108, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.blog-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.blog-hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Blog article grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(11, 29, 58, 0.15);
  border-color: var(--color-gold-light);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-gold-light);
}

.blog-card__image svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.blog-card__read-more {
  color: var(--color-gold-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card__read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__read-more svg {
  transform: translateX(3px);
}

/* Individual blog article page */
.article-page {
  background: var(--color-bg);
}

.article-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  position: relative;
}

.article-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.article-hero .breadcrumb a {
  color: var(--color-text-muted);
}

.article-hero .breadcrumb a:hover {
  color: var(--color-gold-dark);
}

.article-hero__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gold-light);
}

.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-dark);
}

.article-body {
  padding: 4rem 0;
}

.article-body__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-body__inner p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.article-body__inner p:first-of-type {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.7;
}

.article-body__inner h2 {
  font-size: 1.85rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.article-body__inner h3 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.article-body__inner ul,
.article-body__inner ol {
  margin: 1.25rem 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.article-body__inner ul li,
.article-body__inner ol li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}

.article-body__inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88548' stroke-width='3'%3E%3Cpath d='M5 12L10 17L20 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.article-body__inner ol {
  counter-reset: article-counter;
}

.article-body__inner ol li {
  counter-increment: article-counter;
}

.article-body__inner ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-heading);
}

.article-body__inner blockquote {
  border-left: 4px solid var(--color-gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.5;
}

.article-body__inner strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Author bio box */
.article-author {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.article-author__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.article-author__info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.article-author__title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}

.article-author__bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

/* Related articles */
.article-related {
  padding: 4rem 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-gold-light);
}

.article-related h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-hero h1 {
    font-size: 2.25rem;
  }

  .blog-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    font-size: 1.85rem;
  }

  .article-author {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- Credentials Trust Bar (under hero) --- */
.credentials-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.credentials-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.credentials-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-right: 1px solid var(--color-border);
}

.credentials-bar__item:last-child {
  border-right: none;
}

.credentials-bar__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  line-height: 1;
}

.credentials-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.credentials-bar__icon {
  color: var(--color-gold-dark);
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .credentials-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .credentials-bar__item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .credentials-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .credentials-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
  }
  .credentials-bar__item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --- Meet Mr Singh Section --- */
.meet-surgeon {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.meet-surgeon::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 167, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.meet-surgeon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.meet-surgeon__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(201, 167, 108, 0.2) 0%, rgba(11, 29, 58, 0.4) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 167, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 167, 108, 0.5);
}

.meet-surgeon__image svg {
  width: 80px;
  height: 80px;
}

.meet-surgeon__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.meet-surgeon__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 29, 58, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.meet-surgeon__play:hover {
  background: rgba(11, 29, 58, 0.5);
}

.meet-surgeon__play-btn {
  width: 88px;
  height: 88px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(201, 167, 108, 0.4);
  transition: transform var(--transition);
}

.meet-surgeon__play:hover .meet-surgeon__play-btn {
  transform: scale(1.1);
}

.meet-surgeon__play-btn svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-left: 4px;
}

.meet-surgeon h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.meet-surgeon .eyebrow {
  color: var(--color-gold);
}

.meet-surgeon__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
  line-height: 1.5;
}

.meet-surgeon__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.meet-surgeon__signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 167, 108, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meet-surgeon__signature-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 600;
}

.meet-surgeon__signature-title {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .meet-surgeon__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .meet-surgeon__image {
    max-width: 420px;
    margin: 0 auto;
  }
  .meet-surgeon h2 {
    font-size: 2.25rem;
  }
}

/* --- Procedure Cards (premium with image backgrounds) --- */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.procedure-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  display: block;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(11, 29, 58, 0.25);
}

.procedure-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.procedure-card:hover .procedure-card__bg {
  transform: scale(1.08);
}

.procedure-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 29, 58, 0.1) 0%,
    rgba(11, 29, 58, 0.4) 50%,
    rgba(11, 29, 58, 0.9) 100%
  );
}

.procedure-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.procedure-card__placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(201, 167, 108, 0.3);
}

.procedure-card__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.procedure-card:hover .procedure-card__placeholder img {
  transform: scale(1.05);
}

.procedure-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  color: var(--color-white);
  z-index: 2;
}

.procedure-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.procedure-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.procedure-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.procedure-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.procedure-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.procedure-card:hover .procedure-card__link svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .procedures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
  .procedure-card {
    aspect-ratio: 4 / 3;
  }
}

/* --- Patient Journey Timeline (horizontal) --- */
.journey-timeline {
  position: relative;
  padding: 3rem 0 1rem;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 4.25rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--color-gold-light) 15%,
    var(--color-gold) 50%,
    var(--color-gold-light) 85%,
    transparent 100%
  );
  z-index: 1;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.journey-step {
  text-align: center;
  padding: 0 1rem;
}

.journey-step__number {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 0 0 8px var(--color-bg);
}

.journey-step:hover .journey-step__number {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

.journey-step__icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.journey-step__icon svg {
  width: 14px;
  height: 14px;
}

.journey-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.journey-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .journey-timeline::before {
    display: none;
  }
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

/* --- Redesigned Premium Footer --- */
.footer-premium {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--color-gold) 50%,
    transparent 100%
  );
}

.footer-premium__newsletter {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(201, 167, 108, 0.15);
  text-align: center;
}

.footer-premium__newsletter h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.footer-premium__newsletter p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 167, 108, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 0.9rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.newsletter-form button:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.footer-premium__main {
  padding: 4rem 0 3rem;
}

.footer-premium__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-premium h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-premium h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-premium__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.footer-premium__brand-title {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-premium__about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-premium__social {
  display: flex;
  gap: 0.75rem;
}

.footer-premium__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.footer-premium__social a:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-premium__social svg {
  width: 18px;
  height: 18px;
}

.footer-premium__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-premium__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-premium__links a::before {
  content: '→';
  color: var(--color-gold);
  opacity: 0;
  transition: all var(--transition);
  margin-left: -1rem;
}

.footer-premium__links a:hover {
  color: var(--color-gold);
}

.footer-premium__links a:hover::before {
  opacity: 1;
  margin-left: 0;
}

.footer-premium__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-premium__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-premium__contact-item a,
.footer-premium__contact-item span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-premium__contact-item a:hover {
  color: var(--color-gold);
}

.footer-premium__badges {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 167, 108, 0.15);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-premium__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  width: 140px;
  flex-shrink: 0;
}

.footer-premium__badge-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(201, 167, 108, 0.05);
}

.footer-premium__badge-icon svg {
  width: 28px;
  height: 28px;
}

.footer-premium__bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201, 167, 108, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-premium__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-premium__bottom a:hover {
  color: var(--color-gold);
}

@media (max-width: 1024px) {
  .footer-premium__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-premium__badges {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .footer-premium__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-premium__bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================
   PROCEDURE DETAIL PAGE
   ============================================ */

.procedure-page {
  background: var(--color-bg);
}

.procedure-page__hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 167, 108, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.procedure-page__hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.procedure-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.procedure-page__breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.procedure-page__breadcrumb a:hover {
  color: var(--color-gold-dark);
}

.procedure-page__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.procedure-page__hero h1 {
  font-size: 3.75rem;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.procedure-page__intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.procedure-page__hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.procedure-page__hero-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-light);
  box-shadow: 0 30px 60px -20px rgba(11, 29, 58, 0.15);
  overflow: hidden;
}

.procedure-page__hero-image svg {
  width: 80px;
  height: 80px;
  color: var(--color-gold-dark);
  opacity: 0.4;
}

.procedure-page__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* --- Procedure Body Layout --- */
.procedure-body {
  padding: 5rem 0;
}

.procedure-body__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
}

.procedure-body__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  align-self: start;
}

.procedure-body__sidebar-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold-light);
}

.procedure-body__sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.procedure-body__sidebar-nav a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.procedure-body__sidebar-nav a:hover {
  background: var(--color-cream);
  color: var(--color-gold-dark);
  border-left-color: var(--color-gold-light);
}

.procedure-body__sidebar-nav a.active {
  background: var(--color-cream);
  color: var(--color-primary);
  border-left-color: var(--color-gold);
  font-weight: 600;
}

.procedure-body__content {
  min-width: 0;
}

.procedure-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

/* Patient-journey sidebar page — ensure anchor jumps land below the sticky nav */
.sidebar-layout .content h2[id],
.sidebar-layout .content h3[id] {
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.procedure-section:last-child {
  margin-bottom: 0;
}

.procedure-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.procedure-section__icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  flex-shrink: 0;
  border: 1px solid var(--color-gold-light);
}

.procedure-section__icon svg {
  width: 22px;
  height: 22px;
}

.procedure-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.procedure-section__body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.procedure-section__body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.procedure-section__body h3:first-child {
  margin-top: 0;
}

.procedure-section__body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.procedure-section__body ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
  color: var(--color-text);
}

.procedure-section__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88548' stroke-width='3'%3E%3Cpath d='M5 12L10 17L20 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.procedure-section__body ul li strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Risk variant - red dot */
.procedure-section__body--risks ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B45309' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
}

/* --- Procedure Summary Icons Bar --- */
.procedure-summary {
  background: var(--color-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.procedure-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.procedure-summary__title {
  text-align: center;
  margin-bottom: 3rem;
}

.procedure-summary__title .eyebrow {
  color: var(--color-gold);
}

.procedure-summary__title h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-top: 0.5rem;
}

.procedure-summary__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.procedure-summary__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 167, 108, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.procedure-summary__item:hover {
  background: rgba(201, 167, 108, 0.08);
  border-color: rgba(201, 167, 108, 0.4);
}

.procedure-summary__item-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 167, 108, 0.1);
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.procedure-summary__item-icon svg {
  width: 26px;
  height: 26px;
}

.procedure-summary__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.procedure-summary__item-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.procedure-summary__item-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

/* --- Procedure CTA Section --- */
.procedure-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  text-align: center;
}

.procedure-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.procedure-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.procedure-cta p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .procedure-page__hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .procedure-page__hero h1 {
    font-size: 2.75rem;
  }

  .procedure-page__hero-image {
    max-width: 560px;
    margin: 0 auto;
  }

  .procedure-body__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .procedure-body__sidebar {
    position: static;
  }

  .procedure-body__sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
  }

  .procedure-body__sidebar-nav a {
    flex-shrink: 0;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .procedure-body__sidebar-nav a.active {
    border-left: none;
    border-bottom-color: var(--color-gold);
  }

  .procedure-summary__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .procedure-page__hero h1 {
    font-size: 2.25rem;
  }

  .procedure-section h2 {
    font-size: 1.5rem;
  }

  .procedure-summary__grid {
    grid-template-columns: 1fr;
  }

  .procedure-cta h2 {
    font-size: 1.75rem;
  }
}

/* --- Comprehensive Care Grid --- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.care-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.care-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.care-card:hover {
  border-color: var(--color-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(11, 29, 58, 0.12);
}

.care-card:hover::before {
  transform: scaleX(1);
}

.care-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  transition: all 0.3s ease;
}

.care-card:hover .care-card__icon {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.care-card__icon svg {
  width: 28px;
  height: 28px;
}

.care-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.care-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Media / As Seen In --- */
.media-section {
  background: var(--color-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.media-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.media-section .section-header h2 {
  color: var(--color-white);
}

.media-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.media-section .eyebrow {
  color: var(--color-gold);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.media-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 167, 108, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.media-card:hover {
  border-color: rgba(201, 167, 108, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.media-card__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.media-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(201, 167, 108, 0.15) 0%, rgba(11, 29, 58, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  position: relative;
  overflow: hidden;
}

.media-card__image svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.media-card__body {
  padding: 1.75rem;
}

.media-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.media-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.media-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.media-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.media-card__link:hover {
  color: var(--color-gold-light);
}

.media-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.media-card__link:hover svg {
  transform: translateX(4px);
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 167, 108, 0.15);
  flex-wrap: wrap;
}

.media-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.media-logo__icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-logos {
    gap: 2rem;
  }
}

/* --- Location Landing Page --- */
.location-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 167, 108, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  position: relative;
}

.location-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.location-hero__address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.location-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.location-hero__phone:hover {
  color: var(--color-primary);
}

.location-hero__phone svg {
  width: 22px;
  height: 22px;
}

.location-hero__map {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(11, 29, 58, 0.2);
  position: relative;
}

.location-hero__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

.location-info {
  padding: 5rem 0;
}

.location-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.location-info__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.location-info__card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
}

.location-info__card-icon svg {
  width: 24px;
  height: 24px;
}

.location-info__card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.location-info__card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .location-hero__inner {
    grid-template-columns: 1fr;
  }
  .location-hero__map {
    max-width: 500px;
  }
  .location-info__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MEDIA CARD IMAGE CAROUSEL
   ============================================ */
.media-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-primary);
}

.media-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.media-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: carousel-fade 15s infinite;
}

/* Stagger with negative delays so slide 1 is visible immediately at t=0 */
.media-carousel__slide:nth-child(1) { animation-delay: 0s; }
.media-carousel__slide:nth-child(2) { animation-delay: -10s; }
.media-carousel__slide:nth-child(3) { animation-delay: -5s; }

@keyframes carousel-fade {
  0%, 32% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .media-carousel__slide {
    animation: none;
    opacity: 1;
  }
  .media-carousel__slide:nth-child(n+2) {
    display: none;
  }
}

/* ============================================
   LITE YOUTUBE EMBED (click-to-play)
   ============================================ */
.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: none;
  padding: 0;
}

.yt-lite__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-lite__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 62px;
  background: rgba(0, 0, 0, 0.75);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
}

.yt-lite:hover .yt-lite__play {
  background: #ff0000;
}

.yt-lite__play svg {
  width: 36px;
  height: 36px;
  color: #fff;
  margin-left: 5px;
}

.yt-lite--playing .yt-lite__thumb,
.yt-lite--playing .yt-lite__play {
  display: none;
}

.yt-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Hero image with actual photo */
.hero__image-photo {
  width: 100%;
  max-width: 418px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 29, 58, 0.25);
  border: 1px solid var(--color-gold-light);
  position: relative;
  margin-left: auto;
}

.hero__image-photo::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 167, 108, 0.35);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
  z-index: 2;
}

.hero__image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   SKIN CANCER FOCUS COMPONENTS
   ============================================ */

/* --- Featured Services Grid (skin cancer prominent) --- */
.services-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-featured-tile {
  position: relative;
  aspect-ratio: auto;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px -10px rgba(11, 29, 58, 0.3);
  border: 1px solid rgba(201, 167, 108, 0.2);
}

.service-featured-tile::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 167, 108, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.service-featured-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
}

.service-featured-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(11, 29, 58, 0.4);
}

.service-featured-tile__badge {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  padding: 0.4rem 1rem;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
}

.service-featured-tile__content {
  position: relative;
  z-index: 2;
  max-width: 85%;
}

.service-featured-tile__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-featured-tile h3 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.service-featured-tile p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.service-featured-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.service-featured-tile__link:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.services-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.service-secondary-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.service-secondary-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-secondary-tile:hover {
  border-color: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(11, 29, 58, 0.12);
}

.service-secondary-tile:hover::before {
  transform: scaleX(1);
}

.service-secondary-tile__icon {
  width: 44px;
  height: 44px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.service-secondary-tile__icon svg {
  width: 20px;
  height: 20px;
}

.service-secondary-tile h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.service-secondary-tile p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.service-secondary-tile__link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-secondary-tile__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.service-secondary-tile:hover .service-secondary-tile__link svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .services-featured {
    grid-template-columns: 1fr;
  }
  .service-featured-tile {
    min-height: 380px;
    padding: 2.5rem 2rem;
  }
  .service-featured-tile h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .services-secondary {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .service-featured-tile__badge {
    top: 1.5rem;
    right: 1.5rem;
  }
  .service-featured-tile h3 {
    font-size: 2rem;
  }
}

/* --- Specialist Interests Tiered --- */
.interests-tier {
  max-width: 1100px;
  margin: 0 auto;
}

.interests-tier__title {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
}

.interests-tier--primary .interest-item {
  background: var(--color-cream);
  border-color: var(--color-gold-light);
}

.interests-tier--primary .interest-item::before {
  background-color: var(--color-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  border-color: var(--color-gold);
}

.interests-tier--secondary {
  margin-top: 3rem;
}

.interests-tier--secondary .interest-item {
  background: var(--color-white);
  font-size: 0.88rem;
}

/* --- Urgent Skin Concern Banner --- */
.urgent-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}

.urgent-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(201, 167, 108, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.urgent-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.urgent-banner__icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 167, 108, 0.15);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.urgent-banner__icon svg {
  width: 34px;
  height: 34px;
}

.urgent-banner__text {
  flex: 1;
  min-width: 280px;
}

.urgent-banner__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.urgent-banner__message {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.urgent-banner__cta {
  flex-shrink: 0;
}

/* --- Urgent Banner — Card Variant (used inside .container, e.g. ABCDE page) --- */
.urgent-banner--card {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.25rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 45px -15px rgba(11, 29, 58, 0.35);
}

.urgent-banner--card .urgent-banner__content {
  flex: 1;
  min-width: 260px;
}

.urgent-banner--card .urgent-banner__content h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.urgent-banner--card .urgent-banner__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.urgent-banner--card .urgent-banner__action {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .urgent-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .urgent-banner--card {
    padding: 1.75rem 1.5rem;
    text-align: center;
    justify-content: center;
  }
}

/* --- Why Choose Mr Singh For Skin Cancer Section --- */
.why-skin-cancer {
  background: var(--color-cream);
  padding: 6rem 0;
  position: relative;
}

.why-skin-cancer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.why-skin-cancer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -12px rgba(11, 29, 58, 0.2);
  border-color: var(--color-gold);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}

.why-card strong {
  color: var(--color-gold-dark);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .why-skin-cancer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-skin-cancer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- ABCDE Rule Section --- */
.abcde-section {
  padding: 5rem 0;
  background: var(--color-bg);
}

.abcde-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.abcde-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.abcde-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-light);
  box-shadow: 0 12px 24px -10px rgba(11, 29, 58, 0.15);
}

.abcde-card__letter {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.abcde-card__term {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.abcde-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .abcde-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .abcde-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abcde-card__letter {
    font-size: 3rem;
  }
}

/* --- Skin Cancer Pathway (timeline variant) --- */
.cancer-pathway {
  padding: 5rem 0;
  background: var(--color-bg);
}

.cancer-pathway__timeline {
  position: relative;
  padding: 3rem 0 1rem;
}

.cancer-pathway__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.cancer-pathway__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--color-gold-light) 15%, var(--color-gold) 50%, var(--color-gold-light) 85%, transparent 100%);
  z-index: 1;
}

.cancer-pathway__step {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

.cancer-pathway__step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--color-bg);
  transition: all 0.3s ease;
}

.cancer-pathway__step:hover .cancer-pathway__step-number {
  background: var(--color-gold);
  color: var(--color-white);
}

.cancer-pathway__step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.cancer-pathway__step p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cancer-pathway__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .cancer-pathway__steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .cancer-pathway__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Cancer Types Cards (BCC, SCC, Melanoma) --- */
.cancer-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.cancer-type-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.cancer-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-light);
  box-shadow: 0 16px 32px -14px rgba(11, 29, 58, 0.2);
}

.cancer-type-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  border-bottom: 1px solid var(--color-gold-light);
}

.cancer-type-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cancer-type-card__image svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

.cancer-type-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cancer-type-card__acronym {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: var(--color-cream);
  border-radius: 4px;
  align-self: flex-start;
}

.cancer-type-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cancer-type-card p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.cancer-type-card__stats {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.cancer-type-card__stat {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.cancer-type-card__stat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.cancer-type-card__stat strong {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  display: inline;
}

.cancer-type-card__stat span {
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .cancer-types {
    grid-template-columns: 1fr;
  }
}

/* --- Skin Cancer Centre Hero --- */
.skin-centre-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 167, 108, 0.1) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.skin-centre-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
}

.skin-centre-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.skin-centre-hero h1 {
  color: var(--color-white);
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.skin-centre-hero .eyebrow {
  color: var(--color-gold);
}

.skin-centre-hero__intro {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 560px;
}

.skin-centre-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: var(--radius-lg);
}

.skin-centre-hero__stat {
  text-align: center;
}

.skin-centre-hero__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.skin-centre-hero__stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .skin-centre-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .skin-centre-hero h1 {
    font-size: 2.75rem;
  }
}

/* --- MDT Feature Section --- */
.mdt-feature {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mdt-feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 167, 108, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.mdt-feature .section-header h2 {
  color: var(--color-white);
}

.mdt-feature .section-header .eyebrow {
  color: var(--color-gold);
}

.mdt-feature .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.mdt-list {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mdt-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 167, 108, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mdt-list__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 167, 108, 0.4);
}

.mdt-list__icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 167, 108, 0.15);
  border: 1px solid rgba(201, 167, 108, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.mdt-list__icon svg {
  width: 20px;
  height: 20px;
}

.mdt-list__text {
  flex: 1;
}

.mdt-list__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.mdt-list__text span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .mdt-list {
    grid-template-columns: 1fr;
  }
}

/* --- Treatment Options Grid --- */
.treatment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.treatment-option {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  position: relative;
  transition: all 0.3s ease;
}

.treatment-option:hover {
  border-color: var(--color-gold-light);
  background: var(--color-cream);
  transform: translateX(3px);
}

.treatment-option__icon {
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  width: 32px;
  height: 32px;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
}

.treatment-option__icon svg {
  width: 16px;
  height: 16px;
}

.treatment-option h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.treatment-option p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .treatment-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .treatment-options {
    grid-template-columns: 1fr;
  }
}

/* --- Mole Check / Screening Page --- */
.mole-check-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 167, 108, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  position: relative;
}

.mole-check-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mole-check-hero h1 {
  font-size: 3.75rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.mole-check-hero__intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.mole-check-hero__image {
  aspect-ratio: 4 / 5;
  max-width: 450px;
  justify-self: end;
  width: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-light);
  box-shadow: 0 30px 60px -20px rgba(11, 29, 58, 0.15);
  color: var(--color-gold-dark);
  overflow: hidden;
}

.mole-check-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mole-check-hero__image svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .mole-check-hero__inner {
    grid-template-columns: 1fr;
  }
  .mole-check-hero__image {
    max-width: 420px;
    margin: 0 auto;
  }
  .mole-check-hero h1 {
    font-size: 2.5rem;
  }
}

/* --- Risk Factors Grid --- */
.risk-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.risk-factor {
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  position: relative;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.risk-factor::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88548' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.risk-factor strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.risk-factor__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.risk-factor__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 1024px) {
  .risk-factors {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .risk-factors {
    grid-template-columns: 1fr;
  }
}

/* --- Value Cards (Mole Check — Who This Service Is For) --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  padding: 2.25rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -15px rgba(11, 29, 58, 0.18);
  border-color: var(--color-gold-light);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonials Filter Tabs --- */
.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.testimonial-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.testimonial-tab:hover {
  border-color: var(--color-gold-light);
  color: var(--color-gold-dark);
}

.testimonial-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-gold);
}

.testimonial-group {
  display: none;
}

.testimonial-group.active {
  display: block;
}

/* ============================================
   FEES & INSURANCE PAGE
   ============================================ */

.fees-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fees-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(201, 167, 108, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.fees-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.fees-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.fees-hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Consultation Fee Cards */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fee-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
}

.fee-card--highlighted {
  background: var(--color-cream);
  border-color: var(--color-gold-light);
}

.fee-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--color-cream);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
}

.fee-card__icon svg {
  width: 28px;
  height: 28px;
}

.fee-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fee-card__price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fee-card__price-unit {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0;
}

.fee-card__duration {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.fee-card__description {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
}

.fees-note {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--color-cream);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text);
}

.fees-note strong {
  color: var(--color-primary);
}

/* Insurer Logos Grid */
.insurers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.insurer-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: all 0.3s ease;
}

.insurer-card:hover {
  border-color: var(--color-gold-light);
  background: var(--color-cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(11, 29, 58, 0.1);
}

.insurer-card__logo {
  width: 100%;
  max-width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.insurer-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Fallback for placeholder logos */
.insurer-card__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.insurer-card__name {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.insurer-note {
  text-align: center;
  max-width: 700px;
  margin: 2.5rem auto 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.payment-method svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold-dark);
}

@media (max-width: 768px) {
  .fees-grid {
    grid-template-columns: 1fr;
  }
  .insurers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fees-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .insurers-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section dark modifier for meet surgeon + premium --- */
.section--premium {
  background: linear-gradient(
    to bottom,
    var(--color-bg) 0%,
    var(--color-cream) 100%
  );
}

/* Update existing section-header for eyebrow support */
.section-header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.75rem;
}

/* ============================================
   Accessibility — keyboard focus indicators
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Suppress default non-visible focus (mouse clicks) to avoid the outline appearing on click */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   Related Procedures (procedure pages)
   ============================================ */
.related-procedures .section-header {
  margin-bottom: 2.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.related-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(11, 29, 58, 0.18);
  border-color: var(--color-gold-light);
}

.related-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.related-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-card:hover .related-card__link svg {
  transform: translateX(3px);
}

.related-card__link svg {
  transition: transform 0.25s ease;
}

@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact Form — Phone Row (country code + local number)
   ============================================ */
.form__phone-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 0.75rem;
}

.form__phone-code {
  width: 100%;
  padding: 0.875rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  /* Custom gold dropdown chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A88548' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__phone-code:hover {
  border-color: var(--color-gold-light);
}

.form__phone-code:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 167, 108, 0.15);
  outline: none;
}

.form__phone-input {
  /* Inherits .form__input styling; flex-grow handled by grid */
}

@media (max-width: 480px) {
  .form__phone-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ============================================
   Doctify Widgets
   ============================================ */
.doctify-widget-wrapper {
  width: 100%;
  min-height: 100px;
}

/* Testimonials Review Grid — breathing room above/below */
.testimonials-grid.doctify-widget-wrapper,
.section--alt .doctify-widget-wrapper {
  margin-top: 1rem;
}

/* Banner on homepage — matches the rest of the homepage rhythm */
.doctify-banner-section {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}

.doctify-banner-section .doctify-widget-wrapper {
  min-height: 140px;
}

/* Micro badge inline inside contact-info-item */
.doctify-widget-wrapper--inline {
  min-height: 0;
  display: inline-block;
}

.doctify-widget-wrapper--inline > div {
  margin: 0;
}

/* Loading fallback — show a subtle note if the widget takes a moment or fails to load */
.doctify-widget-wrapper:empty::before {
  content: 'Loading reviews from Doctify…';
  display: block;
  text-align: center;
  padding: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
}
