/* ==========================================================================
   LBCTS Long Beach Care — Mountain Serenity #9 + Mega-Menu Corporate #2
   ========================================================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: #1A202C;
  background: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #4A5568; text-decoration: none; transition: color .3s; }
a:hover { color: #48624D; }
ul, ol { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: #4A5568; color: #fff; padding: 8px 20px; z-index: 10000;
  border-radius: 0 0 6px 6px; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1A202C;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* --- Utility --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .95rem;
  border-radius: 6px; cursor: pointer; transition: all .3s; border: none; text-align: center;
}
.btn-primary {
  background: #48624D; color: #fff;
}
.btn-primary:hover { background: #3a5040; color: #fff; }
.btn-secondary {
  background: transparent; color: #4A5568; border: 2px solid #4A5568;
}
.btn-secondary:hover { background: #4A5568; color: #fff; }
.btn-accent {
  background: #9DC3C1; color: #1A202C;
}
.btn-accent:hover { background: #87b3b0; color: #1A202C; }
.btn-cta {
  background: #48624D; color: #fff; padding: 12px 24px; font-size: .9rem;
}
.btn-cta:hover { background: #3a5040; color: #fff; }

/* ==========================================================================
   HEADER — Mega-Menu Corporate #2
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid #e2e8f0;
  transition: box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Top bar */
.header-top {
  background: #4A5568; color: #fff; font-size: .85rem; padding: 6px 0;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.header-top a { color: #9DC3C1; }
.header-top a:hover { color: #fff; }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 18px; }

/* Main header bar */
.header-main { padding: 12px 0; transition: padding .3s; }
.site-header.scrolled .header-main { padding: 6px 0; }
.header-main .container {
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: #1A202C; display: flex; align-items: center; gap: 8px;
}
.logo span { color: #48624D; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  display: block; padding: 12px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem;
  color: #1A202C; transition: color .3s;
}
.primary-nav > li > a:hover,
.primary-nav > li.active > a { color: #48624D; }
.primary-nav > li > a .nav-arrow {
  display: inline-block; margin-left: 4px; font-size: .7rem; transition: transform .3s;
}
.primary-nav > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Mega menu dropdown */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 520px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 0 0 8px 8px; box-shadow: 0 12px 36px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  z-index: 100;
}
.primary-nav > li:hover .mega-menu { opacity: 1; visibility: visible; }
.mega-menu a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 6px; transition: background .2s;
  font-size: .9rem; color: #1A202C;
}
.mega-menu a:hover { background: #F7F8F9; color: #48624D; }
.mega-menu .menu-icon {
  width: 20px; text-align: center; color: #9DC3C1; font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}
.mega-menu .menu-label { font-weight: 600; }
.mega-menu .menu-desc { font-size: .8rem; color: #718096; margin-top: 2px; }

/* Header CTA */
.header-cta .btn-cta { white-space: nowrap; }

/* Mobile hamburger */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: #1A202C;
  position: absolute; left: 6px; transition: all .3s;
}
.mobile-toggle span:nth-child(1) { top: 9px; }
.mobile-toggle span:nth-child(2) { top: 17px; }
.mobile-toggle span:nth-child(3) { top: 25px; }
.mobile-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; text-align: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,32,44,.75) 0%, rgba(72,98,77,.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.25rem); max-width: 680px; margin: 0 auto 1rem; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .btn-primary { background: #9DC3C1; color: #1A202C; }
.hero .btn-primary:hover { background: #87b3b0; }
.hero .btn-secondary { border-color: #fff; color: #fff; }
.hero .btn-secondary:hover { background: rgba(255,255,255,.15); }

/* Inner page hero (shorter) */
.hero-inner {
  min-height: 300px; padding: 100px 0 60px;
  background-size: cover; background-position: center;
  position: relative; color: #fff; display: flex; align-items: flex-end;
}
.hero-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,32,44,.6) 0%, rgba(72,98,77,.7) 100%);
}
.hero-inner .container { position: relative; z-index: 2; }
.hero-inner h1 { color: #fff; margin-bottom: .25rem; }
.hero-inner .breadcrumb { color: rgba(255,255,255,.8); font-size: .9rem; }
.hero-inner .breadcrumb ol { display: flex; align-items: center; gap: 6px; }
.hero-inner .breadcrumb li + li::before { content: '/'; margin-right: 6px; opacity: .6; }
.hero-inner .breadcrumb a { color: #9DC3C1; }
.hero-inner .breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: #F7F8F9; border-bottom: 1px solid #e2e8f0; padding: 20px 0;
}
.trust-bar .container {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; text-align: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem; color: #4A5568;
}
.trust-item .trust-icon { font-size: 1.4rem; color: #48624D; }

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section-light { background: #FFFFFF; }
.section-alt { background: #F7F8F9; }
.section-dark { background: #4A5568; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.85); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header p { color: #718096; font-size: 1.05rem; }
.section-divider { width: 60px; height: 3px; background: #9DC3C1; margin: 16px auto 24px; border-radius: 2px; }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: #718096; font-size: .95rem; }
.card-body .btn { margin-top: 12px; }

/* Icon cards (no image) */
.icon-card {
  text-align: center; padding: 36px 24px; background: #fff;
  border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.icon-card .card-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: #F7F8F9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #48624D;
}
.icon-card h3 { font-size: 1.1rem; }
.icon-card p { color: #718096; font-size: .9rem; }

/* ==========================================================================
   PROGRAMS SECTION
   ========================================================================== */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.program-card {
  background: #fff; border-radius: 8px; padding: 32px 24px;
  border-left: 4px solid #48624D; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.program-card .program-icon { font-size: 2rem; color: #48624D; margin-bottom: 12px; }
.program-card h3 { color: #1A202C; }
.program-card p { color: #718096; font-size: .93rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 20px; }
.testimonial-card {
  background: #fff; color: #1A202C; border-radius: 8px; padding: 36px; max-width: 720px; margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); text-align: center;
  border-top: 3px solid #9DC3C1;
}
.testimonial-card p,
.testimonial-card blockquote {
  font-size: 1.05rem; color: #4A5568 !important; line-height: 1.8; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card strong,
.testimonial-card cite {
  font-style: normal; font-weight: 600; color: #1A202C !important;
  font-family: 'Montserrat', sans-serif; font-size: .9rem; display: block;
}
.testimonial-card span,
.testimonial-card .program-label { color: #48624D !important; font-size: .85rem; display: block; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.testimonial-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #CBD5E0; cursor: pointer; transition: background .3s;
}
.testimonial-dots button.active { background: #48624D; }

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.amenity-item {
  display: flex; flex-direction: column; background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.amenity-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.amenity-item img { width: 100%; height: 220px; object-fit: cover; }
.amenity-item h3 { padding: 16px 20px; font-size: 1rem; text-align: center; }
.amenity-item .amenity-icon { color: #48624D; font-size: 1.2rem; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #4A5568 0%, #48624D 100%);
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-section h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 24px; }
.cta-section .btn-primary { background: #9DC3C1; color: #1A202C; }
.cta-section .btn-primary:hover { background: #87b3b0; }
.cta-phone {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 700;
  margin: 16px 0; padding: 18px 40px;
}
a.cta-phone { color: #1A202C; }
a.cta-phone:hover { color: #1A202C; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0; padding: 0;
}
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem; color: #1A202C;
  transition: color .3s;
}
.faq-question:hover { color: #48624D; }
.faq-question .faq-toggle {
  font-size: 1.4rem; color: #9DC3C1; transition: transform .3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 0 20px; color: #4A5568; line-height: 1.7; }

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px;
}
.blog-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body .blog-category {
  display: inline-block; font-size: .75rem; font-weight: 600; text-transform: uppercase;
  color: #48624D; background: rgba(72,98,77,.1); padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px; letter-spacing: .5px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: #1A202C; }
.blog-card-body h3 a:hover { color: #48624D; }
.blog-card-body p { color: #718096; font-size: .9rem; }
.blog-card-body .blog-date { color: #A0AEC0; font-size: .8rem; margin-top: 10px; }

/* --- Blog category badges --- */
.blog-categories {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px;
}
.blog-category-badge {
  padding: 8px 20px; border-radius: 30px; font-size: .95rem;
  background: #F7F8F9; color: #4A5568; border: 1px solid #e2e8f0;
  transition: all .3s;
}
.blog-category-badge:hover,
.blog-category-badge.active { background: #48624D; color: #fff; border-color: #48624D; }

/* --- Blog featured article --- */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 30px;
}
.blog-featured img { width: 100%; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.blog-featured .blog-category { display: inline-block; margin-bottom: 12px; }
.blog-featured h3 { font-size: 1.8rem; margin-bottom: 15px; }
.blog-featured h3 a { color: #1A202C; }
.blog-featured h3 a:hover { color: #48624D; }
.blog-featured .blog-date { margin-bottom: 15px; color: #A0AEC0; }
.blog-featured .btn { margin-top: 20px; }

/* --- Blog article (full content) --- */
.blog-article-header { margin-bottom: 32px; }
.blog-article-header .blog-category { display: inline-block; margin-bottom: 12px; }
.blog-article-header h2 { margin-bottom: 8px; }
.blog-article-header .blog-date { color: #A0AEC0; font-size: .9rem; }
.blog-article-content {
  max-width: 800px; margin: 0 auto; line-height: 1.8;
}
.blog-article-content h3 { margin-top: 32px; margin-bottom: 12px; color: #48624D; }
.blog-article-content p { color: #4A5568; margin-bottom: 16px; }
.blog-article-content a { color: #48624D; font-weight: 500; }
.blog-article-content a:hover { color: #3a5040; }

/* ==========================================================================
   CONTACT & MAP
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.contact-grid--two { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px; background: #F7F8F9; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.contact-info-card .contact-icon {
  width: 56px; height: 56px; background: #48624D; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
  margin-bottom: 16px;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-info-card p { color: #4A5568; font-size: .9rem; margin-bottom: 6px; }
.contact-info-card a { color: #48624D; font-weight: 500; }
.contact-info-card address { font-style: normal; color: #4A5568; font-size: .9rem; line-height: 1.6; }
.contact-info-card .btn { margin-top: 8px; }
.map-container {
  border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ==========================================================================
   INSURANCE LOGOS
   ========================================================================== */
.insurance-grid {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.insurance-item {
  padding: 14px 24px; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px;
  font-weight: 600; font-size: .9rem; color: #4A5568;
}

/* ==========================================================================
   STEPS / TIMELINE
   ========================================================================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
  counter-reset: step;
}
.step-card {
  text-align: center; padding: 32px 20px;
  background: #fff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: relative;
}
.step-card::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: #48624D; color: #fff;
  border-radius: 50%; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.1rem; margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { color: #718096; font-size: .9rem; }

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.team-card {
  text-align: center; padding: 32px 24px; background: #fff;
  border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.team-card .team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: #9DC3C1;
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .team-title { color: #48624D; font-size: .85rem; font-weight: 600; }
.team-card .team-creds { color: #718096; font-size: .8rem; margin-top: 2px; }
.team-card p { color: #4A5568; font-size: .9rem; margin-top: 10px; }

/* ==========================================================================
   PRIVACY / LEGAL
   ========================================================================== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 36px; color: #4A5568; }
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; }
.legal-content ul { margin-left: 24px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; color: #4A5568; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #1A202C; color: #CBD5E0; padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; font-size: 1.3rem; }
.footer-brand .logo span { color: #9DC3C1; }
.footer-brand p { color: #A0AEC0; font-size: .9rem; line-height: 1.6; }
.footer-heading {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .95rem;
  color: #fff; margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #A0AEC0; font-size: .9rem; transition: color .3s; }
.footer-links a:hover { color: #9DC3C1; }
.footer-contact p { color: #A0AEC0; font-size: .9rem; margin-bottom: 8px; }
.footer-contact a { color: #9DC3C1; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2D3748; padding: 20px 0; text-align: center;
  font-size: .85rem; color: #718096;
}
.footer-bottom a { color: #9DC3C1; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   IMAGE GALLERY (lightbox-like grid)
   ========================================================================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 6px;
  transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  padding: 48px 0; text-align: center; background: #fff;
}
.stats-bar .container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px;
}
.stat-item .stat-number {
  font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 700;
  color: #48624D;
}
.section-dark .stat-item .stat-number { color: #9DC3C1; }
.stat-item .stat-label { font-size: .9rem; color: #718096; margin-top: 4px; }
.section-dark .stat-item .stat-label { color: rgba(255,255,255,.7); }

/* ==========================================================================
   TWO-COLUMN LAYOUT
   ========================================================================== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.two-col img { border-radius: 8px; width: 100%; height: auto; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: #4A5568; }

/* ==========================================================================
   DAILY SCHEDULE TABLE
   ========================================================================== */
.schedule-table {
  width: 100%; border-collapse: collapse; margin-top: 16px;
}
.schedule-table th, .schedule-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid #e2e8f0;
}
.schedule-table th {
  background: #48624D; color: #fff; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .85rem;
}
.schedule-table tr:hover { background: #F7F8F9; }

/* ==========================================================================
   SERVICE AREA LIST
   ========================================================================== */
.service-area-list {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.service-area-list img { border-radius: 8px; }
.service-area-list .contact-grid--two { text-align: left; }
.service-area-list ul { list-style: disc; margin-left: 20px; }
.service-area-list ul li { margin-bottom: 6px; color: #4A5568; list-style: disc; }

/* ==========================================================================
   HIPAA / PRIVACY NOTICE BOX
   ========================================================================== */
.hipaa-notice {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 36px;
  border: 1px solid #e2e8f0; border-radius: 8px; background: #F7F8F9;
}
.hipaa-notice svg { margin-bottom: 15px; color: #48624D; }
.hipaa-notice h3 { margin-bottom: 12px; }
.hipaa-notice p { color: #4A5568; font-size: .95rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .mega-menu { min-width: 400px; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-wrap {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
    background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,.15);
    transition: right .3s; z-index: 9999; overflow-y: auto; padding: 80px 24px 24px;
  }
  .nav-wrap.open { right: 0; }
  .primary-nav { flex-direction: column; gap: 0; }
  .primary-nav > li > a { padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
  .mega-menu {
    position: static; transform: none; min-width: 100%;
    box-shadow: none; border: none; padding: 0 0 8px 16px;
    opacity: 1; visibility: visible; display: none;
    grid-template-columns: 1fr;
  }
  .primary-nav > li.mega-open .mega-menu { display: grid; }
  .header-cta { margin-top: 20px; }
  .header-cta .btn-cta { width: 100%; text-align: center; }
  .mobile-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 9998;
  }
  .mobile-overlay.active { display: block; }

  .hero { min-height: 420px; }
  .hero-inner { min-height: 240px; padding: 80px 0 40px; }
  .two-col, .blog-featured { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid, .contact-grid--two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .header-top { display: none; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
}
