/* ============================================================
   BodyFix99 — Global Stylesheet
   Design System: Inter + Teal + Amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:        #0a6e6e;
  --primary-light:  #e6f4f4;
  --accent:         #f4a300;
  --text-dark:      #1a1a2e;
  --text-mid:       #4a4a6a;
  --text-light:     #7a7a9a;
  --bg-white:       #ffffff;
  --bg-soft:        #f8fafb;
  --border:         #e2e8f0;

  --font-base:      'Inter', sans-serif;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,.12);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-full:    9999px;
  --transition:     0.28s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-base);
  color: var(--text-mid);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-mid); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(244,163,0,.35);
}
.btn-accent:hover {
  background: #d48f00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,163,0,.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  cursor: pointer;
  min-height: 44px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 68px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 30px;
}

.header-logo img {
  height: 45px;
  width: auto;
}

.header-logo span {
  font-size: 20px;
  font-weight: 800;
  color: #0a6e6e;
  white-space: nowrap;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.header-nav ul li a {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.header-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #0a6e6e;
  transition: width 0.3s ease;
}

.header-nav ul li a:hover::after,
.header-nav ul li a.active::after {
  width: 100%;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
  color: #0a6e6e;
}

.header-cta {
  flex-shrink: 0;
  margin-left: 20px;
  padding-right: 0;
}

.btn-booknow {
  background: #f4a300;
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-booknow:hover {
  background: #e09500;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dark);
  line-height: 1;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}

/* ── Mobile nav ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-inner { padding: 0 20px; }
  .header-logo { margin-right: auto; }
  .header-cta { margin-left: auto; margin-right: 12px; }
  .btn-booknow { padding: 8px 14px; font-size: 12px; }
  .nav-hamburger { display: block; }

  .header-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
  }

  .header-nav.active {
    max-height: 500px;
    opacity: 1;
    padding: 16px 24px 24px;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
  }

  .header-nav ul li a {
    width: 100%;
    padding: 10px 12px;
    font-size: .95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-dark);
  color: #c0c0d8;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Column 1 — Brand */
.footer-brand .footer-logo { height: 50px; margin-bottom: 16px; }

.footer-tagline {
  font-size: .92rem;
  line-height: 1.7;
  color: #9090b0;
  margin-bottom: 20px;
  max-width: 300px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #c0c0d8;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.5px;
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
}

/* Column 2 — Quick Links */
.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: .92rem;
  color: #9090b0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

/* Column 3 — Contact */
.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: #9090b0;
  line-height: 1.55;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  text-align: center;
  font-size: .82rem;
  color: #606088;
}

.footer-bottom p { color: #6a6a88; }

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 50px 0; }
}

/* ── Placeholder main ────────────────────────────────────── */
.page-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 40px 24px;
}

.page-placeholder h1 { color: var(--primary); }
.page-placeholder p { color: var(--text-light); max-width: 500px; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 100%);
  padding: 120px 0 80px;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content { flex: 0 0 55%; padding-right: 20px; }
.hero-image-wrap { flex: 0 0 45%; }
.hero-badge {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(10, 110, 110, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-badge { display: flex; align-items: center; gap: 6px; }
.trust-badge span { color: var(--primary); font-size: 1.1rem; }
.hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10, 110, 110, 0.15);
  object-fit: cover;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-grid { flex-direction: column; text-align: center; }
  .hero-content { padding-right: 0; flex: 1; }
  .hero-image-wrap { flex: 1; width: 100%; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ── Services Section ────────────────────────────────────── */
.services-section { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-title { margin-bottom: 12px; font-size: 1.4rem; color: var(--text-dark); }
.service-text { margin-bottom: 24px; flex-grow: 1; color: var(--text-mid); }
.service-link { color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.service-link:hover { text-decoration: underline; color: var(--text-dark); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-choose-us { background: var(--bg-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img { border-radius: 20px; box-shadow: var(--shadow-md); width: 100%; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-list-item { display: flex; gap: 12px; align-items: flex-start; }
.why-list-item .icon {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list-item-content { color: var(--text-mid); line-height: 1.5; }
.why-list-item-content strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

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

/* ── About Preview ───────────────────────────────────────── */
.about-preview { background: var(--primary-light); text-align: center; }
.about-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary);
  margin: 0 auto 24px;
}
.about-text {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
  color: var(--text-dark);
}
.about-credentials {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  align-items: center;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.cta-banner p {
  color: var(--primary-light);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Location Section ────────────────────────────────────── */
.location-section { background: var(--bg-soft); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-map iframe {
  width: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.location-details {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.location-details h3 { margin-bottom: 24px; font-size: 1.8rem; }
.loc-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.loc-item { display: flex; gap: 12px; font-size: 1rem; color: var(--text-mid); }
.loc-item .icon { color: var(--primary); font-size: 1.2rem; }

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

/* ═══════════════════════════════════════════════════════════
   SUBPAGES (SERVICES)
   ═══════════════════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 100%);
}
.page-hero .section-tag { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-img {
  margin-top: 60px;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-md);
}

/* ── Split Section (Text / Image) ────────────────────────── */
.split-section { padding: 80px 0; background: var(--bg-white); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-text h2 { margin-bottom: 24px; }
.split-text p { margin-bottom: 24px; color: var(--text-mid); }
.bullet-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.bullet-list li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}
.split-img { border-radius: 16px; box-shadow: var(--shadow-md); width: 100%; }

@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Step Cards ──────────────────────────────────────────── */
.steps-section { background: var(--bg-soft); padding: 80px 0; }
.steps-section h2 { text-align: center; margin-bottom: 60px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-5px); }
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title { margin-bottom: 16px; font-size: 1.25rem; color: var(--primary); }

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

/* ── Feature Box Grid (2x2) ──────────────────────────────── */
.features-section { padding: 80px 0; background: var(--bg-white); }
.features-section h2 { text-align: center; margin-bottom: 60px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feature-box {
  padding: 30px;
  border-radius: 16px;
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
}
.feature-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.feature-title span { font-size: 1.5rem; }

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

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-story { padding: 80px 0; background: var(--bg-white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-story-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10,110,110,0.15);
  width: 100%;
}
.about-story-text h2 { margin-bottom: 24px; }
.about-story-text p {
  margin-bottom: 20px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Credentials */
.credentials-section { background: var(--bg-soft); padding: 80px 0; }
.credentials-section h2 { text-align: center; margin-bottom: 60px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.credential-card {
  background: var(--bg-white);
  border-top: 4px solid var(--primary);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition);
}
.credential-card:hover { transform: translateY(-4px); }
.credential-icon { font-size: 2rem; margin-bottom: 14px; }
.credential-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.credential-card p { font-size: .9rem; color: var(--text-mid); }

@media (max-width: 900px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .credentials-grid { grid-template-columns: 1fr; } }

/* Philosophy */
.philosophy-section { padding: 80px 0; background: var(--bg-white); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.philosophy-points { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.philosophy-point { display: flex; gap: 16px; align-items: flex-start; }
.philosophy-point .p-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.philosophy-point h4 { color: var(--primary); margin-bottom: 6px; font-size: 1.1rem; }
.philosophy-point p { color: var(--text-mid); font-size: .95rem; }
.philosophy-quote {
  background: var(--primary-light);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
.philosophy-quote blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: .9rem;
  font-style: normal;
  color: var(--text-mid);
  font-weight: 500;
}

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

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-main { padding: 80px 0; background: var(--bg-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .c-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item-text h4 { color: var(--text-dark); margin-bottom: 4px; font-size: 1rem; }
.contact-info-item-text p,
.contact-info-item-text a {
  color: var(--text-mid);
  font-size: .95rem;
}
.contact-info-item-text a:hover { color: var(--primary); }
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.contact-social-icon:hover { background: var(--primary); color: #fff; }

/* Contact Form */
.contact-form-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}
.form-submit:hover { background: #d48f00; }
.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Map Section */
.map-section { padding: 60px 0; background: var(--bg-soft); }
.map-section h2 { text-align: center; margin-bottom: 36px; }
.map-section iframe {
  width: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: block;
}
.map-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--text-light);
  font-size: .9rem;
}

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-soft); }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition);
  min-height: 44px;
}
.faq-question:hover { background: var(--primary-light); }
.faq-question.open { color: var(--primary); background: var(--primary-light); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--text-mid); line-height: 1.7; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════
   PREVENT HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════
   MOBILE FINAL — Global
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Prevent any horizontal overflow */
  * { box-sizing: border-box; }
  body { overflow-x: hidden; }
  .container { padding-inline: 16px; }

  /* Hero section mobile */
  .page-hero { padding: 80px 0 60px !important; }
  .page-hero h1 { font-size: 2rem !important; }
  .page-hero .hero-sub { font-size: .95rem !important; }

  /* Trust badges wrap properly */
  div[style*="✓"] span,
  .hero-trust span {
    font-size: .78rem !important;
  }

  /* Split grid stacks on mobile */
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Steps grid single column */
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Features grid single column */
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  /* Other services — 2 columns on mobile instead of 4 */
  div[style*="repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  /* Step cards full width */
  .step-card {
    padding: 28px 20px !important;
  }

  /* Feature box padding */
  .feature-box {
    padding: 22px 18px !important;
  }

  /* CTA banner */
  .cta-banner { padding: 60px 0 !important; }
  .cta-banner h2 { font-size: 1.8rem !important; }

  /* Footer grid single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-brand { grid-column: auto !important; }

  /* Doctor card in footer wraps nicely */
  .footer-brand div[style*="nicholas-berisha"] {
    flex-wrap: wrap;
  }

  /* Session timeline steps */
  div[style*="display:flex;gap:16px;align-items:flex-start"] {
    gap: 12px !important;
  }

  /* What to expect section stacks */
  div[style*="grid-template-columns:1fr 1fr;gap:60px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Section headings */
  h2 { font-size: 1.7rem !important; }
  h3 { font-size: 1.1rem !important; }

  /* Buttons full width on mobile */
  .btn-accent, .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero action buttons stack */
  div[style*="display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:48px"] {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Existing fixes preserved */
  h1 { font-size: 2rem !important; }
  .page-hero-img { margin-top: 36px; }
  .contact-form-card { padding: 24px; }
  .location-details { padding: 24px; }
  .philosophy-quote { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 70px 0 50px !important; }
  .page-hero h1 { font-size: 1.75rem !important; }

  /* Trust badges single column */
  div[style*="✓ Cranial"] {
    gap: 12px !important;
  }

  /* Other services 1 column on very small screens */
  div[style*="repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS — Fade Up
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}