/* ============================================
   Nabeel Hamoui Urology - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0d2d5e;
  --navy-dark:   #081e42;
  --navy-light:  #1a4080;
  --blue:        #1a6dbf;
  --blue-light:  #2e85d8;
  --blue-pale:   #e8f2fb;
  --white:       #ffffff;
  --light-bg:    #f4f7fc;
  --border:      #dce6f2;
  --text:        #1c2b3a;
  --muted:       #5e7490;
  --shadow-sm:   0 2px 8px rgba(13, 45, 94, 0.08);
  --shadow:      0 4px 20px rgba(13, 45, 94, 0.12);
  --shadow-lg:   0 8px 40px rgba(13, 45, 94, 0.16);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all 0.28s ease;
  --max-w:       1140px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utility ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

.section--light { background: var(--light-bg); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.section--navy .section-label { color: #7bbcf0; }

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
}

.section--navy .section-intro { color: #a8c8e8; }

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 109, 191, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__icon svg { width: 22px; height: 22px; fill: white; }

.logo__text { line-height: 1.2; }
.logo__name {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.logo__specialty {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav__link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
}
.mobile-menu .nav__link::after { display: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,109,191,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(13,45,94,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #081e42 0%, #0d2d5e 50%, #123d7a 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 48px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero__photo-col { flex-shrink: 0; }

.hero__photo {
  width: 260px;
  height: 320px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,191,0.2);
  border: 1px solid rgba(46,133,216,0.35);
  color: #7bbcf0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 4px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero__subtitle {
  font-size: 1rem;
  color: #7bbcf0;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  display: block;
}

.hero__text {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }
.stat__value {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero image panel */
.hero__panel {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 380px;
}

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,191,0.3);
  border: 1px solid rgba(46,133,216,0.4);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a8d4f5;
  margin-bottom: 20px;
}

.hero__card-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero__card-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.hero__card-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(26,109,191,0.4);
  border: 1px solid rgba(46,133,216,0.5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%237bbcf0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__card-phone {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__card-phone p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero__card-phone a {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item__icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg { width: 18px; height: 18px; fill: var(--blue); }

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  transition: 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(--navy), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-card__icon svg { width: 26px; height: 26px; fill: var(--blue); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.service-card__link:hover { gap: 10px; color: var(--blue-light); }
.service-card__link svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================
   ABOUT SNIPPET (Home)
   ============================================ */

.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-snippet__image {
  position: relative;
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 64px rgba(13,45,94,0.22);
}

.doctor-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.doctor-photo-placeholder::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: rgba(26,109,191,0.2);
  border-radius: 50%;
}

.doctor-photo-placeholder svg {
  width: 100px;
  height: 100px;
  fill: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

.doctor-photo-placeholder__label {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.about-snippet__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-snippet__image-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Merriweather', serif;
  color: var(--navy);
  line-height: 1;
}

.about-snippet__image-badge span {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}

.credential__icon {
  width: 32px;
  height: 32px;
  background: var(--blue-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential__icon svg { width: 16px; height: 16px; fill: var(--blue); }

.credential h4 {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  margin-bottom: 2px;
}

.credential p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   WHY CHOOSE US (Home)
   ============================================ */

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

.feature-card {
  text-align: center;
  padding: 20px 16px;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-card__icon svg { width: 30px; height: 30px; fill: #7bbcf0; }

.feature-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 44px 0;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 520px; font-size: 1rem; margin: 0; }

.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item svg { width: 16px; height: 16px; fill: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: inherit; transition: var(--transition); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,191,0.2);
  border: 1px solid rgba(46,133,216,0.35);
  color: #7bbcf0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* Doctor Bio */
.doctor-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.doctor-profile__sidebar { position: sticky; top: 100px; }

.doctor-profile__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(13,45,94,0.22);
}

.doctor-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.doctor-profile__info {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}

.doctor-profile__info h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
  color: var(--navy);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item__label { color: var(--muted); font-weight: 500; }
.info-item__value { color: var(--text); font-weight: 600; text-align: right; max-width: 55%; }

.about-content h2 { margin-bottom: 16px; }
.about-content h3 { margin: 32px 0 14px; font-size: 1.2rem; }
.about-content p { color: var(--muted); line-height: 1.8; }

.edu-timeline { margin: 20px 0; }
.edu-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 24px;
}
.edu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--blue-pale);
}
.edu-item::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.edu-item:last-child { padding-bottom: 0; }
.edu-item:last-child::after { display: none; }
.edu-item__year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.edu-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.edu-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(26,109,191,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================
   ABOUT PROFILE (merged home+about section)
   ============================================ */
.about-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.about-profile__photo {
  position: sticky;
  top: 96px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,45,94,0.2);
}

.about-profile__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-profile__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}

.about-profile__bio { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }

.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.about-cred {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.about-cred strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 4px;
  font-weight: 600;
}

.about-cred span {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}

.about-profile__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.affiliation-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.affiliation-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.affiliation-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.service-full-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-full-card__icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-full-card__icon svg { width: 28px; height: 28px; fill: var(--blue); }

.service-full-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-full-card__body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  background: var(--light-bg);
  color: var(--muted);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Technologies/Procedures section */
.procedures-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.procedure-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.procedure-item:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}

.procedure-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { position: sticky; top: 100px; }

.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-of-type { border-bottom: none; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; fill: var(--blue); }

.contact-info__body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-info__body p, .contact-info__body a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  transition: var(--transition);
}
.contact-info__body a:hover { color: var(--blue); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--muted); }
.hours-row .closed { color: #e53e3e; font-weight: 500; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,191,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bec5; }

.form-notice {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #81c784;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-success.show { display: flex; }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--border) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.map-placeholder svg { width: 36px; height: 36px; fill: var(--muted); opacity: 0.6; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-profile { grid-template-columns: 280px 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .procedures-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }

  .hero__content { flex-direction: column; gap: 32px; padding-top: 88px; padding-bottom: 48px; }
  .hero__photo { width: 180px; height: 220px; }

  .about-snippet { grid-template-columns: 1fr; gap: 40px; }
  .about-snippet__image { display: block; max-width: 320px; margin: 0 auto; }
  .doctor-photo { aspect-ratio: 1/1; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .doctor-profile { grid-template-columns: 1fr; }
  .doctor-profile__sidebar { position: static; }
  .doctor-profile__photo { max-width: 280px; margin: 0 auto; }

  .services-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .affiliations-grid { grid-template-columns: 1fr; }
  .about-profile { grid-template-columns: 1fr; gap: 36px; }
  .about-profile__photo { position: static; }
  .about-creds { grid-template-columns: 1fr; }
  .procedures-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .cta-banner__inner { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .procedures-list { grid-template-columns: 1fr; }
}

/* ============================================
   NAV DROPDOWN
   ============================================ */

.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  position: relative;
}
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav__dropdown-toggle svg {
  width: 10px;
  height: 10px;
  fill: rgba(255,255,255,0.6);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__dropdown-toggle { color: var(--white); }
.nav__dropdown:hover .nav__dropdown-toggle::after { transform: scaleX(1); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); fill: white; }

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 22px;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 56px rgba(13,45,94,0.18);
  border: 1px solid var(--border);
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 170px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease 0.15s, visibility 0.22s ease 0.15s, transform 0.22s ease 0.15s;
  z-index: 500;
  pointer-events: none;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

/* ============================================
   COMPACT CONDITION PAGES
   ============================================ */

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.header__brand-name {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.header__brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

.cond-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 96px 0 36px;
}

.cond-hero__inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.cond-hero__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.cond-hero__text { flex: 1; min-width: 0; }

.cond-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin: 8px 0 12px;
  line-height: 1.15;
}
.cond-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  line-height: 1.65;
  margin: 0;
}

.cond-body {
  padding: 28px 0 32px;
  background: var(--light-bg);
}

.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.cond-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 22px;
  border: 1px solid var(--border);
}

.cond-card__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-pale);
}

.cond-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cond-list li {
  font-size: 1.05rem;
  color: var(--text);
  padding: 7px 0 7px 18px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.cond-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cond-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.cond-footer {
  display: flex;
  justify-content: center;
  padding: 20px 0 4px;
}

/* About section — tighter top padding so photo appears sooner */
section#about { padding-top: 40px; padding-bottom: 52px; }

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

@media (max-width: 768px) {
  .cond-grid { grid-template-columns: 1fr; }
  .cond-hero h1 { font-size: 2rem; }
  .cond-hero { padding: 88px 0 24px; }
  .cond-hero p { font-size: 1.05rem; }
  .cond-hero__photo { width: 90px; height: 90px; }
  .cond-hero__inner { gap: 20px; }
  .cond-list li { font-size: 1rem; }
}

.nav__dropdown-col {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.nav__dropdown-col:last-child { border-right: none; }

.nav__dropdown-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.nav__dropdown-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  padding: 5px 0;
  transition: var(--transition);
  font-weight: 500;
  line-height: 1.4;
}
.nav__dropdown-col a:hover { color: var(--blue); padding-left: 5px; }

/* Mobile conditions accordion */
.mobile-conditions-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.mobile-conditions-toggle svg {
  width: 14px; height: 14px; fill: rgba(255,255,255,0.5);
  transition: transform 0.25s ease;
}
.mobile-conditions-toggle.open svg { transform: rotate(180deg); }

.mobile-conditions-body {
  display: none;
  padding: 8px 0 4px 12px;
}
.mobile-conditions-body.open { display: block; }

.mobile-conditions-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 10px 0 4px;
}
.mobile-conditions-body a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.mobile-conditions-body a:last-child { border-bottom: none; }
.mobile-conditions-body a:hover { color: white; }

/* ============================================
   CONDITIONS HUB PAGE
   ============================================ */

.category-section { margin-bottom: 64px; }
.category-section:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg { width: 24px; height: 24px; }
.category-icon--oncology { background: #fce4ec; }
.category-icon--oncology svg { fill: #c62828; }
.category-icon--mens     { background: var(--blue-pale); }
.category-icon--mens svg { fill: var(--blue); }
.category-icon--kidney   { background: #e8f5e9; }
.category-icon--kidney svg { fill: #2e7d32; }
.category-icon--womens   { background: #f3e5f5; }
.category-icon--womens svg { fill: #7b1fa2; }

.category-header__text h2 { margin: 0 0 4px; font-size: 1.4rem; }
.category-header__text p  { margin: 0; color: var(--muted); font-size: 0.9rem; }

.conditions-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.condition-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.condition-hub-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: var(--transition);
}
.condition-hub-card--oncology::after { background: #c62828; }
.condition-hub-card--mens::after     { background: var(--blue); }
.condition-hub-card--kidney::after   { background: #2e7d32; }
.condition-hub-card--womens::after   { background: #7b1fa2; }
.condition-hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.condition-hub-card:hover::after { transform: scaleX(1); }
.condition-hub-card h3 { font-size: 0.95rem; color: var(--navy); margin: 0 0 8px; }
.condition-hub-card p  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.condition-hub-card__arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 12px;
}
.condition-hub-card__arrow svg { width: 12px; height: 12px; fill: currentColor; }

/* ============================================
   CONDITION DETAIL PAGE
   ============================================ */

.condition-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.condition-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.condition-section { margin-bottom: 48px; }
.condition-section:last-child { margin-bottom: 0; }

.condition-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.section-icon {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-icon svg { width: 18px; height: 18px; fill: var(--blue); }

.condition-intro { font-size: 1rem; color: var(--muted); line-height: 1.8; }

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}
.symptom-item::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 2px solid var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.causes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cause-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cause-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 6px;
}
.cause-item h4 { font-family: 'Inter', sans-serif; font-size: 0.875rem; margin-bottom: 2px; color: var(--navy); }
.cause-item p  { font-size: 0.8rem; color: var(--muted); margin: 0; }

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.treatment-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.treatment-card--primary { border-color: rgba(26,109,191,0.25); background: var(--blue-pale); }
.treatment-card--surgical { border-color: rgba(13,45,94,0.15); background: #f0f4fa; }

.treatment-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.treatment-card--primary .treatment-badge { background: rgba(26,109,191,0.15); color: var(--blue); }
.treatment-card--surgical .treatment-badge { background: rgba(13,45,94,0.1); color: var(--navy); }
.treatment-card h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 10px; color: var(--navy); }
.treatment-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.treatment-card li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.825rem; color: var(--muted); line-height: 1.4;
}
.treatment-card li::before { content: '→'; color: var(--blue); flex-shrink: 0; font-size: 0.75rem; margin-top: 1px; }

.when-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 24px;
}
.when-box--urgent { background: #fce4ec; border-color: #f48fb1; }
.when-box__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.when-box__header svg { width: 22px; height: 22px; fill: #f57f17; flex-shrink: 0; }
.when-box--urgent .when-box__header svg { fill: #c62828; }
.when-box__header h3 { font-size: 1rem; color: #5d3a00; margin: 0; }
.when-box--urgent .when-box__header h3 { color: #b71c1c; }
.when-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.when-box li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: #4a3000; line-height: 1.5;
}
.when-box--urgent li { color: #7b1a1a; }
.when-box li::before { content: '•'; color: #f57f17; font-size: 1.1rem; flex-shrink: 0; line-height: 1.3; }
.when-box--urgent li::before { color: #c62828; }

/* Sidebar */
.sidebar-cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-cta-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.sidebar-cta-card p  { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; margin-bottom: 20px; }
.sidebar-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
  margin-top: 12px; transition: var(--transition);
}
.sidebar-phone:hover { color: white; }
.sidebar-phone svg { width: 14px; height: 14px; fill: currentColor; }

.sidebar-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.sidebar-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 14px;
}
.related-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; background: var(--light-bg);
  border-radius: 6px; font-size: 0.85rem; color: var(--text);
  font-weight: 500; transition: var(--transition);
  border: 1px solid transparent; margin-bottom: 6px;
}
.related-link:last-child { margin-bottom: 0; }
.related-link:hover { background: var(--blue-pale); color: var(--blue); border-color: rgba(26,109,191,0.2); }
.related-link svg { width: 11px; height: 11px; fill: var(--muted); }
.related-link:hover svg { fill: var(--blue); }

/* Category badge (hero) */
.cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 100px; padding: 4px 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.cat-badge--oncology { background: rgba(198,40,40,.2); border: 1px solid rgba(198,40,40,.3); color: #ffcdd2; }
.cat-badge--mens     { background: rgba(26,109,191,.2); border: 1px solid rgba(46,133,216,.35); color: #7bbcf0; }
.cat-badge--kidney   { background: rgba(46,125,50,.2);  border: 1px solid rgba(46,125,50,.35);  color: #a5d6a7; }
.cat-badge--womens   { background: rgba(106,27,154,.2); border: 1px solid rgba(106,27,154,.35); color: #ce93d8; }

/* ============================================
   CONDITIONS RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .conditions-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-layout { grid-template-columns: 1fr 260px; gap: 32px; }
}

@media (max-width: 768px) {
  .conditions-hub-grid { grid-template-columns: 1fr 1fr; }
  .condition-layout { grid-template-columns: 1fr; }
  .condition-sidebar { position: static; }
  .symptoms-grid, .causes-grid, .treatment-grid { grid-template-columns: 1fr; }
}

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

/* ============================================
   ALIAS CLASSES — new condition pages use BEM
   double-dash naming; map them to existing rules
   ============================================ */
.btn--primary       { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-light); }
.btn--outline       { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--full          { width: 100%; justify-content: center; }
.header__cta        { margin-left: 20px; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 56px;
}
.about-header h1 { color: var(--white); margin-bottom: 12px; }
.about-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

/* Philosophy section */
.philosophy-intro {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue-light));
}

.philosophy-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.philosophy-card__icon svg { width: 24px; height: 24px; fill: var(--blue); }

.philosophy-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.philosophy-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* Philosophy list (clean text boxes) */
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  max-width: 780px;
}

.philosophy-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.philosophy-item__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Team section */
.team-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  width: 260px;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--blue-pale);
  border: 3px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.team-card__photo svg { width: 64px; height: 64px; fill: var(--blue); opacity: 0.35; }

.team-card__photo-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

.team-card h3 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .team-grid { justify-content: center; }
  .about-header { padding: 100px 0 40px; }
}

/* ==============================
   FAQ PAGE
   ============================== */

.faq-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 56px;
}

.faq-header h1 { color: var(--white); margin-bottom: 12px; }

.faq-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

.faq-body {
  padding: 56px 0 72px;
  background: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  transition: background 0.15s;
}

.faq-item__question:hover { background: var(--blue-pale); }

.faq-item__question.open { background: var(--blue-pale); color: var(--blue); }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.15s;
  line-height: 1;
}

.faq-item__question.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.faq-item__answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item__answer.open { display: block; }

.faq-cta {
  text-align: center;
  margin-top: 44px;
}

.faq-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-header { padding: 100px 0 40px; }
  .faq-item__question { font-size: 0.98rem; padding: 18px 20px; }
  .faq-item__answer { padding: 0 20px 18px; }
}
