﻿/*
 * Digestive Care site stylesheet.
 * Generated by consolidating the former per-page CSS files.
 * Each section is scoped by a body.page-* class to prevent cross-page style collisions.
 */

/* ===== home.html ===== */
body.page-home, body.page-home *,
body.page-home *::before,
body.page-home *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-home { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-home a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-home ul { list-style: none; }
body.page-home img { max-width: 100%; height: auto; }
body.page-home button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-home input,
body.page-home select,
body.page-home textarea { font-family: inherit; outline: none; }
body.page-home /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-home .top-bar a { color: #1B3828; }
body.page-home .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-home .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-home .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-home .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-home .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-home .top-bar-social svg { width: 15px; height: 15px; }
body.page-home .top-bar-center { font-weight: 400; }
body.page-home .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-home .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-home .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-home .top-bar-right .login-btn,
body.page-home .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-home .login-btn:hover svg { color: #E07820; }
body.page-home .lang-btn .chevron { width: 8px; height: 5px; }
body.page-home .lang-btn { position: relative; }
body.page-home .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-home .lang-dropdown.open { display: block; }
body.page-home .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-home .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-home /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-home .location-items { display: flex; align-items: center; gap: 40px; }
body.page-home .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-home .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-home .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-home .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-home .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-home .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-home .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-home .location-item:hover .location-icon svg { color: #fff; }
body.page-home .social-icons { display: flex; gap: 16px; }
body.page-home .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-home .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-home .social-icon:hover svg { color: #fff; }
body.page-home .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-home /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-home .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-home .nav-logo { height: 72px; width: auto; }
body.page-home .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-home .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-home .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-home .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-home .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-home .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-home .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-home .nav-cta svg { width: 18px; height: 18px; }
body.page-home /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-home .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-home .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-home .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-home .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-home .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-home .nav-split-cta svg { width: 18px; height: 18px; }
body.page-home /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-home .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-home .nav-dropdown-wrap:hover > .mega-menu,
body.page-home .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-home .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-home .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-home /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-home .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-home .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-home .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-home .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-home .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-home .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-home .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-home .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-home .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-home .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-home .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-home .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-home /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-home .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-home .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-home .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-home .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-home .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-home .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-home .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-home .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-home .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-home .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-home .mega-team-link a:hover { gap: 10px; }
body.page-home /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-home .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-home .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-home .mobile-menu.active { display: flex; }
body.page-home .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-home .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-home .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-home .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-home .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-home .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-home .mobile-accordion-content.open { display: block; }
body.page-home .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-home .mobile-accordion-content a:hover { color: #E07820; }
body.page-home .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-home /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-home .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-home .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-home .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-home .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-home .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-home .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-home .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-home .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-home .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-home .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-home .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-home .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-home .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-home .btn-primary svg { width: 18px; height: 18px; }
body.page-home .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-home .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-home /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-home .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-home .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-home .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-home .about-cards { display: flex; gap: 20px; }
body.page-home .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-home .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-home .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-home .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-home .about-card p { font-size: 16px; line-height: 1.5; }
body.page-home .about-card p strong { color: #1B3828; }
body.page-home .about-card p span.dash { color: #1B3828; }
body.page-home .about-card p span.desc { color: #6a7282; }
body.page-home /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-home .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-home .services-row { display: flex; gap: 20px; }
body.page-home .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-home .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-home .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-home .service-card:hover::after { width: 100%; }
body.page-home .service-icon,
body.page-home .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-home .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-home .service-card:hover .service-icon.dark { background: #E07820; }
body.page-home .service-card h3 { transition: color 0.3s; }
body.page-home .service-card:hover h3 { color: #E07820; }
body.page-home .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-home .service-card:hover .service-link { transform: translateX(6px); }
body.page-home .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-home .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-home .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-home .service-card.third { flex: 1; }
body.page-home .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-home .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-home .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-home .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-home .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-home .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-home .service-card .service-link:hover { text-decoration: underline; }
body.page-home /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-home .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-home .physicians-header-text { max-width: 580px; }
body.page-home .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-home .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-home .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-home .physicians-nav .prev:hover { border-color: #E07820; }
body.page-home .physicians-nav .next { background: #E07820; border: none; }
body.page-home .physicians-nav .next:hover { background: #C5661A; }
body.page-home .physicians-nav svg { width: 20px; height: 20px; }
body.page-home .physicians-nav .prev svg { color: #6a7282; }
body.page-home .physicians-nav .next svg { color: #fff; }
body.page-home .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-home .physicians-grid::-webkit-scrollbar { display: none; }
body.page-home .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-home .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-home .physician-card:hover .card-img { transform: scale(1.05); }
body.page-home /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-home /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-home .physician-card:hover .card-overlay { opacity: 1; }
body.page-home .physician-card:hover::after { opacity: 0; }
body.page-home /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-home .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-home .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-home /* Hover state - move info up,
body.page-home show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-home .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-home .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-home .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-home .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-home .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-home /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-home .testimonials .section-title { color: #fff; }
body.page-home .quote-icon { margin: 0 auto 42px; }
body.page-home .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-home .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-home .testimonial-card { min-width: 477px; position: relative; }
body.page-home .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-home .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-home .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-home .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-home .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-home .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-home .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-home .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-home .testimonials-arrows button:hover { color: #E07820; }
body.page-home .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-home /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-home .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-home .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-home .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-home .blog-grid { display: flex; gap: 32px; }
body.page-home .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-home .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-home .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-home .blog-card-body { padding: 24px; }
body.page-home .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-home .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-home .blog-date { font-size: 12px; color: #6a7282; }
body.page-home .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-home .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-home .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-home .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-home /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-home .insurance-logos {
  position: relative;
  overflow: hidden;
  margin: 56px 0 56px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
body.page-home .insurance-track {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: insurance-scroll 60s linear infinite;
}
body.page-home .insurance-logos:hover .insurance-track { animation-play-state: paused; }
@keyframes insurance-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
body.page-home .insurance-logo {
  flex: 0 0 auto;
  width: 180px; height: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-home .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-home .insurance-logo img { width: 130px; height: 73px; object-fit: contain; }
body.page-home .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-home .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-home .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-home /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-home .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-home .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 0 32px 32px;
  overflow: hidden;
  transition: all 0.3s;
}
body.page-home .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-home .location-card-img {
  display: block;
  width: calc(100% + 64px);
  max-width: none;
  aspect-ratio: 16 / 10;
  height: auto;
  margin: 0 -32px 24px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
body.page-home .location-card:hover .location-card-img { transform: scale(1.06); }
body.page-home .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-home .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-home .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-home .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-home .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-home .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-home .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-home .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-home .location-card .book-link:hover { gap: 12px; }
body.page-home .location-card .book-link svg { width: 16px; height: 16px; }
body.page-home /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-home .faq-list { margin-top: 48px; }
body.page-home .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-home .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-home .faq-question:hover { color: #E07820; }
body.page-home .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-home .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-home .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-home .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-home .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-home .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-home .faq-footer { text-align: center; margin-top: 32px; }
body.page-home .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-home .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-home .faq-footer a svg { width: 16px; height: 16px; }
body.page-home /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-home .contact-info { flex: 1; color: #fff; }
body.page-home .contact-info .section-label { color: #E07820; text-align: left; }
body.page-home .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-home .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-home .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-home .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-home .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-home /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-home .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-home .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-home .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-home .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-home .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-home .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-home .contact-location-phone:hover { color: #fff; }
body.page-home .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-home .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-home .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-home .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-home .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-home .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-home .form-group { flex: 1; }
body.page-home .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-home .form-group label span { color: #E07820; }
body.page-home .form-group input,
body.page-home .form-group select,
body.page-home .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-home .form-group input::placeholder,
body.page-home .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-home .form-group select { color: rgba(255,255,255,0.3); }
body.page-home .form-group select option { background: #1B3828; color: #fff; }
body.page-home .form-group input:focus,
body.page-home .form-group select:focus,
body.page-home .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-home .form-group textarea { resize: vertical; min-height: 120px; }
body.page-home .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-home .form-submit:hover { background: #C5661A; }
body.page-home .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-home .inquiry-form-alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}
body.page-home .inquiry-form-alert--success {
  background: #ecfdf5;
  color: #166534;
}
body.page-home .inquiry-form-alert--error {
  background: #fef2f2;
  color: #991b1b;
}
body.page-home .form-field-error {
  color: #fca5a5;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
}
body.page-home .form-group input.is-invalid,
body.page-home .form-group textarea.is-invalid {
  border-color: #f87171 !important;
}
body.page-home .form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
body.page-home /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-home .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-home .footer-col { flex: 1; }
body.page-home .footer-col:first-child { flex: 1.2; }
body.page-home .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-home .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-home .footer-social { display: flex; gap: 16px; }
body.page-home .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-home .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-home .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-home .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-home .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-home .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-home .footer-links a:hover { color: #E07820; }
body.page-home .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-home .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-home .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-home .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-home .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-home .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-home .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-home .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-home .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-home .footer-legal { display: flex; gap: 24px; }
body.page-home .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-home .footer-legal a:hover { color: #E07820; }
body.page-home /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-home .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-home .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-home .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-home .stagger-1 { transition-delay: 0.1s; }
body.page-home .stagger-2 { transition-delay: 0.2s; }
body.page-home .stagger-3 { transition-delay: 0.3s; }
body.page-home .stagger-4 { transition-delay: 0.4s; }
body.page-home /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-track { gap: 28px; }
}
@media (max-width: 992px) {
body.page-home .top-bar { display: none; }
body.page-home .location-bar { padding: 12px 20px; }
body.page-home .location-items { flex-wrap: wrap; gap: 20px; }
body.page-home .social-icons { display: none; }
body.page-home .navbar { padding: 12px 20px; }
body.page-home .nav-links { display: none; }
body.page-home .mega-menu { display: none !important; }
body.page-home .hamburger { display: flex; }
body.page-home .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-home .nav-cta svg { width: 14px; height: 14px; }
body.page-home .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-home .hero-content { padding-bottom: 40px; }
body.page-home .hero h1 { font-size: 36px; }
body.page-home .hero-buttons { flex-wrap: wrap; }
body.page-home .hero-image img { height: 320px; }
body.page-home .about,
body.page-home .services,
body.page-home .physicians,
body.page-home .locations { padding: 60px 20px; }
body.page-home .about-cards { flex-direction: column; }
body.page-home .services-row { flex-direction: column; }
body.page-home .service-card.large,
body.page-home .service-card.small { flex: none; width: 100%; }
body.page-home .physicians-header { flex-direction: column; gap: 20px; }
body.page-home .physician-card { min-width: 260px; }
body.page-home .testimonials { padding: 60px 20px; }
body.page-home .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-home .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-home .blog { padding: 60px 20px; }
body.page-home .blog-grid { flex-direction: column; }
body.page-home .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-home .insurance { padding: 60px 20px; }
body.page-home .insurance-track { gap: 20px; }
body.page-home .insurance-logo { width: 140px; height: 140px; }
body.page-home .insurance-logo img { width: 100px; height: 56px; }
body.page-home .locations-grid { flex-direction: column; }
body.page-home .faq { padding: 60px 20px; }
body.page-home .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-home .footer { padding: 40px 20px 0; }
body.page-home .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-home .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-home .footer-col:first-child { flex: 0 0 100%; }
body.page-home .footer-member { flex-direction: column; gap: 12px; }
body.page-home .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-home .navbar { padding: 10px 12px; gap: 6px; }
body.page-home .nav-logo { height: 52px; }
body.page-home .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-home .nav-cta svg { width: 11px; height: 11px; }
body.page-home .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-home .hamburger span { width: 20px; }
body.page-home .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-home .hero p { font-size: 14px; }
body.page-home .hero-image img { height: 260px; }
body.page-home .section-title { font-size: 28px; }
body.page-home .section-label { font-size: 12px; }
body.page-home .location-bar { padding: 8px 12px; }
body.page-home .location-items { gap: 12px; }
body.page-home .location-item { gap: 8px; }
body.page-home .location-name { font-size: 13px; }
body.page-home .location-sub { font-size: 10px; }
body.page-home .location-icon { width: 32px; height: 32px; }
body.page-home .location-icon svg { width: 14px; height: 14px; }
body.page-home .physician-card { min-width: 240px; height: 320px; }
body.page-home .contact-info .section-title { font-size: 32px; }
body.page-home .contact { padding: 40px 16px; gap: 32px; }
body.page-home .contact-form { padding: 24px; }
body.page-home .footer-col { flex: 0 0 100%; }
body.page-home .footer-logo { height: 32px; }
body.page-home .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-home .insurance-track { gap: 14px; }
body.page-home .insurance-logo { width: 110px; height: 110px; }
body.page-home .insurance-logo img { width: 80px; height: 46px; }
body.page-home .form-row { flex-direction: column; gap: 16px; }
body.page-home .blog-card-image { height: 180px; }


}

/* ===== about.html ===== */
body.page-about, body.page-about *,
body.page-about *::before,
body.page-about *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-about { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-about a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-about ul { list-style: none; }
body.page-about img { max-width: 100%; height: auto; }
body.page-about button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-about /* ===== TOP BAR ===== */
.top-bar { background: #EAF4ED; color: #1B3828; height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 138px; font-size: 13px; font-weight: 400; }
body.page-about .top-bar a { color: #1B3828; }
body.page-about .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-about .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-about .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-about .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-about .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-about .top-bar-social svg { width: 15px; height: 15px; }
body.page-about .top-bar-center { font-weight: 400; }
body.page-about .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-about .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-about .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-about .top-bar-right .login-btn,
body.page-about .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-about .login-btn:hover svg { color: #E07820; }
body.page-about .lang-btn .chevron { width: 8px; height: 5px; }
body.page-about .lang-btn { position: relative; }
body.page-about .lang-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 8px; background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); min-width: 140px; overflow: hidden; z-index: 200; }
body.page-about .lang-dropdown.open { display: block; }
body.page-about .lang-option { display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828; text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s; }
body.page-about .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-about /* ===== LOCATION BAR ===== */
.location-bar { background: #1B3828; padding: 12px 138px; display: flex; align-items: center; justify-content: space-between; }
body.page-about .location-items { display: flex; align-items: center; gap: 40px; }
body.page-about .location-item { display: flex; align-items: center; gap: 16px; cursor: pointer; padding: 10px 16px; border-radius: 12px; transition: background 0.3s; }
body.page-about .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-about .location-icon { width: 44px; height: 45px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
body.page-about .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-about .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-about .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-about .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-about .location-item:hover .location-icon svg { color: #fff; }
body.page-about .social-icons { display: flex; gap: 16px; }
body.page-about .social-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
body.page-about .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-about .social-icon:hover svg { color: #fff; }
body.page-about .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
@media (max-width: 1200px) {
body.page-about .location-bar { padding-left: 40px; padding-right: 40px; }
 
}
@media (max-width: 992px) {
body.page-about .location-bar { padding: 12px 20px; }
body.page-about .location-items { flex-wrap: wrap; gap: 20px; }
 
}
@media (max-width: 576px) {
body.page-about .location-bar { padding: 8px 12px; }
body.page-about .location-items { gap: 12px; }
body.page-about .location-item { gap: 8px; }
 
}
body.page-about /* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 100; background: #fff; padding: 14px 138px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
body.page-about .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
body.page-about .nav-logo { height: 72px; width: auto; }
body.page-about .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-about .nav-link { font-size: 15px; font-weight: 300; color: #1B3828; padding: 10px; position: relative; display: flex; align-items: center; gap: 6px; transition: color 0.3s, font-weight 0.3s; }
body.page-about .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-about .nav-link.active { color: #E07820; font-weight: 600; }
body.page-about .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-about .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-about .nav-cta { background: #1B3828; color: #fff; padding: 8px 24px; border-radius: 30px; font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
body.page-about .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-about .nav-cta svg { width: 18px; height: 18px; }
body.page-about /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-about .mega-menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.10); border-radius: 0 0 16px 16px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; z-index: 150; padding: 32px 138px; }
body.page-about .nav-dropdown-wrap:hover > .mega-menu,
body.page-about .mega-menu:hover { opacity: 1; visibility: visible; transform: translateY(0); }
body.page-about .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-about .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-about .mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-about .mega-col-title { font-size: 12px; font-weight: 600; color: #E07820; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
body.page-about .mega-service-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; transition: background 0.2s; }
body.page-about .mega-service-dot { width: 8px; height: 8px; min-width: 8px; background: #E07820; border-radius: 50%; margin-top: 6px; }
body.page-about .mega-service-name { font-size: 14px; font-weight: 600; color: #1B3828; transition: color 0.2s; display: block; }
body.page-about .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-about .mega-service-desc { font-size: 12px; font-weight: 300; color: #6a7282; margin-top: 2px; line-height: 1.4; }
body.page-about .mega-cta-sidebar { background: #1B3828; border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; }
body.page-about .mega-cta-sidebar p { font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5; }
body.page-about .mega-cta-sidebar .mega-cta-btn { background: #E07820; color: #fff; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; }
body.page-about .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-about .mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-about .mega-physician-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
body.page-about .mega-physician-card { border-left: 3px solid #E07820; padding: 14px 16px; background: #FAFBFA; border-radius: 0 10px 10px 0; transition: box-shadow 0.2s, background 0.2s; }
body.page-about .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-about .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-about .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-about .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-about .mega-physician-link { font-size: 12px; font-weight: 600; color: #1B3828; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
body.page-about .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-about .mega-team-link { text-align: center; padding-top: 4px; }
body.page-about .mega-team-link a { font-size: 14px; font-weight: 600; color: #E07820; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
body.page-about .mega-team-link a:hover { gap: 10px; }
body.page-about /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-about .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-about .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 200; flex-direction: column; padding: 80px 24px 24px; overflow-y: auto; }
body.page-about .mobile-menu.active { display: flex; }
body.page-about .mobile-menu-close { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; color: #1B3828; background: none; border: none; font-family: inherit; }
body.page-about .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-about .mobile-accordion-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 20px; font-weight: 300; color: #1B3828; padding: 16px 0; border-bottom: 1px solid #e5e7eb; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: inherit; }
body.page-about .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-about .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-about .mobile-accordion-content { display: none; padding: 0 0 8px 16px; }
body.page-about .mobile-accordion-content.open { display: block; }
body.page-about .mobile-accordion-content a { display: block; font-size: 15px; font-weight: 400; color: #1B3828; padding: 10px 0; border-bottom: 1px solid #f0f1f3; transition: color 0.2s; }
body.page-about .mobile-accordion-content a:hover { color: #E07820; }
body.page-about .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-about /* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 100px 130px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
body.page-about .hero::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(224,120,32,0.06) 0%, transparent 65%);
  pointer-events: none;
}
body.page-about .hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 400;
  margin-bottom: 24px; position: relative; z-index: 1;
}
body.page-about .hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
body.page-about .hero-breadcrumb a:hover { color: #E07820; }
body.page-about .hero-breadcrumb .sep { margin: 0 4px; }
body.page-about .hero-breadcrumb .current { color: #E07820; font-weight: 500; }
body.page-about .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px; padding: 7px 20px;
  margin-bottom: 24px;
}
body.page-about .hero-badge-dot { width: 8px; height: 8px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-about .hero-badge span { font-size: 13px; font-weight: 300; color: #fff; }
body.page-about .hero h1 {
  font-size: 52px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.5px;
  margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
body.page-about .hero-desc {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.6; max-width: 580px; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
body.page-about .hero-divider {
  width: 64px; height: 3px; background: #E07820; border-radius: 2px;
  margin: 0 auto 36px; position: relative; z-index: 1;
}
body.page-about /* ===== OUR STORY ===== */
.story-section { padding: 80px 130px; background: #fff; }
body.page-about .story-grid {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 64px; align-items: center;
}
body.page-about .section-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 16px;
}
body.page-about .story-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  line-height: 1.3; margin-bottom: 24px;
}
body.page-about .story-text p {
  font-size: 16px; color: #6a7282; line-height: 1.7; margin-bottom: 20px;
}
body.page-about .story-text p:last-child { margin-bottom: 0; }
body.page-about /* Milestones timeline */
.milestones {
  position: relative; padding-left: 32px;
}
body.page-about .milestones::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, #E07820, rgba(224,120,32,0.2));
}
body.page-about .milestone {
  position: relative; margin-bottom: 32px;
  padding-left: 24px;
}
body.page-about .milestone:last-child { margin-bottom: 0; }
body.page-about .milestone::before {
  content: ''; position: absolute; left: -25px; top: 6px;
  width: 12px; height: 12px; background: #E07820; border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 0 0 2px rgba(224,120,32,0.2);
}
body.page-about .milestone-year {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
body.page-about .milestone-title { font-size: 17px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-about .milestone-desc { font-size: 14px; color: #6a7282; line-height: 1.5; }
body.page-about /* ===== FOUNDER ===== */
.founder-section { padding: 80px 130px; background: #EDF5EF; }
body.page-about .founder-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 56px; align-items: start;
}
body.page-about .founder-photo {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1B3828, #102B1C);
  border-radius: 20px; overflow: hidden;
  position: relative;
}
body.page-about .founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
body.page-about .founder-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
body.page-about .founder-initials {
  font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.1);
  letter-spacing: -3px; line-height: 1;
}
body.page-about .founder-photo-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.25);
  text-transform: uppercase; letter-spacing: 2px;
}
body.page-about .founder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,120,32,0.1); border-radius: 40px;
  padding: 6px 16px; margin-bottom: 16px;
}
body.page-about .founder-badge span { font-size: 12px; font-weight: 600; color: #E07820; text-transform: uppercase; letter-spacing: 0.8px; }
body.page-about .founder-name { font-size: 34px; font-weight: 700; color: #1B3828; margin-bottom: 4px; }
body.page-about .founder-creds { font-size: 16px; font-weight: 500; color: #E07820; margin-bottom: 6px; }
body.page-about .founder-role { font-size: 14px; color: #6a7282; margin-bottom: 24px; }
body.page-about .founder-bio p {
  font-size: 16px; color: #6a7282; line-height: 1.7; margin-bottom: 16px;
}
body.page-about .founder-stats {
  display: flex; gap: 0; margin: 28px 0;
  background: #fff; border-radius: 14px; overflow: hidden;
}
body.page-about .founder-stat {
  flex: 1; text-align: center; padding: 20px 16px;
  position: relative;
}
body.page-about .founder-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(27,56,40,0.1);
}
body.page-about .founder-stat-val { font-size: 28px; font-weight: 700; color: #1B3828; line-height: 1; }
body.page-about .founder-stat-label { font-size: 11px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
body.page-about .founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: #E07820;
  transition: gap 0.3s;
}
body.page-about .founder-link:hover { gap: 12px; }
body.page-about .founder-link svg { width: 18px; height: 18px; }
body.page-about /* ===== VISION & MISSION ===== */
.vm-section { padding: 80px 130px; background: #fff; }
body.page-about .vm-header { text-align: center; margin-bottom: 56px; }
body.page-about .vm-h2 { font-size: 38px; font-weight: 400; color: #1B3828; margin-bottom: 12px; }
body.page-about .vm-sub { font-size: 16px; color: #6a7282; max-width: 540px; margin: 0 auto; }
body.page-about .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
body.page-about .vm-card {
  border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
}
body.page-about .vm-card.mission {
  background: linear-gradient(135deg, #1B3828, #102B1C); color: #fff;
}
body.page-about .vm-card.vision {
  background: #EAF4ED; color: #1B3828;
}
body.page-about .vm-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-about .vm-card.mission .vm-card-icon { background: rgba(224,120,32,0.2); }
body.page-about .vm-card.vision .vm-card-icon { background: rgba(224,120,32,0.15); }
body.page-about .vm-card-icon svg { width: 26px; height: 26px; color: #E07820; }
body.page-about .vm-card-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
body.page-about .vm-card.mission .vm-card-label { color: #E07820; }
body.page-about .vm-card.vision .vm-card-label { color: #E07820; }
body.page-about .vm-card h3 {
  font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 16px;
}
body.page-about .vm-card.mission h3 { color: #fff; }
body.page-about .vm-card.vision h3 { color: #1B3828; }
body.page-about .vm-card p {
  font-size: 15px; line-height: 1.7;
}
body.page-about .vm-card.mission p { color: rgba(255,255,255,0.6); }
body.page-about .vm-card.vision p { color: #6a7282; }
body.page-about /* ===== CORE VALUES ===== */
.values-section { padding: 80px 130px; background: #EDF5EF; }
body.page-about .values-header { text-align: center; margin-bottom: 56px; }
body.page-about .values-h2 { font-size: 38px; font-weight: 400; color: #1B3828; margin-bottom: 12px; }
body.page-about .values-sub { font-size: 16px; color: #6a7282; max-width: 540px; margin: 0 auto; }
body.page-about .values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
body.page-about .value-card {
  background: #fff; border-radius: 20px; padding: 36px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
body.page-about .value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
body.page-about .value-icon {
  width: 56px; height: 56px;
  background: rgba(224,120,32,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
body.page-about .value-icon svg { width: 24px; height: 24px; color: #E07820; }
body.page-about .value-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; margin-bottom: 8px; }
body.page-about .value-card p { font-size: 14px; color: #6a7282; line-height: 1.6; }
body.page-about /* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 72px 130px;
  position: relative; overflow: hidden;
}
body.page-about .stats-section::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 90% 50%, rgba(224,120,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}
body.page-about .stats-grid {
  display: flex; justify-content: center; gap: 0;
  position: relative; z-index: 1;
}
body.page-about .stat-item {
  flex: 1; text-align: center; padding: 16px 32px;
  position: relative;
}
body.page-about .stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(255,255,255,0.1);
}
body.page-about .stat-value { font-size: 48px; font-weight: 700; color: #fff; line-height: 1; }
body.page-about .stat-accent { color: #E07820; }
body.page-about .stat-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.8px; margin-top: 8px;
}
body.page-about /* ===== CTA BAND ===== */
.cta-band {
  background: #EAF4ED;
  padding: 80px 130px;
  text-align: center;
}
body.page-about .cta-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
body.page-about .cta-h2 {
  font-size: 40px; font-weight: 700; color: #1B3828;
  margin-bottom: 16px; line-height: 1.2;
}
body.page-about .cta-sub {
  font-size: 16px; color: #6a7282;
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
body.page-about .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-about .btn-orange {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: 2px solid #E07820;
}
body.page-about .btn-orange:hover { background: #C5661A; border-color: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-about .btn-green {
  background: #1B3828; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: 2px solid #1B3828;
}
body.page-about .btn-green:hover { background: #102B1C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,56,40,0.2); }
body.page-about .btn-orange svg,
body.page-about .btn-green svg { width: 18px; height: 18px; }
body.page-about /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff; padding: 80px 152px 0;
}
body.page-about .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-about .footer-col { flex: 1; }
body.page-about .footer-col:first-child { flex: 1.2; }
body.page-about .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-about .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-about .footer-social { display: flex; gap: 16px; }
body.page-about .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-about .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-about .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-about .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 20px;
}
body.page-about .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-about .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
body.page-about .footer-links a:hover { color: #E07820; }
body.page-about .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
body.page-about .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-about .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-about .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-about .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px; padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-about .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-about .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-about .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-about .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-about .footer-legal { display: flex; gap: 24px; }
body.page-about .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-about .footer-legal a:hover { color: #E07820; }
body.page-about /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-about .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-about .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-about .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-about .stagger-1 { transition-delay: 0.1s; }
body.page-about .stagger-2 { transition-delay: 0.2s; }
body.page-about .stagger-3 { transition-delay: 0.3s; }
body.page-about .stagger-4 { transition-delay: 0.4s; }
body.page-about .stagger-5 { transition-delay: 0.5s; }
body.page-about .stagger-6 { transition-delay: 0.6s; }
body.page-about /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar { padding-left: 40px; padding-right: 40px; }
  .navbar { padding: 14px 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 60px; }
  .story-section, .founder-section, .vm-section, .values-section, .stats-section, .cta-band { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 992px) {
body.page-about .top-bar { display: none; }
body.page-about .mega-menu { display: none !important; }
body.page-about .navbar { padding: 12px 20px; }
body.page-about .nav-links { display: none; }
body.page-about .hamburger { display: flex; }
body.page-about .nav-cta { font-size: 13px; padding: 8px 16px; }
body.page-about .hero { padding: 60px 20px 50px; }
body.page-about .hero h1 { font-size: 36px; }
body.page-about .story-section,
body.page-about .founder-section,
body.page-about .vm-section,
body.page-about .values-section,
body.page-about .stats-section,
body.page-about .cta-band { padding: 60px 20px; }
body.page-about .story-grid { grid-template-columns: 1fr; gap: 40px; }
body.page-about .founder-grid { grid-template-columns: 1fr; gap: 36px; }
body.page-about .founder-photo { max-width: 320px; }
body.page-about .vm-grid { grid-template-columns: 1fr; gap: 20px; }
body.page-about .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
body.page-about .stats-grid { flex-wrap: wrap; }
body.page-about .stat-item { flex: 0 0 50%; padding: 20px 16px; }
body.page-about .stat-item:nth-child(2n)::after { display: none; }
body.page-about .stat-item:nth-child(-n+3)::after { display: block; }
body.page-about .stat-value { font-size: 36px; }
body.page-about .cta-h2 { font-size: 30px; }
body.page-about .footer { padding: 40px 20px 0; }
body.page-about .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-about .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-about .footer-col:first-child { flex: 0 0 100%; }
body.page-about .footer-member { flex-direction: column; gap: 12px; }
body.page-about .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-about .navbar { padding: 10px 12px; gap: 6px; }
body.page-about .nav-cta { font-size: 11px; padding: 6px 10px; white-space: nowrap; }
body.page-about .nav-cta svg { width: 11px; height: 11px; }
body.page-about .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-about .hamburger span { width: 20px; }
body.page-about .hero h1 { font-size: 28px; letter-spacing: -1px; }
body.page-about .hero-desc { font-size: 15px; }
body.page-about .story-h2,
body.page-about .vm-h2,
body.page-about .values-h2 { font-size: 28px; }
body.page-about .founder-name { font-size: 26px; }
body.page-about .founder-grid { gap: 28px; }
body.page-about .founder-photo { max-width: 100%; aspect-ratio: 4/3; }
body.page-about .values-grid { grid-template-columns: 1fr; }
body.page-about .stat-item { flex: 0 0 100%; }
body.page-about .stat-item::after { display: none !important; }
body.page-about .stat-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }
body.page-about .founder-stats { flex-wrap: wrap; }
body.page-about .founder-stat { flex: 0 0 50%; }
body.page-about .founder-stat:nth-child(2)::after { display: none; }
body.page-about .founder-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(27,56,40,0.08); }
body.page-about .cta-h2 { font-size: 24px; }
body.page-about .cta-buttons { flex-direction: column; align-items: center; }
body.page-about .cta-buttons .btn-orange,
body.page-about .cta-buttons .btn-green { width: 100%; max-width: 320px; justify-content: center; }
body.page-about .footer-col { flex: 0 0 100%; }
body.page-about .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }


}
body.page-about /* === Synced from home page nav (updated 2026) === */
.nav-logo { height: 72px; width: auto; }
body.page-about .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-about .nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-about .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-about .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-about .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-about .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-about .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-about .nav-split-cta svg { width: 18px; height: 18px; }
body.page-about .mega-cta-sidebar.with-image { position: relative; overflow: hidden; min-height: 220px; background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg'); background-size: cover; background-position: center; justify-content: flex-end; }
body.page-about .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-about .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }

/* ===== asec.html ===== */
body.page-asec, body.page-asec *,
body.page-asec *::before,
body.page-asec *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-asec { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-asec a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-asec ul { list-style: none; }
body.page-asec img { max-width: 100%; height: auto; }
body.page-asec button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-asec input,
body.page-asec select,
body.page-asec textarea { font-family: inherit; outline: none; }
body.page-asec /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-asec .top-bar a { color: #1B3828; }
body.page-asec .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-asec .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-asec .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-asec .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-asec .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-asec .top-bar-social svg { width: 15px; height: 15px; }
body.page-asec .top-bar-center { font-weight: 400; }
body.page-asec .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-asec .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-asec .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-asec .top-bar-right .login-btn,
body.page-asec .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-asec .login-btn:hover svg { color: #E07820; }
body.page-asec .lang-btn .chevron { width: 8px; height: 5px; }
body.page-asec .lang-btn { position: relative; }
body.page-asec .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-asec .lang-dropdown.open { display: block; }
body.page-asec .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-asec .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-asec /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-asec .location-items { display: flex; align-items: center; gap: 40px; }
body.page-asec .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-asec .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-asec .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-asec .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-asec .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-asec .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-asec .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-asec .location-item:hover .location-icon svg { color: #fff; }
body.page-asec .social-icons { display: flex; gap: 16px; }
body.page-asec .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-asec .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-asec .social-icon:hover svg { color: #fff; }
body.page-asec .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-asec /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-asec .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-asec .nav-logo { height: 72px; width: auto; }
body.page-asec .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-asec .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-asec .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-asec .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-asec .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-asec .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-asec .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-asec .nav-cta svg { width: 18px; height: 18px; }
body.page-asec /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-asec .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-asec .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-asec .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-asec .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-asec .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-asec .nav-split-cta svg { width: 18px; height: 18px; }
body.page-asec /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-asec .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-asec .nav-dropdown-wrap:hover > .mega-menu,
body.page-asec .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-asec .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-asec .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-asec /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-asec .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-asec .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-asec .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-asec .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-asec .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-asec .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-asec .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-asec .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-asec .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-asec .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-asec .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-asec .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-asec /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-asec .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-asec .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-asec .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-asec .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-asec .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-asec .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-asec .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-asec .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-asec .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-asec .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-asec .mega-team-link a:hover { gap: 10px; }
body.page-asec /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-asec .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-asec .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-asec .mobile-menu.active { display: flex; }
body.page-asec .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-asec .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-asec .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-asec .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-asec .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-asec .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-asec .mobile-accordion-content.open { display: block; }
body.page-asec .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-asec .mobile-accordion-content a:hover { color: #E07820; }
body.page-asec .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-asec /* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 100px 130px 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
body.page-asec .hero::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(224,120,32,0.06) 0%, transparent 65%);
  pointer-events: none;
}
body.page-asec .hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 400;
  margin-bottom: 24px; position: relative; z-index: 1;
}
body.page-asec .hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
body.page-asec .hero-breadcrumb a:hover { color: #E07820; }
body.page-asec .hero-breadcrumb .sep { margin: 0 4px; }
body.page-asec .hero-breadcrumb .current { color: #E07820; font-weight: 500; }
body.page-asec .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px; padding: 7px 20px;
  margin-bottom: 24px;
}
body.page-asec .hero-badge-dot { width: 8px; height: 8px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-asec .hero-badge span { font-size: 13px; font-weight: 300; color: #fff; }
body.page-asec .hero h1 {
  font-size: 52px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.5px;
  margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
body.page-asec .hero-desc {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.6; max-width: 580px; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
body.page-asec .hero-divider {
  width: 64px; height: 3px; background: #E07820; border-radius: 2px;
  margin: 0 auto 36px; position: relative; z-index: 1;
}
body.page-asec .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-asec .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-asec .btn-primary svg { width: 18px; height: 18px; }
body.page-asec .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-asec .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-asec /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-asec .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-asec .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-asec .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-asec .about-cards { display: flex; gap: 20px; }
body.page-asec .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-asec .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-asec .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-asec .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-asec .about-card p { font-size: 16px; line-height: 1.5; }
body.page-asec .about-card p strong { color: #1B3828; }
body.page-asec .about-card p span.dash { color: #1B3828; }
body.page-asec .about-card p span.desc { color: #6a7282; }
body.page-asec /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-asec .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-asec .services-row { display: flex; gap: 20px; }
body.page-asec .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-asec .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-asec .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-asec .service-card:hover::after { width: 100%; }
body.page-asec .service-icon,
body.page-asec .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-asec .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-asec .service-card:hover .service-icon.dark { background: #E07820; }
body.page-asec .service-card h3 { transition: color 0.3s; }
body.page-asec .service-card:hover h3 { color: #E07820; }
body.page-asec .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-asec .service-card:hover .service-link { transform: translateX(6px); }
body.page-asec .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-asec .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-asec .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-asec .service-card.third { flex: 1; }
body.page-asec .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-asec .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-asec .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-asec .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-asec .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-asec .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-asec .service-card .service-link:hover { text-decoration: underline; }
body.page-asec /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-asec .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-asec .physicians-header-text { max-width: 580px; }
body.page-asec .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-asec .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-asec .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-asec .physicians-nav .prev:hover { border-color: #E07820; }
body.page-asec .physicians-nav .next { background: #E07820; border: none; }
body.page-asec .physicians-nav .next:hover { background: #C5661A; }
body.page-asec .physicians-nav svg { width: 20px; height: 20px; }
body.page-asec .physicians-nav .prev svg { color: #6a7282; }
body.page-asec .physicians-nav .next svg { color: #fff; }
body.page-asec .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-asec .physicians-grid::-webkit-scrollbar { display: none; }
body.page-asec .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-asec .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-asec .physician-card:hover .card-img { transform: scale(1.05); }
body.page-asec /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-asec /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-asec .physician-card:hover .card-overlay { opacity: 1; }
body.page-asec .physician-card:hover::after { opacity: 0; }
body.page-asec /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-asec .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-asec .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-asec /* Hover state - move info up,
body.page-asec show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-asec .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-asec .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-asec .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-asec .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-asec .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-asec /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-asec .testimonials .section-title { color: #fff; }
body.page-asec .quote-icon { margin: 0 auto 42px; }
body.page-asec .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-asec .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-asec .testimonial-card { min-width: 477px; position: relative; }
body.page-asec .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-asec .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-asec .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-asec .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-asec .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-asec .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-asec .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-asec .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-asec .testimonials-arrows button:hover { color: #E07820; }
body.page-asec .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-asec /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-asec .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-asec .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-asec .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-asec .blog-grid { display: flex; gap: 32px; }
body.page-asec .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-asec .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-asec .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-asec .blog-card-body { padding: 24px; }
body.page-asec .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-asec .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-asec .blog-date { font-size: 12px; color: #6a7282; }
body.page-asec .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-asec .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-asec .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-asec .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-asec /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-asec .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-asec .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-asec .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-asec .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-asec .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-asec .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-asec .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-asec /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-asec .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-asec .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-asec .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-asec .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-asec .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-asec .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-asec .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-asec .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-asec .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-asec .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-asec .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-asec .location-card .book-link:hover { gap: 12px; }
body.page-asec .location-card .book-link svg { width: 16px; height: 16px; }
body.page-asec /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-asec .faq-list { margin-top: 48px; }
body.page-asec .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-asec .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-asec .faq-question:hover { color: #E07820; }
body.page-asec .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-asec .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-asec .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-asec .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-asec .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-asec .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-asec .faq-footer { text-align: center; margin-top: 32px; }
body.page-asec .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-asec .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-asec .faq-footer a svg { width: 16px; height: 16px; }
body.page-asec /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-asec .contact-info { flex: 1; color: #fff; }
body.page-asec .contact-info .section-label { color: #E07820; text-align: left; }
body.page-asec .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-asec .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-asec .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-asec .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-asec .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-asec /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-asec .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-asec .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-asec .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-asec .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-asec .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-asec .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-asec .contact-location-phone:hover { color: #fff; }
body.page-asec .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-asec .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-asec .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-asec .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-asec .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-asec .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-asec .form-group { flex: 1; }
body.page-asec .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-asec .form-group label span { color: #E07820; }
body.page-asec .form-group input,
body.page-asec .form-group select,
body.page-asec .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-asec .form-group input::placeholder,
body.page-asec .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-asec .form-group select { color: rgba(255,255,255,0.3); }
body.page-asec .form-group select option { background: #1B3828; color: #fff; }
body.page-asec .form-group input:focus,
body.page-asec .form-group select:focus,
body.page-asec .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-asec .form-group textarea { resize: vertical; min-height: 120px; }
body.page-asec .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-asec .form-submit:hover { background: #C5661A; }
body.page-asec .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-asec /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-asec .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-asec .footer-col { flex: 1; }
body.page-asec .footer-col:first-child { flex: 1.2; }
body.page-asec .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-asec .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-asec .footer-social { display: flex; gap: 16px; }
body.page-asec .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-asec .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-asec .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-asec .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-asec .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-asec .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-asec .footer-links a:hover { color: #E07820; }
body.page-asec .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-asec .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-asec .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-asec .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-asec .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-asec .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-asec .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-asec .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-asec .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-asec .footer-legal { display: flex; gap: 24px; }
body.page-asec .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-asec .footer-legal a:hover { color: #E07820; }
body.page-asec /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-asec .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-asec .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-asec .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-asec .stagger-1 { transition-delay: 0.1s; }
body.page-asec .stagger-2 { transition-delay: 0.2s; }
body.page-asec .stagger-3 { transition-delay: 0.3s; }
body.page-asec .stagger-4 { transition-delay: 0.4s; }
body.page-asec /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 60px; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-asec .top-bar { display: none; }
body.page-asec .location-bar { padding: 12px 20px; }
body.page-asec .location-items { flex-wrap: wrap; gap: 20px; }
body.page-asec .social-icons { display: none; }
body.page-asec .navbar { padding: 12px 20px; }
body.page-asec .nav-links { display: none; }
body.page-asec .mega-menu { display: none !important; }
body.page-asec .hamburger { display: flex; }
body.page-asec .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-asec .nav-cta svg { width: 14px; height: 14px; }
body.page-asec .hero { padding: 60px 20px 50px; }
body.page-asec .hero-content { padding-bottom: 40px; }
body.page-asec .hero h1 { font-size: 36px; }
body.page-asec .hero-buttons { flex-wrap: wrap; }
body.page-asec .hero-image img { height: 320px; }
body.page-asec .about,
body.page-asec .services,
body.page-asec .physicians,
body.page-asec .locations { padding: 60px 20px; }
body.page-asec .about-cards { flex-direction: column; }
body.page-asec .services-row { flex-direction: column; }
body.page-asec .service-card.large,
body.page-asec .service-card.small { flex: none; width: 100%; }
body.page-asec .physicians-header { flex-direction: column; gap: 20px; }
body.page-asec .physician-card { min-width: 260px; }
body.page-asec .testimonials { padding: 60px 20px; }
body.page-asec .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-asec .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-asec .blog { padding: 60px 20px; }
body.page-asec .blog-grid { flex-direction: column; }
body.page-asec .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-asec .insurance { padding: 60px 20px; }
body.page-asec .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-asec .insurance-logo { width: 140px; height: 140px; }
body.page-asec .locations-grid { flex-direction: column; }
body.page-asec .faq { padding: 60px 20px; }
body.page-asec .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-asec .footer { padding: 40px 20px 0; }
body.page-asec .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-asec .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-asec .footer-col:first-child { flex: 0 0 100%; }
body.page-asec .footer-member { flex-direction: column; gap: 12px; }
body.page-asec .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-asec .navbar { padding: 10px 12px; gap: 6px; }
body.page-asec .nav-logo { height: 52px; }
body.page-asec .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-asec .nav-cta svg { width: 11px; height: 11px; }
body.page-asec .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-asec .hamburger span { width: 20px; }
body.page-asec .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-asec .hero p { font-size: 14px; }
body.page-asec .hero-image img { height: 260px; }
body.page-asec .section-title { font-size: 28px; }
body.page-asec .section-label { font-size: 12px; }
body.page-asec .location-bar { padding: 8px 12px; }
body.page-asec .location-items { gap: 12px; }
body.page-asec .location-item { gap: 8px; }
body.page-asec .location-name { font-size: 13px; }
body.page-asec .location-sub { font-size: 10px; }
body.page-asec .location-icon { width: 32px; height: 32px; }
body.page-asec .location-icon svg { width: 14px; height: 14px; }
body.page-asec .physician-card { min-width: 240px; height: 320px; }
body.page-asec .contact-info .section-title { font-size: 32px; }
body.page-asec .contact { padding: 40px 16px; gap: 32px; }
body.page-asec .contact-form { padding: 24px; }
body.page-asec .footer-col { flex: 0 0 100%; }
body.page-asec .footer-logo { height: 32px; }
body.page-asec .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-asec .insurance-logos { gap: 12px; }
body.page-asec .insurance-logo { width: 100px; height: 100px; }
body.page-asec .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-asec .form-row { flex-direction: column; gap: 16px; }
body.page-asec .blog-card-image { height: 180px; }


}

/* ===== blog.html ===== */
body.page-blog, body.page-blog *,
body.page-blog *::before,
body.page-blog *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-blog { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-blog a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-blog ul { list-style: none; }
body.page-blog img { max-width: 100%; height: auto; }
body.page-blog button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-blog input,
body.page-blog select,
body.page-blog textarea { font-family: inherit; outline: none; }
body.page-blog /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-blog .top-bar a { color: #1B3828; }
body.page-blog .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-blog .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-blog .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-blog .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-blog .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-blog .top-bar-social svg { width: 15px; height: 15px; }
body.page-blog .top-bar-center { font-weight: 400; }
body.page-blog .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-blog .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-blog .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-blog .top-bar-right .login-btn,
body.page-blog .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-blog .login-btn:hover svg { color: #E07820; }
body.page-blog .lang-btn .chevron { width: 8px; height: 5px; }
body.page-blog .lang-btn { position: relative; }
body.page-blog .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-blog .lang-dropdown.open { display: block; }
body.page-blog .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-blog .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-blog /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-blog .location-items { display: flex; align-items: center; gap: 40px; }
body.page-blog .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-blog .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-blog .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-blog .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-blog .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-blog .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-blog .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-blog .location-item:hover .location-icon svg { color: #fff; }
body.page-blog .social-icons { display: flex; gap: 16px; }
body.page-blog .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-blog .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-blog .social-icon:hover svg { color: #fff; }
body.page-blog .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-blog /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-blog .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-blog .nav-logo { height: 72px; width: auto; }
body.page-blog .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-blog .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-blog .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-blog .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-blog .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-blog .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-blog .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-blog .nav-cta svg { width: 18px; height: 18px; }
body.page-blog /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-blog .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-blog .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-blog .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-blog .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-blog .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-blog .nav-split-cta svg { width: 18px; height: 18px; }
body.page-blog /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-blog .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-blog .nav-dropdown-wrap:hover > .mega-menu,
body.page-blog .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-blog .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-blog .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-blog /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-blog .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-blog .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-blog .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-blog .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-blog .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-blog .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-blog .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-blog .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-blog .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-blog .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-blog .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-blog .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-blog /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-blog .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-blog .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-blog .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-blog .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-blog .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-blog .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-blog .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-blog .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-blog .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-blog .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-blog .mega-team-link a:hover { gap: 10px; }
body.page-blog /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-blog .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-blog .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-blog .mobile-menu.active { display: flex; }
body.page-blog .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-blog .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-blog .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-blog .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-blog .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-blog .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-blog .mobile-accordion-content.open { display: block; }
body.page-blog .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-blog .mobile-accordion-content a:hover { color: #E07820; }
body.page-blog .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-blog /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-blog .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-blog .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-blog .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-blog .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-blog .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-blog .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-blog .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-blog .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-blog .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-blog .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-blog .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-blog .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-blog .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-blog .btn-primary svg { width: 18px; height: 18px; }
body.page-blog .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-blog .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-blog /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-blog .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-blog .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-blog .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-blog .about-cards { display: flex; gap: 20px; }
body.page-blog .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-blog .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-blog .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-blog .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-blog .about-card p { font-size: 16px; line-height: 1.5; }
body.page-blog .about-card p strong { color: #1B3828; }
body.page-blog .about-card p span.dash { color: #1B3828; }
body.page-blog .about-card p span.desc { color: #6a7282; }
body.page-blog /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-blog .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-blog .services-row { display: flex; gap: 20px; }
body.page-blog .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-blog .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-blog .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-blog .service-card:hover::after { width: 100%; }
body.page-blog .service-icon,
body.page-blog .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-blog .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-blog .service-card:hover .service-icon.dark { background: #E07820; }
body.page-blog .service-card h3 { transition: color 0.3s; }
body.page-blog .service-card:hover h3 { color: #E07820; }
body.page-blog .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-blog .service-card:hover .service-link { transform: translateX(6px); }
body.page-blog .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-blog .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-blog .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-blog .service-card.third { flex: 1; }
body.page-blog .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-blog .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-blog .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-blog .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-blog .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-blog .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-blog .service-card .service-link:hover { text-decoration: underline; }
body.page-blog /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-blog .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-blog .physicians-header-text { max-width: 580px; }
body.page-blog .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-blog .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-blog .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-blog .physicians-nav .prev:hover { border-color: #E07820; }
body.page-blog .physicians-nav .next { background: #E07820; border: none; }
body.page-blog .physicians-nav .next:hover { background: #C5661A; }
body.page-blog .physicians-nav svg { width: 20px; height: 20px; }
body.page-blog .physicians-nav .prev svg { color: #6a7282; }
body.page-blog .physicians-nav .next svg { color: #fff; }
body.page-blog .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-blog .physicians-grid::-webkit-scrollbar { display: none; }
body.page-blog .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-blog .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-blog .physician-card:hover .card-img { transform: scale(1.05); }
body.page-blog /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-blog /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-blog .physician-card:hover .card-overlay { opacity: 1; }
body.page-blog .physician-card:hover::after { opacity: 0; }
body.page-blog /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-blog .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-blog .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-blog /* Hover state - move info up,
body.page-blog show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-blog .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-blog .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-blog .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-blog .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-blog .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-blog /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-blog .testimonials .section-title { color: #fff; }
body.page-blog .quote-icon { margin: 0 auto 42px; }
body.page-blog .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-blog .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-blog .testimonial-card { min-width: 477px; position: relative; }
body.page-blog .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-blog .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-blog .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-blog .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-blog .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-blog .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-blog .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-blog .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-blog .testimonials-arrows button:hover { color: #E07820; }
body.page-blog .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-blog /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-blog .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-blog .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-blog .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-blog .blog-grid { display: flex; gap: 32px; }
body.page-blog .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-blog .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-blog .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-blog .blog-card-body { padding: 24px; }
body.page-blog .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-blog .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-blog .blog-date { font-size: 12px; color: #6a7282; }
body.page-blog .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-blog .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-blog .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-blog .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-blog /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-blog .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-blog .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-blog .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-blog .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-blog .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-blog .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-blog .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-blog /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-blog .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-blog .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-blog .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-blog .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-blog .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-blog .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-blog .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-blog .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-blog .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-blog .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-blog .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-blog .location-card .book-link:hover { gap: 12px; }
body.page-blog .location-card .book-link svg { width: 16px; height: 16px; }
body.page-blog /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-blog .faq-list { margin-top: 48px; }
body.page-blog .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-blog .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-blog .faq-question:hover { color: #E07820; }
body.page-blog .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-blog .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-blog .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-blog .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-blog .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-blog .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-blog .faq-footer { text-align: center; margin-top: 32px; }
body.page-blog .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-blog .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-blog .faq-footer a svg { width: 16px; height: 16px; }
body.page-blog /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-blog .contact-info { flex: 1; color: #fff; }
body.page-blog .contact-info .section-label { color: #E07820; text-align: left; }
body.page-blog .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-blog .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-blog .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-blog .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-blog .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-blog /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-blog .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-blog .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-blog .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-blog .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-blog .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-blog .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-blog .contact-location-phone:hover { color: #fff; }
body.page-blog .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-blog .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-blog .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-blog .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-blog .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-blog .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-blog .form-group { flex: 1; }
body.page-blog .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-blog .form-group label span { color: #E07820; }
body.page-blog .form-group input,
body.page-blog .form-group select,
body.page-blog .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-blog .form-group input::placeholder,
body.page-blog .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-blog .form-group select { color: rgba(255,255,255,0.3); }
body.page-blog .form-group select option { background: #1B3828; color: #fff; }
body.page-blog .form-group input:focus,
body.page-blog .form-group select:focus,
body.page-blog .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-blog .form-group textarea { resize: vertical; min-height: 120px; }
body.page-blog .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-blog .form-submit:hover { background: #C5661A; }
body.page-blog .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-blog /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-blog .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-blog .footer-col { flex: 1; }
body.page-blog .footer-col:first-child { flex: 1.2; }
body.page-blog .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-blog .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-blog .footer-social { display: flex; gap: 16px; }
body.page-blog .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-blog .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-blog .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-blog .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-blog .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-blog .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-blog .footer-links a:hover { color: #E07820; }
body.page-blog .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-blog .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-blog .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-blog .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-blog .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-blog .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-blog .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-blog .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-blog .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-blog .footer-legal { display: flex; gap: 24px; }
body.page-blog .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-blog .footer-legal a:hover { color: #E07820; }
body.page-blog /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-blog .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-blog .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-blog .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-blog .stagger-1 { transition-delay: 0.1s; }
body.page-blog .stagger-2 { transition-delay: 0.2s; }
body.page-blog .stagger-3 { transition-delay: 0.3s; }
body.page-blog .stagger-4 { transition-delay: 0.4s; }
body.page-blog /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-blog .top-bar { display: none; }
body.page-blog .location-bar { padding: 12px 20px; }
body.page-blog .location-items { flex-wrap: wrap; gap: 20px; }
body.page-blog .social-icons { display: none; }
body.page-blog .navbar { padding: 12px 20px; }
body.page-blog .nav-links { display: none; }
body.page-blog .mega-menu { display: none !important; }
body.page-blog .hamburger { display: flex; }
body.page-blog .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-blog .nav-cta svg { width: 14px; height: 14px; }
body.page-blog .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-blog .hero-content { padding-bottom: 40px; }
body.page-blog .hero h1 { font-size: 36px; }
body.page-blog .hero-buttons { flex-wrap: wrap; }
body.page-blog .hero-image img { height: 320px; }
body.page-blog .about,
body.page-blog .services,
body.page-blog .physicians,
body.page-blog .locations { padding: 60px 20px; }
body.page-blog .about-cards { flex-direction: column; }
body.page-blog .services-row { flex-direction: column; }
body.page-blog .service-card.large,
body.page-blog .service-card.small { flex: none; width: 100%; }
body.page-blog .physicians-header { flex-direction: column; gap: 20px; }
body.page-blog .physician-card { min-width: 260px; }
body.page-blog .testimonials { padding: 60px 20px; }
body.page-blog .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-blog .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-blog .blog { padding: 60px 20px; }
body.page-blog .blog-grid { flex-direction: column; }
body.page-blog .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-blog .insurance { padding: 60px 20px; }
body.page-blog .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-blog .insurance-logo { width: 140px; height: 140px; }
body.page-blog .locations-grid { flex-direction: column; }
body.page-blog .faq { padding: 60px 20px; }
body.page-blog .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-blog .footer { padding: 40px 20px 0; }
body.page-blog .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-blog .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-blog .footer-col:first-child { flex: 0 0 100%; }
body.page-blog .footer-member { flex-direction: column; gap: 12px; }
body.page-blog .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-blog .navbar { padding: 10px 12px; gap: 6px; }
body.page-blog .nav-logo { height: 52px; }
body.page-blog .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-blog .nav-cta svg { width: 11px; height: 11px; }
body.page-blog .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-blog .hamburger span { width: 20px; }
body.page-blog .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-blog .hero p { font-size: 14px; }
body.page-blog .hero-image img { height: 260px; }
body.page-blog .section-title { font-size: 28px; }
body.page-blog .section-label { font-size: 12px; }
body.page-blog .location-bar { padding: 8px 12px; }
body.page-blog .location-items { gap: 12px; }
body.page-blog .location-item { gap: 8px; }
body.page-blog .location-name { font-size: 13px; }
body.page-blog .location-sub { font-size: 10px; }
body.page-blog .location-icon { width: 32px; height: 32px; }
body.page-blog .location-icon svg { width: 14px; height: 14px; }
body.page-blog .physician-card { min-width: 240px; height: 320px; }
body.page-blog .contact-info .section-title { font-size: 32px; }
body.page-blog .contact { padding: 40px 16px; gap: 32px; }
body.page-blog .contact-form { padding: 24px; }
body.page-blog .footer-col { flex: 0 0 100%; }
body.page-blog .footer-logo { height: 32px; }
body.page-blog .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-blog .insurance-logos { gap: 12px; }
body.page-blog .insurance-logo { width: 100px; height: 100px; }
body.page-blog .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-blog .form-row { flex-direction: column; gap: 16px; }
body.page-blog .blog-card-image { height: 180px; }


}

/* ===== casc.html ===== */
body.page-casc, body.page-casc *,
body.page-casc *::before,
body.page-casc *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-casc { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-casc a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-casc ul { list-style: none; }
body.page-casc img { max-width: 100%; height: auto; }
body.page-casc button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-casc input,
body.page-casc select,
body.page-casc textarea { font-family: inherit; outline: none; }
body.page-casc /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-casc .top-bar a { color: #1B3828; }
body.page-casc .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-casc .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-casc .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-casc .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-casc .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-casc .top-bar-social svg { width: 15px; height: 15px; }
body.page-casc .top-bar-center { font-weight: 400; }
body.page-casc .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-casc .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-casc .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-casc .top-bar-right .login-btn,
body.page-casc .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-casc .login-btn:hover svg { color: #E07820; }
body.page-casc .lang-btn .chevron { width: 8px; height: 5px; }
body.page-casc .lang-btn { position: relative; }
body.page-casc .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-casc .lang-dropdown.open { display: block; }
body.page-casc .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-casc .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-casc /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-casc .location-items { display: flex; align-items: center; gap: 40px; }
body.page-casc .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-casc .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-casc .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-casc .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-casc .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-casc .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-casc .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-casc .location-item:hover .location-icon svg { color: #fff; }
body.page-casc .social-icons { display: flex; gap: 16px; }
body.page-casc .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-casc .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-casc .social-icon:hover svg { color: #fff; }
body.page-casc .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-casc /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-casc .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-casc .nav-logo { height: 72px; width: auto; }
body.page-casc .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-casc .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-casc .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-casc .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-casc .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-casc .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-casc .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-casc .nav-cta svg { width: 18px; height: 18px; }
body.page-casc /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-casc .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-casc .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-casc .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-casc .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-casc .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-casc .nav-split-cta svg { width: 18px; height: 18px; }
body.page-casc /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-casc .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-casc .nav-dropdown-wrap:hover > .mega-menu,
body.page-casc .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-casc .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-casc .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-casc /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-casc .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-casc .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-casc .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-casc .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-casc .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-casc .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-casc .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-casc .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-casc .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-casc .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-casc .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-casc .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-casc /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-casc .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-casc .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-casc .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-casc .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-casc .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-casc .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-casc .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-casc .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-casc .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-casc .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-casc .mega-team-link a:hover { gap: 10px; }
body.page-casc /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-casc .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-casc .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-casc .mobile-menu.active { display: flex; }
body.page-casc .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-casc .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-casc .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-casc .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-casc .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-casc .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-casc .mobile-accordion-content.open { display: block; }
body.page-casc .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-casc .mobile-accordion-content a:hover { color: #E07820; }
body.page-casc .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-casc /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-casc .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-casc .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-casc .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-casc .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-casc .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-casc .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-casc .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-casc .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-casc .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-casc .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-casc .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-casc .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-casc .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-casc .btn-primary svg { width: 18px; height: 18px; }
body.page-casc .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-casc .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-casc /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-casc .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-casc .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-casc .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-casc .about-cards { display: flex; gap: 20px; }
body.page-casc .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-casc .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-casc .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-casc .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-casc .about-card p { font-size: 16px; line-height: 1.5; }
body.page-casc .about-card p strong { color: #1B3828; }
body.page-casc .about-card p span.dash { color: #1B3828; }
body.page-casc .about-card p span.desc { color: #6a7282; }
body.page-casc /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-casc .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-casc .services-row { display: flex; gap: 20px; }
body.page-casc .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-casc .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-casc .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-casc .service-card:hover::after { width: 100%; }
body.page-casc .service-icon,
body.page-casc .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-casc .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-casc .service-card:hover .service-icon.dark { background: #E07820; }
body.page-casc .service-card h3 { transition: color 0.3s; }
body.page-casc .service-card:hover h3 { color: #E07820; }
body.page-casc .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-casc .service-card:hover .service-link { transform: translateX(6px); }
body.page-casc .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-casc .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-casc .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-casc .service-card.third { flex: 1; }
body.page-casc .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-casc .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-casc .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-casc .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-casc .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-casc .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-casc .service-card .service-link:hover { text-decoration: underline; }
body.page-casc /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-casc .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-casc .physicians-header-text { max-width: 580px; }
body.page-casc .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-casc .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-casc .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-casc .physicians-nav .prev:hover { border-color: #E07820; }
body.page-casc .physicians-nav .next { background: #E07820; border: none; }
body.page-casc .physicians-nav .next:hover { background: #C5661A; }
body.page-casc .physicians-nav svg { width: 20px; height: 20px; }
body.page-casc .physicians-nav .prev svg { color: #6a7282; }
body.page-casc .physicians-nav .next svg { color: #fff; }
body.page-casc .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-casc .physicians-grid::-webkit-scrollbar { display: none; }
body.page-casc .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-casc .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-casc .physician-card:hover .card-img { transform: scale(1.05); }
body.page-casc /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-casc /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-casc .physician-card:hover .card-overlay { opacity: 1; }
body.page-casc .physician-card:hover::after { opacity: 0; }
body.page-casc /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-casc .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-casc .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-casc /* Hover state - move info up,
body.page-casc show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-casc .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-casc .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-casc .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-casc .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-casc .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-casc /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-casc .testimonials .section-title { color: #fff; }
body.page-casc .quote-icon { margin: 0 auto 42px; }
body.page-casc .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-casc .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-casc .testimonial-card { min-width: 477px; position: relative; }
body.page-casc .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-casc .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-casc .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-casc .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-casc .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-casc .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-casc .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-casc .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-casc .testimonials-arrows button:hover { color: #E07820; }
body.page-casc .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-casc /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-casc .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-casc .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-casc .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-casc .blog-grid { display: flex; gap: 32px; }
body.page-casc .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-casc .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-casc .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-casc .blog-card-body { padding: 24px; }
body.page-casc .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-casc .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-casc .blog-date { font-size: 12px; color: #6a7282; }
body.page-casc .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-casc .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-casc .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-casc .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-casc /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-casc .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-casc .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-casc .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-casc .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-casc .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-casc .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-casc .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-casc /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-casc .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-casc .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-casc .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-casc .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-casc .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-casc .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-casc .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-casc .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-casc .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-casc .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-casc .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-casc .location-card .book-link:hover { gap: 12px; }
body.page-casc .location-card .book-link svg { width: 16px; height: 16px; }
body.page-casc /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-casc .faq-list { margin-top: 48px; }
body.page-casc .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-casc .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-casc .faq-question:hover { color: #E07820; }
body.page-casc .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-casc .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-casc .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-casc .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-casc .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-casc .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-casc .faq-footer { text-align: center; margin-top: 32px; }
body.page-casc .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-casc .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-casc .faq-footer a svg { width: 16px; height: 16px; }
body.page-casc /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-casc .contact-info { flex: 1; color: #fff; }
body.page-casc .contact-info .section-label { color: #E07820; text-align: left; }
body.page-casc .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-casc .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-casc .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-casc .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-casc .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-casc /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-casc .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-casc .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-casc .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-casc .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-casc .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-casc .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-casc .contact-location-phone:hover { color: #fff; }
body.page-casc .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-casc .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-casc .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-casc .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-casc .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-casc .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-casc .form-group { flex: 1; }
body.page-casc .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-casc .form-group label span { color: #E07820; }
body.page-casc .form-group input,
body.page-casc .form-group select,
body.page-casc .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-casc .form-group input::placeholder,
body.page-casc .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-casc .form-group select { color: rgba(255,255,255,0.3); }
body.page-casc .form-group select option { background: #1B3828; color: #fff; }
body.page-casc .form-group input:focus,
body.page-casc .form-group select:focus,
body.page-casc .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-casc .form-group textarea { resize: vertical; min-height: 120px; }
body.page-casc .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-casc .form-submit:hover { background: #C5661A; }
body.page-casc .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-casc /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-casc .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-casc .footer-col { flex: 1; }
body.page-casc .footer-col:first-child { flex: 1.2; }
body.page-casc .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-casc .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-casc .footer-social { display: flex; gap: 16px; }
body.page-casc .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-casc .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-casc .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-casc .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-casc .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-casc .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-casc .footer-links a:hover { color: #E07820; }
body.page-casc .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-casc .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-casc .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-casc .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-casc .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-casc .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-casc .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-casc .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-casc .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-casc .footer-legal { display: flex; gap: 24px; }
body.page-casc .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-casc .footer-legal a:hover { color: #E07820; }
body.page-casc /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-casc .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-casc .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-casc .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-casc .stagger-1 { transition-delay: 0.1s; }
body.page-casc .stagger-2 { transition-delay: 0.2s; }
body.page-casc .stagger-3 { transition-delay: 0.3s; }
body.page-casc .stagger-4 { transition-delay: 0.4s; }
body.page-casc /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-casc .top-bar { display: none; }
body.page-casc .location-bar { padding: 12px 20px; }
body.page-casc .location-items { flex-wrap: wrap; gap: 20px; }
body.page-casc .social-icons { display: none; }
body.page-casc .navbar { padding: 12px 20px; }
body.page-casc .nav-links { display: none; }
body.page-casc .mega-menu { display: none !important; }
body.page-casc .hamburger { display: flex; }
body.page-casc .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-casc .nav-cta svg { width: 14px; height: 14px; }
body.page-casc .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-casc .hero-content { padding-bottom: 40px; }
body.page-casc .hero h1 { font-size: 36px; }
body.page-casc .hero-buttons { flex-wrap: wrap; }
body.page-casc .hero-image img { height: 320px; }
body.page-casc .about,
body.page-casc .services,
body.page-casc .physicians,
body.page-casc .locations { padding: 60px 20px; }
body.page-casc .about-cards { flex-direction: column; }
body.page-casc .services-row { flex-direction: column; }
body.page-casc .service-card.large,
body.page-casc .service-card.small { flex: none; width: 100%; }
body.page-casc .physicians-header { flex-direction: column; gap: 20px; }
body.page-casc .physician-card { min-width: 260px; }
body.page-casc .testimonials { padding: 60px 20px; }
body.page-casc .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-casc .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-casc .blog { padding: 60px 20px; }
body.page-casc .blog-grid { flex-direction: column; }
body.page-casc .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-casc .insurance { padding: 60px 20px; }
body.page-casc .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-casc .insurance-logo { width: 140px; height: 140px; }
body.page-casc .locations-grid { flex-direction: column; }
body.page-casc .faq { padding: 60px 20px; }
body.page-casc .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-casc .footer { padding: 40px 20px 0; }
body.page-casc .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-casc .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-casc .footer-col:first-child { flex: 0 0 100%; }
body.page-casc .footer-member { flex-direction: column; gap: 12px; }
body.page-casc .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-casc .navbar { padding: 10px 12px; gap: 6px; }
body.page-casc .nav-logo { height: 52px; }
body.page-casc .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-casc .nav-cta svg { width: 11px; height: 11px; }
body.page-casc .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-casc .hamburger span { width: 20px; }
body.page-casc .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-casc .hero p { font-size: 14px; }
body.page-casc .hero-image img { height: 260px; }
body.page-casc .section-title { font-size: 28px; }
body.page-casc .section-label { font-size: 12px; }
body.page-casc .location-bar { padding: 8px 12px; }
body.page-casc .location-items { gap: 12px; }
body.page-casc .location-item { gap: 8px; }
body.page-casc .location-name { font-size: 13px; }
body.page-casc .location-sub { font-size: 10px; }
body.page-casc .location-icon { width: 32px; height: 32px; }
body.page-casc .location-icon svg { width: 14px; height: 14px; }
body.page-casc .physician-card { min-width: 240px; height: 320px; }
body.page-casc .contact-info .section-title { font-size: 32px; }
body.page-casc .contact { padding: 40px 16px; gap: 32px; }
body.page-casc .contact-form { padding: 24px; }
body.page-casc .footer-col { flex: 0 0 100%; }
body.page-casc .footer-logo { height: 32px; }
body.page-casc .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-casc .insurance-logos { gap: 12px; }
body.page-casc .insurance-logo { width: 100px; height: 100px; }
body.page-casc .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-casc .form-row { flex-direction: column; gap: 16px; }
body.page-casc .blog-card-image { height: 180px; }


}

/* ===== coming-soon.html ===== */
body.page-coming-soon, body.page-coming-soon *,
body.page-coming-soon *::before,
body.page-coming-soon *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-coming-soon { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-coming-soon a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-coming-soon ul { list-style: none; }
body.page-coming-soon img { max-width: 100%; height: auto; }
body.page-coming-soon button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-coming-soon input,
body.page-coming-soon select,
body.page-coming-soon textarea { font-family: inherit; outline: none; }
body.page-coming-soon /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-coming-soon .top-bar a { color: #1B3828; }
body.page-coming-soon .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-coming-soon .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-coming-soon .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-coming-soon .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-coming-soon .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-coming-soon .top-bar-social svg { width: 15px; height: 15px; }
body.page-coming-soon .top-bar-center { font-weight: 400; }
body.page-coming-soon .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-coming-soon .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-coming-soon .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-coming-soon .top-bar-right .login-btn,
body.page-coming-soon .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-coming-soon .login-btn:hover svg { color: #E07820; }
body.page-coming-soon .lang-btn .chevron { width: 8px; height: 5px; }
body.page-coming-soon .lang-btn { position: relative; }
body.page-coming-soon .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-coming-soon .lang-dropdown.open { display: block; }
body.page-coming-soon .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-coming-soon .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-coming-soon /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-coming-soon .location-items { display: flex; align-items: center; gap: 40px; }
body.page-coming-soon .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-coming-soon .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-coming-soon .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-coming-soon .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-coming-soon .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-coming-soon .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-coming-soon .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-coming-soon .location-item:hover .location-icon svg { color: #fff; }
body.page-coming-soon .social-icons { display: flex; gap: 16px; }
body.page-coming-soon .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-coming-soon .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-coming-soon .social-icon:hover svg { color: #fff; }
body.page-coming-soon .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-coming-soon /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-coming-soon .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-coming-soon .nav-logo { height: 72px; width: auto; }
body.page-coming-soon .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-coming-soon .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-coming-soon .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-coming-soon .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-coming-soon .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-coming-soon .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-coming-soon .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-coming-soon .nav-cta svg { width: 18px; height: 18px; }
body.page-coming-soon /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-coming-soon .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-coming-soon .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-coming-soon .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-coming-soon .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-coming-soon .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-coming-soon .nav-split-cta svg { width: 18px; height: 18px; }
body.page-coming-soon /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-coming-soon .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-coming-soon .nav-dropdown-wrap:hover > .mega-menu,
body.page-coming-soon .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-coming-soon .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-coming-soon .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-coming-soon /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-coming-soon .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-coming-soon .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-coming-soon .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-coming-soon .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-coming-soon .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-coming-soon .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-coming-soon .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-coming-soon .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-coming-soon .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-coming-soon .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-coming-soon .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-coming-soon .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-coming-soon /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-coming-soon .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-coming-soon .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-coming-soon .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-coming-soon .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-coming-soon .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-coming-soon .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-coming-soon .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-coming-soon .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-coming-soon .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-coming-soon .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-coming-soon .mega-team-link a:hover { gap: 10px; }
body.page-coming-soon /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-coming-soon .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-coming-soon .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-coming-soon .mobile-menu.active { display: flex; }
body.page-coming-soon .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-coming-soon .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-coming-soon .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-coming-soon .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-coming-soon .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-coming-soon .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-coming-soon .mobile-accordion-content.open { display: block; }
body.page-coming-soon .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-coming-soon .mobile-accordion-content a:hover { color: #E07820; }
body.page-coming-soon .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-coming-soon /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-coming-soon .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-coming-soon .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-coming-soon .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-coming-soon .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-coming-soon .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-coming-soon .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-coming-soon .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-coming-soon .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-coming-soon .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-coming-soon .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-coming-soon .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-coming-soon .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-coming-soon .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-coming-soon .btn-primary svg { width: 18px; height: 18px; }
body.page-coming-soon .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-coming-soon .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-coming-soon /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-coming-soon .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-coming-soon .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-coming-soon .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-coming-soon .about-cards { display: flex; gap: 20px; }
body.page-coming-soon .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-coming-soon .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-coming-soon .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-coming-soon .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-coming-soon .about-card p { font-size: 16px; line-height: 1.5; }
body.page-coming-soon .about-card p strong { color: #1B3828; }
body.page-coming-soon .about-card p span.dash { color: #1B3828; }
body.page-coming-soon .about-card p span.desc { color: #6a7282; }
body.page-coming-soon /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-coming-soon .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-coming-soon .services-row { display: flex; gap: 20px; }
body.page-coming-soon .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-coming-soon .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-coming-soon .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-coming-soon .service-card:hover::after { width: 100%; }
body.page-coming-soon .service-icon,
body.page-coming-soon .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-coming-soon .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-coming-soon .service-card:hover .service-icon.dark { background: #E07820; }
body.page-coming-soon .service-card h3 { transition: color 0.3s; }
body.page-coming-soon .service-card:hover h3 { color: #E07820; }
body.page-coming-soon .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-coming-soon .service-card:hover .service-link { transform: translateX(6px); }
body.page-coming-soon .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-coming-soon .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-coming-soon .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-coming-soon .service-card.third { flex: 1; }
body.page-coming-soon .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-coming-soon .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-coming-soon .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-coming-soon .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-coming-soon .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-coming-soon .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-coming-soon .service-card .service-link:hover { text-decoration: underline; }
body.page-coming-soon /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-coming-soon .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-coming-soon .physicians-header-text { max-width: 580px; }
body.page-coming-soon .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-coming-soon .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-coming-soon .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-coming-soon .physicians-nav .prev:hover { border-color: #E07820; }
body.page-coming-soon .physicians-nav .next { background: #E07820; border: none; }
body.page-coming-soon .physicians-nav .next:hover { background: #C5661A; }
body.page-coming-soon .physicians-nav svg { width: 20px; height: 20px; }
body.page-coming-soon .physicians-nav .prev svg { color: #6a7282; }
body.page-coming-soon .physicians-nav .next svg { color: #fff; }
body.page-coming-soon .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-coming-soon .physicians-grid::-webkit-scrollbar { display: none; }
body.page-coming-soon .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-coming-soon .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-coming-soon .physician-card:hover .card-img { transform: scale(1.05); }
body.page-coming-soon /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-coming-soon /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-coming-soon .physician-card:hover .card-overlay { opacity: 1; }
body.page-coming-soon .physician-card:hover::after { opacity: 0; }
body.page-coming-soon /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-coming-soon .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-coming-soon .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-coming-soon /* Hover state - move info up,
body.page-coming-soon show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-coming-soon .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-coming-soon .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-coming-soon .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-coming-soon .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-coming-soon .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-coming-soon /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-coming-soon .testimonials .section-title { color: #fff; }
body.page-coming-soon .quote-icon { margin: 0 auto 42px; }
body.page-coming-soon .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-coming-soon .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-coming-soon .testimonial-card { min-width: 477px; position: relative; }
body.page-coming-soon .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-coming-soon .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-coming-soon .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-coming-soon .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-coming-soon .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-coming-soon .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-coming-soon .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-coming-soon .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-coming-soon .testimonials-arrows button:hover { color: #E07820; }
body.page-coming-soon .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-coming-soon /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-coming-soon .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-coming-soon .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-coming-soon .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-coming-soon .blog-grid { display: flex; gap: 32px; }
body.page-coming-soon .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-coming-soon .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-coming-soon .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-coming-soon .blog-card-body { padding: 24px; }
body.page-coming-soon .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-coming-soon .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-coming-soon .blog-date { font-size: 12px; color: #6a7282; }
body.page-coming-soon .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-coming-soon .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-coming-soon .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-coming-soon .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-coming-soon /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-coming-soon .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-coming-soon .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-coming-soon .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-coming-soon .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-coming-soon .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-coming-soon .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-coming-soon .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-coming-soon /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-coming-soon .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-coming-soon .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-coming-soon .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-coming-soon .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-coming-soon .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-coming-soon .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-coming-soon .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-coming-soon .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-coming-soon .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-coming-soon .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-coming-soon .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-coming-soon .location-card .book-link:hover { gap: 12px; }
body.page-coming-soon .location-card .book-link svg { width: 16px; height: 16px; }
body.page-coming-soon /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-coming-soon .faq-list { margin-top: 48px; }
body.page-coming-soon .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-coming-soon .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-coming-soon .faq-question:hover { color: #E07820; }
body.page-coming-soon .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-coming-soon .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-coming-soon .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-coming-soon .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-coming-soon .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-coming-soon .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-coming-soon .faq-footer { text-align: center; margin-top: 32px; }
body.page-coming-soon .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-coming-soon .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-coming-soon .faq-footer a svg { width: 16px; height: 16px; }
body.page-coming-soon /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-coming-soon .contact-info { flex: 1; color: #fff; }
body.page-coming-soon .contact-info .section-label { color: #E07820; text-align: left; }
body.page-coming-soon .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-coming-soon .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-coming-soon .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-coming-soon .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-coming-soon .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-coming-soon /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-coming-soon .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-coming-soon .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-coming-soon .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-coming-soon .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-coming-soon .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-coming-soon .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-coming-soon .contact-location-phone:hover { color: #fff; }
body.page-coming-soon .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-coming-soon .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-coming-soon .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-coming-soon .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-coming-soon .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-coming-soon .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-coming-soon .form-group { flex: 1; }
body.page-coming-soon .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-coming-soon .form-group label span { color: #E07820; }
body.page-coming-soon .form-group input,
body.page-coming-soon .form-group select,
body.page-coming-soon .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-coming-soon .form-group input::placeholder,
body.page-coming-soon .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-coming-soon .form-group select { color: rgba(255,255,255,0.3); }
body.page-coming-soon .form-group select option { background: #1B3828; color: #fff; }
body.page-coming-soon .form-group input:focus,
body.page-coming-soon .form-group select:focus,
body.page-coming-soon .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-coming-soon .form-group textarea { resize: vertical; min-height: 120px; }
body.page-coming-soon .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-coming-soon .form-submit:hover { background: #C5661A; }
body.page-coming-soon .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-coming-soon /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-coming-soon .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-coming-soon .footer-col { flex: 1; }
body.page-coming-soon .footer-col:first-child { flex: 1.2; }
body.page-coming-soon .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-coming-soon .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-coming-soon .footer-social { display: flex; gap: 16px; }
body.page-coming-soon .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-coming-soon .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-coming-soon .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-coming-soon .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-coming-soon .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-coming-soon .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-coming-soon .footer-links a:hover { color: #E07820; }
body.page-coming-soon .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-coming-soon .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-coming-soon .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-coming-soon .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-coming-soon .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-coming-soon .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-coming-soon .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-coming-soon .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-coming-soon .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-coming-soon .footer-legal { display: flex; gap: 24px; }
body.page-coming-soon .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-coming-soon .footer-legal a:hover { color: #E07820; }
body.page-coming-soon /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-coming-soon .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-coming-soon .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-coming-soon .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-coming-soon .stagger-1 { transition-delay: 0.1s; }
body.page-coming-soon .stagger-2 { transition-delay: 0.2s; }
body.page-coming-soon .stagger-3 { transition-delay: 0.3s; }
body.page-coming-soon .stagger-4 { transition-delay: 0.4s; }
body.page-coming-soon /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-coming-soon .top-bar { display: none; }
body.page-coming-soon .location-bar { padding: 12px 20px; }
body.page-coming-soon .location-items { flex-wrap: wrap; gap: 20px; }
body.page-coming-soon .social-icons { display: none; }
body.page-coming-soon .navbar { padding: 12px 20px; }
body.page-coming-soon .nav-links { display: none; }
body.page-coming-soon .mega-menu { display: none !important; }
body.page-coming-soon .hamburger { display: flex; }
body.page-coming-soon .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-coming-soon .nav-cta svg { width: 14px; height: 14px; }
body.page-coming-soon .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-coming-soon .hero-content { padding-bottom: 40px; }
body.page-coming-soon .hero h1 { font-size: 36px; }
body.page-coming-soon .hero-buttons { flex-wrap: wrap; }
body.page-coming-soon .hero-image img { height: 320px; }
body.page-coming-soon .about,
body.page-coming-soon .services,
body.page-coming-soon .physicians,
body.page-coming-soon .locations { padding: 60px 20px; }
body.page-coming-soon .about-cards { flex-direction: column; }
body.page-coming-soon .services-row { flex-direction: column; }
body.page-coming-soon .service-card.large,
body.page-coming-soon .service-card.small { flex: none; width: 100%; }
body.page-coming-soon .physicians-header { flex-direction: column; gap: 20px; }
body.page-coming-soon .physician-card { min-width: 260px; }
body.page-coming-soon .testimonials { padding: 60px 20px; }
body.page-coming-soon .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-coming-soon .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-coming-soon .blog { padding: 60px 20px; }
body.page-coming-soon .blog-grid { flex-direction: column; }
body.page-coming-soon .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-coming-soon .insurance { padding: 60px 20px; }
body.page-coming-soon .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-coming-soon .insurance-logo { width: 140px; height: 140px; }
body.page-coming-soon .locations-grid { flex-direction: column; }
body.page-coming-soon .faq { padding: 60px 20px; }
body.page-coming-soon .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-coming-soon .footer { padding: 40px 20px 0; }
body.page-coming-soon .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-coming-soon .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-coming-soon .footer-col:first-child { flex: 0 0 100%; }
body.page-coming-soon .footer-member { flex-direction: column; gap: 12px; }
body.page-coming-soon .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-coming-soon .navbar { padding: 10px 12px; gap: 6px; }
body.page-coming-soon .nav-logo { height: 52px; }
body.page-coming-soon .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-coming-soon .nav-cta svg { width: 11px; height: 11px; }
body.page-coming-soon .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-coming-soon .hamburger span { width: 20px; }
body.page-coming-soon .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-coming-soon .hero p { font-size: 14px; }
body.page-coming-soon .hero-image img { height: 260px; }
body.page-coming-soon .section-title { font-size: 28px; }
body.page-coming-soon .section-label { font-size: 12px; }
body.page-coming-soon .location-bar { padding: 8px 12px; }
body.page-coming-soon .location-items { gap: 12px; }
body.page-coming-soon .location-item { gap: 8px; }
body.page-coming-soon .location-name { font-size: 13px; }
body.page-coming-soon .location-sub { font-size: 10px; }
body.page-coming-soon .location-icon { width: 32px; height: 32px; }
body.page-coming-soon .location-icon svg { width: 14px; height: 14px; }
body.page-coming-soon .physician-card { min-width: 240px; height: 320px; }
body.page-coming-soon .contact-info .section-title { font-size: 32px; }
body.page-coming-soon .contact { padding: 40px 16px; gap: 32px; }
body.page-coming-soon .contact-form { padding: 24px; }
body.page-coming-soon .footer-col { flex: 0 0 100%; }
body.page-coming-soon .footer-logo { height: 32px; }
body.page-coming-soon .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-coming-soon .insurance-logos { gap: 12px; }
body.page-coming-soon .insurance-logo { width: 100px; height: 100px; }
body.page-coming-soon .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-coming-soon .form-row { flex-direction: column; gap: 16px; }
body.page-coming-soon .blog-card-image { height: 180px; }


}

/* ===== leadership.html ===== */
body.page-leadership, body.page-leadership *,
body.page-leadership *::before,
body.page-leadership *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-leadership { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-leadership a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-leadership ul { list-style: none; }
body.page-leadership img { max-width: 100%; height: auto; }
body.page-leadership button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-leadership input,
body.page-leadership select,
body.page-leadership textarea { font-family: inherit; outline: none; }
body.page-leadership /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-leadership .top-bar a { color: #1B3828; }
body.page-leadership .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-leadership .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-leadership .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-leadership .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-leadership .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-leadership .top-bar-social svg { width: 15px; height: 15px; }
body.page-leadership .top-bar-center { font-weight: 400; }
body.page-leadership .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-leadership .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-leadership .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-leadership .top-bar-right .login-btn,
body.page-leadership .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-leadership .login-btn:hover svg { color: #E07820; }
body.page-leadership .lang-btn .chevron { width: 8px; height: 5px; }
body.page-leadership .lang-btn { position: relative; }
body.page-leadership .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-leadership .lang-dropdown.open { display: block; }
body.page-leadership .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-leadership .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-leadership /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-leadership .location-items { display: flex; align-items: center; gap: 40px; }
body.page-leadership .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-leadership .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-leadership .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-leadership .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-leadership .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-leadership .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-leadership .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-leadership .location-item:hover .location-icon svg { color: #fff; }
body.page-leadership .social-icons { display: flex; gap: 16px; }
body.page-leadership .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-leadership .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-leadership .social-icon:hover svg { color: #fff; }
body.page-leadership .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-leadership /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-leadership .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-leadership .nav-logo { height: 72px; width: auto; }
body.page-leadership .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-leadership .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-leadership .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-leadership .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-leadership .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-leadership .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-leadership .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-leadership .nav-cta svg { width: 18px; height: 18px; }
body.page-leadership /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-leadership .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-leadership .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-leadership .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-leadership .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-leadership .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-leadership .nav-split-cta svg { width: 18px; height: 18px; }
body.page-leadership /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-leadership .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-leadership .nav-dropdown-wrap:hover > .mega-menu,
body.page-leadership .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-leadership .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-leadership .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-leadership /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-leadership .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-leadership .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-leadership .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-leadership .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-leadership .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-leadership .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-leadership .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-leadership .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-leadership .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-leadership .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-leadership .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-leadership .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-leadership /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-leadership .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-leadership .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-leadership .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-leadership .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-leadership .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-leadership .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-leadership .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-leadership .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-leadership .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-leadership .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-leadership .mega-team-link a:hover { gap: 10px; }
body.page-leadership /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-leadership .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-leadership .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-leadership .mobile-menu.active { display: flex; }
body.page-leadership .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-leadership .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-leadership .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-leadership .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-leadership .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-leadership .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-leadership .mobile-accordion-content.open { display: block; }
body.page-leadership .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-leadership .mobile-accordion-content a:hover { color: #E07820; }
body.page-leadership .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-leadership /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-leadership .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-leadership .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-leadership .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-leadership .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-leadership .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-leadership .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-leadership .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-leadership .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-leadership .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-leadership .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-leadership .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-leadership .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-leadership .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-leadership .btn-primary svg { width: 18px; height: 18px; }
body.page-leadership .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-leadership .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-leadership /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-leadership .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-leadership .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-leadership .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-leadership .about-cards { display: flex; gap: 20px; }
body.page-leadership .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-leadership .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-leadership .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-leadership .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-leadership .about-card p { font-size: 16px; line-height: 1.5; }
body.page-leadership .about-card p strong { color: #1B3828; }
body.page-leadership .about-card p span.dash { color: #1B3828; }
body.page-leadership .about-card p span.desc { color: #6a7282; }
body.page-leadership /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-leadership .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-leadership .services-row { display: flex; gap: 20px; }
body.page-leadership .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-leadership .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-leadership .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-leadership .service-card:hover::after { width: 100%; }
body.page-leadership .service-icon,
body.page-leadership .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-leadership .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-leadership .service-card:hover .service-icon.dark { background: #E07820; }
body.page-leadership .service-card h3 { transition: color 0.3s; }
body.page-leadership .service-card:hover h3 { color: #E07820; }
body.page-leadership .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-leadership .service-card:hover .service-link { transform: translateX(6px); }
body.page-leadership .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-leadership .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-leadership .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-leadership .service-card.third { flex: 1; }
body.page-leadership .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-leadership .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-leadership .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-leadership .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-leadership .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-leadership .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-leadership .service-card .service-link:hover { text-decoration: underline; }
body.page-leadership /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-leadership .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-leadership .physicians-header-text { max-width: 580px; }
body.page-leadership .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-leadership .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-leadership .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-leadership .physicians-nav .prev:hover { border-color: #E07820; }
body.page-leadership .physicians-nav .next { background: #E07820; border: none; }
body.page-leadership .physicians-nav .next:hover { background: #C5661A; }
body.page-leadership .physicians-nav svg { width: 20px; height: 20px; }
body.page-leadership .physicians-nav .prev svg { color: #6a7282; }
body.page-leadership .physicians-nav .next svg { color: #fff; }
body.page-leadership .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-leadership .physicians-grid::-webkit-scrollbar { display: none; }
body.page-leadership .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-leadership .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-leadership .physician-card:hover .card-img { transform: scale(1.05); }
body.page-leadership /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-leadership /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-leadership .physician-card:hover .card-overlay { opacity: 1; }
body.page-leadership .physician-card:hover::after { opacity: 0; }
body.page-leadership /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-leadership .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-leadership .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-leadership /* Hover state - move info up,
body.page-leadership show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-leadership .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-leadership .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-leadership .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-leadership .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-leadership .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-leadership /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-leadership .testimonials .section-title { color: #fff; }
body.page-leadership .quote-icon { margin: 0 auto 42px; }
body.page-leadership .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-leadership .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-leadership .testimonial-card { min-width: 477px; position: relative; }
body.page-leadership .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-leadership .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-leadership .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-leadership .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-leadership .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-leadership .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-leadership .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-leadership .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-leadership .testimonials-arrows button:hover { color: #E07820; }
body.page-leadership .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-leadership /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-leadership .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-leadership .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-leadership .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-leadership .blog-grid { display: flex; gap: 32px; }
body.page-leadership .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-leadership .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-leadership .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-leadership .blog-card-body { padding: 24px; }
body.page-leadership .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-leadership .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-leadership .blog-date { font-size: 12px; color: #6a7282; }
body.page-leadership .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-leadership .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-leadership .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-leadership .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-leadership /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-leadership .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-leadership .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-leadership .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-leadership .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-leadership .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-leadership .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-leadership .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-leadership /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-leadership .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-leadership .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-leadership .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-leadership .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-leadership .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-leadership .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-leadership .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-leadership .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-leadership .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-leadership .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-leadership .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-leadership .location-card .book-link:hover { gap: 12px; }
body.page-leadership .location-card .book-link svg { width: 16px; height: 16px; }
body.page-leadership /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-leadership .faq-list { margin-top: 48px; }
body.page-leadership .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-leadership .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-leadership .faq-question:hover { color: #E07820; }
body.page-leadership .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-leadership .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-leadership .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-leadership .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-leadership .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-leadership .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-leadership .faq-footer { text-align: center; margin-top: 32px; }
body.page-leadership .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-leadership .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-leadership .faq-footer a svg { width: 16px; height: 16px; }
body.page-leadership /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-leadership .contact-info { flex: 1; color: #fff; }
body.page-leadership .contact-info .section-label { color: #E07820; text-align: left; }
body.page-leadership .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-leadership .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-leadership .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-leadership .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-leadership .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-leadership /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-leadership .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-leadership .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-leadership .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-leadership .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-leadership .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-leadership .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-leadership .contact-location-phone:hover { color: #fff; }
body.page-leadership .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-leadership .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-leadership .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-leadership .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-leadership .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-leadership .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-leadership .form-group { flex: 1; }
body.page-leadership .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-leadership .form-group label span { color: #E07820; }
body.page-leadership .form-group input,
body.page-leadership .form-group select,
body.page-leadership .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-leadership .form-group input::placeholder,
body.page-leadership .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-leadership .form-group select { color: rgba(255,255,255,0.3); }
body.page-leadership .form-group select option { background: #1B3828; color: #fff; }
body.page-leadership .form-group input:focus,
body.page-leadership .form-group select:focus,
body.page-leadership .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-leadership .form-group textarea { resize: vertical; min-height: 120px; }
body.page-leadership .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-leadership .form-submit:hover { background: #C5661A; }
body.page-leadership .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-leadership /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-leadership .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-leadership .footer-col { flex: 1; }
body.page-leadership .footer-col:first-child { flex: 1.2; }
body.page-leadership .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-leadership .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-leadership .footer-social { display: flex; gap: 16px; }
body.page-leadership .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-leadership .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-leadership .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-leadership .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-leadership .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-leadership .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-leadership .footer-links a:hover { color: #E07820; }
body.page-leadership .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-leadership .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-leadership .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-leadership .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-leadership .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-leadership .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-leadership .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-leadership .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-leadership .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-leadership .footer-legal { display: flex; gap: 24px; }
body.page-leadership .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-leadership .footer-legal a:hover { color: #E07820; }
body.page-leadership /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-leadership .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-leadership .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-leadership .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-leadership .stagger-1 { transition-delay: 0.1s; }
body.page-leadership .stagger-2 { transition-delay: 0.2s; }
body.page-leadership .stagger-3 { transition-delay: 0.3s; }
body.page-leadership .stagger-4 { transition-delay: 0.4s; }
body.page-leadership /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-leadership .top-bar { display: none; }
body.page-leadership .location-bar { padding: 12px 20px; }
body.page-leadership .location-items { flex-wrap: wrap; gap: 20px; }
body.page-leadership .social-icons { display: none; }
body.page-leadership .navbar { padding: 12px 20px; }
body.page-leadership .nav-links { display: none; }
body.page-leadership .mega-menu { display: none !important; }
body.page-leadership .hamburger { display: flex; }
body.page-leadership .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-leadership .nav-cta svg { width: 14px; height: 14px; }
body.page-leadership .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-leadership .hero-content { padding-bottom: 40px; }
body.page-leadership .hero h1 { font-size: 36px; }
body.page-leadership .hero-buttons { flex-wrap: wrap; }
body.page-leadership .hero-image img { height: 320px; }
body.page-leadership .about,
body.page-leadership .services,
body.page-leadership .physicians,
body.page-leadership .locations { padding: 60px 20px; }
body.page-leadership .about-cards { flex-direction: column; }
body.page-leadership .services-row { flex-direction: column; }
body.page-leadership .service-card.large,
body.page-leadership .service-card.small { flex: none; width: 100%; }
body.page-leadership .physicians-header { flex-direction: column; gap: 20px; }
body.page-leadership .physician-card { min-width: 260px; }
body.page-leadership .testimonials { padding: 60px 20px; }
body.page-leadership .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-leadership .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-leadership .blog { padding: 60px 20px; }
body.page-leadership .blog-grid { flex-direction: column; }
body.page-leadership .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-leadership .insurance { padding: 60px 20px; }
body.page-leadership .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-leadership .insurance-logo { width: 140px; height: 140px; }
body.page-leadership .locations-grid { flex-direction: column; }
body.page-leadership .faq { padding: 60px 20px; }
body.page-leadership .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-leadership .footer { padding: 40px 20px 0; }
body.page-leadership .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-leadership .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-leadership .footer-col:first-child { flex: 0 0 100%; }
body.page-leadership .footer-member { flex-direction: column; gap: 12px; }
body.page-leadership .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-leadership .navbar { padding: 10px 12px; gap: 6px; }
body.page-leadership .nav-logo { height: 52px; }
body.page-leadership .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-leadership .nav-cta svg { width: 11px; height: 11px; }
body.page-leadership .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-leadership .hamburger span { width: 20px; }
body.page-leadership .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-leadership .hero p { font-size: 14px; }
body.page-leadership .hero-image img { height: 260px; }
body.page-leadership .section-title { font-size: 28px; }
body.page-leadership .section-label { font-size: 12px; }
body.page-leadership .location-bar { padding: 8px 12px; }
body.page-leadership .location-items { gap: 12px; }
body.page-leadership .location-item { gap: 8px; }
body.page-leadership .location-name { font-size: 13px; }
body.page-leadership .location-sub { font-size: 10px; }
body.page-leadership .location-icon { width: 32px; height: 32px; }
body.page-leadership .location-icon svg { width: 14px; height: 14px; }
body.page-leadership .physician-card { min-width: 240px; height: 320px; }
body.page-leadership .contact-info .section-title { font-size: 32px; }
body.page-leadership .contact { padding: 40px 16px; gap: 32px; }
body.page-leadership .contact-form { padding: 24px; }
body.page-leadership .footer-col { flex: 0 0 100%; }
body.page-leadership .footer-logo { height: 32px; }
body.page-leadership .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-leadership .insurance-logos { gap: 12px; }
body.page-leadership .insurance-logo { width: 100px; height: 100px; }
body.page-leadership .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-leadership .form-row { flex-direction: column; gap: 16px; }
body.page-leadership .blog-card-image { height: 180px; }


}

/* ===== maintenance.html ===== */
body.page-maintenance, body.page-maintenance * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
html,
body.page-maintenance { min-height: 100vh; }
body.page-maintenance {
    background: radial-gradient(circle at 20% 20%, #1B3828 0%, #0E2017 60%, #07140C 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    line-height: 1.5;
  }
body.page-maintenance .container {
    max-width: 640px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 56px 48px;
    backdrop-filter: blur(10px);
  }
body.page-maintenance .logo-mark {
    width: 88px;
    height: 88px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2.5s ease-in-out infinite;
  }
body.page-maintenance .logo-mark img { width: 56px; height: 56px; }
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
  }
body.page-maintenance .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E07820;
    background: rgba(224, 120, 32, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
  }
body.page-maintenance h1 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
  }
body.page-maintenance .lede {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
body.page-maintenance .contact-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
  }
body.page-maintenance .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: left;
    transition: all 0.25s;
    color: #fff;
    text-decoration: none;
  }
body.page-maintenance .contact-item:hover {
    background: rgba(224,120,32,0.1);
    border-color: rgba(224,120,32,0.4);
    transform: translateY(-1px);
  }
body.page-maintenance .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(224,120,32,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
body.page-maintenance .contact-icon svg { width: 18px; height: 18px; color: #E07820; }
body.page-maintenance .contact-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
body.page-maintenance .contact-value { font-size: 15px; font-weight: 500; }
body.page-maintenance .progress {
    margin-top: 12px;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
body.page-maintenance .progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #E07820, transparent);
    animation: slide 2.2s ease-in-out infinite;
  }
@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
body.page-maintenance .footer-note {
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
  }
@media (max-width: 560px) {
body.page-maintenance .container { padding: 40px 28px; }
body.page-maintenance h1 { font-size: 32px; }
body.page-maintenance .lede { font-size: 15px; }

  
}

/* ===== news.html ===== */
body.page-news, body.page-news *,
body.page-news *::before,
body.page-news *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-news { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-news a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-news ul { list-style: none; }
body.page-news img { max-width: 100%; height: auto; }
body.page-news button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-news input,
body.page-news select,
body.page-news textarea { font-family: inherit; outline: none; }
body.page-news /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-news .top-bar a { color: #1B3828; }
body.page-news .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-news .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-news .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-news .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-news .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-news .top-bar-social svg { width: 15px; height: 15px; }
body.page-news .top-bar-center { font-weight: 400; }
body.page-news .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-news .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-news .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-news .top-bar-right .login-btn,
body.page-news .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-news .login-btn:hover svg { color: #E07820; }
body.page-news .lang-btn .chevron { width: 8px; height: 5px; }
body.page-news .lang-btn { position: relative; }
body.page-news .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-news .lang-dropdown.open { display: block; }
body.page-news .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-news .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-news /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-news .location-items { display: flex; align-items: center; gap: 40px; }
body.page-news .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-news .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-news .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-news .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-news .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-news .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-news .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-news .location-item:hover .location-icon svg { color: #fff; }
body.page-news .social-icons { display: flex; gap: 16px; }
body.page-news .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-news .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-news .social-icon:hover svg { color: #fff; }
body.page-news .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-news /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-news .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-news .nav-logo { height: 72px; width: auto; }
body.page-news .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-news .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-news .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-news .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-news .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-news .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-news .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-news .nav-cta svg { width: 18px; height: 18px; }
body.page-news /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-news .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-news .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-news .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-news .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-news .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-news .nav-split-cta svg { width: 18px; height: 18px; }
body.page-news /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-news .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-news .nav-dropdown-wrap:hover > .mega-menu,
body.page-news .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-news .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-news .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-news /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-news .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-news .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-news .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-news .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-news .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-news .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-news .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-news .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-news .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-news .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-news .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-news .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-news /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-news .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-news .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-news .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-news .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-news .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-news .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-news .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-news .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-news .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-news .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-news .mega-team-link a:hover { gap: 10px; }
body.page-news /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-news .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-news .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-news .mobile-menu.active { display: flex; }
body.page-news .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-news .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-news .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-news .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-news .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-news .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-news .mobile-accordion-content.open { display: block; }
body.page-news .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-news .mobile-accordion-content a:hover { color: #E07820; }
body.page-news .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-news /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-news .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-news .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-news .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-news .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-news .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-news .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-news .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-news .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-news .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-news .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-news .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-news .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-news .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-news .btn-primary svg { width: 18px; height: 18px; }
body.page-news .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-news .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-news /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-news .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-news .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-news .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-news .about-cards { display: flex; gap: 20px; }
body.page-news .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-news .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-news .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-news .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-news .about-card p { font-size: 16px; line-height: 1.5; }
body.page-news .about-card p strong { color: #1B3828; }
body.page-news .about-card p span.dash { color: #1B3828; }
body.page-news .about-card p span.desc { color: #6a7282; }
body.page-news /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-news .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-news .services-row { display: flex; gap: 20px; }
body.page-news .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-news .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-news .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-news .service-card:hover::after { width: 100%; }
body.page-news .service-icon,
body.page-news .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-news .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-news .service-card:hover .service-icon.dark { background: #E07820; }
body.page-news .service-card h3 { transition: color 0.3s; }
body.page-news .service-card:hover h3 { color: #E07820; }
body.page-news .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-news .service-card:hover .service-link { transform: translateX(6px); }
body.page-news .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-news .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-news .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-news .service-card.third { flex: 1; }
body.page-news .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-news .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-news .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-news .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-news .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-news .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-news .service-card .service-link:hover { text-decoration: underline; }
body.page-news /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-news .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-news .physicians-header-text { max-width: 580px; }
body.page-news .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-news .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-news .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-news .physicians-nav .prev:hover { border-color: #E07820; }
body.page-news .physicians-nav .next { background: #E07820; border: none; }
body.page-news .physicians-nav .next:hover { background: #C5661A; }
body.page-news .physicians-nav svg { width: 20px; height: 20px; }
body.page-news .physicians-nav .prev svg { color: #6a7282; }
body.page-news .physicians-nav .next svg { color: #fff; }
body.page-news .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-news .physicians-grid::-webkit-scrollbar { display: none; }
body.page-news .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-news .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-news .physician-card:hover .card-img { transform: scale(1.05); }
body.page-news /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-news /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-news .physician-card:hover .card-overlay { opacity: 1; }
body.page-news .physician-card:hover::after { opacity: 0; }
body.page-news /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-news .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-news .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-news /* Hover state - move info up,
body.page-news show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-news .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-news .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-news .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-news .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-news .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-news /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-news .testimonials .section-title { color: #fff; }
body.page-news .quote-icon { margin: 0 auto 42px; }
body.page-news .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-news .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-news .testimonial-card { min-width: 477px; position: relative; }
body.page-news .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-news .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-news .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-news .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-news .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-news .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-news .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-news .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-news .testimonials-arrows button:hover { color: #E07820; }
body.page-news .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-news /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-news .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-news .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-news .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-news .blog-grid { display: flex; gap: 32px; }
body.page-news .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-news .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-news .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-news .blog-card-body { padding: 24px; }
body.page-news .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-news .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-news .blog-date { font-size: 12px; color: #6a7282; }
body.page-news .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-news .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-news .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-news .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-news /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-news .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-news .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-news .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-news .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-news .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-news .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-news .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-news /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-news .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-news .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-news .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-news .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-news .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-news .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-news .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-news .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-news .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-news .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-news .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-news .location-card .book-link:hover { gap: 12px; }
body.page-news .location-card .book-link svg { width: 16px; height: 16px; }
body.page-news /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-news .faq-list { margin-top: 48px; }
body.page-news .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-news .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-news .faq-question:hover { color: #E07820; }
body.page-news .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-news .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-news .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-news .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-news .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-news .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-news .faq-footer { text-align: center; margin-top: 32px; }
body.page-news .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-news .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-news .faq-footer a svg { width: 16px; height: 16px; }
body.page-news /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-news .contact-info { flex: 1; color: #fff; }
body.page-news .contact-info .section-label { color: #E07820; text-align: left; }
body.page-news .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-news .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-news .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-news .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-news .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-news /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-news .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-news .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-news .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-news .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-news .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-news .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-news .contact-location-phone:hover { color: #fff; }
body.page-news .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-news .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-news .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-news .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-news .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-news .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-news .form-group { flex: 1; }
body.page-news .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-news .form-group label span { color: #E07820; }
body.page-news .form-group input,
body.page-news .form-group select,
body.page-news .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-news .form-group input::placeholder,
body.page-news .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-news .form-group select { color: rgba(255,255,255,0.3); }
body.page-news .form-group select option { background: #1B3828; color: #fff; }
body.page-news .form-group input:focus,
body.page-news .form-group select:focus,
body.page-news .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-news .form-group textarea { resize: vertical; min-height: 120px; }
body.page-news .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-news .form-submit:hover { background: #C5661A; }
body.page-news .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-news /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-news .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-news .footer-col { flex: 1; }
body.page-news .footer-col:first-child { flex: 1.2; }
body.page-news .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-news .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-news .footer-social { display: flex; gap: 16px; }
body.page-news .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-news .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-news .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-news .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-news .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-news .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-news .footer-links a:hover { color: #E07820; }
body.page-news .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-news .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-news .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-news .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-news .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-news .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-news .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-news .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-news .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-news .footer-legal { display: flex; gap: 24px; }
body.page-news .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-news .footer-legal a:hover { color: #E07820; }
body.page-news /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-news .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-news .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-news .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-news .stagger-1 { transition-delay: 0.1s; }
body.page-news .stagger-2 { transition-delay: 0.2s; }
body.page-news .stagger-3 { transition-delay: 0.3s; }
body.page-news .stagger-4 { transition-delay: 0.4s; }
body.page-news /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-news .top-bar { display: none; }
body.page-news .location-bar { padding: 12px 20px; }
body.page-news .location-items { flex-wrap: wrap; gap: 20px; }
body.page-news .social-icons { display: none; }
body.page-news .navbar { padding: 12px 20px; }
body.page-news .nav-links { display: none; }
body.page-news .mega-menu { display: none !important; }
body.page-news .hamburger { display: flex; }
body.page-news .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-news .nav-cta svg { width: 14px; height: 14px; }
body.page-news .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-news .hero-content { padding-bottom: 40px; }
body.page-news .hero h1 { font-size: 36px; }
body.page-news .hero-buttons { flex-wrap: wrap; }
body.page-news .hero-image img { height: 320px; }
body.page-news .about,
body.page-news .services,
body.page-news .physicians,
body.page-news .locations { padding: 60px 20px; }
body.page-news .about-cards { flex-direction: column; }
body.page-news .services-row { flex-direction: column; }
body.page-news .service-card.large,
body.page-news .service-card.small { flex: none; width: 100%; }
body.page-news .physicians-header { flex-direction: column; gap: 20px; }
body.page-news .physician-card { min-width: 260px; }
body.page-news .testimonials { padding: 60px 20px; }
body.page-news .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-news .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-news .blog { padding: 60px 20px; }
body.page-news .blog-grid { flex-direction: column; }
body.page-news .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-news .insurance { padding: 60px 20px; }
body.page-news .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-news .insurance-logo { width: 140px; height: 140px; }
body.page-news .locations-grid { flex-direction: column; }
body.page-news .faq { padding: 60px 20px; }
body.page-news .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-news .footer { padding: 40px 20px 0; }
body.page-news .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-news .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-news .footer-col:first-child { flex: 0 0 100%; }
body.page-news .footer-member { flex-direction: column; gap: 12px; }
body.page-news .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-news .navbar { padding: 10px 12px; gap: 6px; }
body.page-news .nav-logo { height: 52px; }
body.page-news .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-news .nav-cta svg { width: 11px; height: 11px; }
body.page-news .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-news .hamburger span { width: 20px; }
body.page-news .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-news .hero p { font-size: 14px; }
body.page-news .hero-image img { height: 260px; }
body.page-news .section-title { font-size: 28px; }
body.page-news .section-label { font-size: 12px; }
body.page-news .location-bar { padding: 8px 12px; }
body.page-news .location-items { gap: 12px; }
body.page-news .location-item { gap: 8px; }
body.page-news .location-name { font-size: 13px; }
body.page-news .location-sub { font-size: 10px; }
body.page-news .location-icon { width: 32px; height: 32px; }
body.page-news .location-icon svg { width: 14px; height: 14px; }
body.page-news .physician-card { min-width: 240px; height: 320px; }
body.page-news .contact-info .section-title { font-size: 32px; }
body.page-news .contact { padding: 40px 16px; gap: 32px; }
body.page-news .contact-form { padding: 24px; }
body.page-news .footer-col { flex: 0 0 100%; }
body.page-news .footer-logo { height: 32px; }
body.page-news .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-news .insurance-logos { gap: 12px; }
body.page-news .insurance-logo { width: 100px; height: 100px; }
body.page-news .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-news .form-row { flex-direction: column; gap: 16px; }
body.page-news .blog-card-image { height: 180px; }


}

/* ===== patient-forms.html ===== */
body.page-patient-forms, body.page-patient-forms *,
body.page-patient-forms *::before,
body.page-patient-forms *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-patient-forms { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-patient-forms a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-patient-forms ul { list-style: none; }
body.page-patient-forms img { max-width: 100%; height: auto; }
body.page-patient-forms button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-patient-forms input,
body.page-patient-forms select,
body.page-patient-forms textarea { font-family: inherit; outline: none; }
body.page-patient-forms /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-patient-forms .top-bar a { color: #1B3828; }
body.page-patient-forms .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-patient-forms .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-patient-forms .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-patient-forms .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-patient-forms .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-patient-forms .top-bar-social svg { width: 15px; height: 15px; }
body.page-patient-forms .top-bar-center { font-weight: 400; }
body.page-patient-forms .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-patient-forms .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-patient-forms .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-patient-forms .top-bar-right .login-btn,
body.page-patient-forms .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-patient-forms .login-btn:hover svg { color: #E07820; }
body.page-patient-forms .lang-btn .chevron { width: 8px; height: 5px; }
body.page-patient-forms .lang-btn { position: relative; }
body.page-patient-forms .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-patient-forms .lang-dropdown.open { display: block; }
body.page-patient-forms .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-patient-forms .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-patient-forms /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-patient-forms .location-items { display: flex; align-items: center; gap: 40px; }
body.page-patient-forms .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-patient-forms .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-patient-forms .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-patient-forms .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-patient-forms .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-patient-forms .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-patient-forms .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-patient-forms .location-item:hover .location-icon svg { color: #fff; }
body.page-patient-forms .social-icons { display: flex; gap: 16px; }
body.page-patient-forms .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-patient-forms .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-patient-forms .social-icon:hover svg { color: #fff; }
body.page-patient-forms .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-patient-forms /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-patient-forms .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-patient-forms .nav-logo { height: 72px; width: auto; }
body.page-patient-forms .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-patient-forms .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-patient-forms .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-patient-forms .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-patient-forms .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-patient-forms .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-patient-forms .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-patient-forms .nav-cta svg { width: 18px; height: 18px; }
body.page-patient-forms /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-patient-forms .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-patient-forms .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-patient-forms .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-patient-forms .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-patient-forms .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-patient-forms .nav-split-cta svg { width: 18px; height: 18px; }
body.page-patient-forms /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-patient-forms .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-patient-forms .nav-dropdown-wrap:hover > .mega-menu,
body.page-patient-forms .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-patient-forms .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-patient-forms .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-patient-forms /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-patient-forms .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-patient-forms .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-patient-forms .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-patient-forms .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-patient-forms .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-patient-forms .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-patient-forms .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-patient-forms .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-patient-forms .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-patient-forms .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-patient-forms .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-patient-forms .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-patient-forms /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-patient-forms .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-patient-forms .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-patient-forms .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-patient-forms .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-patient-forms .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-patient-forms .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-patient-forms .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-patient-forms .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-patient-forms .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-patient-forms .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-patient-forms .mega-team-link a:hover { gap: 10px; }
body.page-patient-forms /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-patient-forms .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-patient-forms .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-patient-forms .mobile-menu.active { display: flex; }
body.page-patient-forms .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-patient-forms .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-patient-forms .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-patient-forms .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-patient-forms .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-patient-forms .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-patient-forms .mobile-accordion-content.open { display: block; }
body.page-patient-forms .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-patient-forms .mobile-accordion-content a:hover { color: #E07820; }
body.page-patient-forms .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-patient-forms /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-patient-forms .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-patient-forms .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-patient-forms .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-patient-forms .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-patient-forms .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-patient-forms .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-patient-forms .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-patient-forms .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-patient-forms .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-patient-forms .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-patient-forms .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-patient-forms .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-patient-forms .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-patient-forms .btn-primary svg { width: 18px; height: 18px; }
body.page-patient-forms .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-patient-forms .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-patient-forms /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-patient-forms .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-patient-forms .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-patient-forms .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-patient-forms .about-cards { display: flex; gap: 20px; }
body.page-patient-forms .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-patient-forms .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-patient-forms .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-patient-forms .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-patient-forms .about-card p { font-size: 16px; line-height: 1.5; }
body.page-patient-forms .about-card p strong { color: #1B3828; }
body.page-patient-forms .about-card p span.dash { color: #1B3828; }
body.page-patient-forms .about-card p span.desc { color: #6a7282; }
body.page-patient-forms /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-patient-forms .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-patient-forms .services-row { display: flex; gap: 20px; }
body.page-patient-forms .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-patient-forms .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-patient-forms .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-patient-forms .service-card:hover::after { width: 100%; }
body.page-patient-forms .service-icon,
body.page-patient-forms .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-patient-forms .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-patient-forms .service-card:hover .service-icon.dark { background: #E07820; }
body.page-patient-forms .service-card h3 { transition: color 0.3s; }
body.page-patient-forms .service-card:hover h3 { color: #E07820; }
body.page-patient-forms .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-patient-forms .service-card:hover .service-link { transform: translateX(6px); }
body.page-patient-forms .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-patient-forms .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-patient-forms .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-patient-forms .service-card.third { flex: 1; }
body.page-patient-forms .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-patient-forms .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-patient-forms .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-patient-forms .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-patient-forms .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-patient-forms .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-patient-forms .service-card .service-link:hover { text-decoration: underline; }
body.page-patient-forms /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-patient-forms .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-patient-forms .physicians-header-text { max-width: 580px; }
body.page-patient-forms .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-patient-forms .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-patient-forms .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-patient-forms .physicians-nav .prev:hover { border-color: #E07820; }
body.page-patient-forms .physicians-nav .next { background: #E07820; border: none; }
body.page-patient-forms .physicians-nav .next:hover { background: #C5661A; }
body.page-patient-forms .physicians-nav svg { width: 20px; height: 20px; }
body.page-patient-forms .physicians-nav .prev svg { color: #6a7282; }
body.page-patient-forms .physicians-nav .next svg { color: #fff; }
body.page-patient-forms .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-patient-forms .physicians-grid::-webkit-scrollbar { display: none; }
body.page-patient-forms .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-patient-forms .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-patient-forms .physician-card:hover .card-img { transform: scale(1.05); }
body.page-patient-forms /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-patient-forms /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-patient-forms .physician-card:hover .card-overlay { opacity: 1; }
body.page-patient-forms .physician-card:hover::after { opacity: 0; }
body.page-patient-forms /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-patient-forms .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-patient-forms .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-patient-forms /* Hover state - move info up,
body.page-patient-forms show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-patient-forms .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-patient-forms .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-patient-forms .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-patient-forms .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-patient-forms .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-patient-forms /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-patient-forms .testimonials .section-title { color: #fff; }
body.page-patient-forms .quote-icon { margin: 0 auto 42px; }
body.page-patient-forms .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-patient-forms .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-patient-forms .testimonial-card { min-width: 477px; position: relative; }
body.page-patient-forms .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-patient-forms .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-patient-forms .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-patient-forms .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-patient-forms .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-patient-forms .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-patient-forms .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-patient-forms .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-patient-forms .testimonials-arrows button:hover { color: #E07820; }
body.page-patient-forms .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-patient-forms /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-patient-forms .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-patient-forms .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-patient-forms .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-patient-forms .blog-grid { display: flex; gap: 32px; }
body.page-patient-forms .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-patient-forms .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-patient-forms .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-patient-forms .blog-card-body { padding: 24px; }
body.page-patient-forms .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-patient-forms .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-patient-forms .blog-date { font-size: 12px; color: #6a7282; }
body.page-patient-forms .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-patient-forms .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-patient-forms .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-patient-forms .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-patient-forms /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-patient-forms .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-patient-forms .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-patient-forms .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-patient-forms .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-patient-forms .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-patient-forms .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-patient-forms .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-patient-forms /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-patient-forms .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-patient-forms .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-patient-forms .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-patient-forms .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-patient-forms .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-patient-forms .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-patient-forms .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-patient-forms .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-patient-forms .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-patient-forms .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-patient-forms .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-patient-forms .location-card .book-link:hover { gap: 12px; }
body.page-patient-forms .location-card .book-link svg { width: 16px; height: 16px; }
body.page-patient-forms /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-patient-forms .faq-list { margin-top: 48px; }
body.page-patient-forms .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-patient-forms .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-patient-forms .faq-question:hover { color: #E07820; }
body.page-patient-forms .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-patient-forms .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-patient-forms .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-patient-forms .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-patient-forms .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-patient-forms .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-patient-forms .faq-footer { text-align: center; margin-top: 32px; }
body.page-patient-forms .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-patient-forms .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-patient-forms .faq-footer a svg { width: 16px; height: 16px; }
body.page-patient-forms /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-patient-forms .contact-info { flex: 1; color: #fff; }
body.page-patient-forms .contact-info .section-label { color: #E07820; text-align: left; }
body.page-patient-forms .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-patient-forms .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-patient-forms .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-patient-forms .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-patient-forms .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-patient-forms /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-patient-forms .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-patient-forms .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-patient-forms .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-patient-forms .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-patient-forms .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-patient-forms .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-patient-forms .contact-location-phone:hover { color: #fff; }
body.page-patient-forms .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-patient-forms .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-patient-forms .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-patient-forms .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-patient-forms .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-patient-forms .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-patient-forms .form-group { flex: 1; }
body.page-patient-forms .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-patient-forms .form-group label span { color: #E07820; }
body.page-patient-forms .form-group input,
body.page-patient-forms .form-group select,
body.page-patient-forms .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-patient-forms .form-group input::placeholder,
body.page-patient-forms .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-patient-forms .form-group select { color: rgba(255,255,255,0.3); }
body.page-patient-forms .form-group select option { background: #1B3828; color: #fff; }
body.page-patient-forms .form-group input:focus,
body.page-patient-forms .form-group select:focus,
body.page-patient-forms .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-patient-forms .form-group textarea { resize: vertical; min-height: 120px; }
body.page-patient-forms .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-patient-forms .form-submit:hover { background: #C5661A; }
body.page-patient-forms .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-patient-forms /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-patient-forms .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-patient-forms .footer-col { flex: 1; }
body.page-patient-forms .footer-col:first-child { flex: 1.2; }
body.page-patient-forms .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-patient-forms .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-patient-forms .footer-social { display: flex; gap: 16px; }
body.page-patient-forms .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-patient-forms .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-patient-forms .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-patient-forms .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-patient-forms .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-patient-forms .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-patient-forms .footer-links a:hover { color: #E07820; }
body.page-patient-forms .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-patient-forms .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-patient-forms .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-patient-forms .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-patient-forms .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-patient-forms .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-patient-forms .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-patient-forms .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-patient-forms .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-patient-forms .footer-legal { display: flex; gap: 24px; }
body.page-patient-forms .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-patient-forms .footer-legal a:hover { color: #E07820; }
body.page-patient-forms /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-patient-forms .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-patient-forms .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-patient-forms .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-patient-forms .stagger-1 { transition-delay: 0.1s; }
body.page-patient-forms .stagger-2 { transition-delay: 0.2s; }
body.page-patient-forms .stagger-3 { transition-delay: 0.3s; }
body.page-patient-forms .stagger-4 { transition-delay: 0.4s; }
body.page-patient-forms /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-patient-forms .top-bar { display: none; }
body.page-patient-forms .location-bar { padding: 12px 20px; }
body.page-patient-forms .location-items { flex-wrap: wrap; gap: 20px; }
body.page-patient-forms .social-icons { display: none; }
body.page-patient-forms .navbar { padding: 12px 20px; }
body.page-patient-forms .nav-links { display: none; }
body.page-patient-forms .mega-menu { display: none !important; }
body.page-patient-forms .hamburger { display: flex; }
body.page-patient-forms .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-patient-forms .nav-cta svg { width: 14px; height: 14px; }
body.page-patient-forms .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-patient-forms .hero-content { padding-bottom: 40px; }
body.page-patient-forms .hero h1 { font-size: 36px; }
body.page-patient-forms .hero-buttons { flex-wrap: wrap; }
body.page-patient-forms .hero-image img { height: 320px; }
body.page-patient-forms .about,
body.page-patient-forms .services,
body.page-patient-forms .physicians,
body.page-patient-forms .locations { padding: 60px 20px; }
body.page-patient-forms .about-cards { flex-direction: column; }
body.page-patient-forms .services-row { flex-direction: column; }
body.page-patient-forms .service-card.large,
body.page-patient-forms .service-card.small { flex: none; width: 100%; }
body.page-patient-forms .physicians-header { flex-direction: column; gap: 20px; }
body.page-patient-forms .physician-card { min-width: 260px; }
body.page-patient-forms .testimonials { padding: 60px 20px; }
body.page-patient-forms .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-patient-forms .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-patient-forms .blog { padding: 60px 20px; }
body.page-patient-forms .blog-grid { flex-direction: column; }
body.page-patient-forms .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-patient-forms .insurance { padding: 60px 20px; }
body.page-patient-forms .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-patient-forms .insurance-logo { width: 140px; height: 140px; }
body.page-patient-forms .locations-grid { flex-direction: column; }
body.page-patient-forms .faq { padding: 60px 20px; }
body.page-patient-forms .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-patient-forms .footer { padding: 40px 20px 0; }
body.page-patient-forms .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-patient-forms .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-patient-forms .footer-col:first-child { flex: 0 0 100%; }
body.page-patient-forms .footer-member { flex-direction: column; gap: 12px; }
body.page-patient-forms .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-patient-forms .navbar { padding: 10px 12px; gap: 6px; }
body.page-patient-forms .nav-logo { height: 52px; }
body.page-patient-forms .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-patient-forms .nav-cta svg { width: 11px; height: 11px; }
body.page-patient-forms .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-patient-forms .hamburger span { width: 20px; }
body.page-patient-forms .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-patient-forms .hero p { font-size: 14px; }
body.page-patient-forms .hero-image img { height: 260px; }
body.page-patient-forms .section-title { font-size: 28px; }
body.page-patient-forms .section-label { font-size: 12px; }
body.page-patient-forms .location-bar { padding: 8px 12px; }
body.page-patient-forms .location-items { gap: 12px; }
body.page-patient-forms .location-item { gap: 8px; }
body.page-patient-forms .location-name { font-size: 13px; }
body.page-patient-forms .location-sub { font-size: 10px; }
body.page-patient-forms .location-icon { width: 32px; height: 32px; }
body.page-patient-forms .location-icon svg { width: 14px; height: 14px; }
body.page-patient-forms .physician-card { min-width: 240px; height: 320px; }
body.page-patient-forms .contact-info .section-title { font-size: 32px; }
body.page-patient-forms .contact { padding: 40px 16px; gap: 32px; }
body.page-patient-forms .contact-form { padding: 24px; }
body.page-patient-forms .footer-col { flex: 0 0 100%; }
body.page-patient-forms .footer-logo { height: 32px; }
body.page-patient-forms .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-patient-forms .insurance-logos { gap: 12px; }
body.page-patient-forms .insurance-logo { width: 100px; height: 100px; }
body.page-patient-forms .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-patient-forms .form-row { flex-direction: column; gap: 16px; }
body.page-patient-forms .blog-card-image { height: 180px; }


}

/* ===== physician-profile.html ===== */
body.page-physician-profile, body.page-physician-profile *,
body.page-physician-profile *::before,
body.page-physician-profile *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-physician-profile { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-physician-profile a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-physician-profile ul { list-style: none; }
body.page-physician-profile img { max-width: 100%; height: auto; }
body.page-physician-profile button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-physician-profile /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-physician-profile .top-bar a { color: #1B3828; }
body.page-physician-profile .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-physician-profile .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-physician-profile .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-physician-profile .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-physician-profile .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-physician-profile .top-bar-social svg { width: 15px; height: 15px; }
body.page-physician-profile .top-bar-center { font-weight: 400; }
body.page-physician-profile .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-physician-profile .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-physician-profile .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-physician-profile .top-bar-right .login-btn,
body.page-physician-profile .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-physician-profile .login-btn:hover svg { color: #E07820; }
body.page-physician-profile .lang-btn .chevron { width: 8px; height: 5px; }
body.page-physician-profile .lang-btn { position: relative; }
body.page-physician-profile .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-physician-profile .lang-dropdown.open { display: block; }
body.page-physician-profile .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-physician-profile .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-physician-profile /* ===== LOCATION BAR ===== */
.location-bar { background: #1B3828; padding: 12px 138px; display: flex; align-items: center; justify-content: space-between; }
body.page-physician-profile .location-items { display: flex; align-items: center; gap: 40px; }
body.page-physician-profile .location-item { display: flex; align-items: center; gap: 16px; cursor: pointer; padding: 10px 16px; border-radius: 12px; transition: background 0.3s; }
body.page-physician-profile .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-physician-profile .location-icon { width: 44px; height: 45px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
body.page-physician-profile .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-physician-profile .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-physician-profile .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-physician-profile .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-physician-profile .location-item:hover .location-icon svg { color: #fff; }
body.page-physician-profile .social-icons { display: flex; gap: 16px; }
body.page-physician-profile .social-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
body.page-physician-profile .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-physician-profile .social-icon:hover svg { color: #fff; }
body.page-physician-profile .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
@media (max-width: 1200px) {
body.page-physician-profile .location-bar { padding-left: 40px; padding-right: 40px; }
 
}
@media (max-width: 992px) {
body.page-physician-profile .location-bar { padding: 12px 20px; }
body.page-physician-profile .location-items { flex-wrap: wrap; gap: 20px; }
 
}
@media (max-width: 576px) {
body.page-physician-profile .location-bar { padding: 8px 12px; }
body.page-physician-profile .location-items { gap: 12px; }
body.page-physician-profile .location-item { gap: 8px; }
 
}
body.page-physician-profile /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-physician-profile .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
body.page-physician-profile .nav-logo { height: 72px; width: auto; }
body.page-physician-profile .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-physician-profile .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-physician-profile .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-physician-profile .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-physician-profile .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-physician-profile .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-physician-profile .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-physician-profile .nav-cta svg { width: 18px; height: 18px; }
body.page-physician-profile /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-physician-profile .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150; padding: 32px 138px;
}
body.page-physician-profile .nav-dropdown-wrap:hover > .mega-menu,
body.page-physician-profile .mega-menu:hover { opacity: 1; visibility: visible; transform: translateY(0); }
body.page-physician-profile .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-physician-profile .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-physician-profile .mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-physician-profile .mega-col-title { font-size: 12px; font-weight: 600; color: #E07820; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
body.page-physician-profile .mega-service-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; transition: background 0.2s; }
body.page-physician-profile .mega-service-dot { width: 8px; height: 8px; min-width: 8px; background: #E07820; border-radius: 50%; margin-top: 6px; }
body.page-physician-profile .mega-service-name { font-size: 14px; font-weight: 600; color: #1B3828; transition: color 0.2s; display: block; }
body.page-physician-profile .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-physician-profile .mega-service-desc { font-size: 12px; font-weight: 300; color: #6a7282; margin-top: 2px; line-height: 1.4; }
body.page-physician-profile .mega-cta-sidebar { background: #1B3828; border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; }
body.page-physician-profile .mega-cta-sidebar p { font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5; }
body.page-physician-profile .mega-cta-sidebar .mega-cta-btn { background: #E07820; color: #fff; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; }
body.page-physician-profile .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-physician-profile .mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-physician-profile .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-physician-profile .mega-physician-card { border-left: 3px solid #E07820; padding: 14px 16px; background: #FAFBFA; border-radius: 0 10px 10px 0; transition: box-shadow 0.2s, background 0.2s; }
body.page-physician-profile .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-physician-profile .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-physician-profile .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-physician-profile .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-physician-profile .mega-physician-link { font-size: 12px; font-weight: 600; color: #1B3828; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
body.page-physician-profile .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-physician-profile .mega-team-link { text-align: center; padding-top: 4px; }
body.page-physician-profile .mega-team-link a { font-size: 14px; font-weight: 600; color: #E07820; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
body.page-physician-profile .mega-team-link a:hover { gap: 10px; }
body.page-physician-profile /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-physician-profile .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-physician-profile .mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200; flex-direction: column; padding: 80px 24px 24px; overflow-y: auto;
}
body.page-physician-profile .mobile-menu.active { display: flex; }
body.page-physician-profile .mobile-menu-close { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; color: #1B3828; background: none; border: none; font-family: inherit; }
body.page-physician-profile .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-physician-profile .mobile-accordion-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 20px; font-weight: 300; color: #1B3828; padding: 16px 0; border-bottom: 1px solid #e5e7eb; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: inherit; }
body.page-physician-profile .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-physician-profile .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-physician-profile .mobile-accordion-content { display: none; padding: 0 0 8px 16px; }
body.page-physician-profile .mobile-accordion-content.open { display: block; }
body.page-physician-profile .mobile-accordion-content a { display: block; font-size: 15px; font-weight: 400; color: #1B3828; padding: 10px 0; border-bottom: 1px solid #f0f1f3; transition: color 0.2s; }
body.page-physician-profile .mobile-accordion-content a:hover { color: #E07820; }
body.page-physician-profile .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-physician-profile /* ===== HERO ===== */
.hero {
  min-height: 560px;
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  overflow: hidden;
}
body.page-physician-profile .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,120,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}
body.page-physician-profile .hero-content {
  padding: 80px 0 80px 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; z-index: 2;
}
body.page-physician-profile .hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: #E07820; font-size: 14px; font-weight: 500;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
body.page-physician-profile .hero-breadcrumb:hover { opacity: 0.8; }
body.page-physician-profile .hero-breadcrumb svg { width: 16px; height: 16px; }
body.page-physician-profile .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 7px 20px;
  margin-bottom: 20px;
  width: fit-content;
}
body.page-physician-profile .hero-badge-dot { width: 8px; height: 8px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-physician-profile .hero-badge span { font-size: 13px; font-weight: 300; color: #fff; }
body.page-physician-profile .hero-name {
  font-size: 52px; font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 10px;
}
body.page-physician-profile .hero-credentials {
  font-size: 18px; font-weight: 400; color: #E07820;
  margin-bottom: 8px;
}
body.page-physician-profile .hero-role {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
body.page-physician-profile .hero-divider {
  width: 64px; height: 3px;
  background: #E07820;
  border-radius: 2px;
  margin-bottom: 36px;
}
body.page-physician-profile .hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
body.page-physician-profile .btn-orange {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  border: 2px solid #E07820;
}
body.page-physician-profile .btn-orange:hover { background: #C5661A; border-color: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-physician-profile .btn-outline-white {
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}
body.page-physician-profile .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
body.page-physician-profile .btn-outline-white svg,
body.page-physician-profile .btn-orange svg { width: 18px; height: 18px; }
body.page-physician-profile .hero-photo {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
body.page-physician-profile .hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
body.page-physician-profile /* Transparent cutout physician photos */
.hero-cutout {
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
body.page-physician-profile .hero-cutout img {
  object-fit: contain;
  object-position: center bottom;
  width: auto;
  max-width: 100%;
  height: 100%;
}
body.page-physician-profile .hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
}
body.page-physician-profile .hero-initials {
  font-size: 96px; font-weight: 700; color: rgba(255,255,255,0.12);
  letter-spacing: -4px;
  line-height: 1;
}
body.page-physician-profile .hero-placeholder-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 2px;
}
body.page-physician-profile /* ===== STATS STRIP ===== */
.stats-strip {
  background: #EAF4ED;
  padding: 32px 130px;
  display: flex;
  align-items: center;
  gap: 0;
}
body.page-physician-profile .stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
body.page-physician-profile .stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(27,56,40,0.15);
}
body.page-physician-profile .stat-value { font-size: 40px; font-weight: 700; color: #1B3828; line-height: 1.1; }
body.page-physician-profile .stat-label { font-size: 13px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }
body.page-physician-profile /* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
  padding: 80px 130px;
}
body.page-physician-profile .about-grid {
  display: grid;
  grid-template-columns: 60fr 38fr;
  gap: 56px;
  align-items: start;
}
body.page-physician-profile .section-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.6px;
  margin-bottom: 16px;
}
body.page-physician-profile .about-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  line-height: 1.3;
  margin-bottom: 24px;
}
body.page-physician-profile .about-bio p {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.7;
  margin-bottom: 20px;
}
body.page-physician-profile .about-bio p:last-child { margin-bottom: 0; }
body.page-physician-profile .glance-card {
  background: #EDF5EF;
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 100px;
}
body.page-physician-profile .glance-title {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.2px; color: #1B3828;
  margin-bottom: 24px;
}
body.page-physician-profile .glance-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,56,40,0.08);
}
body.page-physician-profile .glance-row:last-of-type { border-bottom: none; margin-bottom: 8px; }
body.page-physician-profile .glance-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(224,120,32,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-physician-profile .glance-icon svg { width: 16px; height: 16px; color: #E07820; }
body.page-physician-profile .glance-label { font-size: 12px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.6px; }
body.page-physician-profile .glance-value { font-size: 15px; font-weight: 600; color: #1B3828; margin-top: 2px; }
body.page-physician-profile .glance-btn {
  display: block; width: 100%;
  background: #E07820; color: #fff;
  padding: 14px 20px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  text-align: center;
  margin-top: 24px;
  transition: all 0.3s;
}
body.page-physician-profile .glance-btn:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.25); }
body.page-physician-profile /* ===== EDUCATION & TRAINING ===== */
.education-section {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-physician-profile .section-header {
  text-align: center;
  margin-bottom: 64px;
}
body.page-physician-profile .section-header .section-label { justify-content: center; }
body.page-physician-profile .section-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  margin-bottom: 12px;
  line-height: 1.3;
}
body.page-physician-profile .section-sub {
  font-size: 16px; color: #6a7282; max-width: 540px; margin: 0 auto;
}
body.page-physician-profile .timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
body.page-physician-profile .timeline-line {
  position: absolute;
  left: 80px; top: 0; bottom: 0;
  width: 2px;
  background: #E07820;
}
body.page-physician-profile .timeline-entry {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  position: relative;
}
body.page-physician-profile .timeline-entry:last-child { margin-bottom: 0; }
body.page-physician-profile .timeline-year-col {
  width: 80px; min-width: 80px;
  display: flex; align-items: flex-start;
  justify-content: flex-end;
  padding-top: 22px;
}
body.page-physician-profile .year-badge {
  background: #1B3828; color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
body.page-physician-profile .timeline-dot {
  position: absolute;
  left: 80px; top: 26px;
  width: 12px; height: 12px;
  background: #E07820;
  border-radius: 50%;
  border: 3px solid #EDF5EF;
  transform: translateX(-5px);
  z-index: 2;
}
body.page-physician-profile .timeline-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
body.page-physician-profile .timeline-deg {
  font-size: 18px; font-weight: 600; color: #1B3828;
  margin-bottom: 6px;
}
body.page-physician-profile .timeline-inst {
  font-size: 15px; font-weight: 500; color: #E07820;
  margin-bottom: 8px;
}
body.page-physician-profile .timeline-loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #6a7282;
}
body.page-physician-profile .timeline-loc svg { width: 13px; height: 13px; color: #E07820; }
body.page-physician-profile /* ===== EXPERTISE ===== */
.expertise-section {
  background: #fff;
  padding: 80px 130px;
}
body.page-physician-profile .expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}
body.page-physician-profile .expertise-tag {
  border: 1.5px solid #1B3828;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px; font-weight: 500; color: #1B3828;
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
body.page-physician-profile .expertise-tag:hover { background: #1B3828; color: #fff; }
body.page-physician-profile /* ===== CERTIFICATIONS & MEMBERSHIPS ===== */
.certs-section {
  background: #EAF4ED;
  padding: 80px 130px;
}
body.page-physician-profile .certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
body.page-physician-profile .certs-col-title {
  font-size: 16px; font-weight: 600; color: #1B3828;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(27,56,40,0.1);
}
body.page-physician-profile .cert-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
body.page-physician-profile .cert-item:last-child { margin-bottom: 0; }
body.page-physician-profile .cert-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(224,120,32,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
body.page-physician-profile .cert-icon svg { width: 14px; height: 14px; color: #E07820; }
body.page-physician-profile .cert-text { font-size: 15px; color: #1B3828; line-height: 1.5; }
body.page-physician-profile /* ===== HOSPITAL AFFILIATIONS ===== */
.affiliations-section {
  background: #fff;
  padding: 80px 130px;
}
body.page-physician-profile .affiliation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
}
body.page-physician-profile .affiliation-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  min-width: 280px;
  flex: 1;
  max-width: 380px;
}
body.page-physician-profile .affiliation-card:hover { background: #EDF5EF; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
body.page-physician-profile .affiliation-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(224,120,32,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
body.page-physician-profile .affiliation-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-physician-profile .affiliation-name { font-size: 16px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-physician-profile .affiliation-city { font-size: 13px; color: #6a7282; }
body.page-physician-profile /* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 80px 130px;
  text-align: center;
}
body.page-physician-profile .cta-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
body.page-physician-profile .cta-h2 {
  font-size: 40px; font-weight: 700; color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
body.page-physician-profile .cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
body.page-physician-profile .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-physician-profile /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-physician-profile .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-physician-profile .footer-col { flex: 1; }
body.page-physician-profile .footer-col:first-child { flex: 1.2; }
body.page-physician-profile .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-physician-profile .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-physician-profile .footer-social { display: flex; gap: 16px; }
body.page-physician-profile .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-physician-profile .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-physician-profile .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-physician-profile .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-physician-profile .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-physician-profile .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
body.page-physician-profile .footer-links a:hover { color: #E07820; }
body.page-physician-profile .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-physician-profile .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-physician-profile .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-physician-profile .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-physician-profile .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-physician-profile .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-physician-profile .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-physician-profile .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-physician-profile .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-physician-profile .footer-legal { display: flex; gap: 24px; }
body.page-physician-profile .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-physician-profile .footer-legal a:hover { color: #E07820; }
body.page-physician-profile /* ===== NOT FOUND ===== */
.not-found {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
body.page-physician-profile .not-found h1 { font-size: 36px; font-weight: 700; color: #1B3828; margin-bottom: 16px; }
body.page-physician-profile .not-found p { font-size: 16px; color: #6a7282; margin-bottom: 32px; }
body.page-physician-profile .not-found a {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}
body.page-physician-profile .not-found a:hover { background: #C5661A; }
body.page-physician-profile /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-physician-profile .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-physician-profile .stagger-1 { transition-delay: 0.1s; }
body.page-physician-profile .stagger-2 { transition-delay: 0.2s; }
body.page-physician-profile .stagger-3 { transition-delay: 0.3s; }
body.page-physician-profile .stagger-4 { transition-delay: 0.4s; }
body.page-physician-profile /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar { padding-left: 40px; padding-right: 40px; }
  .navbar { padding: 14px 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding: 80px 0 80px 40px; }
  .stats-strip { padding: 32px 40px; }
  .about-section, .education-section, .expertise-section, .certs-section, .affiliations-section, .cta-band { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 992px) {
body.page-physician-profile .top-bar { display: none; }
body.page-physician-profile .mega-menu { display: none !important; }
body.page-physician-profile .navbar { padding: 12px 20px; }
body.page-physician-profile .nav-links { display: none; }
body.page-physician-profile .hamburger { display: flex; }
body.page-physician-profile .nav-cta { font-size: 13px; padding: 8px 16px; }
body.page-physician-profile .hero { grid-template-columns: 1fr; min-height: auto; }
body.page-physician-profile .hero-content { padding: 60px 20px 40px; }
body.page-physician-profile .hero-name { font-size: 38px; }
body.page-physician-profile .hero-photo { min-height: 340px; }
body.page-physician-profile .hero-photo img { object-position: center 15%; }
body.page-physician-profile .stats-strip { padding: 24px 20px; flex-wrap: wrap; gap: 0; }
body.page-physician-profile .stat-item { flex: 0 0 50%; padding: 16px 12px; }
body.page-physician-profile .stat-item:nth-child(2n)::after { display: none; }
body.page-physician-profile .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(27,56,40,0.15); }
body.page-physician-profile .stat-item::after { display: none; }
body.page-physician-profile .stat-item:not(:nth-child(2n))::after { display: block; }
body.page-physician-profile .about-section,
body.page-physician-profile .education-section,
body.page-physician-profile .expertise-section,
body.page-physician-profile .certs-section,
body.page-physician-profile .affiliations-section,
body.page-physician-profile .cta-band { padding: 60px 20px; }
body.page-physician-profile .about-grid { grid-template-columns: 1fr; gap: 36px; }
body.page-physician-profile .glance-card { position: static; }
body.page-physician-profile .certs-grid { grid-template-columns: 1fr; gap: 36px; }
body.page-physician-profile .affiliation-card { min-width: 100%; max-width: 100%; }
body.page-physician-profile .timeline { padding-left: 20px; }
body.page-physician-profile .timeline-line { left: 60px; }
body.page-physician-profile .timeline-year-col { width: 60px; min-width: 60px; }
body.page-physician-profile .timeline-dot { left: 60px; }
body.page-physician-profile .footer { padding: 40px 20px 0; }
body.page-physician-profile .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-physician-profile .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-physician-profile .footer-col:first-child { flex: 0 0 100%; }
body.page-physician-profile .footer-member { flex-direction: column; gap: 12px; }
body.page-physician-profile .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
body.page-physician-profile .cta-h2 { font-size: 30px; }


}
@media (max-width: 576px) {
body.page-physician-profile .navbar { padding: 10px 12px; }
body.page-physician-profile .nav-cta { font-size: 11px; padding: 6px 10px; white-space: nowrap; }
body.page-physician-profile .hero-name { font-size: 30px; letter-spacing: -1px; }
body.page-physician-profile .hero-credentials { font-size: 16px; }
body.page-physician-profile .hero-buttons { flex-direction: column; gap: 12px; align-items: flex-start; }
body.page-physician-profile .btn-orange,
body.page-physician-profile .btn-outline-white { width: 100%; justify-content: center; }
body.page-physician-profile .stat-value { font-size: 30px; }
body.page-physician-profile .about-h2,
body.page-physician-profile .section-h2 { font-size: 28px; }
body.page-physician-profile .timeline-card { padding: 20px; }
body.page-physician-profile .timeline-deg { font-size: 16px; }
body.page-physician-profile .footer-col { flex: 0 0 100%; }
body.page-physician-profile .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-physician-profile .cta-h2 { font-size: 24px; }
body.page-physician-profile .cta-buttons { flex-direction: column; align-items: center; }
body.page-physician-profile .cta-buttons .btn-orange,
body.page-physician-profile .cta-buttons .btn-outline-white { width: 100%; max-width: 320px; justify-content: center; }
body.page-physician-profile .section-header { margin-bottom: 40px; }


}
body.page-physician-profile /* === Synced from home page nav (updated 2026) === */
.nav-logo { height: 72px; width: auto; }
body.page-physician-profile .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-physician-profile .nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-physician-profile .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-physician-profile .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-physician-profile .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-physician-profile .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-physician-profile .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-physician-profile .nav-split-cta svg { width: 18px; height: 18px; }
body.page-physician-profile .mega-cta-sidebar.with-image { position: relative; overflow: hidden; min-height: 220px; background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg'); background-size: cover; background-position: center; justify-content: flex-end; }
body.page-physician-profile .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-physician-profile .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }

/* ===== service.html ===== */
body.page-service, body.page-service *,
body.page-service *::before,
body.page-service *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-service { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-service a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-service ul { list-style: none; }
body.page-service img { max-width: 100%; height: auto; }
body.page-service button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-service /* ===== TOP BAR ===== */
.top-bar { background: #EAF4ED; color: #1B3828; height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 138px; font-size: 13px; font-weight: 400; }
body.page-service .top-bar a { color: #1B3828; }
body.page-service .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-service .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-service .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-service .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-service .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-service .top-bar-social svg { width: 15px; height: 15px; }
body.page-service .top-bar-center { font-weight: 400; }
body.page-service .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-service .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-service .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-service .top-bar-right .login-btn,
body.page-service .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-service .login-btn:hover svg { color: #E07820; }
body.page-service .lang-btn .chevron { width: 8px; height: 5px; }
body.page-service .lang-btn { position: relative; }
body.page-service .lang-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 8px; background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); min-width: 140px; overflow: hidden; z-index: 200; }
body.page-service .lang-dropdown.open { display: block; }
body.page-service .lang-option { display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828; text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s; }
body.page-service .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-service /* ===== LOCATION BAR ===== */
.location-bar { background: #1B3828; padding: 12px 138px; display: flex; align-items: center; justify-content: space-between; }
body.page-service .location-items { display: flex; align-items: center; gap: 40px; }
body.page-service .location-item { display: flex; align-items: center; gap: 16px; cursor: pointer; padding: 10px 16px; border-radius: 12px; transition: background 0.3s; }
body.page-service .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-service .location-icon { width: 44px; height: 45px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
body.page-service .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-service .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-service .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-service .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-service .location-item:hover .location-icon svg { color: #fff; }
body.page-service .social-icons { display: flex; gap: 16px; }
body.page-service .social-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
body.page-service .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-service .social-icon:hover svg { color: #fff; }
body.page-service .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
@media (max-width: 1200px) {
body.page-service .location-bar { padding-left: 40px; padding-right: 40px; }
 
}
@media (max-width: 992px) {
body.page-service .location-bar { padding: 12px 20px; }
body.page-service .location-items { flex-wrap: wrap; gap: 20px; }
 
}
@media (max-width: 576px) {
body.page-service .location-bar { padding: 8px 12px; }
body.page-service .location-items { gap: 12px; }
body.page-service .location-item { gap: 8px; }
 
}
body.page-service /* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 100; background: #fff; padding: 14px 138px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
body.page-service .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
body.page-service .nav-logo { height: 72px; width: auto; }
body.page-service .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-service .nav-link { font-size: 15px; font-weight: 300; color: #1B3828; padding: 10px; position: relative; display: flex; align-items: center; gap: 6px; transition: color 0.3s, font-weight 0.3s; }
body.page-service .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-service .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-service .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-service .nav-cta { background: #1B3828; color: #fff; padding: 8px 24px; border-radius: 30px; font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
body.page-service .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-service .nav-cta svg { width: 18px; height: 18px; }
body.page-service /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-service .mega-menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.10); border-radius: 0 0 16px 16px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; z-index: 150; padding: 32px 138px; }
body.page-service .nav-dropdown-wrap:hover > .mega-menu,
body.page-service .mega-menu:hover { opacity: 1; visibility: visible; transform: translateY(0); }
body.page-service .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-service .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-service .mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-service .mega-col-title { font-size: 12px; font-weight: 600; color: #E07820; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
body.page-service .mega-service-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; transition: background 0.2s; }
body.page-service .mega-service-dot { width: 8px; height: 8px; min-width: 8px; background: #E07820; border-radius: 50%; margin-top: 6px; }
body.page-service .mega-service-name { font-size: 14px; font-weight: 600; color: #1B3828; transition: color 0.2s; display: block; }
body.page-service .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-service .mega-service-desc { font-size: 12px; font-weight: 300; color: #6a7282; margin-top: 2px; line-height: 1.4; }
body.page-service .mega-cta-sidebar { background: #1B3828; border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; }
body.page-service .mega-cta-sidebar p { font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5; }
body.page-service .mega-cta-sidebar .mega-cta-btn { background: #E07820; color: #fff; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; }
body.page-service .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-service .mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-service .mega-physician-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
body.page-service .mega-physician-card { border-left: 3px solid #E07820; padding: 14px 16px; background: #FAFBFA; border-radius: 0 10px 10px 0; transition: box-shadow 0.2s, background 0.2s; }
body.page-service .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-service .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-service .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-service .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-service .mega-physician-link { font-size: 12px; font-weight: 600; color: #1B3828; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
body.page-service .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-service .mega-team-link { text-align: center; padding-top: 4px; }
body.page-service .mega-team-link a { font-size: 14px; font-weight: 600; color: #E07820; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
body.page-service .mega-team-link a:hover { gap: 10px; }
body.page-service /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-service .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-service .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 200; flex-direction: column; padding: 80px 24px 24px; overflow-y: auto; }
body.page-service .mobile-menu.active { display: flex; }
body.page-service .mobile-menu-close { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; color: #1B3828; background: none; border: none; font-family: inherit; }
body.page-service .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-service .mobile-accordion-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 20px; font-weight: 300; color: #1B3828; padding: 16px 0; border-bottom: 1px solid #e5e7eb; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: inherit; }
body.page-service .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-service .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-service .mobile-accordion-content { display: none; padding: 0 0 8px 16px; }
body.page-service .mobile-accordion-content.open { display: block; }
body.page-service .mobile-accordion-content a { display: block; font-size: 15px; font-weight: 400; color: #1B3828; padding: 10px 0; border-bottom: 1px solid #f0f1f3; transition: color 0.2s; }
body.page-service .mobile-accordion-content a:hover { color: #E07820; }
body.page-service .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-service /* ===== HERO ===== */
.hero {
  min-height: 480px;
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  display: grid;
  grid-template-columns: 1fr 480px;
  position: relative;
  overflow: hidden;
}
body.page-service .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,120,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}
body.page-service .hero-content {
  padding: 80px 0 80px 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative; z-index: 2;
}
body.page-service .hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 400;
  margin-bottom: 20px;
}
body.page-service .hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
body.page-service .hero-breadcrumb a:hover { color: #E07820; }
body.page-service .hero-breadcrumb .sep { margin: 0 4px; }
body.page-service .hero-breadcrumb .current { color: #E07820; font-weight: 500; }
body.page-service .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 7px 20px;
  margin-bottom: 20px;
  width: fit-content;
}
body.page-service .hero-badge-dot { width: 8px; height: 8px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-service .hero-badge span { font-size: 13px; font-weight: 300; color: #fff; }
body.page-service .hero-title {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 16px;
}
body.page-service .hero-desc {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.6; max-width: 520px;
  margin-bottom: 32px;
}
body.page-service .hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
body.page-service .btn-orange {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  border: 2px solid #E07820;
}
body.page-service .btn-orange:hover { background: #C5661A; border-color: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-service .btn-outline-white {
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
}
body.page-service .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
body.page-service .btn-outline-white svg,
body.page-service .btn-orange svg { width: 18px; height: 18px; }
body.page-service .hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
body.page-service .hero-visual-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
  padding: 40px;
}
body.page-service .hero-icon-large {
  width: 120px; height: 120px;
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
}
body.page-service .hero-icon-large.service-icon.dark {
  background: #1B3828;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px;
}
body.page-service .hero-icon-large.service-icon.dark img {
  width: 100%; height: 100%; object-fit: contain;
}
body.page-service .hero-icon-large svg { width: 56px; height: 56px; color: #E07820; }
body.page-service .hero-visual-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 2px;
}
body.page-service /* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: #EAF4ED;
  padding: 32px 130px;
  display: flex;
  align-items: center;
}
body.page-service .highlight-item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
body.page-service .highlight-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(27,56,40,0.15);
}
body.page-service .highlight-icon {
  width: 40px; height: 40px;
  background: rgba(224,120,32,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
body.page-service .highlight-icon svg { width: 18px; height: 18px; color: #E07820; }
body.page-service .highlight-value { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.2; }
body.page-service .highlight-label { font-size: 12px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.6px; margin-top: 3px; }
body.page-service /* ===== OVERVIEW SECTION ===== */
.overview-section {
  background: #fff;
  padding: 80px 130px;
}
body.page-service .overview-grid {
  display: grid;
  grid-template-columns: 60fr 38fr;
  gap: 56px;
  align-items: start;
}
body.page-service .section-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.6px;
  margin-bottom: 16px;
}
body.page-service .overview-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  line-height: 1.3;
  margin-bottom: 24px;
}
body.page-service .overview-text p {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.7;
  margin-bottom: 20px;
}
body.page-service .overview-text p:last-child { margin-bottom: 0; }
body.page-service .glance-card {
  background: #EDF5EF;
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 100px;
}
body.page-service .glance-title {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.2px; color: #1B3828;
  margin-bottom: 24px;
}
body.page-service .glance-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,56,40,0.08);
}
body.page-service .glance-row:last-of-type { border-bottom: none; margin-bottom: 8px; }
body.page-service .glance-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(224,120,32,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-service .glance-icon svg { width: 16px; height: 16px; color: #E07820; }
body.page-service .glance-label { font-size: 12px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.6px; }
body.page-service .glance-value { font-size: 15px; font-weight: 600; color: #1B3828; margin-top: 2px; }
body.page-service .glance-btn {
  display: block; width: 100%;
  background: #E07820; color: #fff;
  padding: 14px 20px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  text-align: center;
  margin-top: 24px;
  transition: all 0.3s;
}
body.page-service .glance-btn:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.25); }
body.page-service /* ===== WHAT TO EXPECT ===== */
.expect-section {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-service .section-header {
  text-align: center;
  margin-bottom: 64px;
}
body.page-service .section-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  margin-bottom: 12px;
  line-height: 1.3;
}
body.page-service .section-sub {
  font-size: 16px; color: #6a7282; max-width: 560px; margin: 0 auto;
}
body.page-service .expect-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
body.page-service .expect-steps::before {
  content: '';
  position: absolute;
  top: 56px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E07820 15%, #E07820 85%, transparent 100%);
  z-index: 0;
}
body.page-service .expect-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
body.page-service .expect-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
body.page-service .expect-step-num {
  width: 48px; height: 48px;
  background: #1B3828;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
  margin: 0 auto 20px;
  border: 3px solid #EDF5EF;
}
body.page-service .expect-icon {
  width: 52px; height: 52px;
  background: rgba(224,120,32,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
body.page-service .expect-icon svg { width: 24px; height: 24px; color: #E07820; }
body.page-service .expect-card h3 {
  font-size: 20px; font-weight: 600; color: #1B3828;
  margin-bottom: 12px;
}
body.page-service .expect-card p {
  font-size: 15px; color: #6a7282; line-height: 1.6;
}
body.page-service .expect-card ul {
  list-style: none; text-align: left;
  margin-top: 12px;
}
body.page-service .expect-card ul li {
  font-size: 14px; color: #6a7282; line-height: 1.6;
  padding: 4px 0 4px 20px;
  position: relative;
}
body.page-service .expect-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  background: #E07820;
  border-radius: 50%;
}
body.page-service /* ===== CONDITIONS / WHO SHOULD CONSIDER ===== */
.conditions-section {
  background: #fff;
  padding: 80px 130px;
}
body.page-service .conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
body.page-service .condition-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
}
body.page-service .condition-card:hover { background: #EDF5EF; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
body.page-service .condition-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(224,120,32,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
body.page-service .condition-icon svg { width: 18px; height: 18px; color: #E07820; }
body.page-service .condition-card h4 { font-size: 16px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-service .condition-card p { font-size: 14px; color: #6a7282; line-height: 1.5; }
body.page-service /* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 80px 130px;
  position: relative;
  overflow: hidden;
}
body.page-service .why-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 90% 50%, rgba(224,120,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}
body.page-service .why-section .section-header { position: relative; z-index: 1; }
body.page-service .why-section .section-label { color: #E07820; }
body.page-service .why-section .section-h2 { color: #fff; }
body.page-service .why-section .section-sub { color: rgba(255,255,255,0.6); }
body.page-service .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
body.page-service .why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-service .why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(224,120,32,0.3); }
body.page-service .why-card-icon {
  width: 48px; height: 48px;
  background: rgba(224,120,32,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
body.page-service .why-card-icon svg { width: 22px; height: 22px; color: #E07820; }
body.page-service .why-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
body.page-service .why-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
body.page-service /* ===== FAQ ===== */
.faq-section {
  background: #fff;
  padding: 80px 304px;
}
body.page-service .faq-list { margin-top: 48px; }
body.page-service .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-service .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-service .faq-question:hover { color: #E07820; }
body.page-service .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-service .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-service .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-service .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-service .faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
body.page-service .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-service /* ===== RELATED SERVICES ===== */
.related-section {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-service .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
body.page-service .related-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
body.page-service .related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
body.page-service .related-card-icon,
body.page-service .related-card .service-icon.dark {
  width: 44px; height: 45px;
  margin-bottom: 16px;
  transition: background 0.3s, transform 0.3s;
}
body.page-service .related-card .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-service .related-card .service-icon.dark img {
  width: 100%; height: 100%; object-fit: contain;
}
body.page-service .related-card:hover .service-icon.dark {
  background: #E07820;
  transform: rotate(-6deg) scale(1.08);
}
body.page-service .related-card-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-service .related-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; margin-bottom: 8px; }
body.page-service .related-card p { font-size: 14px; color: #6a7282; line-height: 1.5; margin-bottom: 16px; flex: 1; }
body.page-service .related-card .learn-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
body.page-service .related-card .learn-link:hover { gap: 10px; }
body.page-service .related-card .learn-link svg { width: 16px; height: 16px; }
body.page-service .related-empty { text-align: center; color: #6a7282; font-size: 16px; grid-column: 1 / -1; }
body.page-service /* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 80px 130px;
  text-align: center;
}
body.page-service .cta-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
body.page-service .cta-h2 {
  font-size: 40px; font-weight: 700; color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
body.page-service .cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
body.page-service .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-service /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-service .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-service .footer-col { flex: 1; }
body.page-service .footer-col:first-child { flex: 1.2; }
body.page-service .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-service .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-service .footer-social { display: flex; gap: 16px; }
body.page-service .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-service .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-service .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-service .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-service .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-service .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
body.page-service .footer-links a:hover { color: #E07820; }
body.page-service .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-service .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-service .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-service .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-service .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-service .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-service .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-service .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-service .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-service .footer-legal { display: flex; gap: 24px; }
body.page-service .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-service .footer-legal a:hover { color: #E07820; }
body.page-service /* ===== NOT FOUND ===== */
.not-found {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
body.page-service .not-found h1 { font-size: 36px; font-weight: 700; color: #1B3828; margin-bottom: 16px; }
body.page-service .not-found p { font-size: 16px; color: #6a7282; margin-bottom: 32px; }
body.page-service .not-found a {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}
body.page-service .not-found a:hover { background: #C5661A; }
body.page-service /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-service .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-service .stagger-1 { transition-delay: 0.1s; }
body.page-service .stagger-2 { transition-delay: 0.2s; }
body.page-service .stagger-3 { transition-delay: 0.3s; }
body.page-service .stagger-4 { transition-delay: 0.4s; }
body.page-service /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar { padding-left: 40px; padding-right: 40px; }
  .navbar { padding: 14px 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding: 80px 0 80px 40px; }
  .highlights-strip { padding: 32px 40px; }
  .overview-section, .expect-section, .conditions-section, .why-section, .related-section, .cta-band { padding-left: 40px; padding-right: 40px; }
  .faq-section { padding: 80px 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 992px) {
body.page-service .top-bar { display: none; }
body.page-service .mega-menu { display: none !important; }
body.page-service .navbar { padding: 12px 20px; }
body.page-service .nav-links { display: none; }
body.page-service .hamburger { display: flex; }
body.page-service .nav-cta { font-size: 13px; padding: 8px 16px; }
body.page-service .hero { grid-template-columns: 1fr; min-height: auto; }
body.page-service .hero-content { padding: 60px 20px 40px; }
body.page-service .hero-title { font-size: 36px; }
body.page-service .hero-visual { min-height: 240px; }
body.page-service .highlights-strip { padding: 24px 20px; flex-wrap: wrap; }
body.page-service .highlight-item { flex: 0 0 50%; padding: 16px 12px; }
body.page-service .highlight-item:nth-child(2n)::after { display: none; }
body.page-service .highlight-item:nth-child(-n+2) { border-bottom: 1px solid rgba(27,56,40,0.15); }
body.page-service .highlight-item::after { display: none; }
body.page-service .highlight-item:not(:nth-child(2n))::after { display: block; }
body.page-service .overview-section,
body.page-service .expect-section,
body.page-service .conditions-section,
body.page-service .why-section,
body.page-service .related-section,
body.page-service .cta-band { padding: 60px 20px; }
body.page-service .overview-grid { grid-template-columns: 1fr; gap: 36px; }
body.page-service .glance-card { position: static; }
body.page-service .expect-steps { grid-template-columns: 1fr; gap: 20px; }
body.page-service .expect-steps::before { display: none; }
body.page-service .conditions-grid { grid-template-columns: 1fr; }
body.page-service .why-grid { grid-template-columns: 1fr; gap: 20px; }
body.page-service .related-grid { grid-template-columns: 1fr; gap: 20px; }
body.page-service .faq-section { padding: 60px 20px; }
body.page-service .footer { padding: 40px 20px 0; }
body.page-service .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-service .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-service .footer-col:first-child { flex: 0 0 100%; }
body.page-service .footer-member { flex-direction: column; gap: 12px; }
body.page-service .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
body.page-service .cta-h2 { font-size: 30px; }


}
@media (max-width: 576px) {
body.page-service .navbar { padding: 10px 12px; gap: 6px; }
body.page-service .nav-logo svg { height: 28px; width: auto; }
body.page-service .nav-cta { font-size: 11px; padding: 6px 10px; white-space: nowrap; }
body.page-service .nav-cta svg { width: 11px; height: 11px; }
body.page-service .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-service .hamburger span { width: 20px; }
body.page-service .hero-title { font-size: 28px; letter-spacing: -1px; }
body.page-service .hero-desc { font-size: 15px; }
body.page-service .hero-buttons { flex-direction: column; gap: 12px; align-items: flex-start; }
body.page-service .btn-orange,
body.page-service .btn-outline-white { width: 100%; justify-content: center; }
body.page-service .highlight-item { flex: 0 0 100%; }
body.page-service .highlight-item::after { display: none !important; }
body.page-service .highlight-item:not(:last-child) { border-bottom: 1px solid rgba(27,56,40,0.15); }
body.page-service .overview-h2,
body.page-service .section-h2 { font-size: 28px; }
body.page-service .footer-col { flex: 0 0 100%; }
body.page-service .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-service .cta-h2 { font-size: 24px; }
body.page-service .cta-buttons { flex-direction: column; align-items: center; }
body.page-service .cta-buttons .btn-orange,
body.page-service .cta-buttons .btn-outline-white { width: 100%; max-width: 320px; justify-content: center; }


}
body.page-service /* === Synced from home page nav (updated 2026) === */
.nav-logo { height: 72px; width: auto; }
body.page-service .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-service .nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-service .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-service .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-service .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-service .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-service .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-service .nav-split-cta svg { width: 18px; height: 18px; }
body.page-service .mega-cta-sidebar.with-image { position: relative; overflow: hidden; min-height: 220px; background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg'); background-size: cover; background-position: center; justify-content: flex-end; }
body.page-service .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-service .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }

/* ===== staff.html ===== */
body.page-staff, body.page-staff *,
body.page-staff *::before,
body.page-staff *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page-staff { font-family: 'Outfit', sans-serif; color: #1B3828; background: #fff; overflow-x: hidden; }
body.page-staff a { text-decoration: none; color: inherit; cursor: pointer; }
body.page-staff ul { list-style: none; }
body.page-staff img { max-width: 100%; height: auto; }
body.page-staff button { font-family: inherit; cursor: pointer; border: none; outline: none; }
body.page-staff input,
body.page-staff select,
body.page-staff textarea { font-family: inherit; outline: none; }
body.page-staff /* ===== TOP BAR ===== */
.top-bar {
  background: #EAF4ED;
  color: #1B3828;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 138px;
  font-size: 13px;
  font-weight: 400;
}
body.page-staff .top-bar a { color: #1B3828; }
body.page-staff .top-bar-left { display: flex; align-items: center; gap: 8px; }
body.page-staff .top-bar-left svg { width: 18px; height: 18px; color: #E07820; opacity: 1; }
body.page-staff .top-bar-social { display: flex; align-items: center; gap: 14px; }
body.page-staff .top-bar-social a { display: flex; align-items: center; justify-content: center; color: #1B3828; transition: color 0.25s, transform 0.25s; }
body.page-staff .top-bar-social a:hover { color: #E07820; transform: translateY(-1px); }
body.page-staff .top-bar-social svg { width: 15px; height: 15px; }
body.page-staff .top-bar-center { font-weight: 400; }
body.page-staff .top-bar-right { display: flex; align-items: center; gap: 16px; }
body.page-staff .top-bar-right .divider { width: 1px; height: 22px; background: rgba(27,56,40,0.2); }
body.page-staff .top-bar-right svg { width: 12px; height: 12px; opacity: 0.7; }
body.page-staff .top-bar-right .login-btn,
body.page-staff .top-bar-right .lang-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; }
body.page-staff .login-btn:hover svg { color: #E07820; }
body.page-staff .lang-btn .chevron { width: 8px; height: 5px; }
body.page-staff .lang-btn { position: relative; }
body.page-staff .lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
}
body.page-staff .lang-dropdown.open { display: block; }
body.page-staff .lang-option {
  display: block; width: 100%; padding: 10px 16px; font-size: 13px; color: #1B3828;
  text-align: left; background: none; border: none; cursor: pointer; transition: background 0.2s;
}
body.page-staff .lang-option:hover { background: #EAF4ED; color: #E07820; }
body.page-staff /* ===== LOCATION BAR (dark, below navbar) ===== */
.location-bar {
  background: #1B3828;
  padding: 12px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-staff .location-items { display: flex; align-items: center; gap: 40px; }
body.page-staff .location-item {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 10px 16px; border-radius: 12px; transition: background 0.3s;
}
body.page-staff .location-item:hover { background: rgba(255,255,255,0.1); }
body.page-staff .location-icon {
  width: 44px; height: 45px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
body.page-staff .location-icon svg { width: 28px; height: 28px; color: #E07820; transition: color 0.3s; }
body.page-staff .location-name { font-size: 18px; font-weight: 600; color: #fff; }
body.page-staff .location-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
body.page-staff .location-item:hover .location-icon { background: #E07820; border-color: #E07820; }
body.page-staff .location-item:hover .location-icon svg { color: #fff; }
body.page-staff .social-icons { display: flex; gap: 16px; }
body.page-staff .social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-staff .social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-staff .social-icon:hover svg { color: #fff; }
body.page-staff .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-staff /* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  padding: 14px 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
body.page-staff .navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
body.page-staff .nav-logo { height: 72px; width: auto; }
body.page-staff .nav-links { display: flex; gap: 32px; align-items: center; }
body.page-staff .nav-link {
  font-size: 15px; font-weight: 300; color: #1B3828;
  padding: 10px;
  position: relative;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.3s, font-weight 0.3s;
}
body.page-staff .nav-link:hover { color: #E07820; font-weight: 600; }
body.page-staff .nav-link .chevron { width: 8px; height: 5px; transition: transform 0.3s; }
body.page-staff .nav-link:hover .chevron { transform: rotate(180deg); }
body.page-staff .nav-cta {
  background: #1B3828; color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-staff .nav-cta:hover { background: #E07820; transform: translateY(-1px); }
body.page-staff .nav-cta svg { width: 18px; height: 18px; }
body.page-staff /* Split-button CTA: Book Appointment + Pay */
.nav-split-cta {
  display: inline-flex; align-items: stretch;
  gap: 10px;
  font-size: 15px; font-weight: 500;
}
body.page-staff .nav-split-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
body.page-staff .nav-split-cta .split-book {
  background: #1B3828; color: #fff;
}
body.page-staff .nav-split-cta .split-book:hover { background: #E07820; transform: translateY(-1px); }
body.page-staff .nav-split-cta .split-pay {
  background: #E07820; color: #fff;
  font-weight: 600;
}
body.page-staff .nav-split-cta .split-pay:hover { background: #C96A18; transform: translateY(-1px); }
body.page-staff .nav-split-cta svg { width: 18px; height: 18px; }
body.page-staff /* ===== MEGA MENU ===== */
.nav-dropdown-wrap { position: static; }
body.page-staff .mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 150;
  padding: 32px 138px;
}
body.page-staff .nav-dropdown-wrap:hover > .mega-menu,
body.page-staff .mega-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.page-staff .nav-dropdown-wrap:hover > .nav-link .chevron { transform: rotate(180deg); }
body.page-staff .nav-dropdown-wrap:hover > .nav-link { color: #E07820; font-weight: 600; }
body.page-staff /* Services mega menu */
.mega-services { display: grid; grid-template-columns: 1fr 1fr 280px; gap: 36px; }
body.page-staff .mega-col-title {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px;
}
body.page-staff .mega-service-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  transition: background 0.2s;
}
body.page-staff .mega-service-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: #E07820; border-radius: 50%;
  margin-top: 6px;
}
body.page-staff .mega-service-name {
  font-size: 14px; font-weight: 600; color: #1B3828;
  transition: color 0.2s;
  display: block;
}
body.page-staff .mega-service-item:hover .mega-service-name { color: #E07820; }
body.page-staff .mega-service-desc {
  font-size: 12px; font-weight: 300; color: #6a7282;
  margin-top: 2px; line-height: 1.4;
}
body.page-staff .mega-cta-sidebar {
  background: #1B3828; border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 16px;
}
body.page-staff .mega-cta-sidebar p {
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.5;
}
body.page-staff .mega-cta-sidebar .mega-cta-btn {
  background: #E07820; color: #fff;
  padding: 10px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer;
}
body.page-staff .mega-cta-sidebar .mega-cta-btn:hover { background: #C5661A; transform: translateY(-1px); }
body.page-staff .mega-cta-sidebar.with-image {
  position: relative; overflow: hidden;
  min-height: 220px;
  background-image: linear-gradient(180deg, rgba(27,56,40,0.35) 0%, rgba(27,56,40,0.92) 100%), url('../images/photoshoot/image0.jpeg');
  background-size: cover; background-position: center;
  justify-content: flex-end;
}
body.page-staff .mega-cta-sidebar.with-image p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
body.page-staff /* Physicians mega menu */
.mega-physicians { display: flex; flex-direction: column; gap: 20px; }
body.page-staff .mega-physician-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-staff .mega-physician-card {
  border-left: 3px solid #E07820;
  padding: 14px 16px;
  background: #FAFBFA;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.2s, background 0.2s;
}
body.page-staff .mega-physician-card:hover { background: #EAF4ED; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-staff .mega-physician-name { font-size: 14px; font-weight: 700; color: #1B3828; line-height: 1.3; }
body.page-staff .mega-physician-creds { font-size: 12px; font-weight: 500; color: #E07820; margin-top: 2px; }
body.page-staff .mega-physician-role { font-size: 11px; font-weight: 400; color: #6a7282; margin-top: 2px; }
body.page-staff .mega-physician-link {
  font-size: 12px; font-weight: 600; color: #1B3828;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.2s;
}
body.page-staff .mega-physician-card:hover .mega-physician-link { color: #E07820; }
body.page-staff .mega-team-link {
  text-align: center; padding-top: 4px;
}
body.page-staff .mega-team-link a {
  font-size: 14px; font-weight: 600; color: #E07820;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.page-staff .mega-team-link a:hover { gap: 10px; }
body.page-staff /* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
body.page-staff .hamburger span { display: block; width: 24px; height: 2px; background: #1B3828; transition: all 0.3s; }
body.page-staff .mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 80px 24px 24px;
  overflow-y: auto;
}
body.page-staff .mobile-menu.active { display: flex; }
body.page-staff .mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 28px; cursor: pointer; color: #1B3828;
  background: none; border: none; font-family: inherit;
}
body.page-staff .mobile-menu .nav-link { font-size: 20px; padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
body.page-staff .mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 300; color: #1B3828;
  padding: 16px 0; border-bottom: 1px solid #e5e7eb;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
body.page-staff .mobile-accordion-toggle .toggle-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; }
body.page-staff .mobile-accordion-toggle.open .toggle-icon { transform: rotate(45deg); }
body.page-staff .mobile-accordion-content {
  display: none; padding: 0 0 8px 16px;
}
body.page-staff .mobile-accordion-content.open { display: block; }
body.page-staff .mobile-accordion-content a {
  display: block; font-size: 15px; font-weight: 400; color: #1B3828;
  padding: 10px 0; border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
}
body.page-staff .mobile-accordion-content a:hover { color: #E07820; }
body.page-staff .mobile-accordion-content a:last-child { border-bottom: none; }
body.page-staff /* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(46,99,71,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(224,120,32,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #245238 0%, #1B3828 45%, #0C1F14 100%);
  padding: 80px 127px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.45);
}
body.page-staff .hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(224,120,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
body.page-staff .hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,18,11,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
body.page-staff .hero-content { position: relative; z-index: 2; max-width: 522px; padding-bottom: 80px; }
body.page-staff .hero-image {
  position: relative; z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
body.page-staff .hero-image img {
  height: 500px;
  width: auto;
  object-fit: contain;
  display: block;
}
body.page-staff .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 16px;
}
body.page-staff .hero-badge-dot { width: 10px; height: 10px; background: #E07820; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
body.page-staff .hero-badge span { font-size: 14px; font-weight: 300; color: #fff; }
body.page-staff .hero h1 {
  font-size: 48px; font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -1.6px;
  margin-bottom: 16px;
}
body.page-staff .hero p {
  font-size: 16px; font-weight: 300; color: #fff;
  line-height: 1.5; max-width: 490px;
  opacity: 0.85;
}
body.page-staff .hero-buttons { display: flex; gap: 24px; align-items: center; margin-top: 40px; }
body.page-staff .btn-primary {
  background: #E07820; color: #fff;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
body.page-staff .btn-primary:hover { background: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-staff .btn-primary svg { width: 18px; height: 18px; }
body.page-staff .btn-secondary {
  background: #fff; color: #1B3828;
  padding: 10px 24px; border-radius: 30px;
  font-size: 15px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
body.page-staff .btn-secondary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
body.page-staff /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 130px;
  text-align: center;
}
body.page-staff .section-label {
  font-size: 14px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.4px;
  margin-bottom: 16px;
}
body.page-staff .section-title {
  font-size: 40px; font-weight: 400; color: #1B3828;
  line-height: 1.4;
  margin-bottom: 16px;
}
body.page-staff .section-desc {
  font-size: 16px; font-weight: 400; color: #6a7282;
  line-height: 1.5; max-width: 763px;
  margin: 0 auto 40px;
}
body.page-staff .about-cards { display: flex; gap: 20px; }
body.page-staff .about-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; gap: 16px;
  text-align: left;
  transition: all 0.3s;
}
body.page-staff .about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: #EDF5EF; }
body.page-staff .about-card-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #EAF4ED;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
body.page-staff .about-card-icon svg { width: 18px; height: 14px; color: #E07820; }
body.page-staff .about-card p { font-size: 16px; line-height: 1.5; }
body.page-staff .about-card p strong { color: #1B3828; }
body.page-staff .about-card p span.dash { color: #1B3828; }
body.page-staff .about-card p span.desc { color: #6a7282; }
body.page-staff /* ===== SERVICES SECTION ===== */
.services {
  background: #EDF5EF;
  padding: 80px 130px;
}
body.page-staff .services-grid { display: flex; flex-direction: column; gap: 20px; }
body.page-staff .services-row { display: flex; gap: 20px; }
body.page-staff .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  min-height: 344px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
body.page-staff .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
body.page-staff .service-card::after { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: #E07820; border-radius: 10px 10px 0 0; transition: width 0.4s ease; }
body.page-staff .service-card:hover::after { width: 100%; }
body.page-staff .service-icon,
body.page-staff .service-icon.dark { transition: background 0.3s, transform 0.3s; }
body.page-staff .service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); }
body.page-staff .service-card:hover .service-icon.dark { background: #E07820; }
body.page-staff .service-card h3 { transition: color 0.3s; }
body.page-staff .service-card:hover h3 { color: #E07820; }
body.page-staff .service-card .service-link { transition: opacity 0.3s, transform 0.3s; }
body.page-staff .service-card:hover .service-link { transform: translateX(6px); }
body.page-staff .service-link { opacity: 1; transition: opacity 0.3s; }
body.page-staff .service-card.large { flex: 0 0 calc(57.6% - 10px); }
body.page-staff .service-card.small { flex: 0 0 calc(42.4% - 10px); }
body.page-staff .service-card.third { flex: 1; }
body.page-staff .service-icon {
  width: 44px; height: 45px;
  margin-bottom: 16px;
}
body.page-staff .service-icon img { width: 100%; height: 100%; object-fit: contain; }
body.page-staff .service-icon.dark {
  background: #1B3828;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
body.page-staff .service-card h3 { font-size: 20px; font-weight: 700; color: #1B3828; margin-bottom: 8px; }
body.page-staff .service-card p { font-size: 16px; color: #6a7282; line-height: 1.5; }
body.page-staff .service-card .service-link {
  display: inline-block; margin-top: 16px;
  font-size: 14px; font-weight: 500; color: #E07820;
}
body.page-staff .service-card .service-link:hover { text-decoration: underline; }
body.page-staff /* ===== PHYSICIANS ===== */
.physicians {
  padding: 80px 130px;
  overflow: hidden;
}
body.page-staff .physicians-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 43px;
}
body.page-staff .physicians-header-text { max-width: 580px; }
body.page-staff .physicians-nav { display: flex; gap: 12px; margin-top: 20px; }
body.page-staff .physicians-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
body.page-staff .physicians-nav .prev { border: 2px solid #e5e7eb; background: #fff; }
body.page-staff .physicians-nav .prev:hover { border-color: #E07820; }
body.page-staff .physicians-nav .next { background: #E07820; border: none; }
body.page-staff .physicians-nav .next:hover { background: #C5661A; }
body.page-staff .physicians-nav svg { width: 20px; height: 20px; }
body.page-staff .physicians-nav .prev svg { color: #6a7282; }
body.page-staff .physicians-nav .next svg { color: #fff; }
body.page-staff .physicians-grid {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
body.page-staff .physicians-grid::-webkit-scrollbar { display: none; }
body.page-staff .physician-card {
  display: block;
  min-width: 280px; width: 280px; height: 368px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
body.page-staff .physician-card .card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.4s;
}
body.page-staff .physician-card:hover .card-img { transform: scale(1.05); }
body.page-staff /* Black gradient at bottom - always visible */
.physician-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  z-index: 1; pointer-events: none;
  transition: opacity 0.4s;
}
body.page-staff /* Blue hover overlay */
.physician-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 56, 40, 0.90);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
body.page-staff .physician-card:hover .card-overlay { opacity: 1; }
body.page-staff .physician-card:hover::after { opacity: 0; }
body.page-staff /* Card bottom info - default state */
.physician-card .card-bottom {
  position: absolute; bottom: 27px; left: 29px; z-index: 3;
  transition: all 0.4s;
}
body.page-staff .physician-card .card-bottom h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-staff .physician-card .card-bottom .role { font-size: 14px; font-weight: 500; color: #fff; transition: color 0.4s; }
body.page-staff /* Hover state - move info up,
body.page-staff show bio and profile link */
.physician-card:hover .card-bottom {
  bottom: auto; top: 32px; left: 32px;
}
body.page-staff .physician-card:hover .card-bottom .role { color: #E07820; }
body.page-staff .physician-card .card-bio {
  position: absolute; top: 120px; left: 32px; right: 34px;
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-staff .physician-card:hover .card-bio { opacity: 1; transform: translateY(0); }
body.page-staff .physician-card .card-profile {
  position: absolute; bottom: 27px; left: 32px;
  font-size: 14px; color: #E07820; font-weight: 500;
  z-index: 3;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s;
}
body.page-staff .physician-card:hover .card-profile { opacity: 1; transform: translateY(0); }
body.page-staff /* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1B3828;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
body.page-staff .testimonials .section-title { color: #fff; }
body.page-staff .quote-icon { margin: 0 auto 42px; }
body.page-staff .quote-icon svg { width: 48px; height: 36px; color: #E07820; }
body.page-staff .testimonials-slider {
  display: flex; gap: 40px; justify-content: center;
  padding: 0 40px;
  transition: transform 0.5s ease;
}
body.page-staff .testimonial-card { min-width: 477px; position: relative; }
body.page-staff .testimonial-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto; overflow: hidden;
  border: 3px solid #E07820;
  position: relative; z-index: 2;
}
body.page-staff .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.page-staff .testimonial-box {
  border: 1px solid rgba(220,220,220,0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: -32px;
  padding-top: 56px;
}
body.page-staff .testimonial-name { font-size: 18px; font-weight: 500; color: #E07820; margin-bottom: 8px; }
body.page-staff .testimonial-location { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 24px; }
body.page-staff .testimonial-text { font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.45; }
body.page-staff .testimonials-arrows {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 42px;
}
body.page-staff .testimonials-arrows button {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; transition: color 0.3s;
}
body.page-staff .testimonials-arrows button:hover { color: #E07820; }
body.page-staff .testimonials-arrows svg { width: 24px; height: 24px; }
body.page-staff /* ===== BLOG ===== */
.blog {
  background: #EDF5EF;
  padding: 80px 152px;
}
body.page-staff .blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
body.page-staff .blog-header .view-all {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-staff .blog-header .view-all svg { width: 16px; height: 16px; }
body.page-staff .blog-grid { display: flex; gap: 32px; }
body.page-staff .blog-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
body.page-staff .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
body.page-staff .blog-card-image {
  height: 208px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
}
body.page-staff .blog-card-body { padding: 24px; }
body.page-staff .blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
body.page-staff .blog-tag {
  background: #EDF5EF; color: #E07820;
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}
body.page-staff .blog-date { font-size: 12px; color: #6a7282; }
body.page-staff .blog-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; line-height: 1.4; margin-bottom: 12px; }
body.page-staff .blog-card p { font-size: 14px; color: #6a7282; line-height: 1.55; margin-bottom: 16px; }
body.page-staff .blog-card .read-more {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
}
body.page-staff .blog-card .read-more svg { width: 16px; height: 16px; }
body.page-staff /* ===== INSURANCE ===== */
.insurance { padding: 80px 0; text-align: center; }
body.page-staff .insurance-logos {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 56px 0 56px;
}
body.page-staff .insurance-logo {
  width: 180px; height: 180px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-staff .insurance-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
body.page-staff .insurance-logo img { max-width: 130px; max-height: 73px; object-fit: contain; }
body.page-staff .insurance-note { font-size: 18px; color: #1B3828; margin-bottom: 20px; }
body.page-staff .insurance-cta {
  display: inline-block;
  background: #E07820; color: #fff;
  padding: 12px 40px; border-radius: 30px;
  font-size: 16px; font-weight: 500;
  transition: all 0.3s;
}
body.page-staff .insurance-cta:hover { background: #C5661A; transform: translateY(-2px); }
body.page-staff /* ===== LOCATIONS ===== */
.locations { padding: 80px 130px; }
body.page-staff .locations-grid { display: flex; gap: 32px; margin-top: 56px; }
body.page-staff .location-card {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
body.page-staff .location-card:hover { background: #EDF5EF; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
body.page-staff .location-card-icon {
  width: 56px; height: 56px;
  background: #EAF4ED;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-staff .location-card-icon svg { width: 28px; height: 28px; color: #E07820; }
body.page-staff .location-card h3 { font-size: 22px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-staff .location-card .subtitle { font-size: 14px; color: #6a7282; margin-bottom: 16px; }
body.page-staff .location-card-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
body.page-staff .location-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: #6a7282;
}
body.page-staff .location-detail svg { width: 16px; height: 16px; min-width: 16px; color: #E07820; }
body.page-staff .location-card .book-link {
  font-size: 14px; font-weight: 500; color: #E07820;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
body.page-staff .location-card .book-link:hover { gap: 12px; }
body.page-staff .location-card .book-link svg { width: 16px; height: 16px; }
body.page-staff /* ===== FAQ ===== */
.faq { padding: 80px 304px; }
body.page-staff .faq-list { margin-top: 48px; }
body.page-staff .faq-item { border-bottom: 1px solid #e5e7eb; }
body.page-staff .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
}
body.page-staff .faq-question:hover { color: #E07820; }
body.page-staff .faq-question h3 { font-size: 18px; font-weight: 500; }
body.page-staff .faq-question .faq-toggle {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 0.3s;
}
body.page-staff .faq-item.active .faq-toggle { transform: rotate(180deg); }
body.page-staff .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
body.page-staff .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}
body.page-staff .faq-answer p { font-size: 16px; color: #6a7282; line-height: 1.6; }
body.page-staff .faq-footer { text-align: center; margin-top: 32px; }
body.page-staff .faq-footer p { font-size: 14px; color: #6a7282; margin-bottom: 8px; }
body.page-staff .faq-footer a { font-size: 14px; font-weight: 500; color: #E07820; display: inline-flex; align-items: center; gap: 6px; }
body.page-staff .faq-footer a svg { width: 16px; height: 16px; }
body.page-staff /* ===== CONTACT / BOOK ===== */
.contact {
  background: #1B3828;
  padding: 66px 112px;
  display: flex; gap: 80px;
}
body.page-staff .contact-info { flex: 1; color: #fff; }
body.page-staff .contact-info .section-label { color: #E07820; text-align: left; }
body.page-staff .contact-info .section-title { color: #fff; text-align: left; font-size: 48px; }
body.page-staff .contact-divider { width: 64px; height: 4px; background: #E07820; border-radius: 2px; margin: 24px 0 36px; }
body.page-staff .contact-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }
body.page-staff .contact-methods { display: flex; flex-direction: row; gap: 16px; }
body.page-staff .contact-method { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
body.page-staff /* Compact locations group */
.contact-locations-title {
  font-size: 11px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600;
  margin-bottom: 16px;
}
body.page-staff .contact-locations {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
body.page-staff .contact-location-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-staff .contact-location-name {
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
body.page-staff .contact-location-name .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #E07820;
}
body.page-staff .contact-location-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.45; }
body.page-staff .contact-location-phone {
  font-size: 14px; font-weight: 500; color: #E07820;
  white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
body.page-staff .contact-location-phone:hover { color: #fff; }
body.page-staff .contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
body.page-staff .contact-method-icon svg { width: 20px; height: 20px; color: #E07820; }
body.page-staff .contact-method-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; }
body.page-staff .contact-method-value { font-size: 16px; color: #fff; font-weight: 500; margin-top: 2px; }
body.page-staff .contact-form {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}
body.page-staff .form-row { display: flex; gap: 24px; margin-bottom: 24px; }
body.page-staff .form-group { flex: 1; }
body.page-staff .form-group label {
  display: block;
  font-size: 14px; color: #fff; font-weight: 500;
  margin-bottom: 8px;
}
body.page-staff .form-group label span { color: #E07820; }
body.page-staff .form-group input,
body.page-staff .form-group select,
body.page-staff .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px; color: #fff;
  transition: border-color 0.3s;
}
body.page-staff .form-group input::placeholder,
body.page-staff .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
body.page-staff .form-group select { color: rgba(255,255,255,0.3); }
body.page-staff .form-group select option { background: #1B3828; color: #fff; }
body.page-staff .form-group input:focus,
body.page-staff .form-group select:focus,
body.page-staff .form-group textarea:focus { border-color: rgba(255,255,255,0.3); outline: none; }
body.page-staff .form-group textarea { resize: vertical; min-height: 120px; }
body.page-staff .form-submit {
  width: 100%;
  background: #E07820; color: #fff;
  padding: 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.35px;
  transition: all 0.3s;
  margin-top: 8px;
}
body.page-staff .form-submit:hover { background: #C5661A; }
body.page-staff .form-note {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 16px;
}
body.page-staff /* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to top, #1B3828, #102B1C);
  color: #fff;
  padding: 80px 152px 0;
}
body.page-staff .footer-main {
  display: flex; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-staff .footer-col { flex: 1; }
body.page-staff .footer-col:first-child { flex: 1.2; }
body.page-staff .footer-logo { height: 56px; width: auto; margin-bottom: 24px; }
body.page-staff .footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; max-width: 255px; }
body.page-staff .footer-social { display: flex; gap: 16px; }
body.page-staff .footer-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
body.page-staff .footer-social-icon:hover { background: #E07820; border-color: #E07820; }
body.page-staff .footer-social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
body.page-staff .footer-heading {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px;
}
body.page-staff .footer-links { display: flex; flex-direction: column; gap: 12px; }
body.page-staff .footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
body.page-staff .footer-links a:hover { color: #E07820; }
body.page-staff .footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
body.page-staff .footer-contact-item svg { width: 16px; height: 16px; color: #E07820; min-width: 16px; }
body.page-staff .footer-member {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 32px 0;
  border-bottom: 0.8px solid rgba(255,255,255,0.1);
}
body.page-staff .footer-member-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; }
body.page-staff .footer-member-badge {
  background: rgba(255,255,255,0.1);
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 12px;
}
body.page-staff .footer-member-badge svg { width: 20px; height: 20px; color: #E07820; }
body.page-staff .footer-member-badge span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
body.page-staff .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
}
body.page-staff .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); }
body.page-staff .footer-legal { display: flex; gap: 24px; }
body.page-staff .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
body.page-staff .footer-legal a:hover { color: #E07820; }
body.page-staff /* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-staff .fade-in.visible { opacity: 1; transform: translateY(0); }
body.page-staff .fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.page-staff .fade-in-left.visible { opacity: 1; transform: translateX(0); }
body.page-staff .stagger-1 { transition-delay: 0.1s; }
body.page-staff .stagger-2 { transition-delay: 0.2s; }
body.page-staff .stagger-3 { transition-delay: 0.3s; }
body.page-staff .stagger-4 { transition-delay: 0.4s; }
body.page-staff /* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .top-bar, .location-bar, .navbar { padding-left: 40px; padding-right: 40px; }
  .mega-menu { padding-left: 40px; padding-right: 40px; }
  .mega-physician-row { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px 40px 0; }
  .hero-image img { height: 420px; }
  .about, .services, .physicians, .locations { padding-left: 40px; padding-right: 40px; }
  .blog { padding-left: 40px; padding-right: 40px; }
  .faq { padding-left: 40px; padding-right: 40px; }
  .contact { padding-left: 40px; padding-right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .insurance-logos { gap: 30px; }
}
@media (max-width: 992px) {
body.page-staff .top-bar { display: none; }
body.page-staff .location-bar { padding: 12px 20px; }
body.page-staff .location-items { flex-wrap: wrap; gap: 20px; }
body.page-staff .social-icons { display: none; }
body.page-staff .navbar { padding: 12px 20px; }
body.page-staff .nav-links { display: none; }
body.page-staff .mega-menu { display: none !important; }
body.page-staff .hamburger { display: flex; }
body.page-staff .nav-cta { font-size: 13px; padding: 8px 16px; gap: 6px; }
body.page-staff .nav-cta svg { width: 14px; height: 14px; }
body.page-staff .hero { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
body.page-staff .hero-content { padding-bottom: 40px; }
body.page-staff .hero h1 { font-size: 36px; }
body.page-staff .hero-buttons { flex-wrap: wrap; }
body.page-staff .hero-image img { height: 320px; }
body.page-staff .about,
body.page-staff .services,
body.page-staff .physicians,
body.page-staff .locations { padding: 60px 20px; }
body.page-staff .about-cards { flex-direction: column; }
body.page-staff .services-row { flex-direction: column; }
body.page-staff .service-card.large,
body.page-staff .service-card.small { flex: none; width: 100%; }
body.page-staff .physicians-header { flex-direction: column; gap: 20px; }
body.page-staff .physician-card { min-width: 260px; }
body.page-staff .testimonials { padding: 60px 20px; }
body.page-staff .testimonials-slider { flex-direction: column; align-items: center; gap: 24px; }
body.page-staff .testimonial-card { min-width: 100%; max-width: 480px; }
body.page-staff .blog { padding: 60px 20px; }
body.page-staff .blog-grid { flex-direction: column; }
body.page-staff .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
body.page-staff .insurance { padding: 60px 20px; }
body.page-staff .insurance-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-staff .insurance-logo { width: 140px; height: 140px; }
body.page-staff .locations-grid { flex-direction: column; }
body.page-staff .faq { padding: 60px 20px; }
body.page-staff .contact { flex-direction: column; padding: 40px 20px; gap: 40px; }
body.page-staff .footer { padding: 40px 20px 0; }
body.page-staff .footer-main { flex-wrap: wrap; gap: 32px; }
body.page-staff .footer-col { flex: 0 0 calc(50% - 16px); }
body.page-staff .footer-col:first-child { flex: 0 0 100%; }
body.page-staff .footer-member { flex-direction: column; gap: 12px; }
body.page-staff .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }


}
@media (max-width: 576px) {
body.page-staff .navbar { padding: 10px 12px; gap: 6px; }
body.page-staff .nav-logo { height: 52px; }
body.page-staff .nav-cta { font-size: 11px; padding: 6px 10px; gap: 4px; white-space: nowrap; }
body.page-staff .nav-cta svg { width: 11px; height: 11px; }
body.page-staff .hamburger { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
body.page-staff .hamburger span { width: 20px; }
body.page-staff .hero h1 { font-size: 28px; line-height: 1.2; }
body.page-staff .hero p { font-size: 14px; }
body.page-staff .hero-image img { height: 260px; }
body.page-staff .section-title { font-size: 28px; }
body.page-staff .section-label { font-size: 12px; }
body.page-staff .location-bar { padding: 8px 12px; }
body.page-staff .location-items { gap: 12px; }
body.page-staff .location-item { gap: 8px; }
body.page-staff .location-name { font-size: 13px; }
body.page-staff .location-sub { font-size: 10px; }
body.page-staff .location-icon { width: 32px; height: 32px; }
body.page-staff .location-icon svg { width: 14px; height: 14px; }
body.page-staff .physician-card { min-width: 240px; height: 320px; }
body.page-staff .contact-info .section-title { font-size: 32px; }
body.page-staff .contact { padding: 40px 16px; gap: 32px; }
body.page-staff .contact-form { padding: 24px; }
body.page-staff .footer-col { flex: 0 0 100%; }
body.page-staff .footer-logo { height: 32px; }
body.page-staff .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
body.page-staff .insurance-logos { gap: 12px; }
body.page-staff .insurance-logo { width: 100px; height: 100px; }
body.page-staff .insurance-logo img { max-width: 80px; max-height: 50px; }
body.page-staff .form-row { flex-direction: column; gap: 16px; }
body.page-staff .blog-card-image { height: 180px; }


}


/* ===== Migrated Internal And Inline CSS ===== */
body.page-about .migrated-inline-001 { font-weight:700; color:#E07820; }

body.page-about .migrated-inline-002 { margin-top:24px; justify-content:center; }

body.page-about .migrated-inline-003 { width:18px; height:18px; }

body.page-about .migrated-inline-004 { text-align:center; margin-bottom:48px; }

body.page-about .migrated-inline-005 { display:none; }


/* ===== Migrated internal CSS from asec.html ===== */
body.page-asec /* ===== OUR STORY ===== */
.story-section { padding: 80px 130px; background: #fff; }
body.page-asec .story-grid {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 64px; align-items: center;
}
body.page-asec .section-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 16px;
}
body.page-asec .story-h2 {
  font-size: 38px; font-weight: 400; color: #1B3828;
  line-height: 1.3; margin-bottom: 24px;
}
body.page-asec .story-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
body.page-asec .story-heading-row .story-h2 {
  margin-bottom: 0;
  flex: 1;
}
body.page-asec .story-asec-logo {
  width: auto;
  height: 88px;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
body.page-asec .story-text p {
  font-size: 16px; color: #6a7282; line-height: 1.7; margin-bottom: 20px;
}
body.page-asec .story-text p:last-child { margin-bottom: 0; }
body.page-asec /* Milestones timeline */
.milestones {
  position: relative; padding-left: 32px;
}
body.page-asec .milestones::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, #E07820, rgba(224,120,32,0.2));
}
body.page-asec .milestone {
  position: relative; margin-bottom: 32px;
  padding-left: 24px;
}
body.page-asec .milestone:last-child { margin-bottom: 0; }
body.page-asec .milestone::before {
  content: ''; position: absolute; left: -25px; top: 6px;
  width: 12px; height: 12px; background: #E07820; border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 0 0 2px rgba(224,120,32,0.2);
}
body.page-asec .milestone-year {
  font-size: 12px; font-weight: 600; color: #E07820;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
body.page-asec .milestone-title { font-size: 17px; font-weight: 600; color: #1B3828; margin-bottom: 4px; }
body.page-asec .milestone-desc { font-size: 14px; color: #6a7282; line-height: 1.5; }
body.page-asec /* ===== FOUNDER ===== */
.founder-section { padding: 80px 130px; background: #EDF5EF; }
body.page-asec .founder-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 56px; align-items: start;
}
body.page-asec .founder-photo {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1B3828, #102B1C);
  border-radius: 20px; overflow: hidden;
  position: relative;
}
body.page-asec .founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
body.page-asec .founder-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
body.page-asec .founder-initials {
  font-size: 80px; font-weight: 700; color: rgba(255,255,255,0.1);
  letter-spacing: -3px; line-height: 1;
}
body.page-asec .founder-photo-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.25);
  text-transform: uppercase; letter-spacing: 2px;
}
body.page-asec .founder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,120,32,0.1); border-radius: 40px;
  padding: 6px 16px; margin-bottom: 16px;
}
body.page-asec .founder-badge span { font-size: 12px; font-weight: 600; color: #E07820; text-transform: uppercase; letter-spacing: 0.8px; }
body.page-asec .founder-name { font-size: 34px; font-weight: 700; color: #1B3828; margin-bottom: 4px; }
body.page-asec .founder-creds { font-size: 16px; font-weight: 500; color: #E07820; margin-bottom: 6px; }
body.page-asec .founder-role { font-size: 14px; color: #6a7282; margin-bottom: 24px; }
body.page-asec .founder-bio p {
  font-size: 16px; color: #6a7282; line-height: 1.7; margin-bottom: 16px;
}
body.page-asec .founder-stats {
  display: flex; gap: 0; margin: 28px 0;
  background: #fff; border-radius: 14px; overflow: hidden;
}
body.page-asec .founder-stat {
  flex: 1; text-align: center; padding: 20px 16px;
  position: relative;
}
body.page-asec .founder-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(27,56,40,0.1);
}
body.page-asec .founder-stat-val { font-size: 28px; font-weight: 700; color: #1B3828; line-height: 1; }
body.page-asec .founder-stat-label { font-size: 11px; font-weight: 500; color: #6a7282; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
body.page-asec .founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: #E07820;
  transition: gap 0.3s;
}
body.page-asec .founder-link:hover { gap: 12px; }
body.page-asec .founder-link svg { width: 18px; height: 18px; }
body.page-asec /* ===== VISION & MISSION ===== */
.vm-section { padding: 80px 130px; background: #fff; }
body.page-asec .vm-header { text-align: center; margin-bottom: 56px; }
body.page-asec .vm-h2 { font-size: 38px; font-weight: 400; color: #1B3828; margin-bottom: 12px; }
body.page-asec .vm-sub { font-size: 16px; color: #6a7282; max-width: 540px; margin: 0 auto; }
body.page-asec .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
body.page-asec .vm-card {
  border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
}
body.page-asec .vm-card.mission {
  background: linear-gradient(135deg, #1B3828, #102B1C); color: #fff;
}
body.page-asec .vm-card.vision {
  background: #EAF4ED; color: #1B3828;
}
body.page-asec .vm-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
body.page-asec .vm-card.mission .vm-card-icon { background: rgba(224,120,32,0.2); }
body.page-asec .vm-card.vision .vm-card-icon { background: rgba(224,120,32,0.15); }
body.page-asec .vm-card-icon svg { width: 26px; height: 26px; color: #E07820; }
body.page-asec .vm-card-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
body.page-asec .vm-card.mission .vm-card-label { color: #E07820; }
body.page-asec .vm-card.vision .vm-card-label { color: #E07820; }
body.page-asec .vm-card h3 {
  font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 16px;
}
body.page-asec .vm-card.mission h3 { color: #fff; }
body.page-asec .vm-card.vision h3 { color: #1B3828; }
body.page-asec .vm-card p {
  font-size: 15px; line-height: 1.7;
}
body.page-asec .vm-card.mission p { color: rgba(255,255,255,0.6); }
body.page-asec .vm-card.vision p { color: #6a7282; }
body.page-asec /* ===== CORE VALUES ===== */
.values-section { padding: 80px 130px; background: #EDF5EF; }
body.page-asec .values-header { text-align: center; margin-bottom: 56px; }
body.page-asec .values-h2 { font-size: 38px; font-weight: 400; color: #1B3828; margin-bottom: 12px; }
body.page-asec .values-sub { font-size: 16px; color: #6a7282; max-width: 540px; margin: 0 auto; }
body.page-asec .values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
body.page-asec .value-card {
  background: #fff; border-radius: 20px; padding: 36px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
body.page-asec .value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
body.page-asec .value-icon {
  width: 56px; height: 56px;
  background: rgba(224,120,32,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
body.page-asec .value-icon svg { width: 24px; height: 24px; color: #E07820; }
body.page-asec .value-card h3 { font-size: 18px; font-weight: 600; color: #1B3828; margin-bottom: 8px; }
body.page-asec .value-card p { font-size: 14px; color: #6a7282; line-height: 1.6; }
body.page-asec /* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  padding: 72px 130px;
  position: relative; overflow: hidden;
}
body.page-asec .stats-section::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 90% 50%, rgba(224,120,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}
body.page-asec .stats-grid {
  display: flex; justify-content: center; gap: 0;
  position: relative; z-index: 1;
}
body.page-asec .stat-item {
  flex: 1; text-align: center; padding: 16px 32px;
  position: relative;
}
body.page-asec .stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(255,255,255,0.1);
}
body.page-asec .stat-value { font-size: 48px; font-weight: 700; color: #fff; line-height: 1; }
body.page-asec .stat-accent { color: #E07820; }
body.page-asec .stat-label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.8px; margin-top: 8px;
}
body.page-asec /* ===== CTA BAND ===== */
.cta-band {
  background: #EAF4ED;
  padding: 80px 130px;
  text-align: center;
}
body.page-asec .cta-label {
  font-size: 13px; font-weight: 500; color: #E07820;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
body.page-asec .cta-h2 {
  font-size: 40px; font-weight: 700; color: #1B3828;
  margin-bottom: 16px; line-height: 1.2;
}
body.page-asec .cta-sub {
  font-size: 16px; color: #6a7282;
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
body.page-asec .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
body.page-asec .btn-orange {
  background: #E07820; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: 2px solid #E07820;
}
body.page-asec .btn-orange:hover { background: #C5661A; border-color: #C5661A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.3); }
body.page-asec .btn-green {
  background: #1B3828; color: #fff;
  padding: 12px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; border: 2px solid #1B3828;
}
body.page-asec .btn-green:hover { background: #102B1C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,56,40,0.2); }
body.page-asec .btn-orange svg,
body.page-asec .btn-green svg { width: 18px; height: 18px; }
body.page-asec /* ===== ABOUT-STYLE SECTION RESPONSIVE ===== */
@media (max-width: 1200px) {
  .story-section, .vm-section, .values-section, .stats-section, .cta-band { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 992px) {
body.page-asec .story-section,
body.page-asec .vm-section,
body.page-asec .values-section,
body.page-asec .stats-section,
body.page-asec .cta-band { padding: 60px 20px; }
body.page-asec .story-grid { grid-template-columns: 1fr; gap: 40px; }
body.page-asec .vm-grid { grid-template-columns: 1fr; gap: 20px; }
body.page-asec .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
body.page-asec .stats-grid { flex-wrap: wrap; }
body.page-asec .stat-item { flex: 0 0 50%; padding: 20px 16px; }
body.page-asec .stat-item:nth-child(2n)::after { display: none; }
body.page-asec .stat-item:nth-child(-n+3)::after { display: block; }
body.page-asec .stat-value { font-size: 36px; }
body.page-asec .cta-h2 { font-size: 30px; }


}
@media (max-width: 576px) {
body.page-asec .story-h2,
body.page-asec .vm-h2,
body.page-asec .values-h2 { font-size: 28px; }
body.page-asec .story-heading-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
body.page-asec .story-asec-logo {
  height: 72px;
  max-width: 160px;
}
body.page-asec .values-grid { grid-template-columns: 1fr; }
body.page-asec .stat-item { flex: 0 0 100%; }
body.page-asec .stat-item::after { display: none !important; }
body.page-asec .stat-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }


}

body.page-asec .migrated-inline-006 { font-weight:700; color:#E07820; }

body.page-asec .migrated-inline-007 { margin-top:24px; justify-content:center; }

body.page-asec .migrated-inline-008 { width:18px; height:18px; }

body.page-asec .migrated-inline-009 { background:#fff; padding:64px 130px; }

body.page-asec .migrated-inline-010 { max-width:860px; margin:0 auto; background:linear-gradient(135deg,#E07820 0%,#C5661A 100%); color:#fff; border-radius:20px; padding:40px; text-align:center; box-shadow:0 16px 40px rgba(224,120,32,0.18); }

body.page-asec .migrated-inline-011 { font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; opacity:.9; margin-bottom:10px; }

body.page-asec .migrated-inline-012 { font-size:24px; font-weight:700; margin-bottom:10px; color:#fff; }

body.page-asec .migrated-inline-013 { font-size:15px; line-height:1.6; color:rgba(255,255,255,.92); max-width:560px; margin:0 auto 18px; }

body.page-asec .migrated-inline-014 { display:inline-flex; align-items:center; gap:8px; background:#fff; color:#C5661A; font-weight:600; padding:11px 24px; border-radius:30px; font-size:14px; }


/* ===== Migrated internal CSS from blog.html ===== */
body.page-blog .news-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px;text-align:center;}
body.page-blog .news-hero h1 {font-size:48px;font-weight:600;margin-bottom:16px;letter-spacing:-1px;color:#fff;}
body.page-blog .news-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:760px;margin:0 auto;}
body.page-blog .news-main {max-width:680px;margin:80px auto;padding:0 32px;text-align:center;}
body.page-blog .news-cta {display:inline-flex;align-items:center;gap:8px;background:#1B3828;color:#fff;padding:14px 28px;border-radius:30px;text-decoration:none;font-weight:500;margin-top:24px;}
body.page-blog .news-cta:hover {background:#E07820;}

body.page-blog .migrated-inline-015 { font-weight:700; color:#E07820; }

body.page-blog .migrated-inline-016 { margin-top:24px; justify-content:center; }

body.page-blog .migrated-inline-017 { width:18px; height:18px; }


/* ===== Migrated internal CSS from casc.html ===== */
body.page-casc .casc-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px;text-align:center;}
body.page-casc .casc-badge {display:inline-block;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:#E07820;background:rgba(224,120,32,0.12);border:1px solid rgba(224,120,32,0.3);padding:6px 14px;border-radius:30px;margin-bottom:24px;}
body.page-casc .casc-hero h1 {font-size:48px;font-weight:600;margin-bottom:20px;letter-spacing:-1px;color:#fff;}
body.page-casc .casc-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:760px;margin:0 auto;}
body.page-casc .casc-main {max-width:880px;margin:80px auto;padding:0 32px;}
body.page-casc .casc-image {width:100%;border-radius:16px;overflow:hidden;margin-bottom:32px;box-shadow:0 8px 32px rgba(0,0,0,0.08);}
body.page-casc .casc-image img {width:100%;height:auto;display:block;}
body.page-casc .casc-card {background:#fff;border-radius:16px;padding:48px;box-shadow:0 4px 24px rgba(0,0,0,0.05);}
body.page-casc .casc-logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: 280px;
  object-fit: contain;
  margin: 0 auto 28px;
}
body.page-casc .casc-card p {color:#4a5a4f;margin-bottom:18px;font-size:16px;}
body.page-casc .casc-cta {display:inline-flex;align-items:center;gap:8px;background:#E07820;color:#fff;padding:14px 28px;border-radius:30px;text-decoration:none;font-weight:600;font-size:15px;margin-top:8px;}
body.page-casc .casc-cta:hover {background:#C5661A;}
@media(max-width:768px) {
body.page-casc .casc-hero {padding:64px 24px;}
body.page-casc .casc-hero h1 {font-size:32px;}
body.page-casc .casc-main {margin:48px auto;}
body.page-casc .casc-card {padding:32px 24px;}
body.page-casc .casc-logo {height:72px;max-width:220px;margin-bottom:20px;}

}

body.page-casc .migrated-inline-018 { font-weight:700; color:#E07820; }

body.page-casc .migrated-inline-019 { margin-top:24px; justify-content:center; }

body.page-casc .migrated-inline-020 { width:18px; height:18px; }


/* ===== Migrated internal CSS from coming-soon.html ===== */
body.page-coming-soon .cs-wrap {min-height:60vh;background:radial-gradient(circle at 20% 20%,#1B3828 0%,#0E2017 60%,#07140C 100%);color:#fff;padding:80px 24px;display:flex;align-items:center;justify-content:center;}
body.page-coming-soon .cs-container {max-width:680px;text-align:center;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);border-radius:24px;padding:56px 48px;backdrop-filter:blur(10px);}
body.page-coming-soon .cs-logo-mark {width:96px;height:96px;margin:0 auto 32px;border-radius:50%;background:rgba(224,120,32,0.15);border:2px solid #E07820;display:flex;align-items:center;justify-content:center;animation:cspulse 2.5s ease-in-out infinite;}
body.page-coming-soon .cs-logo-mark svg {width:48px;height:48px;color:#E07820;}
@keyframes cspulse {0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(224,120,32,0.4);}50%{transform:scale(1.04);box-shadow:0 0 0 18px rgba(224,120,32,0);}}
body.page-coming-soon .cs-badge {display:inline-block;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:#E07820;background:rgba(224,120,32,0.1);padding:6px 14px;border-radius:30px;margin-bottom:20px;}
body.page-coming-soon .cs-container h1 {font-size:44px;font-weight:600;letter-spacing:-1px;margin-bottom:16px;color:#fff;line-height:1.15;}
body.page-coming-soon .cs-lede {font-size:17px;color:rgba(255,255,255,0.7);margin-bottom:36px;}
body.page-coming-soon .cs-grid {display:grid;grid-template-columns:1fr 1fr;gap:12px;}
body.page-coming-soon .cs-item {display:flex;align-items:center;gap:12px;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);border-radius:12px;padding:14px 16px;text-align:left;text-decoration:none;color:#fff;transition:all 0.25s;}
body.page-coming-soon .cs-item:hover {background:rgba(224,120,32,0.1);border-color:rgba(224,120,32,0.4);}
body.page-coming-soon .cs-icon {width:34px;height:34px;border-radius:50%;background:rgba(224,120,32,0.15);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
body.page-coming-soon .cs-icon svg {width:15px;height:15px;color:#E07820;}
body.page-coming-soon .cs-label {font-size:11px;color:rgba(255,255,255,0.5);text-transform:uppercase;letter-spacing:1px;}
body.page-coming-soon .cs-value {font-size:14px;font-weight:500;}
@media(max-width:560px) {
body.page-coming-soon .cs-container {padding:44px 28px;}
body.page-coming-soon .cs-container h1 {font-size:32px;}
body.page-coming-soon .cs-grid {grid-template-columns:1fr;}

}

body.page-coming-soon .migrated-inline-021 { font-weight:700; color:#E07820; }

body.page-coming-soon .migrated-inline-022 { margin-top:24px; justify-content:center; }

body.page-coming-soon .migrated-inline-023 { width:18px; height:18px; }

body.page-home .migrated-inline-024 { font-weight:700; color:#E07820; }

body.page-home .migrated-inline-025 { margin-top:24px; justify-content:center; }

body.page-home .migrated-inline-026 { width:18px; height:18px; }

body.page-home .migrated-inline-027 { text-align:center; }

body.page-home .migrated-inline-028 { text-align:left; }

body.page-home .migrated-inline-029 { text-align:left; font-size:48px; }

body.page-home .migrated-inline-030 { text-align:left; margin:0; }

body.page-home .migrated-inline-031 { background-image:url('../images/dr-samad-green.png'); }

body.page-home .migrated-inline-032 { background-image:url('../images/dr-mcgee-green 1.png'); }

body.page-home .migrated-inline-033 { background-image:url('../images/dr-papayannis-green 1.png'); }

body.page-home .migrated-inline-034 { background-image:url('../images/Beth Holoway.png'); }

body.page-home .migrated-inline-035 { display:none; }

body.page-home .migrated-inline-036 { background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%); display:flex; align-items:center; justify-content:center; }

body.page-home .migrated-inline-037 { font-size:64px; font-weight:700; color:rgba(255,255,255,0.15); letter-spacing:-2px; }

body.page-home .migrated-inline-038 { background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; }

body.page-home .migrated-inline-039 { background-image:url('../images/blog/blog-colonoscopy.jpg'); }

body.page-home .migrated-inline-040 { background-image:url('../images/blog/blog-gerd.jpg'); }

body.page-home .migrated-inline-041 { background-image:url('../images/blog/blog-fibroscan.jpg'); }

body.page-home .migrated-inline-042 { color:inherit; }

body.page-home .migrated-inline-043 { margin-bottom:24px; }


/* ===== Migrated internal CSS from leadership.html ===== */
body.page-leadership .lead-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px 80px;text-align:center;}
body.page-leadership .lead-hero .eyebrow {color:#E07820;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px;}
body.page-leadership .lead-hero h1 {font-size:54px;font-weight:600;letter-spacing:-1px;margin-bottom:16px;color:#fff;}
body.page-leadership .lead-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:680px;margin:0 auto;}
body.page-leadership .lead-hero-cta {display:inline-flex;align-items:center;gap:8px;background:#E07820;color:#fff;padding:14px 30px;border-radius:30px;text-decoration:none;font-weight:600;font-size:15px;margin-top:32px;transition:background 0.3s,transform 0.3s;}
body.page-leadership .lead-hero-cta:hover {background:#C5661A;transform:translateY(-2px);}
body.page-leadership .leaders {max-width:1100px;margin:80px auto;padding:0 32px;display:grid;gap:48px;}
body.page-leadership .leader {background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,0.06);display:grid;grid-template-columns:340px 1fr;}
body.page-leadership .leader-photo {background:linear-gradient(135deg,#1B3828,#0C1F14);min-height:380px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.18);font-size:96px;font-weight:700;}
body.page-leadership .leader-photo img {width:100%;height:100%;object-fit:cover;}
body.page-leadership .leader-photo img.leader-photo-top {object-position:top center;}
body.page-leadership .leader-body {padding:48px 56px;}
body.page-leadership .leader-role {color:#E07820;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;}
body.page-leadership .leader-body h2 {font-size:32px;font-weight:600;margin-bottom:6px;color:#1B3828;}
body.page-leadership .leader-creds {color:#5a6a5f;font-size:15px;margin-bottom:24px;}
body.page-leadership .leader-body p {color:#4a5a4f;font-size:15px;margin-bottom:14px;}
body.page-leadership .lead-cta {display:inline-flex;align-items:center;gap:8px;background:#1B3828;color:#fff;padding:12px 24px;border-radius:30px;text-decoration:none;font-weight:500;font-size:14px;margin-top:20px;}
body.page-leadership .lead-cta:hover {background:#E07820;}
body.page-leadership .placeholder {color:#a78b30;font-style:italic;background:#FAF6E6;border-left:3px solid #E07820;padding:12px 16px;border-radius:6px;margin-bottom:14px;font-size:14px;}
@media(max-width:840px) {
body.page-leadership .leader {grid-template-columns:1fr;}
body.page-leadership .leader-photo {min-height:280px;}
body.page-leadership .leader-body {padding:32px 28px;}
body.page-leadership .lead-hero {padding:64px 24px 56px;}
body.page-leadership .lead-hero h1 {font-size:36px;}

}

body.page-leadership .migrated-inline-044 { font-weight:700; color:#E07820; }

body.page-leadership .migrated-inline-045 { margin-top:24px; justify-content:center; }

body.page-leadership .migrated-inline-046 { width:18px; height:18px; }


/* ===== Migrated internal CSS from news.html ===== */
body.page-news .news-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px;text-align:center;}
body.page-news .news-hero .eyebrow {color:#E07820;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px;}
body.page-news .news-hero h1 {font-size:48px;font-weight:600;margin-bottom:16px;letter-spacing:-1px;color:#fff;}
body.page-news .news-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:760px;margin:0 auto;}
body.page-news .news-main {max-width:980px;margin:80px auto;padding:0 32px;}
body.page-news .news-card {background:#fff;border-radius:16px;padding:40px;box-shadow:0 4px 24px rgba(0,0,0,0.05);margin-bottom:24px;}
body.page-news .news-card h2 {font-size:24px;margin-bottom:12px;color:#1B3828;}
body.page-news .news-card p {color:#4a5a4f;margin-bottom:12px;}
body.page-news .placeholder-note {color:#a78b30;font-style:italic;background:#FAF6E6;border-left:3px solid #E07820;padding:12px 16px;border-radius:6px;font-size:14px;}
@media(max-width:768px) {
body.page-news .news-hero {padding:64px 24px;}
body.page-news .news-hero h1 {font-size:32px;}
body.page-news .news-main {margin:48px auto;}
body.page-news .news-card {padding:28px 24px;}

}

body.page-news .migrated-inline-047 { font-weight:700; color:#E07820; }

body.page-news .migrated-inline-048 { margin-top:24px; justify-content:center; }

body.page-news .migrated-inline-049 { width:18px; height:18px; }


/* ===== Migrated internal CSS from patient-forms.html ===== */
body.page-patient-forms .forms-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px;text-align:center;}
body.page-patient-forms .forms-hero .eyebrow {color:#E07820;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px;}
body.page-patient-forms .forms-hero h1 {font-size:48px;font-weight:600;margin-bottom:16px;letter-spacing:-1px;color:#fff;}
body.page-patient-forms .forms-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:760px;margin:0 auto;}
body.page-patient-forms .forms-main {max-width:980px;margin:80px auto;padding:0 32px;display:grid;gap:24px;}
body.page-patient-forms .forms-card {background:#fff;border-radius:16px;padding:40px;box-shadow:0 4px 24px rgba(0,0,0,0.05);}
body.page-patient-forms .forms-card h2 {font-size:24px;margin-bottom:12px;color:#1B3828;}
body.page-patient-forms .forms-card p {color:#4a5a4f;margin-bottom:12px;}
body.page-patient-forms .forms-list {margin-top:12px;padding-left:20px;color:#4a5a4f;}
body.page-patient-forms .forms-list li {margin-bottom:8px;color:#4a5a4f;}
body.page-patient-forms .forms-download {display:inline-flex;align-items:center;gap:8px;margin-top:16px;padding:12px 24px;background:#E07820;color:#fff;border-radius:30px;font-size:15px;font-weight:600;transition:background 0.25s,transform 0.25s;}
body.page-patient-forms .forms-download:hover {background:#C5661A;transform:translateY(-1px);color:#fff;}
body.page-patient-forms .placeholder-note {color:#a78b30;font-style:italic;background:#FAF6E6;border-left:3px solid #E07820;padding:12px 16px;border-radius:6px;font-size:14px;margin-top:16px;}
@media(max-width:768px) {
body.page-patient-forms .forms-hero {padding:64px 24px;}
body.page-patient-forms .forms-hero h1 {font-size:32px;}
body.page-patient-forms .forms-main {margin:48px auto;}
body.page-patient-forms .forms-card {padding:28px 24px;}

}

body.page-patient-forms .migrated-inline-050 { font-weight:700; color:#E07820; }

body.page-patient-forms .migrated-inline-051 { margin-top:24px; justify-content:center; }

body.page-patient-forms .migrated-inline-052 { width:18px; height:18px; }

body.page-physician-profile .migrated-inline-053 { font-weight:700; color:#E07820; }

body.page-physician-profile .migrated-inline-054 { margin-top:24px; justify-content:center; }

body.page-physician-profile .migrated-inline-055 { width:18px; height:18px; }

body.page-service .migrated-inline-056 { font-weight:700; color:#E07820; }

body.page-service .migrated-inline-057 { margin-top:24px; justify-content:center; }

body.page-service .migrated-inline-058 { width:18px; height:18px; }


/* ===== Migrated internal CSS from staff.html ===== */
body.page-staff .staff-hero {background:linear-gradient(135deg,#245238 0%,#1B3828 60%,#0C1F14 100%);color:#fff;padding:96px 64px;text-align:center;}
body.page-staff .staff-hero .eyebrow {color:#E07820;font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px;}
body.page-staff .staff-hero h1 {font-size:48px;font-weight:600;margin-bottom:16px;letter-spacing:-1px;color:#fff;}
body.page-staff .staff-hero p {font-size:18px;color:rgba(255,255,255,0.78);max-width:760px;margin:0 auto;}
body.page-staff .staff-main {max-width:1180px;margin:64px auto;padding:0 32px;}
body.page-staff .group-photo {width:100%;border-radius:20px;overflow:hidden;margin-bottom:48px;box-shadow:0 12px 36px rgba(0,0,0,0.10);}
body.page-staff .group-photo img {width:100%;height:auto;display:block;}
body.page-staff .staff-intro {max-width:760px;margin:0 auto 64px;text-align:center;}
body.page-staff .staff-intro p {font-size:16px;color:#4a5a4f;line-height:1.6;}
body.page-staff .staff-section-title {font-size:28px;font-weight:600;margin-bottom:8px;letter-spacing:-0.3px;color:#1B3828;}
body.page-staff .staff-section-sub {color:#5a6a5f;margin-bottom:24px;font-size:15px;}
body.page-staff .staff-grid {display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:24px;margin-bottom:64px;}
body.page-staff .staff-card {text-align:center;}
body.page-staff .staff-card .photo {width:100%;aspect-ratio:1;border-radius:14px;background:linear-gradient(135deg,#EAF4ED,#D3E5D8);display:flex;align-items:center;justify-content:center;color:#1B3828;font-size:32px;font-weight:700;margin-bottom:12px;box-shadow:0 2px 8px rgba(0,0,0,0.04);}
body.page-staff .staff-card .name {font-size:15px;font-weight:600;color:#1B3828;}
body.page-staff .staff-events {display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:48px;}
body.page-staff .staff-events .event {min-height:200px;border-radius:14px;background:linear-gradient(135deg,#EAF4ED,#D3E5D8);display:flex;align-items:center;justify-content:center;color:#5a6a5f;font-size:13px;letter-spacing:0.5px;}
body.page-staff .placeholder-note {color:#a78b30;font-style:italic;background:#FAF6E6;border-left:3px solid #E07820;padding:12px 16px;border-radius:6px;font-size:14px;margin-bottom:24px;}
@media(max-width:768px) {
body.page-staff .staff-hero {padding:64px 24px;}
body.page-staff .staff-hero h1 {font-size:32px;}

}

body.page-staff .migrated-inline-059 { font-weight:700; color:#E07820; }

body.page-staff .migrated-inline-060 { margin-top:24px; justify-content:center; }

body.page-staff .migrated-inline-061 { width:18px; height:18px; }

/* ===== Runtime State Classes ===== */
.form-submit.is-sent { background: #16a34a; }
.founder-photo-img.is-hidden { display: none; }
.founder-photo-placeholder.is-visible-flex { display: flex; }

/* ===== Language dropdown polish ===== */
body[class*="page-"] .lang-dropdown { min-width: 160px; }
body[class*="page-"] .lang-option { white-space: nowrap; }
body[class*="page-"] .lang-option[dir="rtl"] { text-align: right; }

@media (max-width: 576px) {
  body[class*="page-"] .nav-split-cta {
    gap: 6px;
    font-size: 12px;
  }

  body[class*="page-"] .nav-split-cta a {
    gap: 5px;
    padding: 7px 13px;
    line-height: 1.05;
  }

  body[class*="page-"] .nav-split-cta svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }
}

/* ===== Footer logo (global) ===== */
body[class*="page-"] .footer .footer-col:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body[class*="page-"] .footer img.footer-logo {
  height: 100px;
  width: auto;
  max-width: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

body[class*="page-"] .footer .footer-col:first-child .footer-desc {
  max-width: 320px;
}

body[class*="page-"] .footer .footer-col:first-child .footer-social {
  justify-content: center;
}

@media (max-width: 576px) {
  body[class*="page-"] .footer img.footer-logo {
    height: 72px;
  }
}

/* ===== Footer bottom (global) ===== */
body[class*="page-"] .footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0 24px;
}

body[class*="page-"] .footer .footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  justify-self: start;
}

body[class*="page-"] .footer .footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  justify-self: center;
  white-space: nowrap;
  transition: color 0.3s;
}

body[class*="page-"] .footer .footer-credit:hover {
  color: #E07820;
}

body[class*="page-"] .footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  justify-self: end;
}

body[class*="page-"] .footer .footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

body[class*="page-"] .footer .footer-legal a:hover {
  color: #E07820;
}

@media (max-width: 992px) {
  body[class*="page-"] .footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  body[class*="page-"] .footer .footer-copyright,
  body[class*="page-"] .footer .footer-credit {
    justify-self: center;
    text-align: center;
    white-space: normal;
    max-width: 100%;
  }

  body[class*="page-"] .footer .footer-legal {
    justify-content: center;
    justify-self: center;
    gap: 12px 20px;
  }
}

@media (max-width: 1200px) {
  body[class*="page-"] .footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  body[class*="page-"] .footer .footer-copyright,
  body[class*="page-"] .footer .footer-credit {
    justify-self: center;
    text-align: center;
    white-space: normal;
  }

  body[class*="page-"] .footer .footer-legal {
    justify-content: center;
    justify-self: center;
  }
}

/* ===== Global responsive polish ===== */
@media (min-width: 993px) {
  body.page-physician-profile .hero-photo.hero-cutout {
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
  }

  body.page-physician-profile .hero-cutout img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
  }
}

@media (max-width: 1200px) {
  body.page-asec .migrated-inline-009 {
    padding: 48px 40px;
  }

  body.page-asec .story-heading-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  body.page-asec .story-asec-logo {
    height: 80px;
    max-width: 180px;
  }
}

@media (max-width: 992px) {
  body.page-physician-profile .hero-photo.hero-cutout {
    min-height: 300px;
    max-height: none;
    padding: 0 24px 32px;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  }

  body.page-physician-profile .hero-cutout img {
    width: auto;
    max-width: min(100%, 380px);
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center bottom;
  }

  body.page-leadership .leaders {
    margin: 48px auto;
    padding: 0 20px;
    gap: 32px;
  }

  body.page-leadership .leader-photo {
    min-height: 320px;
    max-height: 420px;
  }

  body.page-leadership .leader-photo img.leader-photo-top {
    object-fit: cover;
    object-position: top center;
  }
}

@media (max-width: 768px) {
  body[class*="page-"] .footer .footer-main {
    flex-wrap: wrap;
    gap: 32px;
  }

  body[class*="page-"] .footer .footer-col {
    flex: 0 0 100%;
  }

  body[class*="page-"] .footer img.footer-logo {
    max-width: min(100%, 280px);
  }

  body.page-asec .migrated-inline-009 {
    padding: 40px 20px;
  }

  body.page-casc .casc-main {
    margin: 48px auto;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  body.page-physician-profile .hero-photo.hero-cutout {
    min-height: 260px;
    padding: 0 16px 24px;
  }

  body.page-physician-profile .hero-cutout img {
    max-width: min(100%, 300px);
    max-height: 360px;
  }

  body.page-physician-profile .hero-name {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  body.page-physician-profile .hero-badge {
    max-width: 100%;
  }

  body.page-physician-profile .hero-badge span {
    font-size: 12px;
  }

  body[class*="page-"] .footer img.footer-logo {
    height: 72px;
    max-width: min(100%, 240px);
  }

  body[class*="page-"] .footer .footer-copyright,
  body[class*="page-"] .footer .footer-credit,
  body[class*="page-"] .footer .footer-legal a {
    font-size: 11px;
  }

  body.page-asec .story-asec-logo {
    height: 64px;
    max-width: 140px;
  }

  body.page-casc .casc-logo {
    height: 72px;
    max-width: 220px;
  }

  body.page-leadership .lead-hero h1 {
    font-size: 32px;
  }

  body.page-leadership .leader-body h2 {
    font-size: 26px;
  }

  body.page-leadership .leader-photo {
    min-height: 260px;
    max-height: 340px;
  }
}

@media (max-width: 400px) {
  body[class*="page-"] .footer .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ===== Laptop / tablet nav + home hero fixes ===== */
@media (max-width: 1100px) {
  body[class*="page-"] .nav-links {
    display: none !important;
  }

  body[class*="page-"] .mega-menu {
    display: none !important;
  }

  body[class*="page-"] .hamburger {
    display: flex !important;
  }

  body[class*="page-"] .navbar {
    padding-left: 24px !important;
    padding-right: 24px !important;
    gap: 12px;
    flex-wrap: nowrap;
  }

  body[class*="page-"] .nav-logo {
    height: 56px;
    flex-shrink: 0;
  }

  body[class*="page-"] .nav-split-cta {
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
  }

  body[class*="page-"] .nav-split-cta a {
    padding: 7px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  body[class*="page-"] .nav-split-cta svg {
    width: 15px;
    height: 15px;
    min-width: 15px;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  body.page-home .hero {
    width: 100%;
    max-width: 100%;
    padding: 64px 32px 0;
    min-height: 520px;
    gap: 16px;
    overflow: hidden;
    box-sizing: border-box;
  }

  body.page-home .hero-content {
    flex: 0 1 440px;
    max-width: 46%;
    min-width: 0;
    padding-bottom: 64px;
  }

  body.page-home .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  body.page-home .hero p {
    font-size: 15px;
  }

  body.page-home .hero-buttons {
    gap: 16px;
    flex-wrap: wrap;
  }

  body.page-home .hero-image {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    align-self: flex-end;
    margin-right: -32px;
  }

  body.page-home .hero-image img {
    height: 400px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
  }
}

@media (max-width: 1100px) and (min-width: 993px) {
  body.page-home .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  body.page-home .hero-content {
    max-width: 50%;
  }

  body.page-home .hero-image {
    margin-right: -24px;
  }

  body.page-home .hero-image img {
    height: 360px;
  }
}

html {
  overflow-x: clip;
}

body[class*="page-"] {
  overflow-x: clip;
}

.service-seo-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.page-service #pageContent:not(.is-loaded) {
  min-height: 480px;
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
}

body.page-service #main-content.page-transition {
  opacity: 1;
  transform: none;
  transition: none;
}

body.page-service #pageContent {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-service #pageContent.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.page-service #pageContent {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

#main-content.page-transition {
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

#main-content.page-transition.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  #main-content.page-transition {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #1E3151;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* ===== GLOBAL MOBILE NAV (all pages) ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #1B3828;
  background: none;
  border: none;
  font-family: inherit;
  z-index: 1001;
}

.mobile-menu .nav-link,
.mobile-menu .nav-cta {
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 14px 0;
  min-height: 48px;
  border-bottom: 1px solid #e5e7eb;
  color: #1B3828;
}

.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  font-size: 20px;
  font-weight: 300;
  color: #1B3828;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.mobile-accordion-toggle .toggle-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
  pointer-events: none;
}

.mobile-accordion-toggle.open .toggle-icon {
  transform: rotate(45deg);
}

.mobile-accordion-content {
  display: none;
  padding: 0 0 8px 16px;
}

.mobile-accordion-content.open {
  display: block;
}

.mobile-accordion-content a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 400;
  color: #1B3828;
  padding: 8px 0;
  border-bottom: 1px solid #f0f1f3;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-accordion-content a:hover,
.mobile-accordion-content a:active {
  color: #E07820;
}

.mobile-accordion-content a:last-child {
  border-bottom: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B3828;
  transition: all 0.3s;
  pointer-events: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none !important;
  }

  .mega-menu {
    display: none !important;
  }

  .nav-split-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
  }

  .navbar {
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  .hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 10px;
  }

  .hamburger span {
    width: 20px;
  }

  .navbar {
    padding: 10px 12px;
    gap: 8px;
  }
}

/* ===== 404 ERROR PAGE ===== */
body.page-error .hero {
  min-height: 420px;
  background: linear-gradient(135deg, #1B3828 0%, #102B1C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

body.page-error .hero-content {
  max-width: 640px;
  color: #fff;
}

body.page-error .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 7px 20px;
  margin-bottom: 20px;
  font-size: 13px;
}

body.page-error .hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #E07820;
  border-radius: 50%;
}

body.page-error .hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: #fff;
}

body.page-error .hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

body.page-error .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

body.page-error .btn-primary,
body.page-error .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

body.page-error .btn-primary {
  background: #E07820;
  color: #fff;
}

body.page-error .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

body.page-error .mega-menu {
  display: none !important;
}

/* ===== Global header layout: 1440px and short viewports ===== */
@media (max-width: 1500px) and (min-width: 993px) {
  .navbar {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 1440px) {
  .top-bar,
  .location-bar {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mega-menu {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1440px) and (min-width: 993px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    gap: 12px;
  }

  .navbar .nav-logo-link {
    flex: 0 0 auto;
  }

  .navbar .nav-logo {
    height: 50px;
  }

  .navbar .nav-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 0.9vw, 14px);
    min-width: 0;
    max-width: 100%;
    padding: 0 4px;
  }

  .navbar .nav-link {
    font-size: 12.5px;
    padding: 4px 0;
    gap: 4px;
    white-space: nowrap;
  }

  .navbar .nav-link .chevron {
    width: 7px;
    height: 4px;
  }

  .navbar .nav-split-cta {
    flex: 0 0 auto;
    gap: 6px;
    font-size: 12px;
  }

  .navbar .nav-split-cta a {
    padding: 6px 11px;
    gap: 5px;
    white-space: nowrap;
  }

  .navbar .nav-split-cta svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 1440px) and (max-height: 800px) and (min-width: 993px) {
  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-image img {
    height: 420px;
  }
}

/* ===== Tablet hero layout (768px and similar) ===== */
@media (max-width: 992px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    column-gap: 0;
  }

  body.page-home .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 36px 24px 0;
    min-height: auto;
  }

  body.page-home .hero-content {
    max-width: 100%;
    padding-bottom: 24px;
  }

  body.page-home .hero-badge {
    margin-bottom: 12px;
  }

  body.page-home .hero h1 {
    font-size: 34px;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
  }

  body.page-home .hero p {
    font-size: 15px;
    max-width: 100%;
  }

  body.page-home .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  body.page-home .hero-image {
    align-self: center;
    width: 100%;
    max-width: 480px;
    justify-content: center;
    margin-top: 16px;
  }

  body.page-home .hero-image img {
    height: auto;
    max-height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}

@media (max-width: 992px) and (max-height: 800px) {
  body.page-home .hero {
    padding-top: 28px;
  }

  body.page-home .hero-content {
    padding-bottom: 16px;
  }

  body.page-home .hero h1 {
    font-size: 30px;
  }

  body.page-home .hero-buttons {
    margin-top: 20px;
  }

  body.page-home .hero-image {
    margin-top: 12px;
  }

  body.page-home .hero-image img {
    max-height: 200px;
  }
}
