/* ============================================================
   NJAP — New Jersey Anesthesia Professionals
   Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0b1f3a;
  --navy-mid:    #112845;
  --navy-light:  #1a3a5c;
  --slate:       #2c5282;
  --gold:        #c4933f;
  --gold-light:  #d4a84b;
  --gold-pale:   #f0e0b8;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-bg:    #eef1f6;
  --text-dark:   #0d1b2a;
  --text-mid:    #2d4263;
  --text-muted:  #5a7191;
  --border:      rgba(196, 147, 63, 0.25);
  --border-light:rgba(44, 82, 130, 0.12);

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --nav-h: 72px;
  --topbar-h: 40px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
  --transition: 0.35s var(--ease-out);
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.18);
  --shadow-gold: 0 8px 32px rgba(196,147,63,0.20);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.75; max-width: 68ch; }

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

/* ── Top Contact Bar ── */
.topbar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  z-index: 200;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar__item svg { color: var(--gold-light); flex-shrink: 0; }
.topbar__item a:hover { color: var(--gold-light); transition: color 0.2s; }

@media (max-width: 640px) {
  .topbar { gap: 1rem; padding: 0 1rem; }
  .topbar__item:last-child { display: none; }
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.99);
}

.nav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 4px;
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background var(--transition), transform 0.2s !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold) !important; transform: translateY(-1px); }

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 500;
  padding: 6rem 2.5rem 3rem;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s var(--ease-out);
  overflow-y: auto;
}

.nav__mobile.open { right: 0; }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  display: block;
}

.nav__mobile-link:hover { color: var(--gold-light); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav__overlay.open { opacity: 1; }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .nav__overlay { display: block; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(44,82,130,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(196,147,63,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #0b1f3a 0%, #112845 45%, #1a3a5c 100%);
  animation: heroBg 12s ease-in-out infinite alternate;
}

@keyframes heroBg {
  0%   { background-position: 70% 40%; }
  100% { background-position: 65% 45%; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,147,63,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,147,63,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,63,0.12) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeRight 1s var(--ease-out) 0.7s forwards;
}

.hero__stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,147,63,0.3);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
}

.hero__stat-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateX(-4px);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .hero__desc { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__visual { display: none; }
  .hero__divider { height: 50px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,147,63,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,147,63,0.45); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.88);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ── Section Layouts ── */
.section {
  padding: 6rem 2rem;
}

.section-light { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.68); }
.section-navy .eyebrow { color: var(--gold-light); }
.section-navy .feature-item__text { color: var(--text-mid); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin: 1rem auto 0;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card__avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card__avatar::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.team-card__initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.team-card__body {
  padding: 1rem 1.75rem 2rem;
}

.team-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-card__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 4rem 2rem;
}

.stats-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats-bar__item {}

.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stats-bar__label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  display: block;
}

/* ── Feature List ── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, border-color 0.25s;
}

.feature-item:hover { transform: translateX(4px); border-color: var(--border); }

.feature-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.feature-item__text {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: none;
}

/* ── Two-col split ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse .split__visual { order: -1; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse .split__visual { order: 0; }
}

.split__visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  position: relative;
}

.split__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,147,63,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,147,63,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.split__visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem;
}

.split__visual-icon {
  color: rgba(255,255,255,0.15);
}

.split__visual-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

/* ── Hero Inner (sub-pages) ── */
.page-hero {
  background: var(--navy);
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 60% 40%, rgba(44,82,130,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(196,147,63,0.10) 0%, transparent 50%);
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,147,63,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,147,63,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero--article h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.page-hero--article-sm h1 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.page-hero p { color: rgba(255,255,255,0.68); margin: 0 auto; font-size: 1.15rem; }

.page-hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero__divider--white {
  background: var(--white);
}

/* ── Anesthesia Types ── */
.anesthesia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.anesthesia-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.anesthesia-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--light-bg);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
}

.anesthesia-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-right: 3rem;
}

.anesthesia-card__accent {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.anesthesia-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ── Contact Form/Cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-detail__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(196,147,63,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.contact-detail__value a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.contact-detail__value a:hover { color: var(--gold-light); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(44,82,130,0.1);
}

textarea { resize: vertical; min-height: 130px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { font-size: 0.7rem; }

/* ── Clients List ── */
.clients-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clients-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.clients-item:hover { transform: translateX(4px); border-color: var(--border); box-shadow: var(--shadow-md); }

.clients-item__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.4rem;
}

.clients-item__text { font-size: 1rem; color: var(--text-mid); line-height: 1.65; max-width: none; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,147,63,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,147,63,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.68); margin: 0 auto 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: #070f1e;
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand { }

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 30ch;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover { background: var(--gold); color: var(--white); }

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

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

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__link:hover { color: rgba(255,255,255,0.85); }

.footer__contact-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer__contact-item a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer__bottom-link:hover { color: rgba(255,255,255,0.6); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.blog-card { text-decoration: none; color: inherit; }

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

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

.blog-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__title--sm { font-size: 0.95rem; }
.blog-card__title--xs { font-size: 0.82rem; }

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

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.blog-card__link:hover { color: var(--gold); gap: 0.7rem; }
.blog-card:hover .blog-card__link { color: var(--gold); gap: 0.7rem; }

/* ── Article page ── */
.article-meta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.article-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  display: block;
}

.article-body p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 72ch;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

/* ── Article prev/next nav ── */
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.article-nav__btn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 48%;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-nav__btn:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.article-nav__btn--next { margin-left: auto; text-align: right; }

.article-nav__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.article-nav__btn--next .article-nav__label { justify-content: flex-end; }

.article-nav__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

@media (max-width: 580px) {
  .article-nav { flex-direction: column; }
  .article-nav__btn { max-width: 100%; }
  .article-nav__btn--next { text-align: left; }
  .article-nav__btn--next .article-nav__label { justify-content: flex-start; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ── Keyframes ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,147,63,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(196,147,63,0); }
}

/* ── Utility ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0;
}

.gold-line--center { margin: 1rem auto; }

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

.badge {
  display: inline-block;
  background: rgba(196,147,63,0.12);
  color: var(--gold);
  border: 1px solid rgba(196,147,63,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── Accreditation logos ── */
.accred-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.accred-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,147,63,0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ── Page transition ── */
.page-fade-in {
  animation: pageFadeIn 0.4s var(--ease-out) both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive helpers ── */
@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 5rem 1.25rem 4rem; }
  .stats-bar { padding: 3rem 1.25rem; }
}
