/* =============================================
   OC Musculoskeletal Medical Center
   styles.css
   ============================================= */

/* --- Variables --- */
:root {
  --navy: #1B3A5C;
  --navy-dark: #122840;
  --navy-mid: #24527A;
  --gold: #C4963A;
  --gold-light: #D9AE58;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --gray-light: #EFEFED;
  --gray-mid: #9CA3AF;
  --gray-dark: #4B5563;
  --text: #1F2937;
  --text-light: #6B7280;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(27,58,92,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,92,0.16);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

/* --- Container --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,150,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Section Headers --- */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* --- Divider --- */
.gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}
.gold-line.center { margin: 20px auto 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 54px;
  width: auto;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('Soccer.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 40, 64, 0.60) 0%,
    rgba(27, 58, 92, 0.42) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
  line-height: 1.12;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-down-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.scroll-down-arrow:hover { color: var(--gold); }
.scroll-down-arrow svg { width: 36px; height: 36px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   CREDENTIAL STRIP
   ============================================ */
.credential-strip {
  background: var(--navy-dark);
  padding: 22px 0;
  border-bottom: 1px solid rgba(196,150,58,0.25);
}
.credential-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cred-item:last-child { border-right: none; }
.cred-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   ABOUT CLINIC / INTRO
   ============================================ */
.about-clinic {
  padding: 100px 0;
  background: var(--off-white);
}
.about-clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-clinic-text .section-desc {
  max-width: 100%;
  margin-bottom: 20px;
}
.about-clinic-text p + p { margin-top: 16px; }
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 28px;
}
.highlight-box p {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}
.about-clinic-image {
  position: relative;
}
.about-clinic-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.image-badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.image-badge-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.35;
}

.prp-card { cursor: pointer; }
.card-learn-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* PRP Modal */
.prp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.prp-modal-overlay.open { display: flex; }
.prp-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.prp-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}
.prp-modal-close:hover { color: var(--navy); }
.prp-modal-points { display: flex; flex-direction: column; gap: 20px; }
.prp-modal-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.prp-modal-icon { flex-shrink: 0; width: 22px; margin-top: 2px; }
.prp-modal-point strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.prp-modal-point p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TREATMENTS
   ============================================ */
.treatments {
  padding: 100px 0;
  background: var(--white);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.treatment-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.treatment-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.treatment-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.35;
}
.treatment-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}
.ultrasound-note {
  margin-top: 48px;
  background: var(--navy);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
}
.ultrasound-note-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,150,58,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.ultrasound-note-icon svg { width: 22px; height: 22px; }
.ultrasound-note p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.ultrasound-note strong { color: var(--gold-light); }

/* ============================================
   IDEAL PATIENTS
   ============================================ */
.ideal-patients {
  padding: 100px 0;
  background: var(--off-white);
}
.patients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.patient-type {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.patient-type h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.patient-type p {
  font-size: 0.95rem;
  color: var(--text-light);
}
.patients-image {
  grid-row: 1 / 3;
  grid-column: 2;
}
.patients-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.patients-image-2 {
  grid-column: 2;
  grid-row: 3 / 5;
}
.patients-image-2 img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   ABOUT DR. SALAMATIPOUR
   ============================================ */
.about-dr {
  padding: 100px 0;
  background: var(--white);
}
.about-dr-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.about-dr-photo {
  position: sticky;
  top: 100px;
}
.about-dr-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.dr-name-card {
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -4px;
}
.dr-name-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.dr-name-card p {
  font-size: 0.82rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.about-dr-content .section-desc { max-width: 100%; }
.about-dr-content p { color: var(--text-light); font-size: 0.97rem; margin-bottom: 16px; }

/* Accordion */
.accordion {
  margin-top: 40px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-light); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
  gap: 16px;
}
.accordion-btn:hover { background: var(--gold-pale); }
.accordion-btn.active {
  background: var(--navy);
  color: var(--white);
}
.accordion-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.active .accordion-arrow {
  transform: rotate(180deg);
  filter: brightness(10);
}
.accordion-body {
  display: none;
  padding: 28px 28px 32px;
  background: var(--white);
}
.accordion-body.open { display: block; }

/* Education list */
.edu-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}
.edu-item:last-child { border-bottom: none; }
.edu-institution {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.97rem;
}
.edu-program {
  font-size: 0.9rem;
  color: var(--text-light);
}
.edu-years {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Publications */
.pub-category { margin-bottom: 28px; }
.pub-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-light);
}
.pub-list { display: flex; flex-direction: column; gap: 10px; counter-reset: pub-counter; }
.pub-item {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid var(--gray-light);
  counter-increment: pub-counter;
  position: relative;
}
.pub-item::before {
  content: counter(pub-counter) ". ";
  font-weight: 600;
  color: var(--gold);
  margin-right: 4px;
}
.pub-item strong { color: var(--text); }

/* Sports coverage */
.sports-list { display: flex; flex-direction: column; gap: 6px; }
.sports-category-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 10px;
}
.sports-category-title:first-child { margin-top: 0; }
.sports-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}
.sports-entry::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Editorial */
.editorial-list { display: flex; flex-direction: column; gap: 6px; }
.editorial-item {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.editorial-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================
   CHAMPION CALLOUT
   ============================================ */
.champion-callout {
  background: var(--navy-dark);
  padding: 80px 0;
  text-align: center;
}
.champion-callout .section-label { color: var(--gold-light); text-align: center; }
.champion-callout h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.champion-callout p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.champion-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.champion-image {
  max-width: 720px;
  margin: 0 auto 48px;
}
.champion-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  display: block;
  opacity: 0.92;
}
.champion-stat {
  text-align: center;
}
.champion-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.champion-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail a:hover { color: var(--gold); }
.contact-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-section h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-section > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.under-construction-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(36,82,122,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}
.sms-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.form-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 0.95rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 14px;
  line-height: 1.65;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================
   PRIVACY / TERMS PAGES
   ============================================ */
.policy-page {
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.policy-page .container { max-width: 820px; }
.policy-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light);
}
.policy-header h1 { font-size: 2.2rem; margin-bottom: 10px; }
.policy-header p { color: var(--text-light); font-size: 0.9rem; }
.policy-body h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--navy);
}
.policy-body h3 {
  font-size: 1rem;
  margin: 24px 0 10px;
  color: var(--navy);
}
.policy-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.75;
}
.policy-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-body ul li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}
.policy-nav-bar {
  background: var(--navy-dark);
  padding: 14px 0;
}
.policy-nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 820px;
}
.policy-nav-bar a { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.policy-nav-bar a:hover { color: var(--gold-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .about-dr-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .logo-img { height: 40px; }
  .logo-text { font-size: 1.2rem; }
  .logo-sub { font-size: 0.72rem; }
  .nav-logo { gap: 8px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { text-align: center; }

  .about-clinic-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-clinic-image { order: -1; }
  .about-clinic-image img { height: 320px; }
  .image-badge { left: 0; bottom: -16px; }

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

  .patients-grid { grid-template-columns: 1fr; }
  .patients-image { grid-row: auto; grid-column: auto; }
  .patients-image img { height: 280px; }
  .patients-image-2 { grid-row: auto; grid-column: auto; }
  .patients-image-2 img { height: 280px; }

  .about-dr-grid { grid-template-columns: 1fr; }
  .about-dr-photo { position: static; max-width: 320px; }

  .champion-grid { gap: 32px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .cred-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; width: 100%; justify-content: flex-start; }
  .credential-strip .container { flex-direction: column; }
  .champion-grid { flex-direction: column; gap: 24px; }
  .credential-strip .container { gap: 0; }
  .logo-img { height: 36px; }
  .logo-text { font-size: 1.1rem; }
  .logo-sub { font-size: 0.68rem; display: block; }
  .nav-logo { gap: 8px; }
}
