/* ================================================
   NEW YORK CANCER & BLOOD SPECIALISTS
   Complete CSS Framework - Enhanced Provider Directory
   ================================================ */

/* ================================================
   1. CSS VARIABLES & GLOBAL SETTINGS
   ================================================ */
:root {
  /* Brand Colors */
  --nycbs-purple: #763d76;
  --nycbs-blue: #008dd0;
  --nycbs-light-blue: #0099e0;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #7a7a7a;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f3f4f6;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition: all 0.3s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
}

/* ================================================
   2. RESET & BASE STYLES
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
}

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

/* ================================================
   3. TYPOGRAPHY
   ================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
}
h3 {
  font-size: clamp(22px, 3vw, 28px);
}
h4 {
  font-size: clamp(18px, 2.5vw, 22px);
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

a {
  color: var(--nycbs-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--nycbs-light-blue);
}

/* ================================================
   4. UTILITY CLASSES
   ================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.mt-1 {
  margin-top: var(--space-xs);
}
.mt-2 {
  margin-top: var(--space-sm);
}
.mt-3 {
  margin-top: var(--space-md);
}
.mt-4 {
  margin-top: var(--space-lg);
}
.mt-5 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-xs);
}
.mb-2 {
  margin-bottom: var(--space-sm);
}
.mb-3 {
  margin-bottom: var(--space-md);
}
.mb-4 {
  margin-bottom: var(--space-lg);
}
.mb-5 {
  margin-bottom: var(--space-xl);
}

.p-1 {
  padding: var(--space-xs);
}
.p-2 {
  padding: var(--space-sm);
}
.p-3 {
  padding: var(--space-md);
}
.p-4 {
  padding: var(--space-lg);
}
.p-5 {
  padding: var(--space-xl);
}

/* ================================================
   5. BUTTON STYLES
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(118, 61, 118, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 61, 118, 0.35);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--nycbs-purple);
  border: 2px solid var(--nycbs-purple);
}

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

.hero-buttons .btn-secondary,
.dark-bg .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover,
.dark-bg .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-3px);
}

.btn-blue {
  background: var(--nycbs-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 141, 208, 0.25);
}

.btn-blue:hover {
  background: var(--nycbs-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 141, 208, 0.35);
  color: white;
}

.btn-white {
  background: white;
  color: var(--nycbs-purple);
  border: 2px solid var(--nycbs-purple);
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 15px;
}

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

.btn-icon-only {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.btn-full {
  width: 100%;
}

@media (max-width: 768px) {
  .btn-full-mobile {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================================
   6. CARD STYLES
   ================================================ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ================================================
   7. FORM ELEMENTS
   ================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--nycbs-blue);
  box-shadow: 0 0 0 4px rgba(0, 141, 208, 0.1);
}

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

/* ================================================
   8. GRID SYSTEM
   ================================================ */
.grid {
  display: grid;
  gap: 24px;
}

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

/* ================================================
   9. HEADER COMPONENTS
   ================================================ */
.eyebrow {
  background: var(--bg-light);
  padding: 10px 5%;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.eyebrow-left {
  display: flex;
  align-items: center;
}

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

.tagline {
  color: var(--text-secondary);
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
}

.eyebrow .btn {
  padding: 6px 18px;
  font-size: 13px;
}

.portal-link {
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.portal-link:hover {
  color: var(--nycbs-blue);
}

.portal-link i {
  color: var(--nycbs-blue);
  font-size: 16px;
}

.main-header {
  background: var(--bg-white);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.logo img {
  height: 60px;
}

.main-header .btn {
  font-size: 16px;
  padding: 12px 28px;
}

/* ================================================
   10. NAVIGATION
   ================================================ */
nav.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 40px;
  padding: 18px 0;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-links > a::after,
.dropdown > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--nycbs-blue);
  transition: width 0.3s ease;
}

.nav-links > a:hover,
.dropdown > a:hover {
  color: var(--nycbs-blue);
}

.nav-links > a:hover::after,
.dropdown > a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--nycbs-blue);
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin-bottom: 5px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.mobile-nav {
  display: none;
}

.mobile-nav a.active {
  color: var(--nycbs-blue);
  background: rgba(0, 141, 208, 0.05);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown i {
  font-size: 10px;
  transition: var(--transition);
}

.dropdown:hover i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--bg-white);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--nycbs-blue);
  transform: translateX(5px);
}

.dropdown-content i {
  color: var(--nycbs-blue);
  width: 20px;
  text-align: center;
}

/* ================================================
   11. FOOTER
   ================================================ */
#footer-placeholder {
  background: linear-gradient(135deg, #1a1d20 0%, #2e3336 100%);
  color: #c9cfd4;
  /*padding: 60px 5% 30px;*/
  margin-top: 10px; /* 80px */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 12px;
  font-style: italic;
  opacity: 0.8;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--nycbs-blue);
  transform: translateY(-3px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-columns h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns li {
  margin-bottom: 12px;
}

.footer-columns a {
  color: #a8b0b7;
  font-size: 15px;
  transition: var(--transition);
}

.footer-columns a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}

/* ================================================
   12. SECTION STYLES
   ================================================ */
.section {
  padding: 60px 5%;
}

.section-light {
  background: var(--bg-light);
}

.section-white {
  background: var(--bg-white);
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.section-subheading {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   13. ANIMATIONS
   ================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 141, 208, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 141, 208, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 141, 208, 0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease;
}

.animate-slideIn {
  animation: slideIn 0.3s ease;
}

.animate-pulse {
  animation: pulse 1.5s infinite;
}

/* ================================================
   14. RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }

  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  .grid-cols-4,
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  /* Hide the entire navbar on mobile since hamburger will be in header */
  nav.navbar {
    display: none;
  }

  /* Update main header to show hamburger */
  .main-header {
    position: relative;
  }

  .main-header .hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1002;
  }

  .main-header .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin-bottom: 5px;
    border-radius: var(--radius-full);
    transition: var(--transition);
  }

  .main-header .hamburger span:last-child {
    margin-bottom: 0;
  }

  /* Keep navbar container styles for the mobile menu */
  .navbar-container {
    position: relative;
    padding: 0 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* Hide the navbar's hamburger on mobile */
  .navbar-container .hamburger {
    display: none;
  }

  /* When mobile menu is open, style the hamburger in header */
  .main-header .hamburger.open span:nth-child(1),
  .navbar-container.open ~ .main-header .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .main-header .hamburger.open span:nth-child(2),
  .navbar-container.open ~ .main-header .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .main-header .hamburger.open span:nth-child(3),
  .navbar-container.open ~ .main-header .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: 80px 20px 20px;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar-container.open .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: slideIn 0.3s ease;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .section {
    padding: 40px 20px;
  }

  .section-heading {
    font-size: 28px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .form-input {
    font-size: 16px;
  }

  .main-header {
    padding: 15px 20px;
  }

  .logo img {
    height: 45px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    font-size: 12px;
    padding: 8px 12px;
  }

  .eyebrow-right {
    gap: 10px;
  }

  .eyebrow .btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .portal-link {
    font-size: 12px;
  }
}
/* ================================================
   16. MOBILE RESPONSIVE HOMEPAGE
   ================================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px 50px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 320px;
    margin: 0 auto;
  }

  .feature {
    font-size: 16px;
  }

  .response-section {
    padding: 30px 16px;
    border-radius: 0;
  }

  .chat-header-intro h2 {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .response-section .input-container {
    gap: 8px;
  }

  .response-section .input-container input {
    font-size: 16px;
    padding: 16px 20px;
  }

  .response-section .input-container button {
    padding: 16px;
    width: 48px;
    min-width: 48px;
    border-radius: 50%;
  }

  .response-section .input-container button .button-text {
    display: none;
  }

  .response-section .input-container button i {
    margin: 0;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

/* ================================================
   17. INTERIOR PAGE STYLES
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 60px 5%;
  color: white;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
  color: white;
}

/* ================================================
   18. PROVIDER CARDS
   ================================================ */
.provider-card {
  display: flex;
  gap: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.provider-image {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.provider-info {
  flex: 1;
}

.provider-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.provider-specialty {
  color: var(--nycbs-purple);
  font-size: 18px;
  margin-bottom: 12px;
}

.provider-locations {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.location-tag {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text-secondary);
}

/* ================================================
   19. LOCATION CARDS
   ================================================ */
.location-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.location-map {
  height: 200px;
  background: var(--bg-light);
  position: relative;
}

.location-details {
  padding: 24px;
}

.location-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.location-info-item i {
  color: var(--nycbs-blue);
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

/* ================================================
   20. BLOG/NEWS ARTICLE STYLES
   ================================================ */
.article-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--text-secondary);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta i {
  color: var(--nycbs-blue);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
}

.article-content h3 {
  font-size: 22px;
  margin: 32px 0 16px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}

.article-content blockquote {
  border-left: 4px solid var(--nycbs-purple);
  padding-left: 24px;
  margin: 32px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
}

.article-content ul,
.article-content ol {
  margin: 20px 0 20px 40px;
}

.article-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-sidebar {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ================================================
   21. FILTER AND SEARCH COMPONENTS
   ================================================ */
.filter-bar {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:focus {
  outline: none;
  border-color: var(--nycbs-blue);
}

.search-input-group {
  position: relative;
}

.search-input-group input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: var(--transition);
}

.search-input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.results-count {
  font-size: 18px;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text-primary);
}

/* ================================================
   22. PAGINATION
   ================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: var(--transition);
}

.pagination a {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 2px solid #e2e8f0;
}

.pagination a:hover {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.pagination .active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 20px;
}

/* ================================================
   23. MOBILE RESPONSIVE - INTERIOR PAGES
   ================================================ */
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 20px;
  }

  .provider-card {
    flex-direction: column;
    text-align: center;
  }

  .provider-image {
    margin: 0 auto;
  }

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

  .article-meta {
    flex-direction: column;
    gap: 12px;
  }

  .pagination {
    flex-wrap: wrap;
  }
  
  .killmobile {
	  display:none;
  }
  
}

/* ================================================
   24. PROVIDER DETAIL PAGE STYLES
   ================================================ */
.provider-hero {
  background: var(--bg-light);
  padding: 24px 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-pill {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-light);
  color: var(--nycbs-purple);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(118, 61, 118, 0.2);
}

.expertise-pill:hover {
  background: var(--nycbs-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(118, 61, 118, 0.2);
}

.provider-bio-section {
  padding-top: 40px;
}

.provider-bio-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.provider-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.provider-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.provider-rating {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.provider-rating .stars {
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 8px;
}

.provider-rating p {
  font-size: 16px;
  color: var(--text-secondary);
}

.provider-languages {
  margin-bottom: 24px;
}

.provider-languages h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.provider-languages ul {
  list-style: none;
}

.provider-languages li {
  padding: 8px 0;
  font-size: 16px;
}

.provider-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-bio-content h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

.provider-subtitle {
  font-size: 22px;
  color: var(--nycbs-purple);
  margin-bottom: 32px;
}

.bio-text p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.tab-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-button {
  padding: 16px 32px;
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-button:hover {
  border-color: var(--nycbs-purple);
  color: var(--nycbs-purple);
}

.tab-button.active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.tab-content {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.info-card i {
  font-size: 40px;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 16px;
  color: var(--text-secondary);
}

.hospital-affiliation {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.hospital-affiliation:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hospital-affiliation i {
  font-size: 32px;
  color: var(--nycbs-blue);
  margin-bottom: 12px;
}

.hospital-affiliation h4 {
  font-size: 16px;
  font-weight: 600;
}

.video-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reviews-wrapper {
  position: relative;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(118, 61, 118, 0.1);
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.review-stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--text-secondary);
}

/* ENHANCED CTA SECTION - More Subtle - FIXED TEXT */
.provider-cta-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background effect - much more toned down */
.provider-cta-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 40%;
  height: 140%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: gentle-float 20s ease-in-out infinite;
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

.provider-cta-section .cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.provider-cta-section .cta-content h2 {
  color: white !important;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.provider-cta-section .cta-content p {
  color: white !important;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 1;
}

/* Subtle pulse effect */
.pulse-cta {
  position: relative;
  z-index: 3;
}

.pulse-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
  }
}

/* ================================================
   24. PROVIDER DETAIL PAGE STYLES (EXTENDED FROM provider-temp-inline.html)
   ================================================ */

/* Hero Section with Light Background - from inline styles */
.provider-detail-hero-light {
  background: var(--bg-light);
  padding-top: 40px;
}

.provider-detail-hero-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: start;
}

.provider-detail-sidebar {
  position: sticky;
  top: 100px;
}

.provider-detail-main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.provider-detail-title {
  font-size: 42px;
  color: var(--nycbs-purple);
  margin-bottom: 8px;
}

.provider-detail-subtitle {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.provider-detail-text-center {
  text-align: center;
  margin-top: 24px;
}

/* Professional Background Grid - from inline styles */
.provider-detail-prof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.provider-detail-info-item {
  margin-bottom: 30px;
}

.provider-detail-info-item:last-child {
  margin-bottom: 0;
}

.provider-detail-info-item h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

.provider-detail-info-item h4.extra-margin {
  margin-bottom: 12px;
}

.provider-detail-info-item p {
  color: var(--text-secondary);
}

.provider-detail-cert-list {
  list-style: none;
  padding: 0;
  color: var(--text-secondary);
}

.provider-detail-cert-list li {
  margin-bottom: 6px;
}

.provider-detail-cert-list li:last-child {
  margin-bottom: 0;
}

/* About Section Styles - from inline */
.provider-detail-lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Office Location Cards - from inline styles */
.provider-detail-location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.provider-detail-location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.provider-detail-location-icon {
  color: var(--nycbs-blue);
  font-size: 20px;
}

.provider-detail-location-card strong {
  color: var(--text-primary);
  display: block;
}

.provider-detail-location-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.provider-detail-chevron {
  margin-left: auto;
  color: var(--text-secondary);
}

/* Section Headers - from inline */
.provider-detail-section-header {
  font-size: 24px;
  margin-bottom: 16px;
}

/* Action Buttons Area */
.provider-detail-actions-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

/* Video Section */
.provider-detail-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
  margin-bottom: 40px;
}

.provider-detail-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Button Width Utilities */
.provider-detail-btn-full {
  width: 100%;
}

/* Stars Rating */
.provider-detail-stars {
  margin-bottom: 12px;
  text-align: center;
  color: #ffb400;
  font-size: 20px;
}

.provider-detail-stars i {
  margin: 0 2px;
}

/* Info Header with Extra Spacing */
.provider-detail-info-header-spacing {
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .provider-detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .provider-detail-sidebar {
    position: static;
  }

  .provider-detail-title {
    font-size: 32px;
  }

  .provider-detail-subtitle {
    font-size: 20px;
  }

  .provider-detail-prof-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   25. MOBILE RESPONSIVE - PROVIDER DETAIL
   ================================================ */
@media (max-width: 1024px) {
  .provider-bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .provider-info-card {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .provider-bio-content h1 {
    font-size: 32px;
  }

  .provider-subtitle {
    font-size: 18px;
  }

  .bio-text p {
    font-size: 16px;
  }

  .tab-nav {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
    justify-content: center;
  }

  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .review-card {
    margin-bottom: 20px;
  }

  .provider-cta-section {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 17px;
  }
}

/* ================================================
   26. PROVIDER LISTING STYLES
   ================================================ */
.provider-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.provider-card-link:hover {
  text-decoration: none;
}

.provider-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.provider-rating-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

.provider-rating-inline .stars {
  color: #ffb400;
}

.provider-rating-inline span {
  color: var(--text-secondary);
}

/* ================================================
   27. PROVIDER DIRECTORY STYLES
   ================================================ */
.provider-search-box {
  max-width: 800px;
  margin: 0 auto 40px;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 20px 60px 20px 60px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 18px;
  transition: var(--transition);
  background: var(--bg-white);
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--nycbs-blue);
  box-shadow: 0 0 0 4px rgba(0, 141, 208, 0.1);
}

.search-input-wrapper i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 20px;
}

.filter-section {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 32px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--nycbs-purple);
  color: var(--nycbs-purple);
}

.filter-btn.active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.results-count {
  font-size: 18px;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text-primary);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.provider-directory-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.provider-directory-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
}

.provider-card-header {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-thumbnail {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.provider-basic-info {
  flex: 1;
}

.provider-basic-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--nycbs-purple);
  margin-bottom: 4px;
}

.provider-credentials {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.provider-basic-info .provider-specialty {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.provider-card-body {
  padding: 20px 24px;
}

.provider-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.provider-detail-row:last-child {
  margin-bottom: 0;
}

.provider-detail-row i {
  color: var(--nycbs-blue);
  width: 16px;
  text-align: center;
}

.provider-card-footer {
  padding: 20px 24px;
  background: var(--bg-light);
  text-align: center;
}

.view-profile-btn {
  color: var(--nycbs-blue);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.provider-directory-card:hover .view-profile-btn {
  color: var(--nycbs-purple);
}

.no-results-box {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.no-results-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.no-results-box p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.provider-directory-card .provider-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 4px;
}

.provider-directory-card .provider-rating .stars {
  color: #ffb400;
  display: flex;
  gap: 2px;
}

.provider-directory-card .provider-rating span {
  color: var(--text-secondary);
  font-size: 13px;
}

.cta-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================
   28. MOBILE RESPONSIVE - PROVIDER DIRECTORY
   ================================================ */
@media (max-width: 768px) {
  .search-input-wrapper input {
    padding: 16px 50px;
    font-size: 16px;
  }

  .search-input-wrapper i {
    left: 20px;
    font-size: 18px;
  }

  .filter-section {
    padding: 24px 16px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .results-info {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .providers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .provider-card-header {
    padding: 20px 16px;
  }

  .provider-thumbnail {
    width: 80px;
    height: 80px;
  }

  .provider-basic-info h3 {
    font-size: 18px;
  }

  .provider-card-body {
    padding: 16px;
  }

  .provider-detail-row {
    font-size: 14px;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-box p {
    font-size: 17px;
  }
}

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

/* ================================================
   29. ENHANCED PROVIDER DIRECTORY STYLES - UPDATED
   ================================================ */

/* Enhanced Search Section */
.enhanced-provider-search {
  max-width: 800px;
  margin: 0 auto 40px;
}

.search-wrapper {
  position: relative;
  display: flex;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.search-wrapper:focus-within {
  border-color: var(--nycbs-blue);
  box-shadow: 0 8px 25px rgba(0, 141, 208, 0.2);
}

.search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 18px;
  z-index: 2;
}

.smart-search-input {
  flex: 1;
  border: none;
  padding: 18px 60px 18px 60px;
  font-size: 17px;
  border-radius: 20px;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.smart-search-input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: var(--nycbs-blue);
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.search-btn:hover {
  background: var(--nycbs-light-blue);
  transform: translateY(-1px);
}

/* Search Suggestions */
.search-suggestions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.suggestion-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.suggestion-chip {
  background: var(--bg-light);
  border: 1px solid rgba(118, 61, 118, 0.2);
  color: var(--nycbs-purple);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggestion-chip:hover {
  background: var(--nycbs-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(118, 61, 118, 0.25);
}

/* Smart Filters */
.smart-filters {
  background: var(--bg-light);
  border-radius: 16px;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-toggle {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle:hover {
  background: var(--bg-light);
}

.filter-toggle i:first-child {
  color: var(--nycbs-blue);
}

.toggle-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.filter-content {
  display: none;
  padding: 24px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

.filter-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-select:focus {
  outline: none;
  border-color: var(--nycbs-blue);
  box-shadow: 0 0 0 3px rgba(0, 141, 208, 0.1);
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  margin-left: 8px;
}

/* Active Filters */
.active-filters {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.active-filters-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  background: var(--nycbs-purple);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.remove-filter {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.remove-filter:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* AI Helper Card */
.ai-helper-card {
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 141, 208, 0.1);
}

.ai-helper-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.ai-icon {
  width: 60px;
  height: 60px;
  background: var(--nycbs-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.ai-text {
  flex: 1;
}

.ai-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ai-text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* Results Header */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.results-count {
  font-size: 16px;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text-primary);
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Enhanced Provider Grid */
.enhanced-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Enhanced Provider Cards */
.enhanced-provider-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.enhanced-provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--nycbs-purple);
}

.enhanced-provider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nycbs-purple), var(--nycbs-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-provider-card:hover::before {
  opacity: 1;
}

.provider-card-top {
  padding: 24px 24px 0;
}

.provider-avatar-section {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.provider-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}

.availability-badge.accepting {
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
}

.availability-badge.accepting i {
  color: #059669;
}

.provider-main-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--nycbs-purple);
  margin-bottom: 4px;
}

.provider-credentials {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.provider-specialty {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.provider-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.provider-rating .stars {
  color: #ffb400;
  display: flex;
  gap: 2px;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 13px;
}

.provider-quick-details {
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.detail-item i {
  color: var(--nycbs-blue);
  width: 16px;
  text-align: center;
}

.provider-card-actions {
  padding: 20px 24px;
  background: var(--bg-light);
  display: flex;
  gap: 12px;
}

.btn-card-primary,
.btn-card-secondary {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-card-primary {
  background: var(--nycbs-purple);
  color: white;
}

.btn-card-primary:hover {
  background: #8b4a8b;
  transform: translateY(-1px);
  color: white;
}

.btn-card-secondary {
  background: white;
  color: var(--nycbs-purple);
  border: 1px solid var(--nycbs-purple);
}

.btn-card-secondary:hover {
  background: var(--nycbs-purple);
  color: white;
}

/* ================================================
   30. MOBILE RESPONSIVE - ENHANCED PROVIDER DIRECTORY
   ================================================ */
@media (max-width: 768px) {
  /* Search */
  .search-wrapper {
    flex-direction: column;
    padding: 12px;
  }

  .smart-search-input {
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 8px;
  }

  .search-icon {
    display: none;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .search-btn .desktop-only {
    display: none;
  }

  .search-btn .mobile-only {
    display: inline;
  }

  /* Suggestions */
  .search-suggestions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Filters */
  .filter-grid {
    grid-template-columns: 1fr;
  }

  /* AI Helper */
  .ai-helper-content {
    flex-direction: column;
    text-align: center;
  }

  /* Results Header */
  .results-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* Provider Cards */
  .enhanced-providers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .provider-avatar-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .availability-badge {
    margin: 0;
  }

  .provider-card-actions {
    flex-direction: column;
  }
}

/* ================================================
   31. NEW PROVIDER PAGE HEADER (REPLACES PURPLE HERO)
   ================================================ */
.provider-page-header {
  background: var(--bg-light);
  padding: 40px 5% 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.provider-page-header p {
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.provider-page-header .breadcrumb {
  justify-content: center;
  margin-bottom: 24px;
}

/* ================================================
   32. SEARCH SECTION LAYOUT
   ================================================ */
.search-section {
  padding: 60px 5% 40px;
  background: white;
}

/* ================================================
   33. MODERN PROVIDER CARDS (2025 DESIGN) - FIXED GRID
   ================================================ */
.modern-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .modern-providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modern-providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .modern-providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modern-provider-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.modern-provider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--nycbs-purple);
}

.modern-provider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--nycbs-purple), var(--nycbs-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-provider-card:hover::before {
  opacity: 1;
}

.provider-image-section {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.provider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-provider-card:hover .provider-image {
  transform: scale(1.05);
}

.provider-info-section {
  padding: 28px;
}



.provider-info-section .provider-name {
  font-size: 23px;
  font-weight: 700;
  color: var(--nycbs-purple);
  margin-bottom: 8px;
  line-height: 1.3;
}

.provider-info-section .provider-specialty {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.provider-location,
.provider-languages {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.provider-location i,
.provider-languages i {
  color: var(--nycbs-blue);
  width: 16px;
  text-align: center;
}

.provider-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nycbs-purple);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.provider-cta:hover {
  background: #8b4a8b;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(118, 61, 118, 0.3);
}

.provider-cta i {
  transition: transform 0.3s ease;
}

.provider-cta:hover i {
  transform: translateX(4px);
}

/* ================================================
   34. CTA SECTION IMPROVEMENTS
   ================================================ */
.cta-section {
  background: var(--bg-light);
  padding: 80px 5%;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* ================================================
   35. MOBILE FIXES & RESPONSIVE IMPROVEMENTS
   ================================================ */
@media (max-width: 768px) {
  /* REMOVED hamburger positioning - handled in section 14 */

  /* Provider page header mobile */
  .provider-page-header {
    padding: 30px 20px 40px;
  }

  .provider-page-header h1 {
    font-size: 28px;
  }

  .provider-page-header p {
    font-size: 17px;
  }

  /* Search section mobile */
  .search-section {
    padding: 40px 20px 30px;
  }

  /* Modern provider cards mobile */
  .modern-providers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .provider-image-section {
    height: 240px;
  }

  .provider-info-section {
    padding: 24px 20px;
  }

  .provider-info-section .provider-name {
    font-size: 22px;
  }

  .provider-cta {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  /* CTA section mobile fixes */
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 17px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Search wrapper mobile fixes */
  .search-wrapper {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .smart-search-input {
    padding: 16px 20px;
    text-align: center;
  }

  .search-icon {
    display: none;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  /* AI helper mobile */
  .ai-helper-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .ai-text h4 {
    font-size: 16px;
  }

  .ai-text p {
    font-size: 14px;
  }

  /* Results header mobile */
  .results-header {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .provider-page-header {
    padding: 20px 15px 30px;
  }

  .search-section {
    padding: 30px 15px 20px;
  }

  .cta-section {
    padding: 60px 15px;
  }

  .modern-provider-card {
    border-radius: 16px;
  }

  .provider-image-section {
    height: 200px;
  }

  .provider-info-section {
    padding: 20px 16px;
  }
}
/* ================================================
   35. ABOUT PAGE STYLES
   ================================================ */
.about-hero {
  background: var(--bg-light);
  padding: 40px 5% 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.mission-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.mission-highlights {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--nycbs-purple);
}

.highlight-item i {
  color: var(--nycbs-blue);
  font-size: 18px;
}

.mission-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--nycbs-purple);
  margin-bottom: 12px;
}

.stat-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.stat-item p {
  color: var(--text-secondary);
  margin: 0;
}

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 59px;
  top: 60px;
  width: 2px;
  height: calc(100% + 30px);
  background: var(--bg-gray);
}

.timeline-year {
  background: var(--nycbs-purple);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-align: center;
  height: fit-content;
  position: relative;
  z-index: 1;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  margin: 0;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--nycbs-purple), var(--nycbs-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 32px;
  color: white;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.value-card p {
  margin: 0;
  line-height: 1.6;
}

.leadership-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.leader-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.leader-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.leader-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.leader-title {
  color: var(--nycbs-purple);
  font-weight: 600;
  margin-bottom: 16px;
}

.leader-bio {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
}

.about-cta-section .cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-cta-section .cta-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.about-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================================
   36. BLOG PAGE STYLES
   ================================================ */
.blog-hero {
  background: var(--bg-light);
  padding: 40px 5% 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.blog-controls {
  background: var(--bg-white);
  padding: 30px 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  flex: 0 0 300px;
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.search-box input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--nycbs-blue);
  box-shadow: 0 0 0 3px rgba(0, 141, 208, 0.1);
}

.category-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-light);
  border: 2px solid transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--nycbs-purple);
  border-color: var(--nycbs-purple);
}

.filter-btn.active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.featured-article {
  padding: 60px 5%;
  background: var(--bg-white);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-image {
  position: relative;
  height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--nycbs-blue);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.3;
}

.featured-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-grid-section {
  padding: 60px 5%;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--nycbs-purple);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 28px;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.article-meta .category {
  color: var(--nycbs-purple);
  font-weight: 600;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
}

.blog-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: var(--bg-light);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.read-more {
  color: var(--nycbs-blue);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--nycbs-purple);
}

.read-more i {
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(4px);
}

.load-more-section {
  text-align: center;
  margin-top: 60px;
}

.articles-count {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 16px;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 16px;
}

.newsletter-content p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  flex-shrink: 0;
}

.newsletter-disclaimer {
  color: white;
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* ================================================
   37. MOBILE RESPONSIVE - ABOUT & BLOG PAGES
   ================================================ */
@media (max-width: 768px) {
  /* About page mobile */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-highlights {
    flex-direction: column;
    gap: 16px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .timeline-item::after {
    left: 39px;
  }

  .timeline-year {
    padding: 12px 8px;
    font-size: 14px;
  }

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

  .leadership-preview {
    grid-template-columns: 1fr;
  }

  .about-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Blog page mobile */
  .blog-filters {
    flex-direction: column;
    gap: 20px;
  }

  .search-box {
    flex: 1;
    max-width: 100%;
  }

  .category-filters {
    justify-content: center;
  }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-image {
    height: 250px;
  }

  .featured-content {
    padding: 28px;
  }

  .featured-content h2 {
    font-size: 24px;
  }

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

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

  .newsletter-input {
    margin-bottom: 8px;
  }
}

/* ================================================
   39. BLOG POST PAGE STYLES
   ================================================ */
.article-hero {
  background: var(--bg-light);
  padding: 24px 5% 0;
}

.article-hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0;
  color: white;
}

.article-category-badge {
  background: var(--nycbs-purple);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.article-hero-content h1 {
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.meta-item i {
  color: white;
}

.article-section {
  padding: 60px 5%;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-main {
  max-width: 100%;
}

.article-tags-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.share-label {
  font-weight: 600;
  color: var(--text-primary);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #1da1f2;
}
.share-btn.linkedin {
  background: #0077b5;
}
.share-btn.email {
  background: var(--text-secondary);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content .lead {
  font-size: 22px;
  font-weight: 500;
  color: var(--nycbs-purple);
  margin-bottom: 32px;
  line-height: 1.6;
}

.article-content h2 {
  font-size: 32px;
  margin: 48px 0 24px 0;
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 24px;
  margin: 36px 0 16px 0;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.article-content li {
  margin-bottom: 12px;
}

.callout-box {
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.1),
    rgba(0, 141, 208, 0.1)
  );
  border-left: 4px solid var(--nycbs-purple);
  padding: 24px;
  margin: 32px 0;
  border-radius: var(--radius-md);
}

.callout-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nycbs-purple);
  margin-bottom: 12px;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.nutrition-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.nutrition-card i {
  font-size: 32px;
  color: var(--nycbs-blue);
  margin-bottom: 16px;
}

.nutrition-card h4 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.tip-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}

.tip-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nycbs-blue);
  margin-bottom: 16px;
}

.side-effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.side-effect-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.side-effect-card h4 {
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.article-content blockquote {
  border-left: 4px solid var(--nycbs-blue);
  padding: 24px 32px;
  margin: 40px 0;
  background: var(--bg-light);
  font-size: 20px;
  font-style: italic;
  border-radius: var(--radius-md);
}

.foods-emphasis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.food-category {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.food-category h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.meal-plan {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

.meal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.meal:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meal h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nycbs-purple);
  min-width: 120px;
  margin: 0;
}

.meal p {
  margin: 0;
  flex: 1;
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 24px;
  margin: 32px 0;
  border-radius: var(--radius-md);
}

.warning-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dc2626;
  margin-bottom: 16px;
}

.author-bio {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 4px;
  color: var(--text-primary);
}

.author-title {
  color: var(--nycbs-purple);
  font-weight: 600;
  margin-bottom: 12px;
}

.author-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.related-articles {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--bg-gray);
}

.related-articles h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

.related-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-content {
  padding: 20px;
}

.related-content h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 18px;
}

.related-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-signup input {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 16px;
}

.newsletter-signup input:focus {
  outline: none;
  border-color: var(--nycbs-blue);
}

.popular-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-article {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.popular-article:hover {
  background: var(--bg-light);
  text-decoration: none;
}

.popular-article img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.popular-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
  line-height: 1.3;
}

.popular-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.cta-widget {
  background: linear-gradient(135deg, var(--nycbs-purple), #8b4a8b);
  color: white;
}

.cta-widget h3 {
  color: white;
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   40. BLOG HERO WITH IMAGE STYLES
   ================================================ */
.blog-hero-with-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.blog-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.8) 0%,
    rgba(0, 141, 208, 0.7) 100%
  );
}

.blog-hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  padding: 0 5%;
}

.blog-hero-content-overlay .breadcrumb {
  margin-bottom: 24px;
}

.blog-hero-content-overlay .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.blog-hero-content-overlay .breadcrumb span {
  color: white;
}

.blog-hero-content-overlay h1 {
  color: white;
  font-size: clamp(42px, 5vw, 56px);
  margin-bottom: 20px;
  text-align: center;
}

.blog-hero-content-overlay .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================
   41. LOCATION DIRECTORY STYLES
   ================================================ */
.location-page-header {
  background: var(--bg-light);
  padding: 40px 5% 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.location-page-header p {
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.map-section {
  padding: 40px 5%;
  background: var(--bg-white);
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-gray);
}

#locations-map {
  width: 100%;
  height: 100%;
}

.map-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-secondary);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-left-color: var(--nycbs-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.location-search-section {
  padding: 40px 5% 60px;
  background: var(--bg-light);
}

.location-search-filters {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.location-search-wrapper {
  margin-bottom: 24px;
}

.location-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

.location-ai-helper {
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 141, 208, 0.1);
}

.location-ai-helper .ai-helper-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.location-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-btn:hover {
  border-color: var(--nycbs-purple);
  color: var(--nycbs-purple);
}

.view-btn.active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.locations-grid.list-view {
  grid-template-columns: 1fr;
}

.location-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.location-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.location-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--nycbs-blue);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.location-content {
  padding: 28px;
}

.location-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.location-info {
  margin-bottom: 20px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

.location-info-item i {
  color: var(--nycbs-blue);
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-specialties {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.specialty-tag {
  background: var(--bg-light);
  color: var(--nycbs-purple);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(118, 61, 118, 0.2);
}

.location-providers {
  margin-bottom: 24px;
}

.location-providers h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.location-providers i {
  color: var(--nycbs-blue);
}

.provider-list {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.provider-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.provider-mini img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.provider-count {
  background: var(--text-secondary);
  color: white;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
}

.location-actions {
  display: flex;
  gap: 12px;
}

.location-actions .btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

.location-cta-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
}

.location-cta-section .cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.location-cta-section .cta-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.location-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================================
   42. LOCATION DETAIL PAGE STYLES
   ================================================ */
.location-detail-hero {
  background: var(--bg-light);
  padding: 24px 5% 0;
}

.location-hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
}

.location-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.location-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0;
  color: white;
}

.location-badge-hero {
  background: var(--nycbs-blue);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.location-hero-content h1 {
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.location-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 1.6;
}

.location-quick-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.quick-info-item i {
  color: white;
}

.location-overview-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-main-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.location-main-content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
}

.location-services {
  margin: 48px 0;
}

.location-services h3 {
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--text-primary);
}

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

.service-item {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

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

.service-item i {
  font-size: 40px;
  color: var(--nycbs-blue);
  margin-bottom: 16px;
}

.service-item h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.facility-features {
  margin: 48px 0;
}

.facility-features h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.feature-item i {
  color: var(--nycbs-blue);
  font-size: 18px;
}

.location-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

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

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

.contact-item i {
  color: var(--nycbs-blue);
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-item p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-item a {
  color: var(--nycbs-blue);
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item.weekend .time {
  color: var(--text-secondary);
}

.day {
  font-weight: 500;
  color: var(--text-primary);
}

.time {
  color: var(--text-secondary);
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.location-provider-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.location-provider-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.location-provider-card .provider-image-section {
  height: 200px;
  overflow: hidden;
}

.location-provider-card .provider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.location-provider-card:hover .provider-image {
  transform: scale(1.05);
}

.location-provider-card .provider-info-section {
  padding: 24px;
}

.location-provider-card .provider-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--nycbs-purple);
  margin-bottom: 8px;
}

.location-provider-card .provider-specialty {
  color: var(--nycbs-blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.location-provider-card .provider-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.provider-link {
  color: var(--nycbs-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.provider-link:hover {
  color: var(--nycbs-purple);
}

.provider-link i {
  transition: var(--transition);
}

.provider-link:hover i {
  transform: translateX(4px);
}

.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.directions-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#location-map {
  width: 100%;
  height: 100%;
}

.directions-info h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.direction-section {
  margin-bottom: 32px;
}

.direction-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.direction-section ul {
  margin: 0;
  padding-left: 20px;
}

.direction-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.direction-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.resource-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.resource-card i {
  font-size: 40px;
  color: var(--nycbs-blue);
  margin-bottom: 16px;
}

.resource-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.resource-card p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.location-detail-cta-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
}

.location-detail-cta-section .cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.location-detail-cta-section .cta-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.location-detail-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================================
   43. MOBILE RESPONSIVE - BLOG POST & LOCATIONS
   ================================================ */
@media (max-width: 768px) {
  /* Blog post mobile */
  .article-hero-image {
    height: 300px;
  }

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

  .article-sidebar {
    position: static;
  }

  .article-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .article-meta {
    flex-direction: column;
    gap: 12px;
  }

  .nutrition-grid,
  .side-effects-grid,
  .foods-emphasis {
    grid-template-columns: 1fr;
  }

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

  .meal h4 {
    min-width: auto;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

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

  /* Blog hero with image mobile */
  .blog-hero-with-image {
    height: 400px;
  }

  .blog-hero-content-overlay h1 {
    font-size: 32px;
  }

  .blog-hero-content-overlay .hero-subtitle {
    font-size: 18px;
  }

  /* Location directory mobile */
  .location-search-filters {
    padding: 24px 16px;
  }

  .location-filters {
    grid-template-columns: 1fr;
  }

  .location-ai-helper .ai-helper-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .location-results-header {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Location detail mobile */
  .location-hero-image {
    height: 300px;
  }

  .quick-info-item {
    font-size: 14px;
  }

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

  .location-sidebar {
    position: static;
  }

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

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

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

  .direction-actions {
    flex-direction: column;
  }

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

  .location-detail-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .article-hero-image,
  .blog-hero-with-image,
  .location-hero-image {
    height: 250px;
  }

  .location-search-section,
  .article-section,
  .section {
    padding: 40px 15px;
  }

  .quick-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .view-toggle {
    flex-direction: column;
    gap: 8px;
  }

  .sidebar-widget,
  .location-search-filters {
    padding: 20px 16px;
  }
}
/* ================================================
   44. UPDATED LOCATION DIRECTORY STYLES
   ================================================ */

/* Compact header for location pages */
.location-page-header-compact {
  background: var(--bg-light);
  padding: 30px 5% 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-page-header-compact h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}

.location-page-header-compact p {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Primary search section */
.location-search-section-primary {
  padding: 40px 5%;
  background: var(--bg-white);
}

/* Redesigned location grid */
.locations-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

/* Redesigned location cards - clickable entire card */
.location-card-v2 {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.location-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--nycbs-purple);
  text-decoration: none;
}

/* Location image with hover CTA */
.location-card-v2 .location-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.location-card-v2 .location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.location-card-v2:hover .location-image img {
  transform: scale(1.05);
}

/* Hover CTA overlay */
.location-hover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(118, 61, 118, 0.95) 0%,
    transparent 100%
  );
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.location-card-v2:hover .location-hover-cta {
  transform: translateY(0);
}

.cta-text {
  font-weight: 600;
  font-size: 16px;
}

.location-hover-cta i {
  transition: transform 0.3s ease;
}

.location-card-v2:hover .location-hover-cta i {
  transform: translateX(4px);
}

/* Simplified content area */
.location-content-v2 {
  padding: 24px;
}

.location-card-v2 .location-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--nycbs-purple);
  margin-bottom: 12px;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.location-address i {
  color: var(--nycbs-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.location-card-v2 .location-specialties {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.location-card-v2 .specialty-tag {
  background: var(--bg-light);
  color: var(--nycbs-purple);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(118, 61, 118, 0.15);
}

.location-card-v2 .location-providers {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card-v2 .location-providers h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.location-card-v2 .provider-list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.location-card-v2 .provider-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 141, 208, 0.05);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  font-size: 12px;
}

.location-card-v2 .provider-mini img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.location-card-v2 .provider-count {
  background: var(--text-secondary);
  color: white;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 500;
}

/* Quick directions link */
.quick-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nycbs-blue);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-directions:hover {
  color: var(--nycbs-purple);
}

/* List view adjustments */
.locations-grid-v2.list-view {
  grid-template-columns: 1fr;
}

.locations-grid-v2.list-view .location-card-v2 {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.locations-grid-v2.list-view .location-image {
  height: 200px;
}

.locations-grid-v2.list-view .location-content-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Helper section moved down */
.location-helper-section {
  padding: 40px 5%;
  /*background: var(--bg-light);*/
}

.location-ai-helper-v2 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

/* Map section at bottom */
.map-section-bottom {
  padding: 60px 5%;
  background: var(--bg-white);
}

.map-section-bottom .section-heading {
  margin-bottom: 32px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .location-page-header-compact {
    padding: 20px 20px 30px;
  }

  .location-page-header-compact h1 {
    font-size: 26px;
  }

  .location-page-header-compact p {
    font-size: 16px;
  }

  .location-search-section-primary {
    padding: 30px 20px;
  }

  .location-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .location-filters .filter-group {
    width: 100%;
  }

  .locations-grid-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card-v2 .location-image {
    height: 180px;
  }

  .location-content-v2 {
    padding: 20px;
  }

  .location-card-v2 .location-name {
    font-size: 20px;
  }

  .location-address {
    font-size: 14px;
  }

  .location-hover-cta {
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(118, 61, 118, 0.8) 0%,
      transparent 100%
    );
    padding: 16px;
  }

  .cta-text {
    font-size: 14px;
  }

  .quick-directions {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-top: 8px;
  }

  .locations-grid-v2.list-view .location-card-v2 {
    grid-template-columns: 1fr;
  }

  .locations-grid-v2.list-view .location-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .locations-grid-v2 {
    gap: 16px;
  }

  .location-card-v2 .location-providers h4 {
    font-size: 13px;
  }

  .location-card-v2 .provider-mini {
    font-size: 11px;
    padding: 4px 8px;
  }

  .location-card-v2 .provider-mini img {
    width: 20px;
    height: 20px;
  }
}

/* ================================================
   BASE TEMPLATE STYLES - Add to styles.css
   ================================================ */

/* Page Hero with Overlay */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.85) 0%,
    rgba(0, 141, 208, 0.7) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 900px;
}

.page-hero h1 {
  color: white;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-wrapper p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Content CTA Box */
.content-cta {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.content-cta h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.content-cta p {
  margin-bottom: 24px;
}

/* Info Cards for Base Template */
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.info-card i {
  font-size: 48px;
  color: var(--nycbs-purple);
  margin-bottom: 20px;
}

.info-card h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.info-card p {
  margin: 0;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
  padding: 80px 5%;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .content-cta {
    padding: 30px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================================
   BASE TEMPLATE STYLES - Add to styles.css
   ================================================ */

/* Page Hero with Overlay */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.85) 0%,
    rgba(0, 141, 208, 0.7) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-wrapper p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0;
  padding-left: 30px;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Content CTA Box */
.content-cta {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.content-cta h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.content-cta p {
  margin-bottom: 24px;
}

/* Info Cards for Base Template */
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.info-card i {
  font-size: 48px;
  color: var(--nycbs-purple);
  margin-bottom: 20px;
}

.info-card h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.info-card p {
  margin: 0;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
  padding: 80px 5%;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .content-cta {
    padding: 30px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ================================================
   PICTURE TEMPLATE STYLES - Add to styles.css
   ================================================ */

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--nycbs-blue);
}

.breadcrumb i {
  font-size: 10px;
  color: var(--text-secondary);
}

/* Minimal Hero for Photo Pages */
.page-hero-minimal {
  background: var(--bg-light);
  padding: 40px 5% 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-hero-minimal .page-hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.page-hero-minimal h1 {
  color: var(--text-primary);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}

.page-hero-minimal .breadcrumb a {
  color: var(--text-secondary);
}

.page-hero-minimal h1,
.page-hero-minimal .hero-subtitle {
  color: var(--text-primary);
}

.page-hero-minimal .hero-subtitle {
  color: var(--text-secondary);
  font-size: 20px;
}

/* Featured Image Section */
.featured-image-section {
  padding-top: 0;
}

.featured-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.image-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

.image-caption i {
  margin-right: 8px;
  color: var(--nycbs-blue);
}

/* Content with Side Image */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.content-side h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.content-side p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-side ul {
  margin: 20px 0;
  padding-left: 25px;
}

.content-side li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.side-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item h4 {
  padding: 20px 20px 8px;
  color: var(--text-primary);
  font-size: 20px;
}

.gallery-item p {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* Full Width Image Section */
.full-width-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 80px 0;
}

.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(118, 61, 118, 0.9) 0%,
    rgba(118, 61, 118, 0.6) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: white;
}

.image-overlay-content h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 12px;
  max-width: 600px;
}

.image-overlay-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 24px;
  max-width: 500px;
}

/* Photo Quote */
.photo-quote {
  background: var(--bg-light);
  border-left: 4px solid var(--nycbs-purple);
  padding: 30px 40px;
  margin: 40px 0;
  border-radius: var(--radius-md);
}

.photo-quote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.photo-quote cite {
  display: block;
  text-align: right;
  color: var(--nycbs-purple);
  font-weight: 600;
  font-style: normal;
}

/* Location Showcase */
.location-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-info-box h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.location-details p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.location-details i {
  color: var(--nycbs-blue);
  width: 20px;
}

.location-features {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.location-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.location-features i {
  color: var(--nycbs-purple);
}

.location-map-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-side {
    order: -1; /* Image first on tablets */
  }
}

@media (max-width: 768px) {
  .page-hero-minimal {
    padding: 30px 20px 40px;
  }

  .page-hero-minimal h1 {
    font-size: 28px;
  }

  .page-hero-minimal .hero-subtitle {
    font-size: 17px;
  }

  .featured-image-wrapper {
    padding: 0 20px;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .full-width-image {
    height: 400px;
    margin: 60px 0;
  }

  .image-overlay-content {
    padding: 0 5%;
  }

  .image-overlay-content h2 {
    font-size: 28px;
  }

  .image-overlay-content p {
    font-size: 17px;
  }

  .location-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-info-box {
    padding: 30px 20px;
  }

  .photo-quote {
    padding: 20px 25px;
  }

  .photo-quote p {
    font-size: 18px;
  }
}

/* ================================================
   LOCATION PAGE STYLES - Add to styles.css
   ================================================ */

/* Location Hero Section */
.location-hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.location-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(118, 61, 118, 0.85) 0%,
    rgba(0, 141, 208, 0.7) 100%
  );
}

.location-hero .container {
  position: relative;
  z-index: 2;
}

.location-hero .breadcrumb {
  margin-bottom: 24px;
}

.location-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.location-hero .breadcrumb span {
  color: white;
}

.location-badge {
  display: inline-block;
  background: var(--nycbs-blue);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.location-hero-content h1 {
  color: white;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 12px;
}

.location-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.location-quick-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 16px;
}

.location-quick-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quick Actions Bar */
.location-actions-bar {
  background: var(--bg-white);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: var(--bg-light);
  color: var(--nycbs-purple);
  transform: translateY(-2px);
}

.action-btn i {
  color: var(--nycbs-blue);
}

/* Location Overview Section */
.location-overview {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-content .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.location-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 36px;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.feature-item h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* Sidebar Info Cards */
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.info-card h3 i {
  color: var(--nycbs-blue);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.weekend {
  color: var(--text-secondary);
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-list li::before {
  content: "✓";
  color: var(--nycbs-blue);
  font-weight: bold;
}

/* Providers Section */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.provider-card-link {
  text-decoration: none;
  color: inherit;
}

.provider-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.provider-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}

.provider-info h3 {
  font-size: 20px;
  color: var(--nycbs-purple);
  margin-bottom: 4px;
}

.provider-specialty {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.provider-focus {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.provider-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.provider-rating .stars {
  color: #ffb400;
}

.provider-rating span {
  color: var(--text-secondary);
}

.provider-availability {
  color: #059669;
  font-size: 14px;
  font-weight: 500;
}

.provider-availability i {
  margin-right: 4px;
}

/* Single Provider Styles */
.provider-card-single {
  max-width: 400px;
  margin: 0 auto;
}

.provider-photo-large {
  width: 150px;
  height: 150px;
}

.single-provider-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.single-provider-message p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* No Providers Message */
.no-providers-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.no-providers-message p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* View All Providers Card */
.view-all-card {
  background: linear-gradient(135deg, var(--bg-light), white);
  border: 2px dashed var(--nycbs-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-all-content {
  text-align: center;
}

.view-all-content i {
  font-size: 48px;
  color: var(--nycbs-purple);
  margin-bottom: 16px;
}

.view-all-content h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

.view-all-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Facility Gallery */
.facility-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-main {
  grid-row: span 2;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Directions Section */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.address-box {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.address-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.address-box i {
  color: var(--nycbs-blue);
}

.map-link {
  color: var(--nycbs-blue);
  font-weight: 500;
}

.map-link:hover {
  color: var(--nycbs-purple);
}

/* Direction Tabs */
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn:hover {
  border-color: var(--nycbs-purple);
}

.tab-btn.active {
  background: var(--nycbs-purple);
  color: white;
  border-color: var(--nycbs-purple);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.tab-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.tab-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.transportation-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.transport-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.transport-option:hover {
  background: var(--nycbs-purple);
  color: white;
  transform: translateY(-2px);
}

.location-map {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Location CTA */
.location-cta-section {
  background: linear-gradient(135deg, var(--nycbs-purple) 0%, #8b4a8b 100%);
  padding: 80px 5%;
  color: white;
  text-align: center;
}

.location-cta-section .cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.location-cta-section .cta-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .location-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .location-hero {
    min-height: 400px;
  }

  .location-quick-info {
    flex-direction: column;
    gap: 12px;
  }

  .action-buttons {
    gap: 20px;
  }

  .action-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .action-btn span {
    display: none;
  }

  .location-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overview-sidebar {
    grid-template-columns: 1fr;
  }

  .facility-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transportation-options {
    flex-direction: column;
  }
}
