@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap");

/* Scoped tweaks for service pages only.
   Goal: keep Webflow's styling, align copy with the hero start, and even out spacing. */

/* Match services page typography on all service pages */
body.service-page {
  color: var(--paragraph, #2b2b2b);
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

body.service-page h1,
body.service-page h2,
body.service-page h3 {
  color: var(--text-dark, #0f1720);
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
}

/* Match hero/title treatment used on About/Home */
body.service-page h1,
body.service-page .banner-animated-title {
  color: #fff;
}

body.service-page h2,
body.service-page .heading-7 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

body.service-page p,
body.service-page .paragraph-6,
body.service-page li {
  font-size: 18px;
  line-height: 1.65;
}

body.service-page ul {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 22px;
}

body.service-page ul li + li {
  margin-top: 10px;
}

body.service-page .link-2 {
  font-weight: 600;
}

/* Keep service page content left-aligned (some Webflow heading classes center text). */
body.service-page .container-3,
body.service-page .container-3 h2,
body.service-page .container-3 p,
body.service-page .container-3 ul,
body.service-page .container-3 li {
  text-align: left;
}

/* Align hero/title with the same left start as the body copy */
body.service-page .pages-bigger-banner {
  padding-left: 40px;
  padding-right: 40px;
}

body.service-page .banner-animated-title {
  text-align: left;
}

/* Widen the body content so it lines up with the hero start */
body.service-page .section .base-container {
  align-items: flex-start;
  padding-top: 0;
}

body.service-page .w-layout-blockcontainer.container-3 {
  max-width: 1100px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body.service-page .container-3 {
  margin-top: 0;
}

/* Consistent section spacing (normalize vertical rhythm). */
body.service-page .section {
  padding: 40px 40px;
}

body.service-page .section.light-background {
  margin-bottom: 0;
  padding-bottom: 40px;
}

/* Slightly tighter right under the hero banner */
body.service-page .pages-bigger-banner + .section {
  padding-top: 24px;
}

/* Reduce stacking gap between consecutive sections */
body.service-page .section + .section {
  padding-top: 28px;
}

/* Reusable booking button component */
.book-appointment-button {
  border: 1px solid var(--primary, #555457);
  background-color: var(--primary, #555457);
  color: var(--light-gray, #f9f9fa);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: none;
  border-radius: 60px;
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
}

.book-appointment-button:hover {
  opacity: 0.9;
  background-color: var(--text-dark, #0e0e0e);
  border-color: var(--text-dark, #0e0e0e);
  color: var(--light-gray, #f9f9fa);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.book-appointment-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fix button in contact page context - align with paragraph-5 padding */
.about-top-block-content .book-appointment-button {
  margin-top: 0;
  margin-bottom: 16px;
  margin-left: 60px;
  display: block;
  width: auto;
}

/* Mobile alignment for contact page button */
@media screen and (max-width: 991px) {
  .about-top-block-content .book-appointment-button {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-top-block-content .book-appointment-button {
    margin-left: 10px;
  }
}

/* Fix button in paragraph contexts - ensure it doesn't break flow */
p + .book-appointment-button,
.paragraph-5 + .book-appointment-button,
.paragraph-6 + .book-appointment-button {
  margin-top: 12px;
  margin-bottom: 16px;
  display: inline-block;
}

/* Fix button inside accordion dropdowns */
.accordion-list-content .book-appointment-button {
  margin-top: 8px;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

/* Contact button - secondary style */
.contact-button {
  border: 1px solid var(--primary, #555457);
  background-color: transparent;
  color: var(--primary, #555457);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: none;
  border-radius: 60px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  white-space: nowrap;
}

.contact-button:hover {
  background-color: var(--primary, #555457);
  color: var(--light-gray, #f9f9fa);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.contact-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact button in accordion dropdowns */
.accordion-list-content .contact-button {
  margin-top: 0;
  margin-bottom: 0;
}

/* Fix button in services section */
.section p .book-appointment-button {
  margin-left: 0;
  margin-right: 0;
}

/* Ensure button doesn't inherit paragraph padding */
.paragraph-5 + .book-appointment-button,
.paragraph-6 + .book-appointment-button {
  margin-left: 0;
}

/* Override for contact page - button should align with paragraph-5 padding */
.about-top-block-content .paragraph-5 + .book-appointment-button {
  margin-left: 60px !important;
}

@media screen and (max-width: 991px) {
  .about-top-block-content .paragraph-5 + .book-appointment-button {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .about-top-block-content .paragraph-5 + .book-appointment-button {
    margin-left: 10px !important;
  }
}

/* Reset any inherited styles that might break button appearance */
.book-appointment-button {
  white-space: nowrap;
  word-spacing: normal;
}

/* Ensure button works in flex/grid contexts */
.about-top-block-content .book-appointment-button,
.home-session-list .book-appointment-button {
  align-self: flex-start;
}

/* Full width on mobile */
@media screen and (max-width: 767px) {
  .book-appointment-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Contact page button should align with paragraph-5 padding on mobile */
  .about-top-block-content .book-appointment-button {
    width: auto;
    margin-left: 10px !important;
    text-align: left;
  }
}

/* ---------------------------
   Card layout for services
   --------------------------- */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 28px 26px;
  border: 1px solid #f0f0f3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-card {
  padding: 26px 24px;
  gap: 12px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.07);
}

.services-card h3,
.services-card .heading-7,
.services-card .heading-13 {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.15px;
  font-size: 24px !important;
  line-height: 1.3;
}

.services-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--paragraph, #2b2b2b);
  flex: 1;
  margin-bottom: 0;
}

/* Align price boxes at the bottom of cards */
.services-card .price-box {
  margin-top: auto;
}

.service-hero-card {
  gap: 16px;
  padding: 32px 30px;
}

.service-info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.2;
}

/* Fix white text on light background for Service Area & Location card */
.service-info-card .heading-5,
.service-info-card h3.heading-5 {
  color: var(--text-dark, #0f1720) !important;
}

.service-info-card .paragraph-3 {
  color: var(--paragraph, #2b2b2b) !important;
}

/* Service location card cleanup */
.service-location-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-location-content .paragraph-3 {
  margin-bottom: 0;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-detail strong {
  color: var(--text-dark, #0f1720);
  font-weight: 700;
  margin-bottom: 4px;
}

.location-detail p {
  margin: 0;
  color: var(--paragraph, #2b2b2b);
  line-height: 1.6;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
}

.resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-list li {
  margin: 0;
}

.service-card ul li + li {
  margin-top: 8px;
}

.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.service-meta {
  margin: 0;
  color: var(--paragraph, #2b2b2b);
}

.service-card .book-appointment-button {
  margin-top: 0;
  margin-bottom: 0;
}

.service-card .contact-button {
  display: inline-block;
  width: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid #f0f0f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-question {
  font-weight: 700;
  color: var(--text-dark, #0f1720);
  margin: 0;
  line-height: 1.35;
  font-size: 18px;
}

.faq-answer {
  margin: 0;
  color: var(--paragraph, #2b2b2b);
  line-height: 1.6;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .service-card {
    padding: 22px 20px;
  }

  .service-info-card h3 {
    font-size: 22px;
  }

  .service-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card .contact-button,
  .service-card .book-appointment-button {
    width: 100%;
    text-align: center;
  }
}

/* ---------------------------
   Price box styling
   --------------------------- */
.price-box {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-box .price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark, #0f1720);
  line-height: 1.2;
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
}

.price-box .price-duration {
  font-size: 16px;
  font-weight: 600;
  color: var(--paragraph, #2b2b2b);
  line-height: 1.4;
  font-family: "Manrope", "Open Sans", "Lato", sans-serif;
}

.price-box.multiple-prices {
  gap: 12px;
}

.price-box .price-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.price-box .price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-box .price-item .price-amount {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .price-box .price-amount {
    font-size: 28px;
  }
  
  .price-box .price-item .price-amount {
    font-size: 24px;
  }
}

