/* FertiLife — global theme tokens */

/* Primary Brand Color

#e05699
Secondary Color

Blush Pink

#F5D6D8
Accent Color

Warm Mauve

#8A6671
Dark Text

Deep Espresso

#3D2A33
Background

Soft Ivory

#FCF8F7
Highlight

Champagne Gold

#C8A27A */
:root {
  /* Core brand pink palette */
  --fl-primary: #e05699;
  --fl-primary-dark: #a83958;
  --fl-primary-soft: #fde8ed;
  --fl-primary-icon-bg: #fce8ee;
  --fl-primary-rgb: 200, 71, 106;

  /* Derived tints (from core palette) */
  --fl-primary-light: #e08a9f;
  --fl-primary-softer: var(--fl-primary-soft);
  --fl-primary-muted: var(--fl-primary-icon-bg);
  --fl-primary-border: var(--fl-primary-icon-bg);
  --fl-primary-highlight: var(--fl-primary-icon-bg);
  --fl-primary-glow-1: var(--fl-primary-icon-bg);
  --fl-primary-glow-2: var(--fl-primary-soft);
  --fl-primary-dot: var(--fl-primary);

  --fl-background: var(--fl-primary-soft);
  --fl-foreground: #1a0a0e;
  --fl-border: var(--fl-primary-icon-bg);
  --fl-primary-foreground: #ffffff;
  --fl-muted: var(--fl-primary-icon-bg);
  --fl-muted-foreground: #9e7a85;
  --fl-gold: #c9975a;
  --fl-surface: #ffffff;
  --fl-font-family: var(--fl-font-family);
  --fl-font-body: var(--fl-font-family);
  --fl-font-headings: var(--fl-font-family);
  --fl-page-max-width: 1340px;
  --fl-page-padding-x: 1rem;

  /* Shared section tokens */
  --fl-section-bg: var(--fl-primary-soft);
  --fl-section-band-odd: var(--fl-section-gradient);
  --fl-section-band-even: linear-gradient(180deg, #d6bbbb 0%, #ffffff 50%, #d6bbbb 100%);
  --fl-section-gradient: linear-gradient(90deg,
      var(--fl-primary-soft) 0%,
      var(--fl-primary-icon-bg) 18%,
      #ffffff 50%,
      var(--fl-primary-icon-bg) 82%,
      var(--fl-primary-soft) 100%);
  --fl-section-primary: var(--fl-primary);
  --fl-section-text: #666666;
  --fl-section-black: #000000;
  --fl-section-font: var(--fl-font-family);

  /* Type scale — Major Third (×1.25), base 15px */
  --fl-text-3xs: 0.625rem;
  /* ~9.4px — micro badges */
  --fl-text-2xs: 0.6875rem;
  /* ~10.3px — fine print */
  --fl-text-xs: 0.75rem;
  /* ~11.3px — labels, captions */
  --fl-text-sm: 0.875rem;
  /* ~13.1px — secondary body */
  --fl-text-sm-md: 0.9375rem;
  /* ~14.1px — between sm & base */
  --fl-text-base: 1rem;
  /* 15px — body default */
  --fl-text-md: 1rem;
  /* alias of base */
  --fl-text-lg: 1.125rem;
  /* ~16.9px — card titles, emphasis */
  --fl-text-xl: 1.25rem;
  /* ~18.8px — subtitles */
  --fl-text-xl-md: 1.375rem;
  /* ~20.6px */
  --fl-text-2xl: 1.5rem;
  /* ~22.5px — stats, small headings */
  --fl-text-3xl: 1.875rem;
  /* ~28.1px — mobile section titles */
  --fl-text-3xl-md: 2.125rem;
  /* ~31.9px — sidebar headings */
  --fl-text-4xl: 2.25rem;
  /* ~33.8px — section titles */
  --fl-text-5xl: 2.5rem;
  /* ~37.5px — hero secondary */
  --fl-text-6xl: 2.75rem;
  /* ~41.3px — large display */
  --fl-text-7xl: 3rem;
  /* ~45px — decorative icons */

  /* Semantic text roles (use these in components) */
  --fl-type-display: var(--fl-text-7xl);
  --fl-type-label: var(--fl-text-xs);
  --fl-type-overline: var(--fl-text-sm);
  --fl-type-caption: var(--fl-text-xs);
  --fl-type-body: var(--fl-text-base);
  --fl-type-body-sm: var(--fl-text-sm);
  --fl-type-lead: var(--fl-text-lg);
  --fl-type-subtitle: var(--fl-text-xl);
  --fl-type-card-title: var(--fl-text-lg);
  --fl-type-card-body: var(--fl-text-sm);
  --fl-type-stat-value: var(--fl-text-2xl);
  --fl-type-stat-label: var(--fl-text-xs);
  --fl-type-button: var(--fl-text-sm);
  --fl-type-nav: var(--fl-text-base);
  --fl-type-section-desc: var(--fl-text-sm);
  --fl-type-hero-body: var(--fl-text-sm);
  --fl-type-section-title: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  --fl-type-hero-title: clamp(1.875rem, 2.5vw + 1rem, 2.5rem);
  --fl-type-hero-subtitle: clamp(1.375rem, 1.5vw + 0.875rem, 1.75rem);

  --fl-line-height-tight: 1.25;
  --fl-line-height-snug: 1.35;
  --fl-line-height-body: 1.65;
  --fl-line-height-relaxed: 1.75;
}

@media (min-width: 768px) {
  :root {
    --fl-page-padding-x: 1.5rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --fl-page-padding-x: 2rem;
  }
}

/* Consistent horizontal padding for full page */
.fl-page-wrap {
  width: 100%;
  max-width: var(--fl-page-max-width);
  margin-inline: auto;
  padding-inline: var(--fl-page-padding-x);
}

body {
  font-family: var(--fl-font-family);
  /* background-color: var(--fl-primary-soft); */
  color: var(--fl-foreground);
}

button,
input,
select,
textarea,
.navbar,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  background-color: var(--fl-surface);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Top bar */
.fl-navbar-top {
  background: var(--fl-primary);
  padding: 0.45rem 0;
}

.fl-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.fl-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fl-primary-foreground);
  text-decoration: none;
  font-size: var(--fl-text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.fl-topbar-phone:hover {
  color: var(--fl-primary-foreground);
  opacity: 0.9;
}

.fl-topbar-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: var(--fl-text-xs);
  flex-shrink: 0;
}

.fl-topbar-utils {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fl-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fl-text-xs);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.fl-topbar-link i {
  font-size: var(--fl-text-sm);
  opacity: 0.9;
}

.fl-topbar-link:hover {
  color: #ffffff;
}

.fl-topbar-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fl-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--fl-primary-foreground);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fl-social-link:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--fl-primary-foreground);
  transform: translateY(-1px);
}

.fl-social-link i {
  font-size: var(--fl-text-sm);
  line-height: 1;
}

/* Main navbar */
.fl-navbar-main {
  background-color: var(--fl-surface);
  border-bottom: 1px solid var(--fl-border);
  padding: 0.75rem 0;
}

.fl-navbar-main .fl-page-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fl-navbar-main .navbar-brand {
  display: flex;
  align-items: center;
  align-self: center;
  line-height: 1;
  margin-right: 1.5rem;
}

.fl-navbar-main .navbar-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.fl-navbar-main .navbar-collapse {
  align-items: center;
}

@media (min-width: 992px) {
  .fl-navbar-main .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
  }

  .fl-navbar-main .navbar-nav {
    align-items: center;
  }

  .fl-navbar-main .navbar-nav .nav-link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.fl-nav-link {
  color: #a93959 !important;
  font-size: var(--fl-text-lg);
  font-weight: 500;
  padding: 0.25rem 0 !important;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.fl-nav-link.active,
.fl-nav-link:hover {
  color: var(--fl-foreground) !important;
}

/* Rating badge */
.fl-rating-badge {
  background-color: var(--fl-surface);
  border: 1px solid var(--fl-primary-border);
  border-radius: 15px;
  padding: 0.45rem 0.75rem;
  gap: 0.625rem;
  flex-shrink: 0;
  align-self: center;
}

.fl-google-logo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.fl-google-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fl-rating-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.fl-rating-top {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.fl-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.fl-stars i {
  color: var(--fl-foreground);
  font-size: var(--fl-text-xs);
  line-height: 1;
}

.fl-rating-score {
  font-size: var(--fl-text-xs);
  font-weight: 400;
  color: var(--fl-foreground);
  line-height: 1.2;
  white-space: nowrap;
}

.fl-rating-sub {
  font-size: var(--fl-text-xs);
  font-weight: 700;
  color: var(--fl-foreground);
  margin: 0;
  line-height: 1.2;
}

/* Custom hamburger (mobile) */
.fl-navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin-left: auto;
  border: none;
  border-radius: 12px;
  background: var(--fl-primary-soft);
  box-shadow: inset 0 0 0 1px var(--fl-primary-border);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fl-navbar-toggler:focus {
  outline: none;
  box-shadow:
    inset 0 0 0 1px var(--fl-primary-border),
    0 0 0 3px rgba(var(--fl-primary-rgb), 0.2);
}

.fl-toggler-bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  border-radius: 2px;
  background-color: var(--fl-primary);
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}

.fl-navbar-toggler[aria-expanded="true"] {
  background: var(--fl-primary);
  box-shadow: none;
}

.fl-navbar-toggler[aria-expanded="true"] .fl-toggler-bar {
  background-color: #ffffff;
}

.fl-navbar-toggler[aria-expanded="true"] .fl-toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fl-navbar-toggler[aria-expanded="true"] .fl-toggler-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.fl-navbar-toggler[aria-expanded="true"] .fl-toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fl-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1025;
  background: rgba(26, 10, 14, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fl-nav-backdrop.is-visible {
  top: var(--fl-header-h, 5.75rem);
  opacity: 1;
  pointer-events: auto;
}

.fl-nav-chevron {
  display: none;
}

@media (max-width: 991.98px) {
  .fl-navbar-toggler {
    display: inline-flex;
  }

  .fl-navbar-main {
    padding: 0.5rem 0;
  }

  .fl-navbar-main .fl-page-wrap {
    position: relative;
  }

  .fl-navbar-main .navbar-collapse.collapse:not(.show):not(.collapsing) {
    display: none !important;
    height: 0 !important;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .fl-navbar-main .navbar-collapse.show,
  .fl-navbar-main .navbar-collapse.collapsing {
    position: fixed;
    top: var(--fl-header-h, 5.75rem);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1036;
    width: 100%;
    margin: 0;
    padding: 0.75rem var(--fl-page-padding-x) 1.25rem;
    background: #ffffff;
    border: none;
    border-top: 1px solid var(--fl-primary-border);
    border-radius: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    max-height: none;
    height: auto !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease;
  }

  .fl-navbar-main .navbar-collapse.collapsing {
    transition: opacity 0.2s ease;
  }

  .fl-nav-mobile-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
  }

  .fl-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--fl-primary);
    color: #ffffff;
    font-size: var(--fl-text-xl);
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(var(--fl-primary-rgb), 0.35);
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .fl-nav-close:hover {
    background: var(--fl-primary-dark);
    transform: scale(1.05);
  }

  .fl-nav-close:focus-visible {
    outline: 2px solid var(--fl-primary);
    outline-offset: 2px;
  }

  .fl-navbar-main .fl-nav-list {
    padding: 0;
    gap: 0.35rem;
    width: 100%;
  }

  .fl-navbar-main .fl-nav-list .nav-item {
    width: 100%;
  }

  .fl-nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1rem !important;
    font-size: var(--fl-text-lg) !important;
    font-weight: 600;
    color: var(--fl-foreground) !important;
    background: var(--fl-surface);
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      transform 0.15s ease;
  }

  .fl-nav-link .fl-nav-chevron {
    display: inline-flex;
    font-size: var(--fl-text-xs);
    color: var(--fl-primary-dark);
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .fl-nav-link:hover,
  .fl-nav-link:focus {
    background: var(--fl-primary-soft);
    border-color: var(--fl-primary-border);
    transform: translateX(2px);
  }

  .fl-nav-link:hover .fl-nav-chevron,
  .fl-nav-link.active .fl-nav-chevron {
    opacity: 1;
    transform: translateX(2px);
  }

  .fl-nav-link.active {
    color: var(--fl-primary) !important;
    background: var(--fl-primary-soft);
    border-color: rgba(var(--fl-primary-rgb), 0.25);
    box-shadow: 0 4px 14px rgba(var(--fl-primary-rgb), 0.1);
  }

  .fl-nav-mobile-utils {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fl-primary-border);
  }

  .fl-nav-util-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.35rem;
    font-size: var(--fl-text-2xs);
    font-weight: 600;
    color: var(--fl-foreground);
    text-decoration: none;
    text-align: center;
    background: var(--fl-surface);
    border-radius: 12px;
    border: 1px solid var(--fl-primary-border);
    line-height: 1.25;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .fl-nav-util-link i {
    font-size: var(--fl-text-lg);
    color: var(--fl-primary-dark);
  }

  .fl-nav-util-link:hover {
    background: var(--fl-primary-soft);
    color: var(--fl-primary-dark);
  }

  .fl-nav-cta {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: var(--fl-text-md);
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(var(--fl-primary-rgb), 0.28);
  }

  .fl-rating-badge {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--fl-surface);
    box-shadow: 0 2px 12px rgba(var(--fl-primary-rgb), 0.08);
  }

  body.fl-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .fl-topbar-utils {
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .fl-topbar-utils {
    display: none;
  }

  .fl-topbar-inner {
    gap: 0.5rem;
  }

  .fl-topbar-phone-text {
    font-size: var(--fl-text-xs);
  }

  .fl-topbar-social {
    gap: 0.35rem;
  }

  .fl-social-link {
    width: 1.625rem;
    height: 1.625rem;
  }
}

@media (max-width: 575.98px) {
  .fl-navbar-top {
    padding: 0.4rem 0;
  }

  .fl-topbar-phone-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .fl-navbar-main .navbar-brand img {
    height: 48px;
  }
}

/* Bootstrap + shared pink hover states */
:root {
  --bs-primary: var(--fl-primary);
  --bs-primary-rgb: var(--fl-primary-rgb);
}

.btn-primary {
  --bs-btn-bg: var(--fl-primary);
  --bs-btn-border-color: var(--fl-primary);
  --bs-btn-hover-bg: var(--fl-primary-dark);
  --bs-btn-hover-border-color: var(--fl-primary-dark);
  --bs-btn-active-bg: var(--fl-primary-dark);
  --bs-btn-active-border-color: var(--fl-primary-dark);
  --bs-btn-focus-shadow-rgb: var(--fl-primary-rgb);
}

/* Custom dropdown styles */
.fl-navbar-main .dropdown-menu {
  border: 1px solid var(--fl-primary-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.fl-navbar-main .dropdown-item {
  color: var(--fl-foreground);
  font-size: var(--fl-text-sm-md);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.fl-navbar-main .dropdown-item:hover,
.fl-navbar-main .dropdown-item:focus {
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
}

.fl-navbar-main .dropdown-item.active,
.fl-navbar-main .dropdown-item:active {
  background-color: #e05699 !important;
  color: #ffffff !important;
}/* Section styles — uses global theme from header.css */

/* Global page background — #f9f9f9 on all pages except homepage */
body {
  background-color: #f9f9f9 !important;
}

/* Hero section */
.fl-hero-section {
  background: var(--fl-section-gradient);
  padding: 3.5rem 0 4rem;
  font-family: var(--fl-section-font);
}

.fl-hero-title {
  font-family: var(--fl-section-font);
  font-size: var(--fl-type-hero-title);
  font-weight: 700;
  color: var(--fl-primary-dark);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.fl-hero-subtitle {
  font-family: var(--fl-section-font);
  font-size: var(--fl-type-hero-subtitle);
  font-weight: 700;
  color: var(--fl-section-black);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.fl-hero-text {
  font-family: var(--fl-section-font);
  font-size: var(--fl-type-hero-body);
  font-weight: 400;
  color: var(--fl-section-text);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.fl-btn-primary {
  background-color: var(--fl-section-primary);
  color: #ffffff;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 500;
  padding: 0.625rem 1.75rem;
  border: none;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.fl-btn-primary:hover,
.fl-btn-primary:focus {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
  opacity: 1;
}

.fl-hero-image-wrap {
  display: flex;
  justify-content: center;
}

.fl-hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* Full-width hero banner */
.fl-hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 2;
  min-height: clamp(18rem, 40vw, 48rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--fl-section-font);
}

/* Wave divider between hero and welcome — full width, no gaps */
.fl-hero-wave-divider {
  display: block;
  width: 100%;
  height: 100px;
  max-height: 100px;
  object-fit: fill;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

.fl-hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fl-hero-banner-media img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
  display: block;
}

.fl-hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(26, 10, 18, 0.82) 0%,
      rgba(40, 18, 30, 0.62) 38%,
      rgba(var(--fl-primary-rgb), 0.18) 58%,
      rgba(18, 12, 16, 0.12) 100%);
}

.fl-hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(6.5rem, 10vw, 8.5rem);
}

.fl-hero-banner-inner {
  max-width: 36rem;
}

.fl-hero-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: var(--fl-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.fl-hero-banner-title {
  font-size: clamp(1.75rem, 2.8vw + 0.75rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.35rem;
}

.fl-hero-banner-subtitle {
  font-size: clamp(1.125rem, 1.4vw + 0.65rem, 1.625rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.fl-hero-banner-text {
  font-size: var(--fl-text-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.fl-hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.fl-hero-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-size: var(--fl-text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.fl-hero-banner-btn--primary {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
  border: none;
}

.fl-hero-banner-btn--primary:hover,
.fl-hero-banner-btn--primary:focus {
  background-color: var(--fl-primary);
  color: #ffffff;
  opacity: 1;
}

.fl-hero-banner-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.fl-hero-banner-btn--ghost:hover,
.fl-hero-banner-btn--ghost:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  opacity: 1;
}

.fl-hero-banner-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fl-hero-banner-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.fl-hero-banner-trust-item strong {
  font-size: var(--fl-text-lg);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.fl-hero-banner-trust-item span {
  font-size: var(--fl-text-xs);
  color: rgba(255, 255, 255, 0.72);
}

/* --- Hero Banner Override (Standard inner-page hero) --- */
.wfl-hero-override {
  min-height: 450px !important;
  height: auto !important;
  aspect-ratio: unset !important;
}
.wfl-hero-override .fl-hero-banner-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
  min-height: 450px;
}
.wfl-hero-override .fl-hero-banner-inner {
  padding-top: 80px !important;
  padding-bottom: 40px !important;
}
.wfl-hero-override .fl-hero-banner-media img {
  object-position: 80% center !important;
  height: 100% !important;
}
.wfl-hero-override .fl-hero-banner-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 100%) !important;
}
.wfl-hero-override .fl-hero-banner-label,
.wfl-hero-override .fl-hero-banner-label i {
  color: #e05699 !important;
  font-weight: 600;
}
.wfl-hero-override .fl-hero-banner-title {
  color: #1b1b36 !important;
}
.wfl-hero-override .fl-hero-banner-subtitle {
  color: #e05699 !important;
}
.wfl-hero-override .fl-hero-banner-text {
  color: #444 !important;
}
.wfl-hero-override .fl-hero-banner-btn--ghost {
  border-color: #e05699 !important;
  color: #e05699 !important;
}
.wfl-hero-override .fl-hero-banner-btn--ghost:hover {
  background: #e05699 !important;
  color: #fff !important;
}

/* Stats Bar Section */
.fl-stats-bar-section {
  position: relative;
  z-index: 20;
  height: 0;
}

.fl-stats-bar {
  transform: translateY(-30%);
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(var(--fl-primary-rgb), 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  overflow-x: auto;
  gap: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fl-stats-bar::-webkit-scrollbar {
  display: none;
}

.fl-stats-item {
    flex: 1 1 0;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 2px solid #b14d6a;
    padding: 0 0.5rem;
}

.fl-stats-item:last-child {
  border-right: none;
}

.fl-stats-icon {
  font-size: 2.25rem;
  color: var(--fl-primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  opacity: 0.9;
}

.fl-stats-number {
  font-family: var(--fl-font-headings, var(--fl-section-font));
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fl-primary);
  margin-bottom: 0.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fl-stats-text {
  font-family: var(--fl-section-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .fl-stats-bar {
    justify-content: flex-start;
    padding: 1.25rem 1rem;
  }

  .fl-stats-item {
    min-width: 140px;
  }
}

@media (max-width: 767.98px) {
  .fl-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0;
    overflow: hidden;
    padding: 1.5rem 0.5rem;
  }

  .fl-stats-item {
    min-width: 0;
    border-right: 2px solid #b14d6a;
  }

  .fl-stats-item:nth-child(even) {
    border-right: none;
  }

  .fl-stats-item:nth-child(1),
  .fl-stats-item:nth-child(2) {
    padding-bottom: 1.25rem;
  }

  .fl-stats-item:nth-child(n+5) {
    display: none;
  }
}

/* Welcome section */
.fl-welcome-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7rem) 0;
  font-family: var(--fl-section-font);
  z-index: 1;
}

.fl-welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../anotherchild.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.fl-welcome-wave {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 280px;
  opacity: 0.4;
  pointer-events: none;
  background: radial-gradient(ellipse 100px 70px at 40% 45%,
      var(--fl-primary-glow-1) 0%,
      transparent 70%),
    radial-gradient(ellipse 90px 55px at 65% 55%,
      var(--fl-primary-glow-2) 0%,
      transparent 70%);
  border-radius: 50%;
}

.fl-welcome-dots {
  position: absolute;
  left: 1.5rem;
  bottom: 2rem;
  width: 36px;
  height: 48px;
  opacity: 0.3;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--fl-primary-dot) 2px, transparent 2px);
  background-size: 12px 12px;
}

.fl-welcome-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.fl-welcome-label {
  font-size: var(--fl-text-md);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.fl-welcome-label::before,
.fl-welcome-label::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--fl-section-primary);
  opacity: 0.5;
}

.fl-welcome-heart {
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-lg);
  margin-bottom: 0.875rem;
  line-height: 1;
}

.fl-welcome-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.fl-welcome-title-accent {
  color: var(--fl-primary-dark);
  display: block;
  margin-top: 0.15rem;
}

.fl-welcome-subtitle {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-xl);
  font-weight: 600;
  color: #444444;
  line-height: 1.4;
  margin-bottom: 1.125rem;
}

.fl-welcome-subtitle span {
  color: var(--fl-primary-dark);
}

.fl-welcome-text {
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: var(--fl-section-text);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 1.75rem;
}

.fl-welcome-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.fl-welcome-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--fl-primary-border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: var(--fl-text-base);
  font-weight: 600;
  color: var(--fl-primary-dark);
  box-shadow: 0 2px 10px rgba(var(--fl-primary-rgb), 0.06);
}

.fl-welcome-pill i {
  font-size: var(--fl-text-base);
}

@media (min-width: 768px) {
  .fl-welcome-title-accent {
    display: inline;
    margin-top: 0;
  }

  .fl-welcome-title {
    font-size: var(--fl-text-7xl);
  }

  .fl-welcome-subtitle {
    font-size: var(--fl-text-xl-md);
  }
}

/* Why Choose Us section */
.fl-why-section {
  position: relative;
  /* padding: clamp(5rem, 8vw, 7rem) 0; */
  font-family: var(--fl-section-font);
}

.fl-why-blob-top,
.fl-why-blob-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(3rem, 6vw, 6rem);
  object-fit: fill;
  z-index: 10;
  pointer-events: none;
}

.fl-why-blob-top {
  top: 0;
  transform: translateY(-99%);
}

.fl-why-blob-bottom {
  bottom: 0;
  transform: translateY(99%) rotate(180deg);
}

.fl-why-header {
  margin-bottom: 2.75rem;
  text-align: center;
}

.fl-why-label {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.fl-why-label::before,
.fl-why-label::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--fl-primary);
  opacity: 0.5;
}

.fl-why-heart {
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-lg);
  margin-bottom: 0.875rem;
  line-height: 1;
}

.fl-why-title {
  font-family: var(--fl-font-headings);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

.fl-why-title-accent {
  color: var(--fl-primary-dark);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.fl-why-desc {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: #4a5568;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.fl-why-row {
  align-items: stretch;
}

.fl-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  height: 100%;
}

@media (min-width: 992px) {
  .fl-why-row>.col-lg-6 {
    display: flex;
    flex-direction: column;
  }

  .fl-why-left,
  .fl-why-right {
    min-height: 100%;
  }

  .fl-why-cards {
    flex: 1 1 auto;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .fl-why-right {
    display: flex;
    align-items: flex-start;
  }

  .fl-clinic-image-wrap {
    width: 100%;
    flex: 0 0 auto;
  }

  /* Match image height to 3 card rows on the left */
  .fl-clinic-image-box {
    flex: 0 0 auto;
    height: calc(3 * 12.5rem + 2 * 1rem + 1rem);
  }
}

.fl-why-card {
  background-color: #ffffff;
  border: 1px solid rgba(var(--fl-primary-rgb), 0.1);
  border-radius: 20px;
  padding: 1.375rem 1.125rem 1.25rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 24px 40px rgb(255 255 255 / 23%), 0 32px 60px rgb(255 255 255 / 16%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.fl-why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--fl-primary-rgb), 0.22);
  box-shadow: 0 28px 48px rgb(255 255 255 / 44%), 0 40px 72px rgb(255 255 255 / 43%);
}

.fl-why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: var(--fl-primary-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-why-card-icon i {
  font-size: var(--fl-text-2xl);
  color: var(--fl-primary-dark);
}

.fl-why-card-title {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-lg);
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.fl-why-card-divider {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--fl-primary);
  margin: 0 auto 0.875rem;
  border-radius: 1px;
  opacity: 0.85;
}

.fl-why-card-text {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* Clinic image (right column in Why Choose row) */
.fl-clinic-image-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fl-clinic-image-box {
  flex: 0 0 auto;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 12px 36px rgba(var(--fl-primary-rgb), 0.1);
}

.fl-clinic-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.fl-clinic-float-card {
  position: relative;
  flex-shrink: 0;
  margin: -2.75rem auto 0;
  z-index: 2;
  width: min(100%, 34rem);
  background-color: #ffffff;
  border: 1px solid rgba(var(--fl-primary-rgb), 0.12);
  border-radius: 20px;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(var(--fl-primary-rgb), 0.08);
}

.fl-clinic-float-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--fl-primary-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-clinic-float-icon i {
  font-size: var(--fl-text-2xl);
  color: var(--fl-primary-dark);
}

.fl-clinic-float-title {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-lg);
  font-weight: 600;
  color: var(--fl-primary-dark);
  line-height: 1.35;
  margin: 0 0 0.35rem;
}

.fl-clinic-float-text {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: #1a202c;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .fl-hero-section {
    padding: 2.5rem 0 2rem;
  }

  .fl-hero-title {
    font-size: var(--fl-type-section-title);
  }

  .fl-hero-subtitle {
    font-size: var(--fl-text-2xl);
  }

  .fl-welcome-title {
    font-size: var(--fl-type-section-title);
  }

  .fl-hero-image-wrap {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .fl-hero-text {
    max-width: 100%;
  }

  .fl-why-section {
    padding: 3rem 0 4rem;
  }

  .fl-why-header {
    margin-bottom: 2rem;
  }

  .fl-why-title {
    font-size: var(--fl-text-4xl);
  }

  .fl-clinic-image-wrap {
    margin-top: 0.5rem;
  }

  .fl-clinic-float-card {
    margin-top: -2rem;
    width: 100%;
    padding: 1rem 1.125rem;
  }
}

@media (max-width: 575.98px) {
  .fl-hero-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-hero-subtitle {
    font-size: var(--fl-text-xl);
  }

  .fl-clinic-float-card {
    margin-top: -2rem;
  }
}/* Featured In section */
.fl-featured-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7rem) 0;
  font-family: var(--fl-section-font);
  z-index: 1;
}

.fl-featured-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../babywalcome.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.fl-featured-wave {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 320px;
  opacity: 0.45;
  pointer-events: none;
  background: radial-gradient(ellipse 120px 80px at 30% 40%,
      var(--fl-primary-glow-1) 0%,
      transparent 70%),
    radial-gradient(ellipse 100px 60px at 60% 60%,
      var(--fl-primary-glow-2) 0%,
      transparent 70%);
  border-radius: 50%;
}

.fl-featured-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 72px;
  opacity: 0.35;
  pointer-events: none;
  background-image: radial-gradient(circle, #c4c4c4 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

.fl-featured-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.fl-featured-label {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.fl-featured-label::before,
.fl-featured-label::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--fl-primary);
  opacity: 0.55;
}

.fl-featured-label span::before,
.fl-featured-label span::after {
  content: none;
}

.fl-featured-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

.fl-featured-title-accent {
  color: var(--fl-primary-dark);
}

.fl-featured-desc {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 400;
  color: #4a5568;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* Slider */
.fl-featured-slider-wrap {
  position: relative;
  z-index: 1;
}

.fl-featured-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fl-slider-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--fl-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
  transition: background-color 0.2s ease;
  padding: 0;
}

.fl-slider-btn:hover {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
}

.fl-featured-carousel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.fl-logo-track {
  display: flex;
  gap: 0.75rem;
  will-change: transform;
}

.fl-logo-card {
  flex: 0 0 var(--fl-logo-card-width, 280px);
  width: var(--fl-logo-card-width, 280px);
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 1.25rem 0.75rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.fl-logo-card img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Text-based logo styles */
.fl-logo-toi {
  text-align: center;
  font-family: var(--fl-font-family);
  line-height: 1.1;
}

.fl-logo-toi small {
  display: block;
  font-size: var(--fl-text-3xs);
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 2px;
}

.fl-logo-toi strong {
  display: block;
  font-size: var(--fl-text-xs);
  font-weight: 700;
  color: #111;
}

.fl-logo-ht {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-logo-ht-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #008080;
  color: #fff;
  font-size: var(--fl-text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fl-font-family);
  flex-shrink: 0;
}

.fl-logo-ht-text {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}

.fl-logo-indiatoday {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-lg);
  font-weight: 800;
  color: #c41e3a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.fl-logo-et {
  text-align: left;
}

.fl-logo-et-top {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fl-logo-et-icon {
  background: #c41e3a;
  color: #fff;
  font-size: var(--fl-text-xs);
  font-weight: 800;
  padding: 2px 4px;
  line-height: 1;
}

.fl-logo-et-name {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: #111;
}

.fl-logo-et-sub {
  font-size: var(--fl-text-3xs);
  color: #666;
  margin-top: 2px;
}

.fl-logo-femina {
  text-align: center;
}

.fl-logo-femina strong {
  display: block;
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-2xl);
  font-weight: 700;
  color: var(--fl-primary-dark);
  letter-spacing: 0.08em;
  line-height: 1;
}

.fl-logo-femina em {
  display: block;
  font-size: var(--fl-text-2xs);
  font-style: italic;
  color: #333;
  margin-top: 4px;
}

/* Carousel indicators — pill style */
.fl-featured-indicators {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.fl-featured-indicators button {
  flex-shrink: 0;
  width: 2rem;
  height: 4px;
  border: none;
  border-radius: 4px;
  background-color: #e0e0e0;
  padding: 0;
  margin: 0;
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  transition: background-color 0.2s ease, width 0.2s ease;
  cursor: pointer;
}

.fl-featured-indicators button.active {
  background-color: var(--fl-primary);
  width: 2.25rem;
}

@media (max-width: 991.98px) {
  .fl-featured-section {
    padding: 3rem 0 2.5rem;
  }

  .fl-logo-card {
    min-height: 88px;
  }

  .fl-slider-btn {
    width: 34px;
    height: 34px;
    font-size: var(--fl-text-sm);
  }

  .fl-featured-wave,
  .fl-featured-dots {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .fl-logo-card {
    min-height: 80px;
    padding: 1rem 0.75rem;
  }

  .fl-featured-indicators button {
    width: 1.5rem;
  }

  .fl-featured-indicators button.active {
    width: 1.75rem;
  }
}/* Meet Your Fertility Specialist — pixel-match to mockup */
.fl-doctor-section {
  --fl-doc-primary: var(--fl-primary);
  --fl-doc-navy: #1e2a3b;
  --fl-doc-trust-icon: #b8946a;
  --fl-doc-blush: var(--fl-primary-softer);
  --fl-doc-tag-bg: var(--fl-primary-icon-bg);
  --fl-doc-border: var(--fl-primary-border);
  --fl-doc-text: #555555;
  --fl-doc-heading: #2d2d2d;

  position: relative;
  z-index: 2;
  padding: clamp(1rem, 8vw, 0.5rem) 0;
  font-family: var(--fl-section-font);
  background-color: #f9dceb;
}

/* ── Top row ── */
.fl-doctor-top {
  margin-bottom: 0;
  row-gap: 1.25rem;
}

/* Photo card — exact mockup match */
.fl-doctor-photo-wrap {
  position: relative;
  max-width: 100%;
}

.fl-doctor-photo-inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-color: #ececec;
  line-height: 0;
}

.fl-doctor-photo {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: center top;
}

/* Floating stat cards — overlay left side of photo */
.fl-doctor-stat {
  position: absolute;
  left: 14px;
  z-index: 3;
  width: 82px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.625rem 0.625rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.11);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fl-doctor-stat-1 {
  top: 20%;
}

.fl-doctor-stat-2 {
  top: 48%;
}

.fl-doctor-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--fl-doc-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.fl-doctor-stat-num {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-2xl);
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fl-doctor-stat-label {
  display: block;
  font-size: var(--fl-text-xs);
  font-weight: 500;
  color: #666666;
  line-height: 1.35;
}

/* Centered verification pill at bottom */
.fl-doctor-verified {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--fl-doc-primary);
  color: #ffffff;
  padding: 0.55rem 0.875rem 0.55rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(166, 104, 120, 0.38);
}

.fl-doctor-verified-shield {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fl-doctor-verified-shield>.fa-shield {
  font-size: var(--fl-text-lg);
  color: #ffffff;
}

.fl-doctor-shield-star {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-size: var(--fl-text-3xs);
  color: #ffffff;
}

.fl-doctor-verified-text {
  font-size: var(--fl-text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.fl-doctor-verified-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--fl-doc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-2xs);
  flex-shrink: 0;
}

/* Info column */
.fl-doctor-label {
  font-size: var(--fl-text-base);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-doc-primary);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fl-doctor-label-line {
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--fl-doc-primary);
  opacity: 0.45;
  flex-shrink: 0;
}

.fl-doctor-label-icon {
  font-size: var(--fl-text-md);
  color: var(--fl-doc-primary);
  opacity: 0.75;
}

.fl-doctor-name {
  font-family: var(--fl-font-family);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: var(--fl-doc-navy);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.fl-doctor-role {
  font-size: var(--fl-text-md);
  font-weight: 600;
  color: var(--fl-doc-primary);
  margin-bottom: 0.875rem;
}

.fl-doctor-intro {
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.75;
  margin-bottom: 1.125rem;
  max-width: 520px;
}

.fl-doctor-intro-divider {
  border: 0;
  height: 1px;
  background-color: #ececec;
  margin: 0 0 1.125rem;
  opacity: 1;
}

.fl-doctor-expertise-title {
  font-size: var(--fl-text-base);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-doc-navy);
  margin-bottom: 0.75rem;
}

.fl-doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fl-doctor-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--fl-doc-tag-bg);
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: var(--fl-text-base);
  font-weight: 500;
  color: #444444;
}

.fl-doctor-tag i {
  font-size: var(--fl-text-base);
  color: var(--fl-doc-primary);
}

/* Quote card */
.fl-doctor-quote-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem 1.375rem;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.fl-doctor-quote-icon {
  font-size: var(--fl-text-4xl);
  color: var(--fl-doc-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.fl-doctor-quote-text {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-style: normal;
  font-weight: 400;
  color: #555555;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1rem;
}

.fl-doctor-quote-sign {
  font-size: var(--fl-text-base);
  font-weight: 600;
  color: var(--fl-doc-primary);
  text-align: right;
}

/* ── Trust feature bar ── */
.fl-doctor-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* border-top: 1px solid #e05699; */
  margin: 1rem 0 2rem;
}

.fl-doctor-trust-bar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .725rem;
  border-right: 1px solid #e05699;
}

.fl-doctor-trust-bar-item:first-child {
  padding-left: 0;
}

.fl-doctor-trust-bar-item:last-child {
  border-right: none;
  padding-right: 0;
}

.fl-doctor-trust-bar-item>i {
  font-size: var(--fl-text-2xl);
  color: #e05699;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}

.fl-doctor-trust-bar-item strong {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-doc-navy);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.fl-doctor-trust-bar-item span {
  display: block;
  font-size: var(--fl-text-base);
  color: #000000;
  line-height: 1.45;
}

/* ── Bottom 4-column panel ── */
.fl-doctor-bottom-panel {
  background-color: #ffffff;
  border: 1px solid #ece8ea;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
  /* margin: 1.75rem 0 2.5rem; */
  overflow: hidden;
}

.fl-doctor-bottom-panel>.row {
  padding: 1.625rem 0 1.375rem;
}

.fl-doctor-bottom-col {
  padding: 0 1.5rem;
  border-right: 1px solid #e8e8e8;
  min-height: 100%;
}

.fl-doctor-bottom-col:last-child {
  border-right: none;
}

.fl-doctor-cta-col {
  padding: 0 1rem 0 0.75rem;
  align-self: flex-start;
}

.fl-doctor-block-title {
  font-size: var(--fl-text-base);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-doc-primary);
  margin-bottom: 1rem;
}

/* Education with watermark */
.fl-doctor-edu-col {
  position: relative;
  overflow: hidden;
}

.fl-doctor-edu-col::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 80px;
  height: 80px;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cpath d='M58 62c-14-2-24-10-28-22M22 58c8-18 22-28 40-30M40 20v-8M34 14h12' stroke='%23a35a6d' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M48 38c-6 4-10 10-12 18-8-2-14-8-16-16 10-2 18-8 22-16 4 6 4 12 6 14z' stroke='%23a35a6d' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.fl-doctor-edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.fl-doctor-edu-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background-color: var(--fl-primary-border);
}

.fl-doctor-edu-list li {
  position: relative;
  padding-left: 1.375rem;
  margin-bottom: 0.875rem;
  font-size: var(--fl-text-base);
  color: #555555;
  line-height: 1.55;
}

.fl-doctor-edu-list li:last-child {
  margin-bottom: 0;
}

.fl-doctor-edu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--fl-doc-primary);
  border: none;
  box-sizing: border-box;
}

.fl-doctor-exp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fl-doctor-exp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--fl-text-base);
  color: #555555;
  line-height: 1.55;
}

.fl-doctor-exp-list li:last-child {
  margin-bottom: 0;
}

.fl-doctor-exp-list li i {
  color: var(--fl-doc-primary);
  font-size: var(--fl-text-base);
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Patient Trust column */
.fl-doctor-trust-col {
  text-align: center;
}

.fl-doctor-trust-col .fl-doctor-block-title {
  text-align: left;
}

.fl-doctor-trust-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 1.125rem 1rem 1rem;
  margin-top: 0.25rem;
}

.fl-doctor-trust-pct-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.fl-doctor-trust-pct-row>.fa-star {
  font-size: var(--fl-text-base);
  color: var(--fl-doc-primary);
}

.fl-doctor-trust-pct {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-5xl);
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1;
}

.fl-doctor-trust-label {
  font-size: var(--fl-text-base);
  font-weight: 500;
  color: var(--fl-doc-primary);
  margin-bottom: 0.45rem;
}

.fl-doctor-stars {
  color: #f0b429;
  font-size: var(--fl-text-base);
  letter-spacing: 3px;
  margin-bottom: 0.35rem;
}

.fl-doctor-trust-sub {
  font-size: var(--fl-text-sm);
  color: #b0b0b0;
}

/* CTA column */
.fl-doctor-cta-box {
  background-color: var(--fl-doc-primary);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  color: #ffffff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fl-doctor-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--fl-doc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-lg);
  margin-bottom: 0.875rem;
}

.fl-doctor-cta-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-xl);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.fl-doctor-cta-text {
  font-size: var(--fl-text-base);
  line-height: 1.65;
  margin-bottom: 1.125rem;
  opacity: 0.95;
}

.fl-doctor-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  font-size: var(--fl-text-2xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  border: none;
  transition: opacity 0.2s ease;
}

.fl-doctor-cta-btn-primary {
  background-color: #ffffff;
  color: var(--fl-doc-primary);
  margin-bottom: 0.5rem;
}

.fl-doctor-cta-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.fl-doctor-cta-btn-outline i {
  font-size: var(--fl-text-base);
}

.fl-doctor-cta-btn-primary:hover {
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
  opacity: 1;
}

.fl-doctor-cta-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

/* Footer bar — attached inside panel */
.fl-doctor-bottom-panel .fl-doctor-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: #ffffff;
  border-top: 1px solid #ececec;
  padding: 1.25rem 0;
  margin: 0;
}

.fl-doctor-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.375rem;
  border-right: 1px solid #e5dede;
}

.fl-doctor-feature:last-child {
  border-right: none;
}

.fl-doctor-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-doc-primary);
  font-size: var(--fl-text-xl);
}

.fl-doctor-feature-text strong {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.fl-doctor-feature-text span {
  display: block;
  font-size: var(--fl-text-base);
  color: #888888;
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .fl-doctor-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-doctor-trust-bar-item:nth-child(2) {
    border-right: none;
  }

  .fl-doctor-trust-bar-item:nth-child(1),
  .fl-doctor-trust-bar-item:nth-child(2) {
    border-bottom: 1px solid #e8e8e8;
  }
}

@media (max-width: 991.98px) {
  .fl-doctor-stat {
    left: 10px;
    width: 74px;
    padding: 0.625rem 0.5rem 0.5rem;
  }

  .fl-doctor-stat-num {
    font-size: var(--fl-text-xl);
  }

  .fl-doctor-verified {
    bottom: 20px;
    padding: 0.5rem 0.75rem 0.5rem 0.625rem;
  }

  .fl-doctor-verified-text {
    font-size: var(--fl-text-base);
  }

  .fl-doctor-bottom-panel .fl-doctor-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-doctor-feature:nth-child(2) {
    border-right: none;
  }

  .fl-doctor-feature:nth-child(1),
  .fl-doctor-feature:nth-child(2) {
    border-bottom: 1px solid #e5dede;
  }

  .fl-doctor-bottom-col {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 1rem 1.25rem;
  }

  .fl-doctor-bottom-col:last-child {
    border-bottom: none;
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .fl-doctor-section {
    padding-top: 2.5rem;
  }

  .fl-doctor-photo-inner {
    border-radius: 22px;
  }

  .fl-doctor-stat {
    left: 8px;
    width: 68px;
  }

  .fl-doctor-stat-icon {
    width: 30px;
    height: 30px;
    font-size: var(--fl-text-sm);
  }

  .fl-doctor-trust-bar {
    grid-template-columns: 1fr;
  }

  .fl-doctor-trust-bar-item {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding-left: 0;
    padding-right: 0;
  }

  .fl-doctor-trust-bar-item:last-child {
    border-bottom: none;
  }

  .fl-doctor-bottom-panel .fl-doctor-features {
    grid-template-columns: 1fr;
  }

  .fl-doctor-feature {
    border-right: none;
    border-bottom: 1px solid #e5dede;
    padding: 0.75rem 1.25rem;
  }

  .fl-doctor-feature:last-child {
    border-bottom: none;
  }
}

/* Custom gutter overrides to reduce vertical spacing gap */
@media (min-width: 1200px) {

  .g-xl-5,
  .gy-xl-5 {
    /* --bs-gutter-y: 3rem; */
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
}

.g-4,
.gy-4 {
  /* --bs-gutter-y: 1.5rem; */
}/* Our Services section */
.fl-services-section {
  --fl-svc-primary: var(--fl-primary);
  --fl-svc-text: #6b7280;
  --fl-svc-heading: #1a2b4b;
  --fl-svc-accent-pink: #e8537a;
  --fl-svc-accent-purple: #8e6cc0;
  --fl-svc-accent-blue: #4a9fd4;
  --fl-svc-accent-green: #5cb87a;
  --fl-svc-accent-orange: #e8a44a;
  --fl-svc-card-shadow: 0 2px 12px rgba(26, 43, 75, 0.06),
    0 8px 24px rgba(26, 43, 75, 0.05);
  --fl-svc-card-width: 16.25rem;
  --fl-svc-card-height: 19.5rem;
  --fl-svc-icon-size: 9.625rem;
  --fl-svc-grid-gap: 1.5rem;

  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
  font-family: var(--fl-section-font);
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../anotherchild.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header */
.fl-services-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.fl-services-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.875rem;
}

.fl-services-label-line {
  display: block;
  width: clamp(3.5rem, 12vw, 6.5rem);
  height: 1px;
  background-color: var(--fl-svc-primary);
  opacity: 0.55;
  flex-shrink: 0;
}

.fl-services-heart-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.625rem;
  flex-shrink: 0;
}

.fl-services-heart-badge .fa-heart {
  font-size: 1.625rem;
  color: var(--fl-svc-primary);
  line-height: 1;
}

.fl-services-heart-badge .fa-baby {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  font-size: 0.5625rem;
  color: #ffffff;
  line-height: 1;
}

.fl-services-title {
  font-family: var(--fl-font-family);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-svc-heading);
  line-height: 1.25;
  margin: 0 0 0.625rem;
}

.fl-services-tagline {
  font-size: var(--fl-text-sm);
  font-weight: 400;
  color: var(--fl-svc-text);
  line-height: 1.65;
  max-width: 34rem;
  margin: 0 auto;
}

/* Grid */
.fl-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--fl-svc-grid-gap);
  max-width: calc(4 * var(--fl-svc-card-width) + 3 * var(--fl-svc-grid-gap));
  margin-inline: auto;
}

/* Service card */
.fl-service-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.625rem 1.05rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--fl-svc-card-width);
  min-height: var(--fl-svc-card-height);
  margin-inline: auto;
  box-shadow: var(--fl-svc-card-shadow);
  border: 1px solid rgba(26, 43, 75, 0.04);
  transition: box-shadow 0.2s ease;
}

.fl-service-card:hover {
  box-shadow: 0 4px 18px rgba(26, 43, 75, 0.09),
    0 12px 32px rgba(26, 43, 75, 0.07);
}

.fl-service-icon {
  width: var(--fl-svc-icon-size);
  height: var(--fl-svc-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}

.fl-service-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.fl-service-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-sm-md);
  font-weight: 700;
  color: var(--fl-svc-heading);
  line-height: 1.45;
  margin: 0 0 0.875rem;
  max-width: calc(var(--fl-svc-card-width) - 2.5rem);
}

.fl-service-title-abbr {
  font-weight: 700;
  color: var(--fl-svc-heading);
}

.fl-service-accent-line {
  display: block;
  width: 2rem;
  height: 3px;
  border-radius: 2px;
  margin-top: auto;
  flex-shrink: 0;
}

.fl-service-accent-line--pink {
  background-color: var(--fl-svc-accent-pink);
}

.fl-service-accent-line--purple {
  background-color: var(--fl-svc-accent-purple);
}

.fl-service-accent-line--blue {
  background-color: var(--fl-svc-accent-blue);
}

.fl-service-accent-line--green {
  background-color: var(--fl-svc-accent-green);
}

.fl-service-accent-line--orange {
  background-color: var(--fl-svc-accent-orange);
}

/* Tablet — 2 columns */
@media (max-width: 991.98px) {
  .fl-services-section {
    --fl-svc-card-width: 15rem;
    --fl-svc-card-height: 18.25rem;
    --fl-svc-icon-size: 8.875rem;
    --fl-svc-grid-gap: 1.125rem;
    padding: 3.25rem 0 3.75rem;
  }

  .fl-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(2 * var(--fl-svc-card-width) + var(--fl-svc-grid-gap));
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .fl-services-section {
    --fl-svc-card-width: 100%;
    --fl-svc-card-height: 17.5rem;
    --fl-svc-icon-size: 8.25rem;
    --fl-svc-grid-gap: 0.875rem;
  }

  .fl-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .fl-service-card {
    padding: 1.35rem 0.75rem 1.2rem;
    border-radius: 12px;
    max-width: none;
  }

  .fl-service-title {
    font-size: var(--fl-text-xs);
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .fl-services-label-line {
    width: clamp(2.5rem, 10vw, 4rem);
  }

  .fl-services-heart-badge {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0 0.5rem;
  }

  .fl-services-heart-badge .fa-heart {
    font-size: 1.375rem;
  }
}
/* From Our Experts — YouTube section */
.fl-experts-section {
  --fl-exp-primary: var(--fl-primary);
  --fl-exp-accent: var(--fl-primary-light);
  --fl-exp-text: #666666;
  --fl-exp-heading: #1a202c;
  --fl-exp-yt: #c4302b;

  position: relative;
  /* padding: clamp(5rem, 8vw, 7rem) 0; */
  font-family: var(--fl-section-font);
  background-color: #faddec;
}

/* Header */
.fl-experts-header {
  text-align: center;
  margin-bottom: 2rem;
}

.fl-experts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 0.35rem 0.875rem;
  font-size: var(--fl-text-md);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-exp-primary);
  margin-bottom: 1rem;
}

.fl-experts-badge i {
  color: var(--fl-exp-yt);
  font-size: var(--fl-text-xs);
}

.fl-experts-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: var(--fl-exp-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  max-width: 680px;
  margin-inline: auto;
}

.fl-experts-title-accent {
  color: var(--fl-primary-dark);
}

.fl-experts-desc {
  font-size: var(--fl-text-base);
  color: var(--fl-exp-text);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Features row */
.fl-experts-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 2.25rem;
  overflow: hidden;
}

.fl-experts-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid #ececec;
}

.fl-experts-feature:first-child {
  /* removed padding-left: 0 to keep it centered in the box */
}

.fl-experts-feature:last-child {
  border-right: none;
  /* removed padding-right: 0 */
}

.fl-experts-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--fl-exp-accent);
  color: var(--fl-exp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
}

.fl-experts-feature-text strong {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-exp-heading);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.fl-experts-feature-text span {
  display: block;
  font-size: var(--fl-text-sm);
  color: #888888;
  line-height: 1.4;
}

/* Videos header */
.fl-experts-videos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.fl-experts-videos-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fl-text-lg);
  font-weight: 700;
  color: var(--fl-exp-heading);
}

.fl-experts-videos-label i {
  color: var(--fl-exp-yt);
  font-size: var(--fl-text-xl);
}

.fl-experts-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 0.45rem 0.875rem;
  font-size: var(--fl-text-base);
  font-weight: 600;
  color: var(--fl-exp-primary);
  background-color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.fl-experts-view-all:hover {
  color: var(--fl-exp-primary);
  background-color: #ffffff;
  opacity: 0.85;
}

/* Video grid */
.fl-experts-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.fl-experts-video-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fl-experts-video-card:hover,
.fl-experts-video-card:focus-visible {
  box-shadow: 0 8px 28px rgba(var(--fl-primary-rgb), 0.14);
  transform: translateY(-2px);
  outline: none;
}

.fl-experts-video-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--fl-primary-rgb), 0.2),
    0 8px 28px rgba(var(--fl-primary-rgb), 0.14);
}

.fl-experts-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--fl-primary-icon-bg);
}

.fl-experts-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-experts-video-thumb-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg,
      rgba(var(--fl-primary-rgb), 0.55) 0%,
      rgba(var(--fl-primary-rgb), 0.25) 100%); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0.875rem;
  pointer-events: none;
}

.fl-experts-video-thumb-tag {
  font-size: var(--fl-text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.2rem;
}

.fl-experts-video-thumb-headline {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  max-width: 85%;
}

.fl-experts-video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: var(--fl-text-xs);
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  line-height: 1.3;
}

.fl-experts-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.fl-experts-video-play i {
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--fl-exp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
  padding-left: 0.15rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.fl-experts-video-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: fl-experts-play-pulse 2.2s ease-out infinite;
}

.fl-experts-video-play-ring--delay {
  animation-delay: 1.1s;
}

.fl-experts-video-card:hover .fl-experts-video-play i,
.fl-experts-video-card:focus-visible .fl-experts-video-play i {
  background-color: #ffffff;
  transform: scale(1.06);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@keyframes fl-experts-play-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  70% {
    opacity: 0.25;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1.85);
    opacity: 0;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fl-experts-video-play-ring {
    animation: none;
    opacity: 0.45;
  }
}

.fl-experts-video-body {
  padding: 0.75rem 0.75rem 0.625rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fl-experts-video-title {
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: var(--fl-exp-heading);
  line-height: 1.35;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fl-experts-video-desc {
  font-size: var(--fl-text-xs);
  color: var(--fl-exp-text);
  line-height: 1.5;
  margin-bottom: 0.625rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fl-experts-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.fl-experts-video-meta span {
  font-size: var(--fl-text-xs);
  color: #999999;
  line-height: 1.4;
}

.fl-experts-video-menu {
  background: none;
  border: none;
  padding: 0;
  color: #aaaaaa;
  font-size: var(--fl-text-sm);
  line-height: 1;
  cursor: pointer;
}

/* Subscribe CTA */
.fl-experts-subscribe {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #faf8f9;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1rem 1.25rem 1rem 1.125rem;
}

.fl-experts-subscribe-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background-color: var(--fl-exp-yt);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-xl);
}

.fl-experts-subscribe-text {
  flex: 1;
  min-width: 0;
}

.fl-experts-subscribe-text strong {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-exp-primary);
  margin-bottom: 0.15rem;
  line-height: 1.35;
}

.fl-experts-subscribe-text span {
  display: block;
  font-size: var(--fl-text-base);
  color: #888888;
  line-height: 1.45;
}

.fl-experts-subscribe-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fl-primary-light) 0%, var(--fl-primary) 100%);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.fl-experts-subscribe-btn:hover {
  background: var(--fl-primary-dark);
  opacity: 1;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .fl-experts-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-experts-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl-experts-feature:nth-child(2) {
    border-right: none;
  }

  .fl-experts-feature:nth-child(1),
  .fl-experts-feature:nth-child(2) {
    border-bottom: 1px solid #ececec;
  }

  .fl-experts-feature:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .fl-experts-section {
    padding: 3rem 0 4rem;
  }

  .fl-experts-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-experts-features {
    grid-template-columns: 1fr;
  }

  .fl-experts-feature {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 1.25rem 1.5rem !important;
  }

  .fl-experts-feature:last-child {
    border-bottom: none;
  }

  .fl-experts-videos-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .fl-experts-view-all {
    width: 100%;
    justify-content: center;
  }

  .fl-experts-videos-grid {
    grid-template-columns: 1fr;
  }

  .fl-experts-subscribe {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    padding: 1.25rem;
  }

  .fl-experts-subscribe-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .fl-experts-title {
    font-size: var(--fl-text-2xl);
  }
}

/* YouTube video modal */
body.fl-modal-open {
  overflow: hidden;
}

.fl-experts-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(26, 18, 20, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fl-experts-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.fl-experts-video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.fl-experts-video-modal.is-open .fl-experts-video-modal-dialog {
  transform: translateY(0);
}

.fl-experts-video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fl-experts-video-modal-title {
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.35;
  margin: 0 2.5rem 0.875rem 0;
  padding-right: 0.5rem;
}

.fl-experts-video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000000;
}

.fl-experts-video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fl-experts-video-modal-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  background-color: #1a202c;
  color: #ffffff;
}

.fl-experts-video-modal-fallback p {
  margin: 0;
  font-size: var(--fl-text-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.fl-experts-video-modal-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.125rem;
  border-radius: 999px;
  background-color: var(--fl-primary);
  color: #ffffff;
  font-size: var(--fl-text-sm);
  font-weight: 600;
  text-decoration: none;
}

.fl-experts-video-modal-fallback a:hover {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .fl-experts-video-modal {
    padding: 0.75rem;
  }

  .fl-experts-video-modal-dialog {
    padding: 1rem 1rem 1.25rem;
    border-radius: 12px;
  }

  .fl-experts-video-modal-title {
    font-size: var(--fl-text-sm);
    margin-bottom: 0.75rem;
  }
}/* Consultation section */
.fl-consult-section {
  --fl-consult-accent: var(--fl-primary);
  --fl-consult-accent-dark: var(--fl-primary-dark);
  --fl-consult-heading: #1a202c;
  --fl-consult-text: #666666;
  --fl-consult-muted: #888888;
  --fl-consult-highlight: var(--fl-primary-icon-bg);
  --fl-consult-border: #e8e8e8;
  --fl-consult-trust-bg: #f4f4f4;

  padding: clamp(5rem, 8vw, 7rem) 0;
  font-family: var(--fl-section-font);
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../babywalcome.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header */
.fl-consult-header {
  margin-bottom: 2.5rem;
}

.fl-consult-label {
  font-size: var(--fl-text-md);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-consult-accent);
  margin-bottom: 0.875rem;
}

.fl-consult-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
}

.fl-consult-title {
  font-family: var(--fl-section-font);
  font-size: var(--fl-type-section-title);
  font-weight: 700;
  color: var(--fl-consult-heading);
  line-height: 1.25;
  margin: 0;
}

.fl-consult-step-mark {
  background: linear-gradient(
    transparent 55%,
    var(--fl-consult-highlight) 55%,
    var(--fl-consult-highlight) 88%,
    transparent 88%
  );
}

.fl-consult-desc {
  font-size: var(--fl-text-base);
  color: var(--fl-consult-text);
  line-height: 1.75;
  margin: 0;
}

.fl-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background-color: var(--fl-consult-accent);
  color: #ffffff;
  font-size: var(--fl-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.375rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.fl-consult-btn:hover {
  background-color: var(--fl-consult-accent-dark);
  color: #ffffff;
  opacity: 1;
}

/* Feature grid */
.fl-consult-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.fl-consult-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1200px) {
  .fl-consult-grid {
    gap: 0;
  }

  .fl-consult-card {
    padding: 0 1.375rem;
    border-right: 1px solid var(--fl-consult-border);
  }

  .fl-consult-card:first-child {
    padding-left: 0;
  }

  .fl-consult-card:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.fl-consult-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.fl-consult-card-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: fit-content;
  max-width: calc(100% - 2.625rem);
  min-width: 0;
  margin-top: 0.375rem;
}

.fl-consult-card-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background-color: var(--fl-primary-icon-bg);
  color: var(--fl-consult-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
}

.fl-consult-card-title {
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-consult-heading);
  margin: 0;
  line-height: 1.3;
}

.fl-consult-card-line {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--fl-primary);
  border-radius: 1px;
}

.fl-consult-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--fl-primary-icon-bg);
}

.fl-consult-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-consult-card-subtitle {
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-consult-heading);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.fl-consult-card-text {
  font-size: var(--fl-text-base);
  color: var(--fl-consult-text);
  line-height: 1.65;
  margin-bottom: 0.875rem;
  flex: 1;
}

.fl-consult-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fl-text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fl-consult-accent);
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.fl-consult-card-link:hover {
  color: var(--fl-consult-accent-dark);
  opacity: 1;
}

/* Trust bar */
.fl-consult-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: var(--fl-consult-trust-bg);
  border: none;
  border-radius: 10px;
  box-shadow: none;
  padding: 1.25rem 0;
}

.fl-consult-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.375rem;
  border-right: 1px solid #e0e0e0;
}

.fl-consult-trust-item:last-child {
  border-right: none;
}

.fl-consult-trust-icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-consult-accent);
  font-size: var(--fl-text-xl);
}

.fl-consult-trust-text strong {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-consult-heading);
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.fl-consult-trust-text span {
  display: block;
  font-size: var(--fl-text-sm);
  color: var(--fl-consult-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .fl-consult-header-row {
    grid-template-columns: 1fr 1fr;
  }

  .fl-consult-header-row .fl-consult-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .fl-consult-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .fl-consult-card {
    padding: 0 1.25rem 1.5rem;
    border-right: 1px solid var(--fl-consult-border);
    border-bottom: 1px solid var(--fl-consult-border);
  }

  .fl-consult-card:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }

  .fl-consult-card:nth-child(2n + 1) {
    padding-left: 0;
  }

  .fl-consult-card:nth-child(n + 3) {
    padding-top: 1.5rem;
  }

  .fl-consult-card:nth-child(3),
  .fl-consult-card:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .fl-consult-trust {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0;
  }

  .fl-consult-trust-item:nth-child(2) {
    border-right: none;
  }

  .fl-consult-trust-item:nth-child(1),
  .fl-consult-trust-item:nth-child(2) {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 0.25rem;
  }

  .fl-consult-trust-item:nth-child(3) {
    padding-left: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .fl-consult-section {
    padding: 3rem 0 4rem;
  }

  .fl-consult-header-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fl-consult-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-consult-btn {
    width: 100%;
  }

  .fl-consult-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fl-consult-card {
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--fl-consult-border);
  }

  .fl-consult-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .fl-consult-trust {
    grid-template-columns: 1fr;
    border-radius: 12px;
    padding: 0.5rem 0;
  }

  .fl-consult-trust-item {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 1.25rem;
    margin-bottom: 0;
  }

  .fl-consult-trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 575.98px) {
  .fl-consult-title {
    font-size: var(--fl-text-2xl);
  }
}

/* Custom Image Slider Styles for Consultation Section */
.fl-image-slider-wrap {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
}

.fl-image-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.fl-image-slider-controls {
  position: absolute;
  top: 50%;
  left: -70px;
  right: -70px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 0;
}

.fl-image-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-primary, #db2777); 
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 10;
}

.fl-image-slider-btn:hover {
  background: var(--fl-primary, #db2777);
  color: #ffffff;
}

.fl-image-slider-track {
  display: flex;
  gap: 24px; /* Space between cards */
  transition: transform 0.5s ease-in-out;
}

.fl-image-slider-card {
  flex: 0 0 calc(25% - 18px); /* 4 cards visible, 3 gaps of 24px = 72px / 4 = 18px */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3.5 / 4.5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.fl-image-slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-image-slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.fl-image-slider-content h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
  line-height: 1.3;
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
  .fl-image-slider-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 991.98px) {
  .fl-image-slider-controls {
    left: -45px;
    right: -45px;
  }
  .fl-image-slider-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575.98px) {
  .fl-image-slider-controls {
    left: -15px;
    right: -15px;
  }
  .fl-image-slider-card {
    flex: 0 0 100%;
  }
}
/* Success Rate section */
.fl-success-section {
  --fl-success-bg: #ffffff;
  --fl-success-panel-border: #e8e8e8;
  --fl-success-border: var(--fl-primary-icon-bg);
  --fl-success-icon-bg: var(--fl-primary-icon-bg);
  --fl-success-banner: var(--fl-primary-soft);
  --fl-success-heading: #1a202c;
  --fl-success-text: #555555;
  --fl-success-muted: #666666;
  --fl-success-sub: #888888;
  --fl-success-bar-light: var(--fl-primary-light);
  --fl-success-grid: #dddddd;

  padding: clamp(5rem, 8vw, 7rem) 0;
  font-family: var(--fl-section-font);
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../anotherchild.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fl-success-panel {
  background-color: #ffffff;
  border: 1px solid var(--fl-success-panel-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
}

.fl-success-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fl-success-right {
  display: flex;
  flex-direction: column;
}

.fl-success-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--fl-text-md);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin-bottom: 0.875rem;
}

.fl-success-label-line {
  display: inline-block;
  width: 2.125rem;
  height: 1px;
  background-color: var(--fl-primary);
  opacity: 0.7;
}

.fl-success-label-diamond {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--fl-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.fl-success-title {
  font-family: var(--fl-font-headings);
  font-size: clamp(1.75rem, 2.2vw + 0.75rem, 2.125rem);
  font-weight: 700;
  color: var(--fl-success-heading);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.fl-success-title-accent {
  color: var(--fl-primary-dark);
}

.fl-success-desc {
  font-size: var(--fl-text-md);
  color: var(--fl-success-text);
  line-height: 1.75;
  margin: 0 0 1.75rem;
  max-width: 480px;
}

/* Stat cards */
.fl-success-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.125rem;
}

.fl-success-stat {
  background-color: #ffffff;
  border: 1px solid var(--fl-success-border);
  border-radius: 18px;
  padding: 1.5rem 0.75rem 1.375rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(var(--fl-primary-rgb), 0.04);
}

.fl-success-stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--fl-success-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.fl-success-stat-icon {
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-lg);
  line-height: 1;
}

.fl-success-stat-value {
  font-size: var(--fl-text-4xl);
  font-weight: 700;
  color: var(--fl-primary-dark);
  line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.fl-success-stat-label {
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-success-heading);
  line-height: 1.35;
  margin: 0;
}

.fl-success-stat-divider {
  display: block;
  width: 1.75rem;
  height: 2px;
  background-color: var(--fl-primary);
  border-radius: 1px;
  margin: 0.4375rem auto;
}

.fl-success-stat-sub {
  font-size: var(--fl-text-sm);
  font-weight: 500;
  color: var(--fl-success-sub);
  line-height: 1.35;
  margin: 0;
}

/* Left data note */
.fl-success-data-note {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background-color: var(--fl-success-banner);
  border-radius: 999px;
  padding: 0.8125rem 1.25rem;
  margin-top: auto;
}

.fl-success-data-note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--fl-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
}

.fl-success-data-note-text {
  font-size: var(--fl-text-sm);
  color: var(--fl-success-muted);
  line-height: 1.55;
  margin: 0;
}

.fl-success-data-note-text em {
  display: block;
  font-style: italic;
  font-size: var(--fl-text-xs);
  color: var(--fl-success-sub);
  margin-top: 0.125rem;
}

/* Chart card */
.fl-success-chart-card {
  background-color: #ffffff;
  border: 1px solid var(--fl-success-border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(var(--fl-primary-rgb), 0.04);
}

.fl-success-chart-title {
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: var(--fl-primary-dark);
  text-align: center;
  margin: 0;
  padding: 1.25rem 1rem 0.875rem;
}

.fl-success-chart-wrap {
  flex: 1;
  padding: 0 1.125rem 0.625rem;
  min-height: 260px;
}

.fl-success-chart {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  grid-template-rows: minmax(200px, 1fr) auto;
  gap: 0 0.625rem;
  height: 100%;
  min-height: 240px;
}

.fl-success-chart-y {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.125rem;
  padding-bottom: 1.625rem;
}

.fl-success-chart-plot {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.fl-success-chart-grid {
  position: relative;
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fl-success-chart-x {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  padding-top: 0.625rem;
  flex-shrink: 0;
}

.fl-success-chart-x span {
  flex: 1;
  max-width: 76px;
  font-size: var(--fl-text-xs);
  color: var(--fl-success-muted);
  text-align: center;
  line-height: 1.35;
}

.fl-success-chart-y span {
  font-size: var(--fl-text-xs);
  color: var(--fl-success-sub);
  line-height: 1;
  text-align: right;
}

.fl-success-chart-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 0.375rem;
  gap: 0.625rem;
}

.fl-success-chart-bar {
  flex: 1;
  max-width: 76px;
  height: var(--bar-height);
  background: linear-gradient(
    180deg,
    var(--fl-success-bar-light) 0%,
    var(--fl-primary) 100%
  );
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 0;
}

.fl-success-chart-bar-value {
  position: absolute;
  top: 0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.fl-success-chart-grid-line {
  border-top: 1px dashed var(--fl-success-grid);
  width: 100%;
}

.fl-success-chart-grid-line:first-child {
  border-top: none;
}

.fl-success-chart-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--fl-success-banner);
  padding: 0.875rem 1.125rem;
  margin-top: auto;
}

.fl-success-chart-foot-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-lg);
}

.fl-success-chart-foot-text {
  font-size: var(--fl-text-sm);
  color: var(--fl-success-text);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .fl-success-panel {
    padding: 2rem 1.5rem;
  }

  .fl-success-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fl-success-desc {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .fl-success-section {
    padding: 3rem 0 3.5rem;
  }

  .fl-success-panel {
    padding: 1.5rem 1.125rem;
    border-radius: 16px;
  }

  .fl-success-stats {
    gap: 0.625rem;
  }

  .fl-success-stat {
    padding: 1.25rem 0.625rem 1.125rem;
    border-radius: 14px;
  }

  .fl-success-stat-value {
    font-size: var(--fl-text-3xl);
  }

  .fl-success-data-note {
    border-radius: 14px;
    align-items: flex-start;
  }

  .fl-success-chart-wrap {
    min-height: 220px;
    padding-inline: 0.75rem;
  }

  .fl-success-chart-bar {
    max-width: 56px;
  }

  .fl-success-chart-x span {
    max-width: 56px;
  }
}

@media (max-width: 575.98px) {
  .fl-success-stats {
    grid-template-columns: 1fr 1fr;
  }

  .fl-success-data-note,
  .fl-success-chart-foot {
    align-items: flex-start;
  }
}
/* Gallery — Our Journey in Pictures */
.fl-gallery-section {
  --fl-gallery-bg: #ffffff;
  --fl-gallery-text: #666666;
  --fl-gallery-heading: #1a202c;
  --fl-gallery-border: var(--fl-primary-icon-bg);
  --fl-gallery-stats-bg: var(--fl-primary-soft);

  position: relative;
  /* padding: clamp(5rem, 8vw, 7rem) 0; */
  font-family: var(--fl-section-font);
  background-color: #fbdeee;
}

/* Hide decorative overlays — plain white section */
.fl-gallery-section .fl-gallery-deco {
  display: none;
}

.fl-gallery-deco--swirl {
  opacity: 0.38;
  color: rgba(var(--fl-primary-rgb), 0.42);
}

.fl-gallery-deco--swirl-1 {
  top: 2.25rem;
  left: 3%;
  width: 72px;
  height: 72px;
}

.fl-gallery-deco--swirl-2 {
  top: 4.5rem;
  right: 5%;
  width: 56px;
  height: 56px;
}

.fl-gallery-deco--heart {
  color: rgba(var(--fl-primary-rgb), 0.32);
  font-size: var(--fl-text-base);
}

.fl-gallery-deco--heart-1 {
  top: 4rem;
  left: 16%;
}

.fl-gallery-deco--heart-2 {
  top: 38%;
  right: 8%;
  font-size: var(--fl-text-sm);
}

/* Header */
.fl-gallery-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
  padding-top: 0.25rem;
}

.fl-gallery-script {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-family: var(--fl-font-headings);
  font-size: clamp(1.625rem, 1.5vw + 1.125rem, 2rem);
  font-weight: 600;
  color: var(--fl-primary-dark);
  margin: 0 0 0.625rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.fl-gallery-script-line {
  flex-shrink: 0;
  width: 2.75rem;
  height: 1px;
  background-color: rgba(var(--fl-primary-rgb), 0.35);
}

.fl-gallery-script-sep {
  display: inline-block;
  margin: 0 0.2rem 0 0.35rem;
  font-family: var(--fl-font-headings);
  font-weight: 600;
}

.fl-gallery-script-heart {
  font-size: 0.78em;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 0.15rem;
  position: relative;
  top: -0.05em;
}

.fl-gallery-title {
  font-family: var(--fl-font-headings);
  font-size: clamp(1.875rem, 2.5vw + 0.875rem, 2.25rem);
  font-weight: 700;
  color: var(--fl-gallery-heading);
  line-height: 1.2;
  margin: 0 0 0.875rem;
  letter-spacing: -0.015em;
}

.fl-gallery-title-brand {
  font-family: var(--fl-section-font);
  font-weight: 700;
  color: var(--fl-primary-dark);
}

.fl-gallery-title-rest {
  font-family: var(--fl-font-headings);
  font-weight: 700;
  color: var(--fl-gallery-heading);
}

.fl-gallery-desc {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 400;
  color: var(--fl-gallery-text);
  line-height: 1.75;
  margin: 0 auto 1.125rem;
  max-width: 520px;
}

.fl-gallery-header-line {
  display: block;
  width: 2.75rem;
  height: 3px;
  background-color: var(--fl-primary);
  opacity: 0.9;
  margin: 0 auto;
  border-radius: 2px;
}

/* Masonry grid */
.fl-gallery-grid-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
  margin-top: 0.25rem;
}

.fl-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, 236px);
  gap: 1.25rem;
}

.fl-gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.fl-gallery-item--featured {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.fl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-gallery-item-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: var(--fl-gallery-heading);
  line-height: 1.3;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.5rem;
  background: #ffffffe0;
  border-radius: 8px;
}

.fl-gallery-featured-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.9375rem;
  max-width: min(290px, calc(100% - 2rem));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fl-gallery-featured-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-md);
}

.fl-gallery-featured-card-body strong {
  display: block;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-xs);
  font-weight: 700;
  color: var(--fl-gallery-heading);
  line-height: 1.35;
  margin-bottom: 0.125rem;
}

.fl-gallery-featured-card-body span {
  display: block;
  font-size: var(--fl-text-3xs);
  font-weight: 400;
  color: var(--fl-gallery-text);
  line-height: 1.4;
}

/* Stats bar */
.fl-gallery-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #f0f1f3;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.625rem 1.25rem 1.75rem;
}

.fl-gallery-stats-row {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.fl-gallery-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.fl-gallery-stat:first-child {
  padding-left: 0;
  justify-content: flex-start;
}

.fl-gallery-stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm-md);
  box-shadow: none;
}

.fl-gallery-stat-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1875rem;
  line-height: 1.15;
}

.fl-gallery-stat-value {
  font-size: var(--fl-text-2xl);
  font-weight: 700;
  color: var(--fl-primary-dark);
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.fl-gallery-stat-label {
  font-size: var(--fl-text-md);
  font-weight: 400;
  color: #333333;
  display: block;
  white-space: nowrap;
}

.fl-gallery-stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(var(--fl-primary-rgb), 0.16);
  flex-shrink: 0;
}

.fl-gallery-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--fl-primary);
  color: #ffffff;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8125rem 1.625rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(var(--fl-primary-rgb), 0.28);
}

.fl-gallery-cta i {
  font-size: var(--fl-text-xs);
}

.fl-gallery-cta:hover {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
}

/* Footer decoration */
.fl-gallery-footer-deco {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  min-height: 1.5rem;
}

.fl-gallery-footer-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(var(--fl-primary-rgb), 0.15) 20%,
      rgba(var(--fl-primary-rgb), 0.15) 80%,
      transparent 100%);
  transform: translateY(-50%);
}

.fl-gallery-footer-lotus {
  position: relative;
  z-index: 1;
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-sm);
  background-color: #fffafb;
  padding: 0 0.75rem;
}

.fl-gallery-footer-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
  background-image: radial-gradient(circle, var(--fl-primary) 2px, transparent 2px);
  background-size: 6px 6px;
  opacity: 0.45;
}

@media (max-width: 1199.98px) {
  .fl-gallery-grid {
    grid-template-rows: repeat(2, 210px);
  }

  .fl-gallery-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.25rem 1.375rem;
  }

  .fl-gallery-stat-value {
    font-size: var(--fl-text-xl-md);
  }

  .fl-gallery-stat-label {
    font-size: var(--fl-text-sm);
  }
}

@media (max-width: 991.98px) {
  .fl-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .fl-gallery-item--featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .fl-gallery-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    border-radius: 14px;
    padding: 1.25rem 1.125rem;
  }

  .fl-gallery-stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    width: 100%;
    flex: none;
  }

  .fl-gallery-stat-divider {
    display: none;
  }

  .fl-gallery-stat {
    flex: none;
    min-width: 0;
    padding: 0;
    justify-content: flex-start;
    gap: 0.625rem;
  }

  .fl-gallery-stat:first-child {
    justify-content: flex-start;
  }

  .fl-gallery-stat-icon {
    width: 40px;
    height: 40px;
    font-size: var(--fl-text-sm);
  }

  .fl-gallery-stat-value {
    font-size: var(--fl-text-xl);
  }

  .fl-gallery-stat-label {
    white-space: normal;
    font-size: var(--fl-text-sm);
    line-height: 1.3;
  }

  .fl-gallery-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .fl-gallery-section {
    padding: 3rem 0 3.25rem;
  }

  .fl-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fl-gallery-item:not(.fl-gallery-item--featured) {
    min-height: 210px;
  }

  .fl-gallery-stats {
    padding: 1rem 0.875rem;
    gap: 1rem;
    border-radius: 12px;
  }

  .fl-gallery-stats-row {
    gap: 0.875rem 0.625rem;
  }

  .fl-gallery-stat {
    gap: 0.5rem;
  }

  .fl-gallery-stat-icon {
    width: 36px;
    height: 36px;
    font-size: var(--fl-text-sm);
  }

  .fl-gallery-stat-value {
    font-size: var(--fl-text-lg);
  }

  .fl-gallery-stat-label {
    font-size: var(--fl-text-xs);
  }

  .fl-gallery-cta {
    font-size: var(--fl-text-sm);
    padding: 0.75rem 1.25rem;
  }

  .fl-gallery-footer-deco {
    margin-top: 2rem;
  }
}/* Blog — Latest Articles & Insights */
.fl-blog-section {
  --fl-blog-text: #6b7280;
  --fl-blog-heading: #1a2b4b;
  --fl-blog-card-shadow: 0 2px 14px rgba(26, 43, 75, 0.06),
    0 8px 28px rgba(26, 43, 75, 0.05);

  position: relative;
  padding: clamp(5rem, 8vw, 0rem) 0;
  font-family: var(--fl-section-font);
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../babywalcome.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fl-blog-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.fl-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fl-blog-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background-color: var(--fl-primary-soft);
  color: var(--fl-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
  flex-shrink: 0;
}

.fl-blog-badge-text {
  font-size: var(--fl-text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.fl-blog-title {
  font-family: var(--fl-font-family);
  font-size: clamp(1.625rem, 2vw + 0.875rem, 2rem);
  font-weight: 700;
  color: var(--fl-blog-heading);
  line-height: 1.25;
  margin: 0 0 0.875rem;
}

.fl-blog-desc {
  font-size: var(--fl-text-sm);
  color: var(--fl-blog-text);
  line-height: 1.75;
  margin: 0;
}

.fl-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.fl-blog-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--fl-blog-card-shadow);
  border: 1px solid rgba(26, 43, 75, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fl-blog-card:hover {
  box-shadow: 0 6px 22px rgba(26, 43, 75, 0.09),
    0 14px 36px rgba(26, 43, 75, 0.07);
  transform: translateY(-2px);
}

.fl-blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
}

.fl-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.125rem 1.25rem 1.375rem;
}

.fl-blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.fl-blog-card-category {
  display: inline-block;
  padding: 0.3rem 0.625rem;
  border-radius: 999px;
  background-color: var(--fl-primary-soft);
  font-size: var(--fl-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.fl-blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fl-text-xs);
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}

.fl-blog-card-date i {
  font-size: 0.75rem;
}

.fl-blog-card-title {
  font-family: var(--fl-font-family);
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-blog-heading);
  line-height: 1.45;
  margin: 0 0 0.625rem;
}

.fl-blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.fl-blog-card-title a:hover {
  color: var(--fl-primary-dark);
}

.fl-blog-card-excerpt {
  font-size: var(--fl-text-sm);
  color: var(--fl-blog-text);
  line-height: 1.65;
  margin: 0 0 1rem;
  flex: 1;
}

.fl-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: var(--fl-primary-dark);
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.fl-blog-card-link:hover {
  color: var(--fl-primary-dark);
  opacity: 0.9;
}

.fl-blog-card-link i {
  font-size: 0.75rem;
}

.fl-blog-cta-wrap {
  text-align: center;
}

.fl-blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fl-primary-light) 0%, var(--fl-primary) 100%);
  text-decoration: none;
  transition: background 0.2s ease;
}

.fl-blog-view-all:hover {
  color: #ffffff;
  background: var(--fl-primary-dark);
}

@media (max-width: 991.98px) {
  .fl-blog-section {
    padding: 3.5rem 0 4rem;
  }

  .fl-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .fl-blog-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .fl-blog-view-all {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
}/* FAQ — Frequently Asked Questions */
.fl-faq-section {
  position: relative;
  /* padding: clamp(5rem, 8vw, 7rem) 0; */
  font-family: var(--fl-section-font);
  background-color: #fbdeee !important;
}

/* Decorative background */
.fl-faq-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.fl-faq-deco--blob {
  top: 0;
  left: -2.5rem;
  width: 280px;
  height: 220px;
  background: radial-gradient(ellipse 72% 62% at 38% 42%,
      rgba(var(--fl-primary-rgb), 0.13) 0%,
      transparent 72%);
}

.fl-faq-deco--swirl {
  top: 1.5rem;
  left: 2.5%;
  width: 64px;
  height: 64px;
  opacity: 0.38;
  color: rgba(var(--fl-primary-rgb), 0.42);
}

.fl-faq-deco--dots {
  top: 36%;
  right: 1.25%;
  width: 10px;
  height: 56px;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(var(--fl-primary-rgb), 0.35) 2px, transparent 2px);
  background-size: 10px 14px;
}

/* Header */
.fl-faq-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.875rem;
}

.fl-faq-lotus-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.fl-faq-lotus {
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-base);
  line-height: 1;
}

.fl-faq-lotus-line {
  display: block;
  width: 2.75rem;
  height: 1px;
  background-color: rgba(var(--fl-primary-rgb), 0.35);
}

.fl-faq-title {
  font-family: var(--fl-font-headings);
  font-size: clamp(1.875rem, 2.5vw + 0.875rem, 2.25rem);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin: 0 0 0.875rem;
  letter-spacing: -0.015em;
}

.fl-faq-title-accent {
  font-family: var(--fl-section-font);
  font-weight: 700;
  color: var(--fl-primary-dark);
}

.fl-faq-desc {
  font-size: var(--fl-text-md);
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

/* Layout */
.fl-faq-layout {
  position: relative;
  z-index: 1;
}

/* Sidebar */
.fl-faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fl-faq-help-card {
  background-color: var(--fl-primary-soft);
  border: none;
  border-radius: 16px;
  padding: 2.125rem 1.625rem 1.875rem;
  text-align: center;
}

.fl-faq-help-icon {
  width: auto;
  height: auto;
  margin: 0 auto 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-3xl-md);
  line-height: 1;
}

.fl-faq-help-title {
  font-family: var(--fl-font-headings);
  font-size: var(--fl-text-xl);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
  margin: 0 0 0.625rem;
}

.fl-faq-help-text {
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.65;
  margin: 0 0 1.375rem;
  max-width: 250px;
  margin-inline: auto;
}

.fl-faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  background-color: var(--fl-primary);
  color: #ffffff;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-sm);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.625rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(var(--fl-primary-rgb), 0.24);
}

.fl-faq-contact-btn:hover {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
}

.fl-faq-contact-btn i {
  font-size: var(--fl-text-2xs);
}

.fl-faq-phone-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background-color: #ffffff;
  border: 1px solid var(--fl-primary-icon-bg);
  border-radius: 16px;
  padding: 1.0625rem 1.125rem;
  box-shadow: 0 4px 18px rgba(var(--fl-primary-rgb), 0.06);
}

.fl-faq-phone-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--fl-primary-icon-bg);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm-md);
}

.fl-faq-phone-text {
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.fl-faq-phone-text a {
  display: block;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: var(--fl-primary-dark);
  text-decoration: none;
  margin-top: 0.1875rem;
}

.fl-faq-phone-text a:hover {
  color: var(--fl-primary-dark);
}

/* Accordion */
.fl-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.fl-faq-accordion .accordion-item {
  border: none;
  background: transparent;
  border-radius: 0;
}

.fl-faq-accordion .accordion-item .accordion-collapse {
  border: none;
}

.fl-faq-panel {
  background-color: #ffffff;
  border: 1px solid rgba(var(--fl-primary-rgb), 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.fl-faq-accordion .accordion-header {
  margin: 0;
}

.fl-faq-trigger {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: .725rem 1.375rem;
  background-color: #ffffff !important;
  border: none;
  box-shadow: none !important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.35;
  text-align: left;
}

.fl-faq-trigger::after {
  display: none;
}

.fl-faq-trigger:not(.collapsed) {
  background-color: #ffffff !important;
}

.fl-faq-trigger:focus {
  box-shadow: none;
  border-color: transparent;
}

.fl-faq-trigger-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--fl-primary-icon-bg);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
}

.fl-faq-trigger-text {
  flex: 1;
  min-width: 0;
  font-family: var(--fl-font-headings);
  font-size: var(--fl-text-md);
  font-weight: 600;
  color: #1a202c;
  transition: color 0.2s ease;
}

.fl-faq-trigger:not(.collapsed) .fl-faq-trigger-text {
  color: var(--fl-primary-dark);
}

.fl-faq-trigger-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: var(--fl-text-xs);
  transition: transform 0.25s ease, color 0.2s ease;
}

.fl-faq-trigger:not(.collapsed) .fl-faq-trigger-chevron {
  color: var(--fl-primary-dark);
  transform: rotate(180deg);
}

.fl-faq-accordion .accordion-body {
  padding: 0 1.375rem 1.375rem 4.9375rem;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: #666666;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 991.98px) {
  .fl-faq-section {
    padding: 3.5rem 0 4rem;
  }

  .fl-faq-header {
    margin-bottom: 2rem;
  }

  .fl-faq-sidebar {
    margin-bottom: 1.5rem;
  }

  .fl-faq-accordion .accordion-body {
    padding-left: 1.375rem;
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .fl-faq-help-card {
    padding: 1.625rem 1.25rem 1.5rem;
  }

  .fl-faq-help-icon {
    font-size: var(--fl-text-3xl);
  }

  .fl-faq-trigger {
    padding: 1rem 1.125rem;
    gap: 0.625rem;
  }

  .fl-faq-trigger-icon {
    width: 36px;
    height: 36px;
    font-size: var(--fl-text-sm);
  }

  .fl-faq-trigger-text {
    font-size: var(--fl-text-base);
  }
}/* Testimonials — Loved By Our Patients */
.fl-testimonials-section {
  --fl-testimonial-body: #5f6b7a;
  --fl-testimonial-author: #0f172a;
  --fl-testimonial-author-sub: #9aa3af;
  --fl-testimonial-star: #f5b301;
  --fl-testimonial-card-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);

  position: relative;
  /* padding: clamp(5rem, 8vw, 7rem) 0; */
  font-family: var(--fl-section-font);
  background-color: #fbdeee;
}

/* Header */
.fl-testimonials-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.fl-testimonials-label {
  font-size: var(--fl-text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fl-primary-dark);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.fl-testimonials-label::before,
.fl-testimonials-label::after {
  content: "";
  display: block;
  width: clamp(2.5rem, 8vw, 4.5rem);
  height: 1px;
  background-color: var(--fl-primary);
  opacity: 0.4;
}

.fl-testimonials-title {
  font-family: var(--fl-font-headings);
  font-size: clamp(2rem, 3vw + 0.75rem, 2.625rem);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.fl-testimonials-desc {
  font-size: var(--fl-text-base);
  color: var(--fl-testimonial-body);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.fl-testimonials-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.625rem 1.375rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.fl-testimonials-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.fl-testimonials-rating-stars i {
  font-size: 0.9375rem;
  color: var(--fl-testimonial-star);
}

.fl-testimonials-rating-score {
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: #0f172a;
}

.fl-testimonials-rating-count {
  font-size: var(--fl-text-base);
  font-weight: 400;
  color: #6b7280;
}

/* Carousel */
.fl-testimonials-slider-wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.fl-testimonials-slider {
  position: relative;
  z-index: 1;
}

.fl-testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid #e8eaed;
  border-radius: 50%;
  background-color: #ffffff;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fl-testimonials-section:hover .fl-testimonials-nav,
.fl-testimonials-section:focus-within .fl-testimonials-nav {
  opacity: 1;
  pointer-events: auto;
}

.fl-testimonials-nav[data-testimonials-prev] {
  left: -4rem;
}

.fl-testimonials-nav[data-testimonials-next] {
  right: -4rem;
}

.fl-testimonials-nav:hover {
  border-color: var(--fl-primary);
  color: var(--fl-primary-dark);
}

.fl-testimonials-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fl-testimonials-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  min-width: 0;
  transition: transform 0.32s ease;
  will-change: transform;
}

.fl-testimonials-track.is-advancing-next {
  transform: translateX(calc(-1 * var(--fl-testimonial-step, 0px)));
}

.fl-testimonials-track.is-advancing-prev {
  transform: translateX(var(--fl-testimonial-step, 0px));
}

/* Card */
.fl-testimonial-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: calc((100% - 3rem) / 3);
  background-color: #ffffff;
  border: 1px solid #f0f1f3;
  border-radius: 16px;
  padding: 1.75rem 1.625rem 1.5rem;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  box-shadow: var(--fl-testimonial-card-shadow);
}

.fl-testimonial-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.fl-testimonial-quote-icon {
  font-family: var(--fl-font-headings);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 0.75;
  color: var(--fl-primary-dark);
  flex-shrink: 0;
}

.fl-testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.fl-testimonial-stars i {
  font-size: 0.8125rem;
  color: var(--fl-testimonial-star);
}

.fl-testimonial-text {
  font-size: var(--fl-text-base);
  color: var(--fl-testimonial-body);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.fl-testimonial-divider {
  height: 1px;
  background-color: #eceef1;
  margin: 1.375rem 0 1.125rem;
}

.fl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}

.fl-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fl-testimonial-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  user-select: none;
}

.fl-testimonial-avatar-fallback::after {
  content: attr(data-initials);
}

.fl-testimonial-author-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.fl-testimonial-author-name {
  font-size: var(--fl-text-base);
  font-weight: 700;
  color: var(--fl-testimonial-author);
  line-height: 1.3;
}

.fl-testimonial-author-city {
  font-size: var(--fl-text-sm);
  font-weight: 400;
  color: var(--fl-testimonial-author-sub);
  line-height: 1.35;
}

/* Dots — hidden on desktop to match static design */
.fl-testimonials-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.fl-testimonials-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fl-testimonials-dot.is-active {
  background-color: var(--fl-primary);
  transform: scale(1.15);
}

.fl-testimonials-dot:hover {
  background-color: var(--fl-primary-light);
}

/* Share story modal */
.fl-testimonials-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(17, 24, 39, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fl-testimonials-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.fl-testimonials-modal-dialog {
  width: 100%;
  max-width: 28rem;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.fl-testimonials-modal.is-open .fl-testimonials-modal-dialog {
  transform: translateY(0);
}

.fl-testimonials-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
}

.fl-testimonials-modal-title {
  font-size: var(--fl-text-xl);
  font-weight: 700;
  color: #1a2b4b;
  margin: 0 0 0.5rem;
}

.fl-testimonials-modal-desc {
  font-size: var(--fl-text-sm);
  color: #6b7280;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.fl-testimonials-form-field {
  display: block;
  margin-bottom: 0.875rem;
}

.fl-testimonials-form-field span {
  display: block;
  font-size: var(--fl-text-xs);
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.fl-testimonials-form-field input,
.fl-testimonials-form-field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.625rem 0.75rem;
  font-size: var(--fl-text-sm);
  font-family: inherit;
}

.fl-testimonials-form-field input:focus,
.fl-testimonials-form-field textarea:focus {
  outline: none;
  border-color: var(--fl-primary);
}

.fl-testimonials-modal-submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--fl-primary-light) 0%, var(--fl-primary) 100%);
  cursor: pointer;
}

.fl-testimonials-modal-submit:hover {
  background: var(--fl-primary-dark);
}

.fl-testimonials-form-success {
  margin-top: 0.75rem;
  font-size: var(--fl-text-sm);
  color: #059669;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .fl-testimonial-card {
    max-width: calc((100% - 1.5rem) / 2);
    min-height: 18rem;
    padding: 1.5rem 1.375rem 1.375rem;
  }

  .fl-testimonials-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .fl-testimonials-nav[data-testimonials-prev] {
    left: 0;
  }

  .fl-testimonials-nav[data-testimonials-next] {
    right: 0;
  }

  .fl-testimonials-dots {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .fl-testimonials-section {
    padding: 3.75rem 0 4rem;
  }

  .fl-testimonials-header {
    margin-bottom: 2.25rem;
  }

  .fl-testimonials-title {
    font-size: clamp(1.75rem, 6vw, 2.125rem);
  }

  .fl-testimonials-desc,
  .fl-testimonials-rating-score,
  .fl-testimonials-rating-count {
    font-size: var(--fl-text-sm);
  }

  .fl-testimonials-nav {
    width: 38px;
    height: 38px;
  }

  .fl-testimonials-track {
    gap: 0;
  }

  .fl-testimonial-card {
    max-width: 100%;
    min-height: 17rem;
    padding: 1.375rem 1.25rem 1.25rem;
  }

  .fl-testimonial-quote-icon {
    font-size: 2.75rem;
  }

  .fl-testimonial-text {
    font-size: var(--fl-text-sm);
  }

  .fl-testimonials-dots {
    display: flex;
  }
}/* Footer */
.fl-footer {
  position: relative;
  overflow: hidden;
  /* padding-top: clamp(5rem, 8vw, 7rem); */
  font-family: var(--fl-section-font);
  background-color: #fffafb;
}

/* Decorative blobs */
.fl-footer-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.fl-footer-deco--blob-tl {
  top: 0;
  left: -3rem;
  width: 220px;
  height: 180px;
  background: radial-gradient(ellipse 70% 65% at 40% 45%,
      rgba(var(--fl-primary-rgb), 0.1) 0%,
      transparent 72%);
}

.fl-footer-deco--blob-br {
  bottom: 5rem;
  right: -2rem;
  width: 200px;
  height: 160px;
  background: radial-gradient(ellipse 65% 60% at 55% 50%,
      rgba(var(--fl-primary-rgb), 0.08) 0%,
      transparent 70%);
}

/* White shell with rounded top */
.fl-footer-shell {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)),
    url(../../anotherchild.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px 28px 0 0;
  padding: 3.5rem 0 2.25rem;
  box-shadow: 0 -4px 24px rgba(var(--fl-primary-rgb), 0.06);
}

/* Main grid — 5 columns */
.fl-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.95fr)) minmax(0, 1.25fr);
  gap: 2rem 1.75rem;
  padding-bottom: 2.5rem;
}

/* Brand column */
.fl-footer-brand {
  min-width: 0;
}

.fl-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
}

.fl-footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.fl-footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.fl-footer-logo-text strong {
  font-family: var(--fl-font-headings);
  font-size: var(--fl-text-xl);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}

.fl-footer-logo-text>span {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-xs);
  font-weight: 400;
  color: #666666;
  line-height: 1.35;
}

.fl-footer-brand-divider {
  display: block;
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-3xs);
  line-height: 1;
  margin-bottom: 0.875rem;
  opacity: 0.85;
}

.fl-footer-tagline {
  font-size: var(--fl-text-base);
  line-height: 1.75;
  color: #666666;
  margin: 0 0 1.375rem;
  max-width: 280px;
}

.fl-footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fl-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--fl-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fl-footer-social-link:hover {
  background-color: var(--fl-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Link columns */
.fl-footer-col {
  min-width: 0;
}

.fl-footer-col-title {
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: var(--fl-primary-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.fl-footer-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fl-text-base);
  color: #555555;
  text-decoration: none;
  margin-bottom: 0.5625rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.fl-footer-link::before {
  content: "\203A";
  color: var(--fl-primary-dark);
  font-size: var(--fl-text-sm);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.fl-footer-link:hover {
  color: var(--fl-primary-dark);
}

/* Contact column */
.fl-footer-col--contact .fl-footer-col-title {
  margin-bottom: 1.125rem;
}

.fl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fl-footer-contact-item:last-child {
  margin-bottom: 0;
}

.fl-footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--fl-primary-icon-bg);
  color: var(--fl-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm);
}

.fl-footer-contact-body {
  min-width: 0;
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.55;
}

.fl-footer-contact-body strong {
  display: block;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-sm);
  font-weight: 700;
  color: #333333;
  line-height: 1.45;
  margin-bottom: 0.125rem;
}

.fl-footer-contact-body span {
  display: block;
}

.fl-footer-contact-body a {
  display: block;
  font-size: var(--fl-text-base);
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  line-height: 1.45;
}

.fl-footer-contact-body a:hover {
  color: var(--fl-primary-dark);
}

.fl-footer-contact-body span+a,
.fl-footer-contact-body a+span {
  margin-top: 0.125rem;
}

/* Trust badges */
.fl-footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.375rem;
  margin-bottom: 1.5rem;
}

.fl-footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.fl-footer-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--fl-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-sm-md);
}

.fl-footer-trust-body strong {
  display: block;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 600;
  color: #1a202c;
  line-height: 1.35;
  margin-bottom: 0.125rem;
}

.fl-footer-trust-body span {
  display: block;
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.45;
}

/* Newsletter */
.fl-footer-newsletter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background-color: var(--fl-primary-soft);
  border-radius: 16px;
  padding: 1.375rem 1.5rem;
  margin-bottom: 0;
  overflow: hidden;
}

.fl-footer-newsletter-deco {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 70px;
  color: rgba(var(--fl-primary-rgb), 0.28);
  pointer-events: none;
}

.fl-footer-newsletter-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--fl-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fl-text-lg);
}

.fl-footer-newsletter-text {
  flex: 1;
  min-width: 0;
}

.fl-footer-newsletter-text strong {
  display: block;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-md);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.fl-footer-newsletter-text span {
  display: block;
  font-size: var(--fl-text-base);
  color: #666666;
  line-height: 1.55;
  max-width: 420px;
}

.fl-footer-newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0.625rem;
  flex-shrink: 0;
  min-width: 320px;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.fl-footer-newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 999px;
  background-color: #ffffff;
  color: #333333;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-sm);
  padding: 0.75rem 1.125rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fl-footer-newsletter-input::placeholder {
  color: #999999;
}

.fl-footer-newsletter-input:focus {
  box-shadow: 0 0 0 2px rgba(var(--fl-primary-rgb), 0.2);
}

.fl-footer-newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  border: none;
  border-radius: 999px;
  background-color: var(--fl-primary);
  color: #ffffff;
  font-family: var(--fl-section-font);
  font-size: var(--fl-text-base);
  font-weight: 600;
  padding: 0.75rem 1.375rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(var(--fl-primary-rgb), 0.24);
}

.fl-footer-newsletter-btn i {
  font-size: var(--fl-text-xs);
}

.fl-footer-newsletter-btn:hover {
  background-color: var(--fl-primary-dark);
}

/* Bottom bar */
.fl-footer-bottom {
  background-color: var(--fl-primary);
  color: #ffffff;
  padding: 0.45rem 0;
}

.fl-footer-bottom-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.fl-footer-copy {
  font-size: var(--fl-text-md);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  justify-self: start;
}

.fl-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fl-footer-legal a {
  font-size: var(--fl-text-md);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.fl-footer-legal a:hover {
  color: #ffffff;
  opacity: 0.85;
}

.fl-footer-legal-sep {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fl-text-md);
  line-height: 1;
}

.fl-footer-tagline-bottom {
  font-family: var(--fl-font-headings);
  font-size: var(--fl-text-xl-md);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.fl-footer-tagline-bottom i {
  font-size: var(--fl-text-2xs);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .fl-footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fl-footer-brand {
    grid-column: 1 / -1;
  }

  .fl-footer-col--contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
  }

  .fl-footer-col--contact .fl-footer-col-title {
    grid-column: 1 / -1;
  }

  .fl-footer-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .fl-footer-shell {
    padding-top: 2.75rem;
    border-radius: 20px 20px 0 0;
  }

  .fl-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }

  .fl-footer-col--contact {
    grid-template-columns: 1fr;
  }

  .fl-footer-newsletter {
    flex-wrap: wrap;
  }

  .fl-footer-newsletter-form {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .fl-footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
  }

  .fl-footer-copy,
  .fl-footer-tagline-bottom {
    justify-self: center;
  }
}

@media (max-width: 767.98px) {
  .fl-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .fl-footer-brand {
    grid-column: 1 / -1;
  }

  .fl-footer-col--contact {
    grid-column: 1 / -1;
  }

  .fl-footer-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    padding: 1.5rem 1rem;
  }

  .fl-footer-trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
  }

  .fl-footer-trust-body strong {
    font-size: 0.85rem;
  }

  .fl-footer-trust-body span {
    font-size: 0.72rem;
  }

  .fl-footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .fl-footer-newsletter-icon {
    margin: 0 auto;
  }

  .fl-footer-newsletter-text span {
    max-width: none;
  }

  .fl-footer-newsletter-form {
    flex-direction: column;
  }

  .fl-footer-newsletter-deco {
    opacity: 0.5;
    right: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .fl-footer-shell {
    padding-top: 2.25rem;
  }

  .fl-footer-legal {
    flex-direction: column;
    gap: 0.375rem;
  }

  .fl-footer-legal-sep {
    display: none;
  }
}/* Reusable guidance CTA component */
.fl-guidance-cta--embedded {
  margin-top: 40px;
}

.fl-guidance-cta-section,
.fq-cta-section,
.ct-cta-section {
  padding: 40px 0 60px;
  background: #ffffff;
}

.fl-guidance-cta-section .fl-guidance-cta {
  margin-top: 0;
  margin-bottom: 0;
}

.fl-guidance-cta {
    background: #fff3f8;
    border-radius: 16px;
    padding: 5px 40px;
    border: 1px solid rgba(232, 67, 147, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #fff4f7 100%);
    border-radius: 24px;
    /* padding: 60px; */
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgb(140 79 98 / 68%), 0 4px 10px rgb(0 0 0 / 78%);
    border: 1px solid #ffe1eb;
    position: relative;
    overflow: hidden;
}

.fl-cta-bubble-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  top: -120px;
  left: -50px;
  z-index: 0;
  pointer-events: none;
}

.fl-cta-bubble-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(232, 67, 147, 0.04);
  bottom: -90px;
  right: 15%;
  z-index: 0;
  pointer-events: none;
}

.fl-guidance-title {
  color: #0a2240;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 8px 0;
  font-family: var(--fl-font-family);
}

.fl-guidance-desc {
  color: var(--fl-text-muted, #666);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--fl-font-family);
}

.fl-guidance-btn-pink {
  background-color: var(--fl-accent-pink, #e05699);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-family: var(--fl-font-family);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.fl-guidance-btn-pink:hover {
  background-color: var(--fl-primary-dark, #6a1b4d);
  color: #fff;
  transform: translateY(-2px);
}

.fl-guidance-btn-outline {
  background-color: #ffffff;
  color: var(--fl-accent-pink, #e05699);
  border: 1.5px solid var(--fl-accent-pink, #e05699);
  border-radius: 30px;
  padding: 11px 28px;
  font-family: var(--fl-font-family);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s, transform 0.2s;
}

.fl-guidance-btn-outline:hover {
  background-color: var(--fl-accent-pink, #e05699);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .fl-guidance-cta {
    padding: 30px 20px;
  }

  .fl-guidance-btn-pink,
  .fl-guidance-btn-outline {
    width: 100%;
    justify-content: center;
  }
}/**
 * Mobile & tablet overrides only — desktop (≥992px) design unchanged.
 */

/* Prevent horizontal scroll from decorative elements */
body {
  overflow-x: hidden;
}

/* ── Header ── */
@media (max-width: 991.98px) {
  .fl-navbar-main .navbar-brand {
    margin-right: auto;
  }

  .fl-rating-badge {
    max-width: 100%;
  }
}

/* ── Hero (homepage only — inner pages use .wfl-hero-override) ── */
@media (max-width: 991.98px) {
  .fl-hero-banner:not(.wfl-hero-override) {
    aspect-ratio: auto;
    min-height: clamp(24rem, 52vw, 32rem);
  }

  .fl-hero-banner:not(.wfl-hero-override) .fl-hero-banner-media img {
    object-position: 56% 40%;
  }

  .fl-hero-banner:not(.wfl-hero-override) .fl-hero-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(26, 10, 18, 0.72) 0%,
      rgba(26, 10, 18, 0.55) 45%,
      rgba(26, 10, 18, 0.35) 100%
    );
  }
}

@media (max-width: 575.98px) {
  .fl-hero-section {
    padding: 2rem 0 1.75rem;
  }

  .fl-btn-primary {
    width: 100%;
    max-width: 280px;
  }

  .fl-hero-image {
    max-width: 100%;
  }

  .fl-hero-banner:not(.wfl-hero-override) {
    aspect-ratio: auto;
    min-height: 32rem;
  }

  .fl-hero-banner:not(.wfl-hero-override) .fl-hero-banner-media img {
    object-position: 52% 38%;
  }

  .fl-hero-banner-inner {
    max-width: 100%;
  }

  .fl-hero-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fl-hero-banner-btn {
    width: 100%;
    max-width: 18rem;
  }

  .fl-hero-banner-trust {
    gap: 0.875rem 1.25rem;
  }

  .wfl-hero-override .fl-hero-banner-inner {
    padding-top: 60px !important;
    padding-bottom: 32px !important;
  }
}

/* ── Welcome ── */
@media (max-width: 991.98px) {
  .fl-welcome-section {
    padding: 10rem 0 3rem;
  }

  .fl-welcome-wave,
  .fl-welcome-dots {
    display: none;
  }

  .fl-welcome-title {
    font-size: var(--fl-text-4xl);
  }

  .fl-welcome-title-accent {
    display: block;
    margin-top: 0.2rem;
  }

  .fl-welcome-subtitle {
    font-size: var(--fl-text-lg);
  }
}

@media (max-width: 575.98px) {
  .fl-welcome-section {
    padding: 9rem 0 2.5rem;
  }

  .fl-welcome-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-welcome-subtitle {
    font-size: var(--fl-text-lg);
  }

  .fl-welcome-text {
    font-size: var(--fl-text-xs);
    margin-bottom: 1.25rem;
  }

  .fl-welcome-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 0.25rem;
  }

  .fl-welcome-pill {
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
}

/* ── Why Choose Us ── */
@media (max-width: 991.98px) {
  .fl-why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .fl-why-cards {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .fl-why-card {
    padding: 1rem 0.875rem;
  }

  .fl-why-desc {
    font-size: var(--fl-text-base);
    padding: 0 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .fl-why-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-clinic-float-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .fl-clinic-float-icon {
    margin-bottom: 0.5rem;
  }
}

/* ── Featured In ── */
@media (max-width: 767.98px) {
  .fl-featured-title {
    font-size: var(--fl-text-3xl);
  }

  .fl-featured-desc {
    font-size: var(--fl-text-sm);
    padding: 0 0.25rem;
  }

  .fl-featured-slider {
    gap: 0.4rem;
  }

  .fl-slider-btn {
    width: 36px;
    height: 36px;
    font-size: var(--fl-text-sm);
  }
}

@media (max-width: 575.98px) {
  .fl-featured-title {
    font-size: var(--fl-text-2xl);
  }

  .fl-featured-slider {
    gap: 0.3rem;
  }

  .fl-slider-btn {
    width: 32px;
    height: 32px;
    font-size: var(--fl-text-xs);
  }

  .fl-logo-card {
    min-height: 70px;
    padding: 0.75rem 0.5rem;
  }

  .fl-featured-indicators {
    gap: 0.35rem;
  }
}

@media (max-width: 374.98px) {
  .fl-slider-btn {
    width: 28px;
    height: 28px;
    font-size: var(--fl-text-xs);
  }
}

/* ── Doctor section ── */
@media (max-width: 991.98px) {
  .fl-doctor-section {
    padding-top: 3rem;
  }

  .fl-doctor-photo-wrap {
    max-width: 320px;
    margin: 0 auto 1.25rem;
  }

  .fl-doctor-top .col-lg-8 {
    margin-top: 0.25rem;
  }

  .fl-doctor-name {
    font-size: var(--fl-text-3xl);
  }

  .fl-doctor-trust-bar {
    margin-top: 1.25rem;
  }

  .fl-doctor-trust-bar-item {
    padding: 1rem 0.75rem;
  }

  .fl-doctor-trust-bar-item:first-child {
    padding-left: 0.75rem;
  }

  .fl-doctor-bottom-panel > .row {
    padding: 1.25rem 0 1rem;
  }

  .fl-doctor-cta-col {
    padding: 0.75rem;
  }

  .fl-doctor-cta-box {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .fl-doctor-label {
    flex-wrap: wrap;
  }

  .fl-doctor-intro {
    max-width: 100%;
  }

  .fl-doctor-quote-card {
    min-height: auto;
    margin-top: 0.25rem;
  }

  .fl-doctor-verified {
    font-size: var(--fl-text-3xs);
    padding: 0.45rem 0.625rem;
    bottom: 16px;
    max-width: calc(100% - 20px);
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .fl-doctor-trust-bar {
    margin: 1rem 0 0;
  }

  .fl-doctor-trust-bar-item {
    padding: 0.875rem 0;
  }

  .fl-doctor-trust-bar-item:first-child {
    padding-left: 0;
  }

  .fl-doctor-bottom-panel {
    border-radius: 12px;
    margin-bottom: 2rem;
  }

  .fl-doctor-bottom-col {
    padding: 1rem;
  }

  .fl-doctor-edu-col::after {
    opacity: 0.12;
    width: 56px;
    height: 56px;
  }

  .fl-doctor-trust-card {
    max-width: 280px;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .fl-doctor-stat {
    width: 60px;
    left: 5px;
    padding: 0.5rem 0.4rem 0.45rem;
  }

  .fl-doctor-stat-num {
    font-size: var(--fl-text-lg);
  }

  .fl-doctor-stat-label {
    font-size: var(--fl-text-3xs);
  }

  .fl-doctor-stat-icon {
    width: 28px;
    height: 28px;
    font-size: var(--fl-text-xs);
  }

  .fl-doctor-name {
    font-size: var(--fl-text-2xl);
  }

  .fl-doctor-tag {
    font-size: var(--fl-text-2xs);
    padding: 0.28rem 0.55rem;
  }

  .fl-doctor-cta-btn {
    font-size: var(--fl-text-3xs);
    padding: 0.55rem 0.5rem;
  }

  .fl-doctor-feature {
    padding: 0.75rem 1rem;
  }
}

/* ── Services ── */
@media (max-width: 575.98px) {
  .fl-services-tagline {
    font-size: var(--fl-text-xs);
  }
}

/* ── Safe area for notched devices ── */
@supports (padding: max(0px)) {
  .fl-page-wrap {
    padding-inline: max(var(--fl-page-padding-x), env(safe-area-inset-left))
      max(var(--fl-page-padding-x), env(safe-area-inset-right));
  }
}
/* Global typography — load last in bundle for consistent hierarchy */

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: var(--fl-type-body);
  line-height: var(--fl-line-height-body);
}

.fl-hero-section,
.fl-hero-banner,
.fl-welcome-section,
.fl-why-section,
.fl-featured-section,
.fl-doctor-section,
.fl-services-section,
.fl-experts-section,
.fl-consult-section,
.fl-success-section,
.fl-gallery-section,
.fl-blog-section,
.fl-faq-section,
.fl-testimonials-section,
.fl-footer {
  font-size: var(--fl-type-body);
  line-height: var(--fl-line-height-body);
}

/* 1 — Section labels / overlines */
.fl-welcome-label,
.fl-why-label,
.fl-featured-label,
.fl-doctor-label,
.fl-experts-label,
.fl-consult-label,
.fl-success-label,
.fl-faq-label-text {
  font-size: var(--fl-type-label);
}

/* 2 — Primary section headings */
.fl-hero-title {
  font-size: var(--fl-type-hero-title);
}

.fl-hero-banner-title {
  font-size: clamp(1.75rem, 2.8vw + 0.75rem, 2.75rem);
}

.fl-hero-banner-subtitle {
  font-size: clamp(1.125rem, 1.4vw + 0.65rem, 1.625rem);
}

.fl-hero-banner-text {
  font-size: var(--fl-type-section-desc);
}

.fl-welcome-title,
.fl-why-title,
.fl-featured-title,
.fl-services-title,
.fl-doctor-name,
.fl-experts-title,
.fl-consult-title,
.fl-success-title,
.fl-gallery-title,
.fl-blog-title,
.fl-faq-title {
  font-size: var(--fl-type-section-title);
}

/* 3 — Section descriptions & lead copy */
.fl-hero-text,
.fl-welcome-text,
.fl-welcome-subtitle,
.fl-why-desc,
.fl-featured-desc,
.fl-services-tagline,
.fl-doctor-intro,
.fl-experts-desc,
.fl-consult-desc,
.fl-success-desc,
.fl-gallery-desc,
.fl-blog-desc,
.fl-faq-intro {
  font-size: var(--fl-type-section-desc);
}

/* 4 — Card & feature titles */
.fl-why-card-title,
.fl-expert-name,
.fl-doctor-feature-title,
.fl-faq-question,
.fl-clinic-float-title {
  font-size: var(--fl-type-card-title);
}

/* 5 — Card & feature body */
.fl-why-card-text,
.fl-expert-role,
.fl-doctor-feature-text,
.fl-faq-answer,
.fl-clinic-float-text,
.fl-gallery-featured-card-body strong,
.fl-gallery-featured-card-body span {
  font-size: var(--fl-type-card-body);
}

/* 6 — Stats */
.fl-gallery-stat-value,
.fl-doctor-stat-num,
.fl-success-stat-value {
  font-size: var(--fl-type-stat-value);
}

.fl-gallery-stat-label,
.fl-doctor-stat-label,
.fl-success-stat-label {
  font-size: var(--fl-type-stat-label);
}

/* 7 — UI chrome */
.fl-nav-link,
.fl-topbar-link,
.fl-topbar-phone-text {
  font-size: var(--fl-type-nav);
}

.fl-btn-primary,
.btn.fl-btn-primary,
.fl-nav-cta,
.fl-gallery-cta,
.fl-consult-btn,
.fl-doctor-cta-btn {
  font-size: var(--fl-type-button);
}

.fl-rating-score,
.fl-rating-sub,
.fl-footer-copy,
.fl-footer-legal a {
  font-size: small;
}

/* ─── Section background pattern ─────────────────────────────────────────────
   Subtle rose dot-grid applied to all white sections.
   Hero, nav, gallery, and footer are excluded — they keep their own styles.
──────────────────────────────────────────────────────────────────────────── */

/* Shared pattern token */
:root {
  --fl-dot-pattern:
    radial-gradient(circle, #f0a4a6 1px, transparent 1px);
  --fl-dot-size: 22px;

  --fl-diagonal-pattern:
    repeating-linear-gradient(45deg,
      rgba(240, 164, 166, 0.12) 0px,
      rgba(240, 164, 166, 0.12) 1px,
      transparent 1px,
      transparent 16px);

  --fl-dot-pattern-bg: #ffffff;
}

/* Apply to odd non-hero sections */
main>section:nth-of-type(odd):not(.fl-hero-banner):not(.fl-testimonials-section):not(.fl-gallery-section) {
  /* background-color: var(--fl-dot-pattern-bg); */
  /* background-image: var(--fl-diagonal-pattern); */
  /* background-size not needed for repeating-linear-gradient */
}

/* Apply to even sections */
main>section:nth-of-type(even) {
  /* background-color: #F5D6D8 !important; */
  /* background-image: var(--fl-dot-pattern); */
  /* background-size: var(--fl-dot-size) var(--fl-dot-size); */
}

/* Swap band for testimonials ↔ success */
main>section.fl-testimonials-section {
  /* background-color: #fdf2f5; */
  /* background-image: var(--fl-dot-pattern);
  background-size: var(--fl-dot-size) var(--fl-dot-size); */
}

main>section.fl-success-section {
  /* background-color: var(--fl-dot-pattern-bg);
  background-image: var(--fl-dot-pattern);
  background-size: var(--fl-dot-size) var(--fl-dot-size); */
}

/* Gallery — plain white, no pattern */
main>section.fl-gallery-section {
  background-color: #fbdeee !important;
  background-image: none !important;
}

main>section.fl-faq-section {
  /* background: var(--fl-section-band-odd); */
}

.fw-bold {
    font-weight: 500 !important;
}

/* Update inner-page hero overrides to match homepage dark theme */
.wfl-hero-override .fl-hero-banner-overlay {
  background: linear-gradient(90deg, rgba(31,23,36,0.92) 0%, rgba(31,23,36,0.75) 50%, rgba(31,23,36,0.4) 100%) !important;
}
.wfl-hero-override .fl-hero-banner-label,
.wfl-hero-override .fl-hero-banner-label i {
  color: #ffffff !important;
}
.wfl-hero-override .fl-hero-banner-title {
  color: #ffffff !important;
}
.wfl-hero-override .fl-hero-banner-subtitle {
  color: #ffffff !important;
}
.wfl-hero-override .fl-hero-banner-text {
  color: rgba(255, 255, 255, 0.9) !important;
}
.wfl-hero-override .fl-hero-banner-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}
.wfl-hero-override .fl-hero-banner-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}


@media (max-width: 575.98px) {
  .fl-footer-legal {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .fl-footer-legal-sep {
    display: inline-block !important;
  }
}


/* Floating Action Bar (Bottom Nav) */
.fl-floating-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 1040;
  padding: 0.5rem 0.25rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.fl-fab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #4a4a4a;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 4px;
  transition: all 0.2s ease;
  border-right: 1px solid #f0f0f0;
}

.fl-fab-item:last-child {
  border-right: none;
}

.fl-fab-item i {
  font-size: 1.1rem;
  color: var(--fl-primary);
}

.fl-fab-item:hover, .fl-fab-item:focus {
  color: var(--fl-primary-dark);
}

.fl-fab-item--highlight {
  color: #22c55e;
}

.fl-fab-item--highlight i {
  color: #22c55e;
}

.fl-fab-item--highlight:hover, .fl-fab-item--highlight:focus {
  color: #16a34a;
}
.fl-fab-item--highlight:hover i, .fl-fab-item--highlight:focus i {
  color: #16a34a;
}

body {
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  .fl-floating-action-bar {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .fl-fab-item {
    flex: 0 0 auto;
    border-right: none;
    flex-direction: row;
    font-size: 0.9rem;
  }
  .fl-fab-item i {
    font-size: 1.25rem;
  }
  body {
    padding-bottom: 0;
  }
}


@media (min-width: 768px) {
  .fl-floating-action-bar {
    display: none !important;
  }
  body {
    padding-bottom: 0 !important;
  }
}


/* Book Appointment Modal */
.fl-book-modal-content {
  border-radius: 20px;
  border: none;
  padding: 24px;
}
.fl-book-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #333;
  z-index: 10;
}
.fl-book-modal-body {
  padding: 10px;
}
.fl-book-modal-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #222;
  font-family: var(--fl-font-family);
}
.fl-book-modal-title .fl-text-primary {
  color: #e05699;
}
.fl-book-input {
  border-radius: 8px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.fl-book-input:focus {
  background-color: #ffffff;
  border-color: #e05699;
  box-shadow: 0 0 0 0.2rem rgba(224, 86, 153, 0.25);
}
.fl-book-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: #555;
}
.fl-book-checkbox-wrap .form-check-input {
  margin-top: 3px;
}
.fl-book-checkbox-wrap a {
  color: #333;
  text-decoration: underline;
}
.fl-book-submit-btn {
  background-color: #e05699;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.fl-book-submit-btn:hover {
  background-color: #c8476a;
  color: #fff;
}


.fl-doctor-cta-btn, 
.fl-doctor-cta-btn:hover, 
.fl-doctor-cta-btn-primary, 
.fl-doctor-cta-btn-outline {
  text-decoration: none !important;
}


.fl-guidance-btn-pink .fa-solid,
.fl-guidance-btn-outline .fa-solid,
.fl-guidance-btn-pink i.fa-solid,
.fl-guidance-btn-outline i.fa-solid {
  font-weight: 900 !important;
  font-family: "Font Awesome 6 Free" !important;
}

.fl-guidance-btn-pink .fa-regular,
.fl-guidance-btn-outline .fa-regular,
.fl-guidance-btn-pink i.fa-regular,
.fl-guidance-btn-outline i.fa-regular {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Free" !important;
}


/* Global FontAwesome Override to prevent parent inheritance from breaking icons */
.fa-solid, .fas, i.fa-solid, button i.fa-solid, a i.fa-solid {
  font-weight: 900 !important;
  font-family: "Font Awesome 6 Free" !important;
}

.fa-regular, .far, i.fa-regular, button i.fa-regular, a i.fa-regular {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Free" !important;
}

.fa-brands, .fab, i.fa-brands, button i.fa-brands, a i.fa-brands {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Brands" !important;
}
