/* ============================================================
   MASSAGE FAÑABE — Inner Pages CSS
   Shared styles for all SEO landing pages
   Depends on style.css being loaded first (inherits tokens)
   ============================================================ */

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  background: var(--sky-pale);
  border-bottom: 1px solid var(--sky-light);
  padding: 14px 0;
  margin-top: 80px; /* offset for fixed navbar */
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-soft);
}
.breadcrumbs-list li:not(:last-child)::after {
  content: '›';
  color: var(--charcoal-soft);
  font-size: 1rem;
}
.breadcrumbs-list a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumbs-list a:hover { color: var(--navy); }
.breadcrumbs-list li[aria-current="page"] { color: var(--charcoal-mid); font-weight: 500; }

/* ---- Page Hero (inner pages — smaller than home hero) ---- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  background-image: url("msf 5.webp");
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(6,12,30,0.92) 0%,
    rgba(10,22,52,0.68) 45%,
    rgba(4,10,28,0.92) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 48px 80px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
.page-hero-badge::before,
.page-hero-badge::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.5;
}
.page-hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero-stars .star-fill { font-size: 1.1rem; color: var(--gold); letter-spacing: 3px; }
.page-hero-stars .star-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 18ch;
  text-shadow: 0 4px 24px rgba(0,0,0,0.28);
  letter-spacing: -0.01em;
}
.page-hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-weight: 300;
}

/* Hero buttons already use .btn-primary/.btn-outline from style.css */
.page-hero .hero-btns { margin-bottom: 0; }
.page-hero .hero-btns .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(184,144,64,0.35);
}
.page-hero .hero-btns .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

/* ---- Page Intro Section ---- */
.page-intro {
  background: var(--off-white);
  padding: 88px 0;
}
.page-intro-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.page-intro-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.18;
}
.page-intro-content p {
  color: var(--charcoal-mid);
  font-size: 1.02rem;
  line-height: 1.84;
  margin-bottom: 18px;
  font-weight: 300;
  max-width: 64ch;
}
.page-intro-content p:last-child { margin-bottom: 0; }

/* Quick info sidebar */
.quick-info-box {
  background: var(--white);
  border: var(--border-sky);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.quick-info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.quick-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.quick-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.5;
}
.quick-info-list .qi-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ocean);
  margin-top: 1px;
}
.quick-info-list strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.quick-info-box .btn-wa {
  width: 100%;
  font-size: 0.85rem;
}

/* ---- Benefits Section ---- */
.page-benefits {
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--off-white) 100%);
  padding: 88px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: var(--border-sky);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--ocean), var(--sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky-pale), rgba(194,221,242,0.6));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(36,97,176,0.1);
}
.benefit-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 0;
  font-weight: 300;
}

/* ---- What to Expect ---- */
.page-expect {
  background: var(--warm-white);
  padding: 88px 0;
}
.expect-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.expect-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/5;
  position: relative;
}
.expect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expect-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  z-index: -1;
  background: linear-gradient(135deg, rgba(232,243,252,0.5) 0%, transparent 60%);
}
.expect-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.expect-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.expect-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  border-radius: 50%;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.expect-step-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.expect-step-body p {
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* ---- FAQ Section ---- */
.page-faq {
  background: linear-gradient(145deg, #0D1A38 0%, #122040 100%);
  padding: 88px 0;
  position: relative;
}
.page-faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.4), transparent);
}
.page-faq .section-header h2 { color: var(--white); }
.page-faq .section-sub { color: rgba(255,255,255,0.55); }
.page-faq .section-label { color: var(--gold); }
.page-faq .section-label::before,
.page-faq .section-label::after { background: var(--gold); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(88,152,212,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(88,152,212,0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-soft); }
.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Related Treatments ---- */
.related-treatments {
  background: var(--off-white);
  padding: 88px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.related-card {
  background: var(--white);
  border: var(--border-sky);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.related-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--navy), var(--ocean));
  opacity: 0;
  transition: opacity 0.3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--sky-light); }
.related-card:hover::after { opacity: 1; }
.related-card-icon {
  width: 44px;
  height: 44px;
  background: var(--sky-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}
.related-card-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.related-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.related-card p {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  font-weight: 300;
}
.related-card span {
  font-size: 0.8rem;
  color: var(--ocean);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.related-card span::after { content: '→'; }

/* ---- Internal Links Hub (home page addition) ---- */
.treatments-hub {
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--off-white) 100%);
  padding: 88px 0;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hub-card {
  background: var(--white);
  border: var(--border-sky);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--ocean));
  opacity: 0;
  transition: opacity 0.3s;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sky-light); }
.hub-card:hover::before { opacity: 1; }
.hub-card-icon {
  width: 40px;
  height: 40px;
  background: var(--sky-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  flex-shrink: 0;
}
.hub-card-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hub-card h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.hub-card p {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.55;
  font-weight: 300;
}
.hub-card .hub-link {
  font-size: 0.76rem;
  color: var(--ocean);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.hub-card .hub-link::after { content: ' →'; }

/* ---- Local Highlight Strip ---- */
.local-highlight {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
}
.local-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,64,0.3), transparent);
}
.local-highlight p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.local-highlight .location-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  flex-wrap: wrap;
}
.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(88,152,212,0.22);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.7);
}
.loc-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — Page components
   ============================================================ */
@media (max-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .quick-info-box { position: static; }
  .expect-inner { grid-template-columns: 1fr; gap: 40px; }
  .expect-image { aspect-ratio: 16/9; max-height: 380px; }
}

@media (max-width: 768px) {
  .breadcrumbs { margin-top: 70px; }
  .page-hero { min-height: 50vh; }
  .page-hero-content { padding: 56px 20px 64px; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .page-intro { padding: 60px 0; }
  .page-benefits { padding: 60px 0; }
  .page-expect { padding: 60px 0; }
  .page-faq { padding: 60px 0; }
  .related-treatments { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-grid { grid-template-columns: 1fr; gap: 14px; }
  .hub-grid { grid-template-columns: 1fr; gap: 12px; }
  .treatments-hub { padding: 60px 0; }
  .faq-question { padding: 18px 22px; font-size: 0.98rem; }
  .faq-answer { padding: 0 22px 20px; }
}

@media (max-width: 480px) {
  .page-hero-content { padding: 44px 18px 52px; }
  .page-hero .hero-btns { flex-direction: column; align-items: center; }
  .page-hero .hero-btns .btn-lg { width: 100%; max-width: 320px; }
  .benefit-card { padding: 28px 22px; }
  .related-card { padding: 26px 22px; }
  .hub-card { padding: 20px 18px; }
}
