/* ============================================================
   FindPeace — Custom Styles (Bootstrap 5 override / extension)
   Font: Rubik (Google Fonts)
   Colors:
     --fp-dark:      #111111
     --fp-body:      #555555
     --fp-muted:     #888888
     --fp-grey:      #444444
     --fp-bg:        #FAFAFA
     --fp-white:     #FFFFFF
     --fp-border:    #F0F0F0
     --fp-tag-bg:    #DAECE7
     --fp-hero-bg:   #E7F3F0
     --fp-card-bg:   #F5F8FA
     --fp-footer-bg: #DAECE7
     --fp-btn-dark:  #111111
     --fp-input-bg:  #FAFAFA
   ============================================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --fp-dark:      #111111;
  --fp-body:      #555555;
  --fp-muted:     #888888;
  --fp-bg:        #FAFAFA;
  --fp-white:     #FFFFFF;
  --fp-border:    #F0F0F0;
  --fp-tag-bg:    #DAECE7;
  --fp-hero-bg:   #E7F3F0;
  --fp-card-bg:   #F5F8FA;
  --fp-footer-bg: #DAECE7;
  --fp-btn-dark:  #111111;
  --fp-input-bg:  #FAFAFA;
  --fp-line:      #DBDBDB;
  --fp-light-grey:#EBEBEB;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--fp-body);
  background-color: var(--fp-white);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.fp-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-h4 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-h5 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-h6 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--fp-dark);
}
.fp-body-1 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--fp-body);
}
.fp-body-2 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--fp-body);
}
.fp-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.text-dark-fp   { color: var(--fp-dark) !important; }
.text-body-fp   { color: var(--fp-body) !important; }
.text-muted-fp  { color: var(--fp-muted) !important; }

/* ---------- Buttons ---------- */
.btn-fp-dark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 22px;
  background-color: var(--fp-btn-dark);
  color: var(--fp-white);
  border-radius: 24px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-fp-dark:hover {
  background-color: #2a2a2a;
  color: var(--fp-white);
  transform: translateY(-1px);
}

.btn-fp-green {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 22px;
  background-color: var(--fp-tag-bg);
  color: var(--fp-dark);
  border-radius: 24px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-fp-green:hover {
  background-color: #c4deda;
  color: var(--fp-dark);
  transform: translateY(-1px);
}

.btn-fp-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: transparent;
  color: var(--fp-dark);
  border-radius: 24px;
  border: 2px solid var(--fp-dark);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-fp-outline-dark:hover {
  background-color: var(--fp-dark);
  color: var(--fp-white);
  transform: translateY(-1px);
}

.btn-fp-white {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background-color: var(--fp-white);
  color: var(--fp-dark);
  border-radius: 24px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-fp-white:hover {
  background-color: #f0f0f0;
  color: var(--fp-dark);
  transform: translateY(-1px);
}

.btn-fp-sm {
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 24px;
}

/* ---------- Tags / Pills ---------- */
.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 14px;
  color: var(--fp-body);
}
.fp-tag .fp-dot {
  width: 6px;
  height: 6px;
  background-color: var(--fp-tag-bg);
  border-radius: 8px;
  display: inline-block;
}
.fp-badge {
  padding: 2px 7px;
  background-color: var(--fp-hero-bg);
  border-radius: 4px;
  font-size: 12px;
  color: var(--fp-body);
}
.fp-badge-green {
  padding: 4px 8px;
  background-color: var(--fp-hero-bg);
  border-radius: 4px;
  font-size: 12px;
  color: var(--fp-body);
}

/* ---------- Navigation ---------- */
.fp-navbar {
  background-color: var(--fp-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--fp-border);
}
.fp-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-nav-logo img {
  height: 36px;
  width: auto;
}
.fp-nav-logo span {
  font-size: 22px;
  font-weight: 500;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
}
.fp-nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-nav-links a {
  font-size: 16px;
  color: var(--fp-body);
  text-decoration: none;
  transition: color 0.2s;
}
.fp-nav-links a:hover {
  color: var(--fp-dark);
}
.fp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile toggle */
.fp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.fp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fp-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero Section ---------- */
.fp-hero {
  background-color: var(--fp-bg);
  padding: 100px 0 0;
  overflow: hidden;
}
.fp-hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
.fp-hero-content {
  flex: 1;
  padding-bottom: 64px;
}
.fp-hero-headline {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fp-dark);
  max-width: 540px;
}
.fp-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 0;
  padding: 32px 0;
  border-top: 1px solid var(--fp-border);
  border-bottom: 1px solid var(--fp-border);
}
.fp-hero-stat-divider {
  width: 2px;
  height: 82px;
  background-color: var(--fp-dark);
}
.fp-hero-stat-item h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.fp-hero-stat-item p {
  font-size: 16px;
  color: var(--fp-body);
  margin: 0;
}
.fp-hero-image {
  flex: 0 0 auto;
  width: 416px;
}
.fp-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.fp-hero-trusted {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.fp-hero-avatars {
  display: flex;
  align-items: center;
}
.fp-hero-avatars img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--fp-white);
  margin-left: -8px;
}
.fp-hero-avatars img:first-child {
  margin-left: 0;
}

/* ---------- Section Common ---------- */
.fp-section {
  padding: 100px 0;
}
.fp-section-tag {
  font-size: 14px;
  color: var(--fp-body);
  margin-bottom: 0;
}
.fp-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

/* ---------- Services Section ---------- */
.fp-services {
  background-color: var(--fp-bg);
}
.fp-service-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fp-filter-btn {
  padding: 8px 16px;
  border-radius: 24px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.fp-filter-btn.active {
  background-color: var(--fp-tag-bg);
  color: var(--fp-dark);
}
.fp-filter-btn:not(.active) {
  background-color: var(--fp-border);
  color: var(--fp-dark);
}
.fp-filter-btn:hover:not(.active) {
  background-color: #e0e0e0;
}

.fp-service-card {
  background: var(--fp-white);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.fp-service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.fp-service-card-tag {
  padding: 2px 7px;
  background-color: var(--fp-hero-bg);
  border-radius: 4px;
  font-size: 12px;
  color: var(--fp-body);
  display: inline-block;
  position: relative;
}
.fp-service-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--fp-border);
}
.fp-service-meta {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

/* ---------- Therapists Section ---------- */
.fp-therapists {
  background-color: var(--fp-white);
  padding: 64px 0 0;
}
.fp-therapist-wrapper {
  background-color: var(--fp-white);
  position: relative;
  padding-bottom: 140px;
}
.fp-therapist-card {
  background: var(--fp-bg);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.fp-therapist-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.fp-therapist-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-therapist-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fp-therapist-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.fp-therapist-exp {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.fp-cta-card {
  background: var(--fp-card-bg);
  border-radius: 12px;
  padding: 16px 80px 16px 16px;
  display: flex;
  align-items: stretch;
  gap: 80px;
  height: 500px;
  position: relative;
  z-index: 1;
}
.fp-cta-card-img {
  flex: 1;
  border-radius: 4px;
  object-fit: cover;
  min-height: 100%;
}
.fp-cta-card-content {
  width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 0;
  flex-shrink: 0;
}
.fp-overlap-section {
  background-color: var(--fp-white);
  position: relative;
  margin-top: -140px;
  padding-top: 0;
}
.fp-overlap-inner {
  background-color: var(--fp-white);
  padding: 16px 64px 64px;
}

/* ---------- Testimonials ---------- */
.fp-testimonials {
  background-color: var(--fp-bg);
}
.fp-testimonial-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-indicator {
  height: 4px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.fp-indicator.active {
  width: 32px;
  background-color: var(--fp-tag-bg);
}
.fp-indicator:not(.active) {
  width: 16px;
  background-color: var(--fp-light-grey);
}
.fp-testimonial-card {
  background: var(--fp-white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 24px;
}
.fp-testimonial-card-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.fp-testimonial-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.fp-testimonial-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid var(--fp-line);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.fp-testimonial-nav-btn:hover,
.fp-testimonial-nav-btn.active {
  background: var(--fp-tag-bg);
  border-color: var(--fp-tag-bg);
}

/* ---------- How It Works ---------- */
.fp-how {
  background-color: var(--fp-white);
}
.fp-how-steps {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-how-step {
  flex: 1;
  position: relative;
}
.fp-how-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 120px;
  position: relative;
}
.fp-how-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fp-white);
  border: 1px solid var(--fp-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-how-line {
  flex: 1;
  width: 2px;
  background: transparent;
  border-left: 2px dashed var(--fp-white);
}
.fp-how-step-num {
  font-size: 20px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
  text-align: center;
  width: 28px;
}
.fp-how-step-num.muted {
  color: var(--fp-body);
}
.fp-how-steps-container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fp-how-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fp-how-step-num-wrap {
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.fp-steps-row {
  display: flex;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.fp-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fp-white);
  border: 1px solid var(--fp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-step-circle svg {
  width: 20px;
  height: 20px;
}
.fp-step-dashed-line {
  width: 2px;
  flex: 1;
  border-left: 2px dashed var(--fp-white);
}
.fp-step-content {
  flex: 1;
}
.fp-step-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ---------- Stats Section ---------- */
.fp-stats {
  background-color: var(--fp-tag-bg);
  padding: 100px 64px;
}
.fp-stat-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---------- Booking Form ---------- */
.fp-booking {
  background-color: var(--fp-white);
  padding: 100px 64px;
}
.fp-form-card {
  background: var(--fp-bg);
  border-radius: 8px;
  padding: 12px 16px;
}
.fp-form-input {
  background: var(--fp-bg);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
  color: var(--fp-muted);
  font-family: 'Rubik', sans-serif;
  outline: none;
  transition: box-shadow 0.2s;
}
.fp-form-input:focus {
  box-shadow: 0 0 0 2px var(--fp-tag-bg);
}
.fp-form-input::placeholder {
  color: var(--fp-muted);
}
.fp-form-select {
  background: var(--fp-bg);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
  color: var(--fp-muted);
  font-family: 'Rubik', sans-serif;
  outline: none;
  appearance: none;
  transition: box-shadow 0.2s;
}
.fp-form-select:focus {
  box-shadow: 0 0 0 2px var(--fp-tag-bg);
}
.fp-form-textarea {
  background: var(--fp-bg);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  height: 120px;
  resize: none;
  font-size: 16px;
  color: var(--fp-muted);
  font-family: 'Rubik', sans-serif;
  outline: none;
  transition: box-shadow 0.2s;
}
.fp-form-textarea:focus {
  box-shadow: 0 0 0 2px var(--fp-tag-bg);
}
.fp-form-label {
  font-size: 14px;
  color: var(--fp-body);
  margin-bottom: 8px;
  display: block;
}
.fp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-select-wrapper {
  position: relative;
}
.fp-select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.fp-date-wrapper {
  position: relative;
}
.fp-date-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* ---------- FAQ Section ---------- */
.fp-faq {
  background-color: var(--fp-white);
  padding: 100px 0;
}
.fp-faq-card {
  background: var(--fp-card-bg);
  border-radius: 8px;
  overflow: hidden;
}
.fp-faq-item {
  background: var(--fp-card-bg);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  transition: background 0.2s;
}
.fp-faq-item:hover {
  background: #edf2f8;
}
.fp-faq-item-open {
  background: var(--fp-card-bg);
  border-radius: 8px;
  padding: 24px;
  gap: 32px;
}
.fp-faq-question {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.fp-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.fp-faq-icon.open {
  transform: rotate(45deg);
}
.fp-faq-answer {
  font-size: 16px;
  color: var(--fp-body);
  line-height: 1.4;
  margin-top: 16px;
}

/* ---------- About CTA Section ---------- */
.fp-about-cta {
  background-color: var(--fp-tag-bg);
  padding: 240px 64px 64px;
  position: relative;
  margin-top: -200px;
}

/* ---------- Newsletter / Footer Section ---------- */
.fp-footer {
  background-color: var(--fp-tag-bg);
  padding: 64px;
}
.fp-newsletter-card {
  background: var(--fp-white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.fp-newsletter-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--fp-bg);
  border-radius: 8px;
  padding: 8px 8px 8px 16px;
}
.fp-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--fp-muted);
  font-family: 'Rubik', sans-serif;
}
.fp-footer-nav-col h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--fp-dark);
  margin-bottom: 24px;
}
.fp-footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-footer-nav-col ul li a {
  font-size: 16px;
  color: var(--fp-body);
  text-decoration: none;
  transition: color 0.2s;
}
.fp-footer-nav-col ul li a:hover,
.fp-footer-nav-col ul li a.active {
  color: var(--fp-dark);
}
.fp-footer-contact-col h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--fp-dark);
  margin-bottom: 24px;
}
.fp-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.fp-contact-item label {
  font-size: 14px;
  color: var(--fp-muted);
}
.fp-contact-item p {
  font-size: 16px;
  color: var(--fp-body);
  margin: 0;
}
.fp-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-social-links a {
  font-size: 16px;
  color: var(--fp-body);
  text-decoration: none;
  transition: color 0.2s;
}
.fp-social-links a:hover {
  color: var(--fp-dark);
}
.fp-footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.32);
  margin: 0;
}
.fp-footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fp-footer-logo-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
}

/* ---------- Separators ---------- */
.fp-divider {
  width: 100%;
  height: 1px;
  background: var(--fp-border);
  border: none;
}
.fp-vertical-divider {
  width: 1px;
  background: var(--fp-border);
  align-self: stretch;
}

/* ---------- Scroll Nav (how it works steps) ---------- */
.fp-steps-horizontal {
  display: flex;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-step-col {
  flex: 1;
}
.fp-step-col-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  height: 120px;
  flex-shrink: 0;
}
.fp-step-circle-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--fp-white);
  background: var(--fp-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-step-line {
  flex: 1;
  width: 2px;
  border-left: 2px dashed var(--fp-white);
}

/* ---------- Pricing section ---------- */
.fp-pricing {
  background-color: var(--fp-white);
}
.fp-pricing-card {
  background: var(--fp-bg);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-pricing-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.fp-pricing-what-you-get {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-pricing-feature {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fp-pricing-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .fp-h1 { font-size: 40px; }
  .fp-h2 { font-size: 32px; }
  .fp-h3 { font-size: 26px; }
  .fp-hero { padding: 64px 0 0; }
  .fp-hero-inner { flex-direction: column; gap: 40px; }
  .fp-hero-image { width: 100%; }
  .fp-hero-image img { height: 300px; border-radius: 12px; }
  .fp-hero-headline { font-size: 40px; max-width: 100%; }
  .fp-section { padding: 64px 0; }
  .fp-section-header { flex-direction: column; align-items: flex-start; }
  .fp-cta-card { flex-direction: column; height: auto; padding: 16px; gap: 24px; }
  .fp-cta-card-img { height: 240px; }
  .fp-cta-card-content { width: 100%; }
  .fp-footer { padding: 48px 16px; }
  .fp-booking { padding: 64px 16px; }
  .fp-stats { padding: 64px 16px; }
  .fp-about-cta { padding: 200px 16px 48px; }
  .fp-testimonial-card { flex-direction: column; }
  .fp-testimonial-card-img { width: 100%; height: 240px; }
}

@media (max-width: 767.98px) {
  .fp-h1 { font-size: 32px; }
  .fp-h2 { font-size: 24px; }
  .fp-hero-headline { font-size: 32px; }
  .fp-hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .fp-hero-stat-divider { width: 40px; height: 2px; }
  .fp-nav-links { display: none; }
  .fp-nav-ctas { display: none; }
  .fp-hamburger { display: flex; }
  .fp-steps-horizontal { overflow-x: auto; }
  .fp-how-step { min-width: 200px; }
  .fp-footer-bottom-row { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav open state */
.fp-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--fp-white);
  border-top: 1px solid var(--fp-border);
}
.fp-mobile-nav.open {
  display: flex;
}
.fp-mobile-nav a {
  font-size: 16px;
  color: var(--fp-body);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-mobile-nav a:last-child {
  border-bottom: none;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fp-animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.fp-animate-delay-1 { animation-delay: 0.1s; }
.fp-animate-delay-2 { animation-delay: 0.2s; }
.fp-animate-delay-3 { animation-delay: 0.3s; }

/* Hover card lift */
.fp-hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fp-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.fp-page-hero {
  background: var(--fp-white);
  padding: 32px 0 80px;
}
.fp-page-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.fp-page-hero-title {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fp-dark);
  max-width: 640px;
  margin-bottom: 20px;
}
.fp-page-hero-body {
  font-size: 16px;
  color: var(--fp-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

/* ================================================================
   MILESTONE TIMELINE
================================================================ */
.fp-timeline {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.fp-timeline-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.fp-year-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--fp-dark);
  color: var(--fp-white);
  font-size: 16px;
  font-weight: 400;
  border: 2px solid var(--fp-dark);
}
.fp-year-badge.current {
  background: var(--fp-white);
  color: var(--fp-body);
  border: 2px solid var(--fp-tag-bg);
}
.fp-year-connector {
  width: 2px;
  height: 64px;
  background: var(--fp-dark);
}
.fp-year-connector.future {
  background: var(--fp-hero-bg);
}
.fp-milestone-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.fp-milestone-item {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--fp-tag-bg);
  font-size: 16px;
  color: var(--fp-dark);
  line-height: 1.5;
}
.fp-milestone-item.future {
  color: var(--fp-body);
}
.fp-milestone-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* ================================================================
   SOCIAL MEDIA CARDS
================================================================ */
.fp-social-card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
}
.fp-social-card-label {
  font-size: 14px;
  color: var(--fp-body);
  margin-bottom: 4px;
}
.fp-social-card-handle {
  font-size: 24px;
  font-weight: 400;
  color: var(--fp-dark);
  letter-spacing: -0.01em;
}
.fp-social-card-img {
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  background: var(--fp-border);
  object-fit: cover;
  width: 100%;
}

/* ================================================================
   EXPERT CARD (About page)
================================================================ */
.fp-expert-card {
  background: var(--fp-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fp-expert-img {
  height: 360px;
  background: var(--fp-hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fp-expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-expert-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-expert-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.fp-expert-years {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

/* ================================================================
   CONTACT INFO CARDS
================================================================ */
.fp-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--fp-white);
  border-radius: 12px;
}
.fp-contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fp-tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--fp-dark);
}
.fp-contact-info-label {
  font-size: 14px;
  color: var(--fp-body);
  margin-bottom: 2px;
}
.fp-contact-info-value {
  font-size: 16px;
  color: var(--fp-dark);
  font-weight: 400;
}

/* ================================================================
   MAP PLACEHOLDER
================================================================ */
.fp-map-placeholder {
  background: var(--fp-tag-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--fp-body);
  font-size: 14px;
}
.fp-map-placeholder i {
  font-size: 32px;
  color: var(--fp-dark);
}

/* ================================================================
   PRICING CARDS (enhanced)
================================================================ */
.fp-plan-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.fp-plan-card.featured {
  background: var(--fp-dark);
  border-color: var(--fp-dark);
  color: var(--fp-white);
}
.fp-plan-card.featured .fp-plan-name,
.fp-plan-card.featured .fp-plan-price,
.fp-plan-card.featured .fp-plan-period,
.fp-plan-card.featured .fp-plan-desc,
.fp-plan-card.featured .fp-plan-feature-text {
  color: var(--fp-white);
}
.fp-plan-card.featured .fp-plan-feature-icon {
  color: var(--fp-tag-bg);
}
.fp-plan-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fp-dark);
}
.fp-plan-price {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fp-dark);
  line-height: 1;
}
.fp-plan-period {
  font-size: 14px;
  color: var(--fp-body);
}
.fp-plan-desc {
  font-size: 14px;
  color: var(--fp-muted);
  line-height: 1.5;
}
.fp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.fp-plan-feature-icon {
  color: var(--fp-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.fp-plan-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--fp-tag-bg);
  color: var(--fp-dark);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.fp-pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.fp-pricing-toggle-label {
  font-size: 16px;
  color: var(--fp-body);
  cursor: pointer;
}
.fp-pricing-toggle-label.active {
  color: var(--fp-dark);
  font-weight: 500;
}

/* ================================================================
   VALUES CARD
================================================================ */
.fp-value-card {
  background: var(--fp-white);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.fp-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fp-tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--fp-dark);
}

/* ================================================================
   OFFICE HOURS
================================================================ */
.fp-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fp-hours-day {
  font-size: 14px;
  color: var(--fp-body);
}
.fp-hours-time {
  font-size: 14px;
  color: var(--fp-dark);
  font-weight: 500;
}

/* ================================================================
   RESPONSIVE (inner pages)
================================================================ */
@media (max-width: 991.98px) {
  .fp-page-hero-title { font-size: 40px; }
  .fp-timeline { flex-direction: column; }
  .fp-expert-img { height: 240px; }
  .fp-plan-card { padding: 24px 20px; }
  .fp-plan-price { font-size: 36px; }
}
@media (max-width: 767.98px) {
  .fp-page-hero-title { font-size: 28px; }
  .fp-social-card { height: 180px; }
  .fp-contact-info-card { flex-direction: column; }
  .fp-why-us-grid { grid-template-columns: 1fr; }
  .fp-hero-double-img { flex-direction: column; }
  .fp-hero-img-main, .fp-hero-img-secondary { width: 100%; height: 260px; }
}

/* ================================================================
   HOMEPAGE PIXEL-PERFECT COMPONENT EXTENSIONS
================================================================ */
/* ================================================================
   EXACT FIGMA HERO & NAVBAR LAYOUT
================================================================ */
.fp-hero-section-figma {
  padding: 40px 0 60px;
  background: #FFFFFF;
}
.fp-hero-double-img-exact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fp-hero-main-img-figma {
  width: 420px;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
}
.fp-hero-room-img-figma {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
.fp-feature-bar-minimal {
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid #F0F0F0;
}
.fp-feature-item-col {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.fp-feature-item-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #F0F0F0;
}
.fp-feature-icon-sm {
  font-size: 18px;
  color: #111111;
  margin-top: 2px;
  flex-shrink: 0;
}
.fp-feature-text-sm {
  font-size: 14px;
  color: #555555;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 230px;
}

@media (max-width: 991.98px) {
  .fp-feature-item-col:not(:last-child)::after { display: none; }
  .fp-hero-double-img-exact { flex-direction: column; align-items: flex-start; }
  .fp-hero-main-img-figma { width: 100%; height: 340px; }
  .fp-hero-room-img-figma { width: 100%; height: 240px; }
}

.fp-services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.fp-service-card-figma {
  background: var(--fp-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--fp-border);
  transition: transform 0.25s ease;
}
.fp-service-card-figma:hover {
  transform: translateY(-4px);
}
.fp-service-card-figma-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.fp-service-card-figma-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.fp-service-card-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fp-bg);
  color: var(--fp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.fp-service-card-arrow-btn:hover {
  background: var(--fp-dark);
  color: var(--fp-white);
}

/* ================================================================
   EXACT WHY WITH US SECTION (Figma Screenshot)
================================================================ */
.fp-why-us-section-figma {
  padding: 100px 0;
  background: #FFFFFF;
}
.fp-why-us-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.fp-why-us-title-main {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: #111111;
  letter-spacing: -0.02em;
  max-width: 440px;
  margin-bottom: 0;
}
.fp-why-us-subtitle-right {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  max-width: 440px;
  margin-bottom: 0;
}
.fp-why-us-grid-figma {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 56px;
  align-items: center;
}
.fp-why-us-center-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}
.fp-why-us-column-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.fp-why-us-icon-sq {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #E7F3F0;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.fp-why-us-item-heading {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.3;
}
.fp-why-us-item-body {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 320px;
}

@media (max-width: 991.98px) {
  .fp-why-us-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fp-why-us-grid-figma { grid-template-columns: 1fr; gap: 40px; }
  .fp-why-us-center-img { height: 360px; }
  .fp-why-us-column-items { gap: 40px; }
}

.fp-video-section-mint {
  background: #E7F3F0;
  padding: 80px 0;
}
.fp-video-player-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
}
.fp-video-player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-video-play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--fp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.25s ease;
  text-decoration: none;
}
.fp-video-play-btn-circle:hover {
  transform: scale(1.1);
  color: var(--fp-dark);
}

.fp-testimonial-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

/* ================================================================
   EXACT BOOK APPOINTMENT SECTION (Figma Screenshot)
================================================================ */
.fp-book-section-wrapper {
  background: url('../images/book-bg.jpg') center/cover no-repeat;
  padding: 60px 24px;
}
.fp-book-white-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 56px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.fp-book-portrait-img {
  width: 175px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  margin-top: 32px;
}
.fp-input-field-custom {
  background: #F8F9FA;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #111111;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.fp-input-field-custom:focus {
  background: #FFFFFF;
  border-color: #DAECE7;
  outline: none;
}
.fp-form-label-custom {
  font-size: 13px;
  color: #555555;
  margin-bottom: 6px;
  display: block;
  font-weight: 400;
}
.btn-fp-book-mint {
  background: #DAECE7;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 24px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
/* ================================================================
   EXACT HOW IT WORKS SECTION (Figma Screenshot Placement)
================================================================ */
.fp-how-container {
  padding: 100px 0;
  background: #FFFFFF;
}
.fp-how-vertical-divider {
  position: relative;
  border-right: 1px solid #DBDBDB;
}
.fp-how-divider-dot {
  position: absolute;
  top: 240px; /* roughly at step 02 level */
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111111;
}
.fp-how-step-row {
  display: grid;
  grid-template-columns: 40px 1fr 1.3fr;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #F0F0F0;
  gap: 20px;
}
.fp-how-step-row:first-child {
  padding-top: 0;
}
.fp-how-step-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fp-how-step-num {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  padding-top: 3px;
}
.fp-how-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
  line-height: 1.3;
}
.fp-how-step-desc {
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 0;
}
.fp-how-portrait-img {
  width: 180px;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
  margin-top: 32px;
}
/* Book Appointment button — exact Figma pill style */
.btn-fp-book-mint {
  background: #DAECE7;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.btn-fp-book-mint:hover {
  background: #c5dfd9;
  color: #111111;
}


/* ================================================================
   EXACT TESTIMONIALS / ENDORSEMENTS SECTION (Figma Screenshot)
================================================================ */
.fp-testimonial-section-figma {
  padding: 100px 0;
  background: #FFFFFF;
}
.fp-testimonial-card-figma {
  display: flex;
  align-items: center;
  gap: 48px;
}
.fp-testimonial-img-figma {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}
.fp-testimonial-quote-figma {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.fp-testimonial-progress-bar-3 {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}
.fp-testimonial-progress-segment {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: #EBEBEB;
}
.fp-testimonial-progress-segment.active {
  background: #DAECE7;
}
.fp-testimonial-author-name {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 2px;
}
.fp-testimonial-author-role {
  font-size: 13px;
  color: #888888;
  margin-bottom: 0;
}
.btn-fp-arrow-circle-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #DBDBDB;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-fp-arrow-circle-prev:hover {
  background: #F8F9FA;
  border-color: #111111;
}
.btn-fp-arrow-circle-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #DAECE7;
  border: none;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-fp-arrow-circle-next:hover {
  background: #c8e4dd;
}

/* ================================================================
   EXACT OUR STORY SECTION (Figma Screenshot)
================================================================ */
.fp-story-section-figma {
  padding: 80px 0;
  background: #FAFAFA;
  width: 100%;
}
.fp-story-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.fp-story-heading-main {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  max-width: 300px;
}
.fp-story-sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 16px;
  line-height: 1.3;
}
.fp-story-paragraph {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}
.fp-story-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fp-story-img-item {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  .fp-story-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-story-images-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fp-story-img-item { height: 220px; }
}

/* ================================================================
   EXACT VISION & MISSION SECTION (Figma Screenshot)
================================================================ */
.fp-vm-section-figma {
  padding: 40px 0 80px;
  background: #FAFAFA;
  width: 100%;
}
.fp-vm-card-figma {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.fp-vm-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}
.fp-vm-icon {
  font-size: 22px;
  color: #111111;
  margin-bottom: 12px;
}
.fp-vm-card-title {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
}
.fp-vm-card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 260px;
}
.fp-vm-card-img {
  width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .fp-vm-card-figma { flex-direction: column; align-items: flex-start; }
  .fp-vm-card-img { width: 100%; height: 200px; }
}

/* ================================================================
   EXACT FINDPEACE JOURNEY SECTION (Figma Screenshot)
================================================================ */
.fp-journey-section-figma {
  padding: 60px 0 0;
  background: #DAECE7;
  width: 100%;
}
.fp-journey-left-imgs {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 48px;
}
.fp-journey-img-lg {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
.fp-journey-img-sm {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}
.fp-journey-timeline-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  position: relative;
}
.fp-journey-line {
  position: absolute;
  left: 38px;
  top: 15px;
  bottom: 40px;
  width: 2px;
  background: #111111;
}
.fp-year-badge-dark {
  background: #111111;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.fp-year-badge-white {
  background: #FFFFFF;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.fp-journey-milestones-col {
  display: flex;
  flex-direction: column;
}
.fp-journey-milestone-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  min-height: 110px;
}
.fp-journey-milestone-item:last-child {
  border-bottom: none;
}
.fp-journey-milestone-text {
  font-size: 15px;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 360px;
}
.fp-journey-milestone-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .fp-journey-left-imgs { flex-direction: column; align-items: flex-start; }
  .fp-journey-img-lg, .fp-journey-img-sm { width: 100%; height: 220px; }
  .fp-journey-timeline-grid { grid-template-columns: 1fr; }
  .fp-journey-line { display: none; }
}
.fp-about-hero-section {
  padding: 40px 0 80px;
  background: #FFFFFF;
}
.fp-about-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.fp-about-title-main {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: #111111;
  letter-spacing: -0.02em;
  max-width: 480px;
  margin-bottom: 0;
}
.fp-about-subtitle-right {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  max-width: 440px;
  margin-bottom: 0;
}
.fp-about-stats-bar {
  padding-top: 48px;
  padding-bottom: 24px;
  border-top: 1px solid #F0F0F0;
}
.fp-about-stat-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-about-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #F0F0F0;
}
.fp-about-stat-num {
  font-size: 36px;
  font-weight: 400;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0;
}
.fp-about-stat-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 220px;
}

@media (max-width: 991.98px) {
  .fp-about-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fp-about-title-main { font-size: 40px; }
  .fp-about-stat-col:not(:last-child)::after { display: none; }
}

/* ================================================================
   EXACT SOCIAL MEDIA / FOLLOW US SECTION (Figma Screenshot)
================================================================ */
.fp-social-section-figma {
  padding: 100px 0;
  background: #FAFAFA;
  width: 100%;
}
.fp-social-grid-figma {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fp-social-card-mint {
  background: #DAECE7;
  border-radius: 16px;
  padding: 28px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fp-social-card-label {
  font-size: 13px;
  color: #555555;
  margin-bottom: 6px;
}
.fp-social-card-handle {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.fp-social-btn-black {
  background: #111111;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.fp-social-btn-black:hover {
  color: #FFFFFF;
  opacity: 0.9;
}
.fp-social-btn-white {
  background: #FFFFFF;
  color: #111111;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: background 0.2s ease;
}
.fp-social-btn-white:hover {
  color: #111111;
  background: #F8F9FA;
}
.fp-social-img-item {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  .fp-social-grid-figma { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fp-social-card-mint, .fp-social-img-item { height: 200px; padding: 20px; }
}

/* ================================================================
   EXACT SPECIALISTS / EXPERTS SECTION (Figma Screenshot)
================================================================ */
.fp-experts-section-figma {
  padding: 100px 0;
  background: #FAFAFA;
  width: 100%;
}
.fp-experts-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.fp-experts-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.fp-experts-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.fp-expert-card-figma {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
}
.fp-expert-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.fp-expert-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.fp-expert-name {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.3;
}
.fp-expert-role {
  font-size: 13px;
  color: #888888;
  margin-bottom: 24px;
}
.fp-expert-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.fp-expert-badge-mint {
  background: #E7F3F0;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}
.fp-expert-exp-block {
  text-align: right;
}
.fp-expert-exp-num {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
  line-height: 1.2;
}
.fp-expert-exp-label {
  font-size: 11px;
  color: #888888;
  margin-bottom: 0;
  display: block;
}

@media (max-width: 991.98px) {
  .fp-experts-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fp-expert-card-figma { min-width: 280px; flex: 0 0 280px; }
}

/* ================================================================
   EXACT SERVICES PAGE HERO SECTION (Figma Screenshot)
================================================================ */
.fp-services-hero-figma {
  background: #FFFFFF;
  padding: 64px 0 80px;
  width: 100%;
}
.fp-services-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.fp-services-hero-title {
  font-size: 52px;
  font-weight: 400;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 480px;
  letter-spacing: -0.02em;
}
.fp-services-hero-sub {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 380px;
}

.fp-services-hero-bottom-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
}
.fp-services-stat-col {
  border-right: 1px solid #F0F0F0;
  padding-right: 32px;
}
.fp-services-stat-num {
  font-size: 36px;
  font-weight: 500;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 4px;
}
.fp-services-stat-desc {
  font-size: 13px;
  color: #888888;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 180px;
}

.fp-services-cards-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.fp-services-cards-track::-webkit-scrollbar { display: none; }

.fp-services-testimonial-card {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 24px;
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fp-services-card-quote {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 24px;
}
.fp-services-card-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fp-services-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.fp-services-card-author-name {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 2px;
}
.fp-services-card-author-role {
  font-size: 12px;
  color: #888888;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .fp-services-hero-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fp-services-hero-title { font-size: 36px; }
  .fp-services-hero-bottom-row { grid-template-columns: 1fr; gap: 24px; }
  .fp-services-stat-col { border-right: none; border-bottom: 1px solid #F0F0F0; padding-right: 0; padding-bottom: 20px; }
  .fp-services-testimonial-card { min-width: 260px; flex: 0 0 260px; }
}

/* ================================================================
   EXACT ALL SERVICES GRID SECTION (Figma Screenshot)
================================================================ */
.fp-all-services-section {
  padding: 100px 0;
  background: #FAFAFA;
  width: 100%;
}
.fp-all-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.fp-services-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fp-filter-pills-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-filter-pill-btn {
  background: #F0F0F0;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fp-filter-pill-btn:hover, .fp-filter-pill-btn.active {
  background: #DAECE7;
  color: #111111;
}

.fp-search-box-pill {
  position: relative;
  min-width: 260px;
}
.fp-search-box-pill i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  font-size: 14px;
}
.fp-search-input-pill {
  width: 100%;
  background: #F0F0F0;
  border: none;
  border-radius: 24px;
  padding: 10px 16px 10px 42px;
  font-size: 14px;
  color: #111111;
  outline: none;
}
.fp-search-input-pill::placeholder {
  color: #888888;
}

.fp-service-card-figma {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-service-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.fp-service-card-body-figma {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.fp-service-title-figma {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.3;
}
.fp-service-duration-text {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
}
.fp-service-duration-text span {
  font-weight: 400;
  color: #888888;
  font-size: 13px;
}
.fp-service-footer-row-figma {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.fp-service-therapist-name {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fp-service-therapist-role {
  font-size: 12px;
  color: #888888;
  margin-bottom: 0;
}
.fp-service-tag-mint {
  background: #E7F3F0;
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .fp-all-services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fp-services-controls-bar { flex-direction: column; align-items: stretch; }
  .fp-search-box-pill { width: 100%; }
}

/* ================================================================
   EXACT CONTACT PAGE HERO SECTION (Figma Screenshot - Pixel Perfect)
================================================================ */
.fp-contact-hero-figma {
  background: #FFFFFF;
  padding: 64px 0 80px;
  width: 100%;
}
.fp-contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fp-contact-hero-title {
  font-size: 56px;
  font-weight: 400;
  color: #111111;
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 480px;
  letter-spacing: -0.02em;
}
.fp-contact-hero-sub {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 380px;
}
.fp-contact-images-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}
.fp-contact-img-small {
  width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}
.fp-contact-img-large {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .fp-contact-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-contact-hero-title { font-size: 36px; }
  .fp-contact-images-row { justify-content: flex-start; }
  .fp-contact-img-small { width: 140px; height: 160px; }
  .fp-contact-img-large { width: 220px; height: 220px; }
}

/* ================================================================
   EXACT CONTACT FORM & INFO SECTION (Figma Screenshot - Pixel Perfect)
================================================================ */
.fp-contact-main-section-figma {
  background: #FAFAFA;
  padding: 100px 0;
  width: 100%;
}
.fp-contact-main-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

/* Left Column Info Card */
.fp-contact-info-card-white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  margin-top: 48px;
}
.fp-contact-info-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 28px;
}
.fp-contact-label-sm {
  font-size: 12px;
  color: #888888;
  margin-bottom: 4px;
  display: block;
}
.fp-contact-val-md {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
}

/* Right Column Form Card */
.fp-contact-form-card-white {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 44px;
}
.fp-form-label-figma {
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 8px;
  display: block;
}
.fp-input-field-figma {
  width: 100%;
  height: 48px;
  background: #F8F9FA;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  color: #111111;
  outline: none;
  transition: background 0.2s ease;
}
.fp-input-field-figma:focus {
  background: #F0F2F5;
}
.fp-input-field-figma::placeholder {
  color: #AAAAAA;
}
.fp-select-field-figma {
  width: 100%;
  height: 48px;
  background: #F8F9FA url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%3c555555' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 18px center/12px 12px;
  border: none;
  border-radius: 10px;
  padding: 12px 36px 12px 18px;
  font-size: 14px;
  color: #555555;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.fp-textarea-field-figma {
  width: 100%;
  height: 150px;
  background: #F8F9FA;
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: #111111;
  outline: none;
  resize: vertical;
}
.fp-textarea-field-figma:focus {
  background: #F0F2F5;
}
.fp-textarea-field-figma::placeholder {
  color: #AAAAAA;
}

@media (max-width: 991.98px) {
  .fp-contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-contact-form-card-white { padding: 24px; }
}

/* ================================================================
   EXACT VISIT OUR CLINIC SECTION (Figma Screenshot)
================================================================ */
.fp-visit-section-figma {
  background: #FAFAFA;
  padding: 60px 0 100px;
  width: 100%;
}
.fp-visit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.fp-visit-title {
  font-size: 44px;
  font-weight: 400;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 480px;
  letter-spacing: -0.02em;
}
.fp-visit-sub {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 400px;
}

.fp-clinic-photo-card {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.fp-clinic-card-white {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fp-clinic-card-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fp-clinic-tag-sm {
  font-size: 13px;
  color: #888888;
  margin-bottom: 4px;
  display: block;
}
.fp-clinic-name {
  font-size: 24px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 8px;
}
.fp-clinic-address {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 220px;
}
.fp-clinic-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F0F0F0;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fp-clinic-arrow-btn.mint {
  background: #DAECE7;
}
.fp-clinic-arrow-btn:hover {
  background: #111111;
  color: #FFFFFF;
}

.fp-clinic-map-box {
  width: 100%;
  height: 240px;
  background: #E8ECEF;
  position: relative;
  overflow: hidden;
}
.fp-clinic-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .fp-visit-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fp-clinic-card-white { height: auto; min-height: 380px; }
  .fp-clinic-photo-card { height: 300px; }
}

/* ================================================================
   EXACT FAQ SECTION (Figma Screenshot)
================================================================ */
.fp-faq-section-figma {
  background: #FAFAFA;
  padding: 100px 0;
  width: 100%;
}
.fp-faq-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 32px;
}
.fp-faq-title {
  font-size: 44px;
  font-weight: 400;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 360px;
  letter-spacing: -0.02em;
}
.fp-faq-sub {
  font-size: 15px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 320px;
}
.fp-faq-support-block {
  margin-top: 64px;
}
.fp-faq-support-text {
  font-size: 13px;
  color: #888888;
  line-height: 1.4;
  margin-bottom: 4px;
}
.fp-faq-support-email {
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
}
.fp-faq-support-email:hover {
  color: #000000;
  text-decoration: underline;
}

/* Accordion Item Styling */
.fp-faq-accordion-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.fp-faq-accordion-item:last-child {
  margin-bottom: 0;
}
.fp-faq-accordion-item:hover {
  background: #F0F2F5;
}
.fp-faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.fp-faq-question-text {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 0;
  line-height: 1.4;
}
.fp-faq-toggle-icon {
  font-size: 20px;
  color: #111111;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.fp-faq-answer-body {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
  display: none;
}
.fp-faq-accordion-item.active .fp-faq-answer-body {
  display: block;
}

@media (max-width: 991.98px) {
  .fp-faq-left-col { padding-right: 0; margin-bottom: 40px; }
  .fp-faq-title { font-size: 36px; }
  .fp-faq-support-block { margin-top: 32px; }
}

/* ================================================================
   EXACT ABOUT PAGE CTA CARD & FOOTER (Figma Screenshot 50/50 Overlap)
================================================================ */
.fp-about-cta-section-wrapper {
  background: linear-gradient(to bottom, #FAFAFA 50%, #DAECE7 50%);
  padding: 80px 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
.fp-about-cta-card-white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.fp-about-cta-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}
.fp-about-footer-figma {
  background: #DAECE7;
  padding: 40px 0 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.fp-newsletter-card-white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
}
.fp-newsletter-title {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 0;
}
.fp-newsletter-sub {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0;
}
.fp-footer-nav-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 2fr 2fr;
  gap: 32px;
  align-items: start;
  padding-top: 60px;
  border-top: 1px solid rgba(17,17,17,0.08);
  margin-top: 60px;
}
.fp-footer-nav-title {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 20px;
}
.fp-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-footer-nav-list a {
  font-size: 14px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fp-footer-nav-list a:hover {
  color: #111111;
}
.fp-footer-emergency-text {
  font-size: 13px;
  color: #111111;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 360px;
}

@media (max-width: 991.98px) {
  .fp-about-cta-card-white { padding: 24px; margin-top: -160px; margin-bottom: 40px; }
  .fp-about-cta-img { height: 260px; }
  .fp-footer-nav-grid-3 { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.fp-footer-white-menu-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
}
.fp-footer-brand-title {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
}
.fp-footer-brand-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
  max-width: 320px;
}
.fp-footer-social-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555555;
}
.fp-footer-social-inline a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fp-footer-social-inline a:hover {
  color: #111111;
}
.fp-footer-col-title {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 20px;
}
.fp-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-footer-links-list a {
  font-size: 15px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fp-footer-links-list a:hover {
  color: #111111;
}
.fp-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-footer-contact-item label {
  font-size: 12px;
  color: #888888;
  display: block;
  margin-bottom: 2px;
}
.fp-footer-contact-item p {
  font-size: 14px;
  color: #111111;
  margin: 0;
  line-height: 1.4;
}
.fp-footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 60px;
}
