/* Service landing pages for tummysolutions.com. Sits inside the GoDaddy page shell
   (header, banner, footer stay the site's own). Fonts are already loaded by the shell:
   Libre Baskerville for headings, Source Sans Pro for body. Site blue rgb(67,86,163). */

.tsv {
  --tsv-blue: #4356a3;
  --tsv-blue-dark: #334380;
  --tsv-blue-pale: #eef0f8;
  --tsv-ink: #161616;
  --tsv-mute: #52586b;
  --tsv-line: #dfe3ee;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--tsv-ink);
  font-size: 18px;
  line-height: 1.6;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px;
}
.tsv * { box-sizing: border-box; }
.tsv h2, .tsv h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  color: var(--tsv-ink);
  margin: 0 0 16px;
  line-height: 1.25;
}
.tsv h2 { font-size: 34px; }
.tsv h3 { font-size: 22px; }
.tsv p { margin: 0 0 16px; }
.tsv p:last-child { margin-bottom: 0; }
.tsv a { color: var(--tsv-blue); }
.tsv-lead { font-size: 20px; color: var(--tsv-mute); }

/* Banner extras (inside the site's blue hero) */
.tsv-hero-sub {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  max-width: 640px;
  margin: 14px auto 26px;
  text-align: center;
}
.tsv-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Buttons, same shape as the site's BOOK AN APPOINTMENT button */
.tsv-btn, a.tsv-btn {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--tsv-ink);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: background 120ms ease, color 120ms ease;
}
.tsv-btn:hover, a.tsv-btn:hover { background: #e9ecf7; color: var(--tsv-ink); }
a.tsv-btn { color: #161616 !important; }
a.tsv-btn.tsv-btn-blue { background: #4356a3; border-color: #4356a3; color: #fff !important; }
a.tsv-btn.tsv-btn-blue:hover { background: #334380; }
a.tsv-btn.tsv-btn-ghost { background: transparent; color: #fff !important; }
a.tsv-btn.tsv-btn-ghost:hover { background: rgba(255,255,255,0.14); }
a.tsv-btn.tsv-btn-outline { background: #fff; border-color: #4356a3; color: #4356a3 !important; }
a.tsv-btn.tsv-btn-outline:hover { background: #eef0f8; }
/* The site's banner block is a flex row; stack it on these pages so the title sits above the text */
[data-ux="CardBannerBlock"] { flex-direction: column !important; align-items: center !important; text-align: center !important; }
[data-ux="CardBannerBlock"] h1 { text-align: center !important; margin-bottom: 0 !important; }
.tsv-hero-sub, .tsv-hero-cta { flex: 0 0 auto; width: 100%; }

/* Two column intro */
.tsv-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.tsv-split img { width: 100%; height: auto; display: block; }
.tsv-split.tsv-photo-left img { order: -1; }

/* Numbered steps (a real sequence) */
.tsv-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 18px; }
.tsv-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: var(--tsv-blue-pale);
}
.tsv-steps li::before {
  content: counter(step);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 26px;
  color: var(--tsv-blue);
  line-height: 1;
  padding-top: 4px;
}
.tsv-steps b { display: block; font-size: 19px; margin-bottom: 2px; }

/* Good to know strip */
.tsv-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tsv-facts div { border-top: 3px solid var(--tsv-blue); padding: 14px 0 0; }
.tsv-facts small { display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tsv-mute); margin-bottom: 4px; }
.tsv-facts strong { display: block; font-family: 'Libre Baskerville', Georgia, serif; font-weight: 400; font-size: 24px; margin-bottom: 4px; }
.tsv-facts span { font-size: 16px; color: var(--tsv-mute); }

/* FAQ */
.tsv-faq details { border-top: 1px solid var(--tsv-line); padding: 14px 0; }
.tsv-faq details:last-child { border-bottom: 1px solid var(--tsv-line); }
.tsv-faq summary { cursor: pointer; font-weight: 600; font-size: 19px; list-style: none; position: relative; padding-right: 32px; }
.tsv-faq summary::-webkit-details-marker { display: none; }
.tsv-faq summary::after { content: "+"; position: absolute; right: 4px; top: -2px; font-size: 26px; color: var(--tsv-blue); }
.tsv-faq details[open] summary::after { content: "\2212"; }
.tsv-faq details p { margin: 10px 0 0; color: #333; }

/* Closing call to action */
.tsv-cta { background: var(--tsv-blue); color: #fff; padding: 48px 32px; text-align: center; }
.tsv-cta h2 { color: #fff; }
.tsv-cta p { color: #fff; max-width: 620px; margin: 0 auto 22px; }
.tsv-cta .tsv-hero-cta { margin-bottom: 18px; }
.tsv-cta a.tsv-phone { color: #fff; font-weight: 600; text-decoration: none; font-size: 20px; }
.tsv-note { font-size: 15px; color: var(--tsv-mute); }

/* Service cards (hub page and the "other services" row) */
.tsv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tsv-card { border: 1px solid var(--tsv-line); padding: 24px; display: flex; flex-direction: column; background: #fff; }
.tsv-card h3 { margin-bottom: 8px; }
.tsv-card h3 a { text-decoration: none; color: var(--tsv-ink); }
.tsv-card h3 a:hover { color: var(--tsv-blue); }
.tsv-card p { flex: 1 1 auto; font-size: 17px; }
.tsv-card .tsv-price { font-weight: 600; color: var(--tsv-blue); margin-bottom: 14px; }
.tsv-card .tsv-links { display: flex; gap: 10px; flex-wrap: wrap; }
.tsv-card .tsv-btn { padding: 12px 18px; font-size: 13px; }
.tsv-more { margin-top: 8px; }
.tsv-more ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.tsv-more a { font-weight: 600; text-decoration: none; }
.tsv-more a:hover { text-decoration: underline; }

.tsv-section { margin-bottom: 56px; }
.tsv-section:last-child { margin-bottom: 0; }
.tsv-band { background: var(--tsv-blue-pale); padding: 32px; }

@media (max-width: 860px) {
  .tsv { padding: 40px 20px; font-size: 17px; }
  .tsv h2 { font-size: 28px; }
  .tsv-split { grid-template-columns: 1fr; gap: 24px; }
  .tsv-split.tsv-photo-left img { order: 0; }
  .tsv-facts { grid-template-columns: repeat(2, 1fr); }
  .tsv-cards { grid-template-columns: 1fr; }
  .tsv-cta { padding: 36px 20px; }
  .tsv-hero-sub { font-size: 18px; }
}
@media (max-width: 480px) {
  .tsv-facts { grid-template-columns: 1fr; }
  .tsv-btn { width: 100%; }
}
