/* ============================================================
   KINERGY PHYSICAL THERAPY — Main Stylesheet
   Design: Clean, sleek, blue-toned professional healthcare
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:        #1C2B3A;
  --blue:        #8E6A7A;
  --blue-mid:    #B89AAA;
  --blue-light:  #E8D8DF;
  --blue-pale:   #F2E8EC;
  --blue-pale2:  #F8F2F4;
  --white:       #FFFFFF;
  --off-white:   #F7F4EF;
  --text:        #1C2B3A;
  --text-muted:  #6B7280;
  --border:      #DDD0D5;
  --shadow:      0 2px 16px rgba(28, 43, 58, 0.08);
  --shadow-md:   0 4px 24px rgba(28, 43, 58, 0.12);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  all 0.25s ease;
  --max-width:   1140px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-muted); }

.serif { font-family: 'Playfair Display', serif; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 90px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: 0.75rem; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,110,168,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { display: block; }
.nav-logo img, .nav-logo span { display: none; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: #7A5868 !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, #2D1F27 100%);
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p  { color: var(--blue-light); margin-top: 0.75rem; font-size: 1.05rem; }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2D1F27 60%, #8E6A7A 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
/* Hero with background image (gym photo) */
.hero.hero-bg {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
              rgba(28,43,58,0.72) 0%,
              rgba(28,43,58,0.45) 45%,
              rgba(28,43,58,0.20) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  color: var(--white);
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #4FC3F7;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-photo { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  width: 370px; height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.12);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero-photo-badge {
  position: absolute;
  bottom: -12px; left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-icon {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.badge-text strong { display: block; font-size: 0.88rem; color: var(--navy); font-weight: 700; }
.badge-text span   { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.feature-card p  { font-size: 0.92rem; line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.author-info span   { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--border);
  aspect-ratio: 3/4;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.credential-tag {
  background: var(--blue-pale);
  color: var(--navy);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--blue-light);
}

.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.about-quote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  background: var(--blue-pale2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.75rem 0;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
}
.specialties { margin-top: 2rem; }
.specialties h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.specialties-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.specialties-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--text);
}
.specialties-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Education Timeline */
.education { background: var(--off-white); }
.timeline { position: relative; padding-left: 2rem; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 5px;
  width: 13px; height: 13px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid var(--off-white);
  transform: translateX(-5.5px);
}
.timeline-year { font-size: 0.78rem; font-weight: 600; color: var(--blue); letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.timeline-item p  { font-size: 0.92rem; margin: 0; }

/* ============================================================
   TREATMENTS PAGE
   ============================================================ */
.services { background: var(--white); padding: 90px 0; }
.services .section-header { margin-bottom: 4rem; }

/* Alternating image + text rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row-image {
  overflow: hidden;
  position: relative;
}
.service-row-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-row:hover .service-row-image img { transform: scale(1.04); }

.service-row-content {
  background: var(--white);
  padding: 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-left: none;
}
.service-row.reverse .service-row-content {
  border-left: 1px solid var(--border);
  border-right: none;
}
.service-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.service-row-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-row-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.service-row-content .btn { align-self: flex-start; }

.conditions { background: var(--white); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}
.condition-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem 0.9rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem; font-weight: 500; color: var(--text);
  transition: var(--transition);
  position: relative;
}
.condition-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-light);
  border-radius: 3px 0 0 3px;
  transition: var(--transition);
}
.condition-item:hover { border-color: var(--blue-light); background: var(--blue-pale2); }
.condition-item:hover::before { background: var(--blue); }
.condition-item span { display: none; }

.modalities { background: var(--off-white); }
.modalities-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.modality-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem; font-weight: 500; color: var(--navy);
  transition: var(--transition);
}
.modality-tag:hover { background: var(--blue-pale); border-color: var(--blue-light); }

/* ============================================================
   INSURANCE PAGE
   ============================================================ */
.insurance-info { background: var(--white); }
.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.rate-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.rate-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-light); margin-bottom: 0.5rem; }
.rate-amount { font-size: 3.8rem; font-weight: 700; line-height: 1; color: var(--white); margin: 0.25rem 0 0.5rem; }
.rate-card > p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 0.82rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.info-block p  { font-size: 0.97rem; line-height: 1.8; }
.insurance-check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }
.insurance-check-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.93rem; color: var(--text-muted);
}
.insurance-check-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

.insurance-form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,110,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 1.75rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0; margin-bottom: 1.75rem; border-left: 2px solid var(--blue-light); padding-left: 1.25rem; }
.contact-item h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 0.35rem; }
.contact-item p, .contact-item a { font-size: 0.97rem; color: var(--text); line-height: 1.65; }
.contact-item a:hover { color: var(--blue); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.25rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.65rem 0; font-size: 0.93rem; color: var(--text); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table .open-row td { color: var(--blue) !important; font-weight: 600; }
.hours-table .closed-val { color: #94A3B8 !important; font-style: italic; }

.contact-right { display: flex; flex-direction: column; gap: 1.5rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-category { margin-bottom: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-top: 2rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.faq-category:first-child { margin-top: 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 1rem;
  user-select: none;
}
.faq-question h3 { font-size: 0.98rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem; color: var(--blue);
  font-weight: 300;
  transition: var(--transition);
  font-family: monospace;
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-item.open .faq-question { background: var(--blue-pale2); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; background: var(--blue-pale2); }
.faq-answer p { font-size: 0.95rem; line-height: 1.8; color: var(--text); }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 0.75rem; }
.footer-logo svg { display: block; }
.footer-logo img, .footer-logo span { display: none; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-col address { font-style: normal; font-size: 0.87rem; line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col address a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-sub         { margin-bottom: 2rem; }
  .kinergy-grid     { grid-template-columns: 1fr !important; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 320px; margin: 0 auto 2.5rem; }
  .insurance-grid   { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .service-row-image { min-height: 260px; }
  .service-row-content {
    border-left: 1px solid var(--border) !important;
    border-right: 1px solid var(--border) !important;
    border-top: none;
    padding: 2.5rem 2rem;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 680px)
   ============================================================ */
@media (max-width: 680px) {
  /* --- Layout --- */
  section { padding: 56px 0; }
  .container { padding: 0 1.25rem; }

  /* --- Navbar --- */
  .nav-inner { padding: 0.85rem 1.25rem; }
  .nav-logo img { height: 36px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0.4rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-toggle { display: flex; }

  /* --- Page Hero (inner pages) --- */
  .page-hero { padding: 110px 0 52px; }

  /* --- Home Hero --- */
  .hero { padding-top: 72px; min-height: 88vh; }
  .hero-content { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { margin: 0 auto 1.75rem; font-size: 0.97rem; }
  .hero-actions { justify-content: center; }

  /* --- Section headers --- */
  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 0.97rem; }

  /* --- Buttons --- */
  .btn { padding: 0.8rem 1.6rem; font-size: 0.92rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* --- CTA Banner --- */
  .cta-banner { padding: 60px 0; }

  /* --- Services --- */
  .service-row-image { min-height: 220px; }
  .service-row-content { padding: 2rem 1.5rem; }
  .service-row-content h3 { font-size: 1.35rem; }

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

  /* --- Map --- */
  .map-embed { height: 220px; }

  /* --- Contact form --- */
  .contact-form-wrap { margin-top: 2rem; }

  /* --- Forms --- */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* --- About --- */
  .specialties-list { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Small phones (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .conditions-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.65rem; }
  .service-row-image { min-height: 190px; }
}
