/* ============================================================
   BHAT Treatment - Nature Healing Style #4 + Sidebar Navigation #4
   ============================================================ */

/* --- Google Fonts loaded via HTML <link> --- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1A2E1A;
  background-color: #F5F9F5;
}

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

a {
  color: #2D5A3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8B84A;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A2E1A;
}

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #2D5A3D;
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-size: 0.95rem;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ============ TOP BAR ============ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #2D5A3D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(45,90,61,0.15);
}

.top-bar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.top-bar__logo svg {
  width: 28px;
  height: 28px;
  fill: #E8B84A;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar__phone {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.top-bar__phone:hover {
  color: #E8B84A;
}

.top-bar__cta {
  display: inline-block;
  background: #E8B84A;
  color: #1A2E1A;
  padding: 0.45rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.top-bar__cta:hover {
  background: #d4a53e;
  color: #1A2E1A;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ============ SIDEBAR ============ */
.sidebar {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #FFFFFF;
  border-right: 1px solid rgba(45,90,61,0.1);
  overflow-y: auto;
  z-index: 900;
  padding: 1.5rem 0;
  transition: transform 0.3s ease;
}

.sidebar__nav-list {
  padding: 0;
}

.sidebar__nav-item {
  border-bottom: 1px solid rgba(45,90,61,0.06);
}

.sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: #1A2E1A;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border-left 0.2s ease;
  border-left: 4px solid transparent;
}

.sidebar__nav-link:hover,
.sidebar__nav-link--active {
  background: #F5F9F5;
  color: #2D5A3D;
  border-left-color: #7CB083;
}

.sidebar__nav-link--active {
  border-left-color: #2D5A3D;
  font-weight: 700;
}

.sidebar__nav-icon {
  width: 20px;
  height: 20px;
  fill: #7CB083;
  flex-shrink: 0;
}

.sidebar__subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #F5F9F5;
}

.sidebar__subnav--open {
  max-height: 500px;
}

.sidebar__subnav-link {
  display: block;
  padding: 0.55rem 1.5rem 0.55rem 3.5rem;
  color: #2D5A3D;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s ease, background 0.2s ease;
}

.sidebar__subnav-link:hover {
  color: #E8B84A;
  background: rgba(45,90,61,0.04);
}

.sidebar__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
}

.sidebar__toggle svg {
  width: 16px;
  height: 16px;
  fill: #7CB083;
  transition: transform 0.3s ease;
}

.sidebar__toggle--open svg {
  transform: rotate(180deg);
}

/* ============ MAIN CONTENT AREA ============ */
.main-content {
  margin-left: 280px;
  margin-top: 56px;
  min-height: calc(100vh - 56px);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,90,61,0.82) 0%, rgba(124,176,131,0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 2rem 1.5rem;
  color: #fff;
}

.hero__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background: #E8B84A;
  color: #1A2E1A;
}

.btn--primary:hover {
  background: #d4a53e;
  color: #1A2E1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,184,74,0.35);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background: #fff;
  color: #2D5A3D;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #2D5A3D;
  border: 2px solid #2D5A3D;
}

.btn--outline:hover {
  background: #2D5A3D;
  color: #fff;
  transform: translateY(-2px);
}

.btn--green {
  background: #2D5A3D;
  color: #fff;
}

.btn--green:hover {
  background: #245031;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45,90,61,0.3);
}

/* ============ SECTIONS ============ */
.section {
  padding: 4rem 2rem;
}

.section--white {
  background: #FFFFFF;
}

.section--light {
  background: #F5F9F5;
}

.section--green {
  background: #2D5A3D;
  color: #fff;
}

.section--green h2,
.section--green h3,
.section--green h4 {
  color: #fff;
}

.section--green p {
  color: rgba(255,255,255,0.9);
}

.section__container {
  max-width: 960px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(26,46,26,0.72);
}

.section__divider {
  width: 60px;
  height: 3px;
  background: #7CB083;
  margin: 0.75rem auto 1rem;
  border-radius: 3px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(45,90,61,0.08);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  fill: #7CB083;
  flex-shrink: 0;
}

.trust-bar__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2D5A3D;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,90,61,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45,90,61,0.15);
}

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

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.92rem;
  color: rgba(26,46,26,0.72);
  margin-bottom: 1rem;
}

.card__link {
  color: #2D5A3D;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link:hover {
  color: #E8B84A;
}

.card__icon {
  width: 48px;
  height: 48px;
  fill: #7CB083;
  margin-bottom: 0.75rem;
}

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(45,90,61,0.06);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  fill: #7CB083;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-item__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Nunito', sans-serif;
}

.feature-item__text {
  font-size: 0.88rem;
  color: rgba(26,46,26,0.68);
  margin-bottom: 0;
}

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-item__number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E8B84A;
  margin-bottom: 0.25rem;
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.section--light .stat-item__label {
  color: rgba(26,46,26,0.68);
}

.section--light .stat-item__number {
  color: #2D5A3D;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(45,90,61,0.08);
  border-left: 4px solid #7CB083;
  position: relative;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(26,46,26,0.78);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: #7CB083;
  font-family: 'Libre Baskerville', serif;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.92rem;
  color: #2D5A3D;
}

.testimonial-card__program {
  font-size: 0.82rem;
  color: rgba(26,46,26,0.55);
}

/* ============ FAQ ACCORDION ============ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(45,90,61,0.1);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #FFFFFF;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A2E1A;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #2D5A3D;
}

.faq-question__icon {
  width: 20px;
  height: 20px;
  fill: #7CB083;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item--open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item--open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: rgba(26,46,26,0.72);
}

/* ============ IMAGE GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,90,61,0.08);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============ CONTACT INFO ============ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
}

.contact-item__icon {
  width: 28px;
  height: 28px;
  fill: #7CB083;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-item__label {
  font-size: 0.82rem;
  color: rgba(26,46,26,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: #1A2E1A;
}

.contact-item__value a {
  color: #2D5A3D;
}

.contact-item__value a:hover {
  color: #E8B84A;
}

/* ============ MAP ============ */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,90,61,0.1);
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ============ CTA SECTION ============ */
.cta-section {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #2D5A3D, #3d7a54);
  color: #fff;
  border-radius: 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-section .cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8B84A;
  display: block;
  margin-bottom: 1rem;
}

.cta-section .cta-phone:hover {
  color: #fff;
}

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(45,90,61,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45,90,61,0.14);
}

.blog-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.25rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7CB083;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: rgba(26,46,26,0.68);
  margin-bottom: 0.75rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: rgba(26,46,26,0.5);
}

/* ============ INSURANCE GRID ============ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.insurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(45,90,61,0.1);
  font-weight: 600;
  font-size: 0.92rem;
  color: #2D5A3D;
  text-align: center;
}

/* ============ TIMELINE / STEPS ============ */
.steps-list {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #7CB083;
  border-radius: 3px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: relative;
}

.step-item__number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #2D5A3D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.step-item__content h4 {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 0.25rem;
}

.step-item__content p {
  font-size: 0.9rem;
  color: rgba(26,46,26,0.68);
  margin-bottom: 0;
}

/* ============ TEAM GRID ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(45,90,61,0.08);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7CB083, #2D5A3D);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.team-card__name {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: #7CB083;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card__credentials {
  font-size: 0.82rem;
  color: rgba(26,46,26,0.55);
  margin-bottom: 0;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(45,90,61,0.06);
}

.breadcrumbs a {
  color: #7CB083;
}

.breadcrumbs a:hover {
  color: #2D5A3D;
}

.breadcrumbs span {
  color: rgba(26,46,26,0.5);
  margin: 0 0.5rem;
}

/* ============ SCHEDULE TABLE ============ */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,90,61,0.08);
}

.schedule-table th {
  background: #2D5A3D;
  color: #fff;
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
}

.schedule-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(45,90,61,0.06);
  font-size: 0.9rem;
}

.schedule-table tr:nth-child(even) td {
  background: #F5F9F5;
}

/* ============ PRIVACY / LEGAL ============ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: rgba(26,46,26,0.72);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #1A2E1A;
  color: rgba(255,255,255,0.8);
  padding: 3rem 2rem 1.5rem;
  margin-left: 280px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer__col h4 {
  color: #E8B84A;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.footer__col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.footer__col a:hover {
  color: #E8B84A;
}

.footer__link-list li {
  margin-bottom: 0.4rem;
}

.footer__bottom {
  max-width: 960px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom a {
  color: rgba(255,255,255,0.55);
}

.footer__bottom a:hover {
  color: #E8B84A;
}

/* ============ PACKING LIST ============ */
.packing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.packing-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(45,90,61,0.06);
}

.packing-card h4 {
  font-family: 'Nunito', sans-serif;
  color: #2D5A3D;
  margin-bottom: 0.75rem;
}

.packing-card ul {
  list-style: none;
  padding: 0;
}

.packing-card li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: rgba(26,46,26,0.72);
}

.packing-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #7CB083;
  font-weight: 700;
}

/* ============ MODALITY TAGS ============ */
.modality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modality-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(124,176,131,0.15);
  color: #2D5A3D;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============ TWO COLUMN LAYOUT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,90,61,0.1);
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ COMPARISON TABLE ============ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,90,61,0.08);
  margin-bottom: 1.5rem;
}

.comparison-table th {
  background: #2D5A3D;
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-family: 'Nunito', sans-serif;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(45,90,61,0.06);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) td {
  background: #F5F9F5;
}

/* ============ SUBSTANCES LIST ============ */
.substances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.substance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(45,90,61,0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: #2D5A3D;
}

.substance-item::before {
  content: '\2713';
  color: #7CB083;
  font-weight: 700;
}

/* ============ AMENITY LIST ============ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2D5A3D;
}

.amenity-item::before {
  content: '\2726';
  color: #E8B84A;
  font-size: 1.1rem;
}

/* ============ HIPAA NOTICE ============ */
.hipaa-notice {
  background: rgba(124,176,131,0.1);
  border-left: 4px solid #7CB083;
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: rgba(26,46,26,0.72);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar--open {
    transform: translateX(0);
  }

  .hamburger {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .site-footer {
    margin-left: 0;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .section {
    padding: 2.5rem 1.25rem;
  }

  .card-grid,
  .feature-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 380px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .top-bar__phone {
    display: none;
  }

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

@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

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

/* ============ OVERLAY FOR MOBILE ============ */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: rgba(0,0,0,0.4);
  z-index: 850;
}

.sidebar-overlay--visible {
  display: block;
}

/* ============ PRINT STYLES ============ */
@media print {
  .sidebar, .top-bar, .hamburger, .sidebar-overlay {
    display: none !important;
  }
  .main-content, .site-footer {
    margin-left: 0 !important;
  }
}
