/* ============================================
   WCC HOMEPAGE — PREMIUM STYLESHEET
   Wilshire Center Chiropractic
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --navy: #212d45;
  --navy-light: #2a3a5c;
  --cream: #F5F6FA;
  --gold: #C9A84C;
  --gold-hover: #B8963F;
  --gold-text: #8B7332;
  --gold-light: #F8F3E6;
  --accent: #2B3A5E;
  --accent-light: #3D4F7A;
  --accent-lighter: #EDF0F7;
  --accent-gradient: linear-gradient(135deg, #2B3A5E 0%, #1E2D4A 100%);
  --charcoal: #1E2D4A;
  --sage: #7C8B6F;
  --white: #ffffff;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;

  --font-heading: 'Figtree', -apple-system, sans-serif;
  --font-body: 'Noto Sans', -apple-system, sans-serif;
  --font-korean: 'Noto Sans KR', 'Noto Sans', sans-serif;
  --font-accent: 'Figtree', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 12px 48px rgba(0, 0, 0, 0.10);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-content: 75ch;

  --z-nav: 50;
  --z-sticky: 40;
  --z-overlay: 90;
  --z-modal: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus states for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Cursor pointer on all interactive elements */
.condition-card,
.tech-card,
.blog-card,
.doctor-card-link,
.btn,
.nav-cta,
.footer-book-btn,
.social-handle,
.mobile-sticky-btn,
.nav-hamburger,
.booking-modal-close {
  cursor: pointer;
}

ul {
  list-style: none;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}


/* ============================================
   NAVIGATION — Glassmorphism
   ============================================ */
.wcc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 8px 0;
  transition: var(--transition);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.wcc-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.wcc-nav.scrolled .nav-menu > li > a {
  color: var(--charcoal);
}

.wcc-nav.scrolled .nav-menu > li > a:hover {
  color: var(--navy);
}

.wcc-nav.scrolled .nav-menu > li > a::after {
  background: var(--gold);
}

.wcc-nav.scrolled .nav-lang a {
  color: var(--gold) !important;
}

.wcc-nav.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.wcc-nav.scrolled .dropdown-menu li a {
  color: var(--gray-600);
}

.wcc-nav.scrolled .dropdown-menu li a:hover {
  color: var(--charcoal);
  background: rgba(0, 0, 0, 0.03);
  border-left-color: var(--gold);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 60px;
  width: auto;
  max-width: 160px;
  transition: var(--transition);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.05) brightness(1.02);
}

.wcc-nav.scrolled .nav-logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu > li > a {
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-menu > li > a:hover {
  color: var(--accent);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

.nav-lang a {
  color: var(--gold) !important;
  font-family: var(--font-korean);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.25);
}

.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}

.wcc-nav.scrolled .nav-cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 260px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.dropdown-menu li a:hover {
  color: var(--charcoal);
  background: rgba(0, 0, 0, 0.03);
  padding-left: 24px;
  border-left-color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.82) 0%,
    rgba(33, 45, 69, 0.72) 50%,
    rgba(33, 45, 69, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 168px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-korean {
  font-family: var(--font-korean);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================
   TRUST BANNER
   ============================================ */
.trust-banner {
  background: var(--accent-gradient);
  border-bottom: none;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}


/* ============================================
   BENTO BOX GRID
   ============================================ */
.bento-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0;
  max-width: 100%;
}

.bento-section .bento-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.bento-cell {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bento-cell:hover {
  box-shadow: var(--shadow-md);
}

/* Map: spans full left column */
.bento-map {
  grid-row: 1 / 4;
  min-height: 400px;
}

.bento-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

/* Review */
.bento-review {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.bento-review-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal);
  border: none;
  margin-bottom: 12px;
}

.bento-review-author {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Doctor */
.bento-doctor {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.bento-doctor-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

.bento-doctor-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento-doctor-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Badge */
.bento-badge {
  padding: 24px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bento-badge-year {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.bento-badge p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   SECTION TYPOGRAPHY
   ============================================ */
.section-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}


/* ============================================
   CONDITIONS ("What Hurts?")
   ============================================ */
.conditions-section {
  padding: 100px 0;
  background: var(--white);
}

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

.condition-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition), border-color 0.2s ease;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  display: block;
}

.condition-card:hover {
  border-left-color: var(--gold);
}

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

.condition-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.condition-icon img {
  width: 56px;
  height: 56px;
}

.condition-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.condition-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.5;
}


/* ============================================
   TECHNOLOGY SHOWCASE
   ============================================ */
.tech-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.tech-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  border: 1px solid var(--gray-200);
}

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

.tech-card-img {
  height: 220px;
  overflow: hidden;
}

.tech-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.tech-card-content {
  padding: 28px;
}

.tech-card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.tech-card-content p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.tech-card:hover .tech-card-link {
  color: var(--gold-hover);
  letter-spacing: 0.02em;
}


/* ============================================
   WHY CHOOSE US (Stats)
   ============================================ */
.why-section {
  padding: 80px 0;
  background: var(--accent-gradient);
  text-align: center;
}

.why-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.why-section .section-headline {
  color: var(--white);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 48px auto 0;
}

.why-number {
  display: block;
  position: relative;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.why-number::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-bottom: 8px;
}

.why-suffix {
  color: var(--white);
}

.why-stat p {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  position: relative;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 4rem;
  font-family: var(--font-accent);
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonials-cta {
  text-align: center;
}


/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  border: 1px solid var(--gray-200);
}

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

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.blog-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.blog-card-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.blog-cta {
  text-align: center;
}


/* ============================================
   INSURANCE SECTION
   ============================================ */
.insurance-section {
  padding: 100px 0;
  background: var(--white);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.insurance-text .section-headline {
  margin-bottom: 20px;
}

.insurance-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.insurance-list {
  margin-bottom: 32px;
}

.insurance-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.insurance-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.insurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-logos img {
  max-width: 100%;
  border-radius: var(--radius-md);
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(135deg, #3D4F7A 0%, #2B3A5E 50%, #1E2D4A 100%);
}

.final-cta-overlay {
  display: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.final-cta-korean {
  font-family: var(--font-korean);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.final-cta-content > p.final-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
.wcc-footer {
  background: #ffffff;
  color: var(--charcoal);
  padding-top: 64px;
  border-top: 2px solid var(--gray-200);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  width: 300px;
  height: auto;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--gray-600);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-nap {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-nap strong {
  color: var(--charcoal);
}

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

.footer-hours {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gray-400);
  transition: var(--transition);
}

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


/* ============================================
   MOBILE STICKY BOTTOM BAR
   ============================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 0;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.mobile-call {
  background: var(--navy);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-book {
  background: var(--gold);
  color: var(--charcoal);
}


/* ============================================
   BOOKING MODAL — Glassmorphism
   ============================================ */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 580px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.booking-modal-close:hover {
  color: var(--charcoal);
}

.booking-modal-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.booking-modal-content > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.booking-form textarea {
  margin-bottom: 16px;
  resize: vertical;
}

.booking-form select {
  cursor: pointer;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.form-note a {
  color: var(--gold);
  font-weight: 600;
}


/* ============================================
   SCROLL ANIMATIONS (Fade In)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }

  .tech-card-img {
    height: 100%;
  }

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

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

  .insurance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}


/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(33, 45, 69, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li > a {
    font-size: 1.3rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 8px 0;
  }

  .dropdown-menu li a {
    text-align: center;
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 600px;
    max-height: 800px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Trust Banner */
  .trust-inner {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }

  .trust-divider {
    display: none;
  }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-map {
    grid-row: auto;
    min-height: 280px;
  }

  /* Conditions */
  .conditions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .condition-card {
    padding: 24px 16px;
  }

  /* Tech */
  .tech-card {
    grid-template-columns: 1fr;
  }

  .tech-card-img {
    height: 200px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-number {
    font-size: 2.4rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Mobile sticky bar */
  .mobile-sticky-bar {
    display: flex;
  }

  /* Add padding at bottom so content isn't hidden behind sticky bar */
  .wcc-footer {
    padding-bottom: 64px;
  }

  /* Booking modal */
  .booking-modal-content {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

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

  /* Final CTA */
  .final-cta {
    background-attachment: scroll;
    padding: 80px 24px;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }

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

  .bento-section {
    padding: 48px 16px;
  }
}


/* ============================================
   NEW SECTIONS — UPGRADED HOMEPAGE
   ============================================ */

/* ============================================
   QUICK CTA + SOCIAL BAR
   ============================================ */
.quick-cta {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}

.quick-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.quick-cta-left h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.quick-cta-korean {
  font-family: var(--font-korean);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}

.quick-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-ghost-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.social-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
}

.social-bar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-handle svg {
  flex-shrink: 0;
}

.social-handle:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .quick-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .quick-cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .quick-cta-buttons .btn,
  .quick-cta-buttons .btn-ghost-dark {
    width: 100%;
    text-align: center;
  }

  .social-bar {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
  }

  .social-bar-links {
    justify-content: center;
  }
}


/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* --- Hero Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-headline {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-korean {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-sub {
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* --- Typewriter Effect --- */
.typewriter-text {
  color: var(--gold);
}

.typewriter-cursor {
  color: var(--gold);
  font-weight: 300;
  animation: cursorBlink 0.8s ease infinite;
  margin-left: 2px;
  opacity: 0.7;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-buttons {
  animation: fadeInUp 0.8s ease 1s both;
}

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

/* --- Hero Noise Texture Overlay --- */
.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* --- Hero Scroll Indicator --- */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Bento Review Source --- */
.bento-review-source {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* --- Bento Doctor Language Tag --- */
.bento-doctor-lang {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}


/* ============================================
   MEET YOUR DOCTORS
   ============================================ */
.doctors-section {
  padding: 100px 0;
  background: var(--cream);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.doctor-card-img {
  height: 440px;
  overflow: hidden;
}

.doctor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: var(--transition);
}

/* Dr. Sim - professional portrait, arms crossed */
.doctor-card:first-child .doctor-card-img img {
  object-position: center 20%;
}

/* Dr. Ji - face is centered */
.doctor-card:nth-child(2) .doctor-card-img img {
  object-position: center 25%;
}

/* Seth Sword - seated, zoom to match standing portraits */
.doctor-card:nth-child(3) .doctor-card-img img {
  object-position: center 45%;
  transform: scale(2);
  transform-origin: center 50%;
}

.doctor-card:nth-child(3):hover .doctor-card-img img {
  transform: scale(2.03);
}

.doctor-card:hover .doctor-card-img img {
  transform: scale(1.03);
}

.doctor-card-content {
  padding: 28px;
}

.doctor-card-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.doctor-card-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.doctor-card-bio {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.doctor-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.doctor-card-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: 20px;
}

.doctor-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.doctor-card-link:hover {
  color: var(--gold-hover);
}

/* Support Staff */
.team-staff {
  margin-top: 48px;
  text-align: center;
}

.team-staff-headline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.team-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.staff-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

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

.staff-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.staff-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}


/* ============================================
   PATIENT JOURNEY (4 Steps)
   ============================================ */
.journey-section {
  padding: 100px 0;
  background: var(--white);
}

.journey-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 260px;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.journey-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.journey-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.journey-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.journey-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gray-200));
  margin-top: 24px;
  flex-shrink: 0;
}


/* ============================================
   CONDITION CARD — Featured Badge
   ============================================ */
.condition-featured {
  position: relative;
  border: 2px solid var(--gold);
  background: var(--white);
}

.condition-card-badge {
  display: none;
}

.condition-featured .condition-card-badge {
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
}

.condition-icon svg {
  color: var(--navy);
  transition: var(--transition);
}

.condition-card:hover .condition-icon svg {
  color: var(--gold);
}


/* ============================================
   TECH CARD BADGE
   ============================================ */
.tech-card-img {
  position: relative;
}

.tech-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(33, 45, 69, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
}


/* ============================================
   AUTO ACCIDENT / LIEN SECTION
   ============================================ */
.lien-section {
  padding: 100px 0;
  background: var(--gold-light);
  color: var(--charcoal);
}

.lien-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.lien-section .section-headline {
  color: var(--charcoal);
}

.lien-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lien-sub strong {
  color: var(--gold);
}

.lien-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.lien-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lien-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lien-step strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.lien-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.lien-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lien-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


/* ============================================
   WHY SECTION — Animated Counter Suffix
   ============================================ */
.why-stat {
  position: relative;
}

.why-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}


/* ============================================
   TESTIMONIALS — 4-Column Grid + Korean Card
   ============================================ */
.testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-korean blockquote {
  font-family: var(--font-korean);
  font-style: normal;
}


/* ============================================
   INSURANCE VISUAL (Card Stack)
   ============================================ */
.insurance-visual {
  display: flex;
  align-items: center;
}

.insurance-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.insurance-card-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.insurance-card-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.insurance-card-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.insurance-card-item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}


/* ============================================
   KOREATOWN COMMUNITY SECTION
   ============================================ */
.community-section {
  padding: 100px 0;
  background: var(--cream);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.community-korean {
  font-family: var(--font-korean);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  margin-bottom: 24px;
}

.community-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-neighborhoods span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.community-neighborhoods span:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

.community-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.community-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


/* ============================================
   FINAL CTA — Address Line
   ============================================ */
.final-cta-address {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================
   FOOTER — Korean Tagline + Book Button
   ============================================ */
.footer-tagline-kr {
  font-family: var(--font-korean);
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-book-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer-book-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}


/* ============================================
   MOBILE STICKY BAR — Icons
   ============================================ */
.mobile-sticky-btn {
  gap: 8px;
}

.mobile-sticky-btn svg {
  flex-shrink: 0;
}


/* ============================================
   BOOKING MODAL — Header with Logo
   ============================================ */
.booking-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.booking-modal-logo {
  flex-shrink: 0;
  margin-top: 4px;
}

.booking-modal-header h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.booking-modal-header p {
  font-size: 0.9rem;
  color: var(--gray-600);
}


/* ============================================
   RESPONSIVE — NEW SECTIONS (Tablet)
   ============================================ */
@media (max-width: 1024px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
  }

  .doctor-card-img {
    height: 100%;
  }

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

  .lien-image {
    display: none;
  }

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

  .community-image {
    display: none;
  }

  .journey-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .journey-connector {
    display: none;
  }

  .journey-step {
    flex: 0 0 45%;
    margin-bottom: 24px;
  }
}


/* ============================================
   RESPONSIVE — NEW SECTIONS (Mobile)
   ============================================ */
@media (max-width: 768px) {
  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-card-img {
    height: 260px;
  }

  .journey-step {
    flex: 0 0 100%;
  }

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

  .insurance-visual {
    margin-top: 32px;
  }

  .community-korean {
    font-size: 0.88rem;
  }

  .lien-section {
    padding: 80px 0;
  }
}


/* ============================================
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
   ============================================ */

/* --- 1200px: Large tablets / small desktops --- */
@media (max-width: 1200px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

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

  .tech-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .lien-image {
    order: -1;
    max-height: 350px;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

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

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

  .community-image {
    order: -1;
    max-height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

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

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

/* --- 768px: Mobile --- */
@media (max-width: 768px) {

  /* Nav: Full-screen overlay */
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(33, 45, 69, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 9998;
    padding: 80px 24px env(safe-area-inset-bottom, 24px);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu > li > a {
    display: block;
    padding: 16px;
    font-size: 1.1rem;
    color: #fff;
    min-height: 48px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 12px;
  }

  .nav-dropdown .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 10px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-lang {
    margin-top: 16px;
  }

  /* Hamburger: visible + animated X */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .wcc-nav.scrolled .nav-hamburger span {
    background: var(--charcoal);
  }

  .nav-hamburger.active span {
    background: #fff;
  }

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

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

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

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-headline br {
    display: none;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-sub br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-scroll {
    display: none;
  }

  /* Trust Banner */
  .trust-inner {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  /* Quick CTA */
  .quick-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .quick-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .quick-cta-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .social-bar-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-map {
    min-height: 250px;
  }

  /* Doctors */
  .doctors-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-card-img {
    height: 280px;
  }

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

  /* Conditions/Services */
  .conditions-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Journey */
  .journey-grid {
    flex-direction: column;
    gap: 0;
  }

  .journey-connector {
    display: none;
  }

  .journey-step {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  /* Lien */
  .lien-grid {
    grid-template-columns: 1fr;
  }

  .lien-image {
    order: -1;
    max-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .section-headline br {
    display: none;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Insurance */
  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .insurance-visual {
    margin-top: 32px;
  }

  /* Community */
  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-image {
    order: -1;
    max-height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  /* Final CTA */
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-sticky-btn {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  /* Booking Modal: full-screen slide-up */
  .booking-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-height: 95vh;
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateY(0);
    animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .booking-modal-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .form-row {
    flex-direction: column;
  }

  /* Form inputs: prevent iOS zoom */
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
    min-height: 48px;
  }

  /* Click-to-call prominence */
  a[href^="tel:"] {
    font-weight: 600;
  }

  /* All buttons: touch-friendly */
  .btn {
    min-height: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section spacing */
  .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

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

  .condition-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .condition-icon {
    flex-shrink: 0;
  }

  .condition-card h3 {
    font-size: 0.95rem;
  }

  .condition-card p {
    font-size: 0.8rem;
    display: none;
  }

  .condition-card-badge {
    display: none;
  }

  .team-staff-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card-img {
    height: 220px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .trust-inner {
    flex-direction: column;
    gap: 8px;
  }

  .trust-item {
    font-size: 0.75rem;
  }

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

  .bento-map {
    min-height: 200px;
  }

  .nav-cta {
    display: none;
  }
}

/* --- Touch device optimizations --- */
@media (pointer: coarse) {
  .nav-menu a,
  .condition-card,
  .tech-card,
  .blog-card,
  .btn,
  .footer-book-btn,
  .social-handle {
    min-height: 44px;
  }

  .dropdown-menu a {
    padding: 12px 16px;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .typewriter-cursor {
    animation: none;
  }

  .hero-scroll-line {
    animation: none;
  }

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

/* --- Safe area support (notched phones) --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-sticky-bar {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .booking-modal-content {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* --- Landscape phone --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-headline {
    font-size: 1.6rem;
  }

  .nav-menu.open {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 60px;
  }
}
