/* ============================================================
   FIRST CHOICE FAMILY MEDICAL CENTER — style.css
   Design: Tropical Professionalism
   Colors: Deep Navy | Warm Gold | Turquoise | Soft White
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #0d2b45;
  --navy-deep:  #081c2e;
  --navy-mid:   #163a56;
  --gold:       #c8962e;
  --gold-light: #e8b84b;
  --teal:       #2a9d8f;
  --teal-light: #3dbfb0;
  --sand:       #f5efe6;
  --white:      #ffffff;
  --text-dark:  #1a2e3d;
  --text-mid:   #4a6070;
  --text-light: #8ca0ae;
  --border:     #dde8ed;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(13,43,69,0.08);
  --shadow-md:  0 8px 32px rgba(13,43,69,0.12);
  --shadow-lg:  0 20px 60px rgba(13,43,69,0.18);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 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-dark);
  background: var(--white);
  line-height: 1.7;
  /* overflow-x handled at wrapper level, not body — body overflow clips fixed/sticky children */
}

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-display); line-height: 1.2; }

/* ── Utility Classes ───────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin-top: 14px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,46,0.35);
}

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

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

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

/* ── Top Bar ───────────────────────────────────────────────── */
#top-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 10px 0;
  font-family: var(--font-body);
}

#top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a, .top-bar-right a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--gold); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hours-badge {
  background: var(--teal);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ── Header / Navigation ───────────────────────────────────── */
/* ── Header ─────────────────────────────────────────────────── */
#main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text-block .clinic-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}
.logo-text-block .clinic-tagline {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ── Main Nav — flat links, no dropdowns ───────────────────── */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

#main-nav ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

#main-nav ul li a:hover {
  background: var(--sand);
  color: var(--navy);
}

#main-nav ul li a.active {
  color: var(--teal);
  font-weight: 600;
}

/* ── Header CTA ────────────────────────────────────────────── */
.header-cta {
  display: flex;
  align-items: center;
}

/* ── Mobile hamburger ──────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(42,157,143,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,150,46,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #0d2b45 0%, #163a56 50%, #0d3d54 100%);
}

/* Wave SVG decoration */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 10%; right: 15%; border-color: rgba(42,157,143,0.15); }
.shape-3 { width: 150px; height: 150px; top: 20%; left: 40%; border-color: rgba(200,150,46,0.12); }

/* Hero image placeholder panel */
.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}

/* Subtle left-edge fade so the photo blends into the hero content */
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,43,69,0.55) 0%, transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 55%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.hero-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  height: 50px;
  align-self: center;
}

/* ── Quick Info Bar ────────────────────────────────────────── */
#quick-info {
  background: var(--gold);
  padding: 18px 0;
}

#quick-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.quick-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.quick-info-text .label {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.quick-info-text .value {
  font-weight: 600;
  font-size: 14px;
}

/* ── About Section ─────────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: var(--white);
}

#about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
}

.about-main-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  flex-direction: column;
  gap: 10px;
  min-height: 460px;
}

.about-accent-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.accent-card-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}

.accent-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
  line-height: 1.5;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--teal);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.about-content .section-label { display: block; }

.doctor-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 6px;
}

.doctor-title {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-bio {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(42,157,143,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-text span { font-size: 14px; color: var(--text-mid); }

/* ── Staff Card ────────────────────────────────────────────── */
.staff-card {
  margin-top: 28px;
  padding: 20px;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--teal);
}

/* Wrapper holds either the initials circle OR a real <img> */
.staff-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--teal);
}

/* Initials fallback — shown when no photo yet */
.staff-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

/* Real photo — uncomment img in HTML when ready */
.staff-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.staff-info strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}
.staff-info span {
  font-size: 13px;
  color: var(--text-mid);
  display: block;
  line-height: 1.5;
}
.staff-photo-note {
  font-size: 11px !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-top: 2px;
}

/* ── Services Section ──────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(42,157,143,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 14px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(42,157,143,0.1), rgba(200,150,46,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

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

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── Conditions / Patient Center Section ──────────────────── */
#patient-center {
  padding: 100px 0;
  background: var(--white);
}

.patient-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.pc-panel {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.pc-panel.dark {
  background: var(--navy);
  color: var(--white);
}

.pc-panel .section-title { font-size: 26px; }
.pc-panel.dark .section-title { color: var(--white); }

.pc-panel .section-label { margin-bottom: 8px; }

.pc-panel .section-subtitle {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 28px;
}
.pc-panel.dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* Conditions list */
.conditions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.condition-item:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.condition-item::before {
  content: '⬥';
  color: var(--gold);
  font-size: 10px;
}

.condition-item:hover::before { color: rgba(255,255,255,0.8); }

/* Blog list */
.blog-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.blog-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.blog-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: rgba(42,157,143,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.blog-meta .blog-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.blog-meta .blog-title {
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 500;
}

.blog-meta .blog-date {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── Hours & Insurance Section ─────────────────────────────── */
#office-info {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.office-info-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(42,157,143,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(200,150,46,0.08) 0%, transparent 50%);
}

#office-info .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.office-panel h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hours-list { display: flex; flex-direction: column; gap: 12px; }

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.hour-row .day { color: rgba(255,255,255,0.65); }
.hour-row .time { color: var(--white); font-weight: 500; }
.hour-row .time.closed { color: rgba(255,255,255,0.3); }

.insurance-logos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insurance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.insurance-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

/* Logo placeholder — real images now loaded */
.insurance-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.insurance-logo-placeholder svg,
.insurance-logo-placeholder img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.insurance-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ins-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.ins-full {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

.insurance-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 18px;
  line-height: 1.5;
}

.appointment-card {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}

.appointment-card h3 {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.appt-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.appt-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.appt-option::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  display: inline-flex;
}

/* ── Contact Section ───────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--sand);
}

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

.contact-info .section-title { margin-bottom: 16px; }
.contact-info .section-subtitle { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-item-text .value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.contact-item-text .value a { color: var(--navy); }
.contact-item-text .value a:hover { color: var(--teal); }

/* Contact CTA Panel (replaces form) */
.contact-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-cta-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-cta-card--call { border-left: 5px solid var(--teal); }
.contact-cta-card--email { border-left: 5px solid var(--gold); }
.contact-cta-card--walkin { border-left: 5px solid var(--navy); }

.cta-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-body h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 6px;
}

.cta-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.walkin-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-mid);
}
.walkin-hours strong {
  color: var(--navy);
  font-weight: 600;
}

.contact-emergency-note {
  font-size: 13px;
  color: var(--text-mid);
  padding: 14px 20px;
  background: #fff8e1;
  border-radius: var(--radius-md);
  border-left: 4px solid #f59e0b;
  line-height: 1.5;
}

/* Map Placeholder */
/* ── Embedded map ──────────────────────────────────────────── */
.map-embed {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-caption {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  padding: 0 4px;
}

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-text-block .clinic-name { color: var(--white); }
.footer-brand .logo-text-block .clinic-tagline { color: rgba(255,255,255,0.45); }

.footer-bio {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '→';
  font-size: 12px;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon { color: var(--teal); font-size: 16px; margin-top: 2px; }
.footer-contact-item .text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item .text a { color: rgba(255,255,255,0.6); }
.footer-contact-item .text a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* Bahamas subtle touch */
.bahamas-pride {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.bahamas-flag-bar {
  display: flex;
  gap: 2px;
}

.flag-stripe {
  width: 4px;
  height: 16px;
  border-radius: 1px;
}
.flag-stripe.aqua { background: #00778B; }
.flag-stripe.gold { background: #FFC72C; }
.flag-stripe.black { background: #000000; }

/* ── Scroll animation ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Toast notification ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--teal);
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Mobile Navigation ─────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav ul li a {
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
}
.mobile-nav ul li a:hover { background: var(--sand); color: var(--navy); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}

.mobile-nav-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #about .container { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }
  .patient-center-grid { grid-template-columns: 1fr; }
  #office-info .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  #top-bar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  #main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-image-panel { display: none; }
  #hero { min-height: auto; }

  #quick-info .container { flex-direction: column; gap: 12px; }
  #office-info .container { grid-template-columns: 1fr; }
  #contact .container { grid-template-columns: 1fr; }
  .conditions-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-accent-card { display: none; }
  .about-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .contact-form-card { padding: 28px 20px; }
}