/* ===== BOUTONS ===== */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(42, 42, 42, 0.2);
}

.btn-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid var(--text-faint);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.btn-text:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.btn-coral {
  padding: 18px 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-coral:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 131, 107, 0.3);
}

.btn-ghost {
  padding: 18px 44px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 131, 107, 0.3);
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  background: var(--warm-white);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
}

.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* ===== TREATMENT CARDS ===== */
.treatments {
  padding: 140px 0;
}

.treatments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.treatments-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 360px;
  line-height: 1.7;
  text-align: right;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treat-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.treat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}

.treat-card-img {
  height: 240px;
  overflow: hidden;
}

.treat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.treat-card:hover .treat-card-img img {
  transform: scale(1.06);
}

.treat-card-body {
  padding: 32px 28px;
}

.treat-card-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.treat-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.treat-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== TREATMENT ICONS (ANIMATED SVG) ===== */
.treat-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.treat-heading h3 {
  margin-bottom: 0;
}

.treat-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--teal, #0D8E93);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.treat-icon path,
.treat-icon line,
.treat-icon rect,
.treat-icon circle {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.2s ease 0.5s;
}

/* Trigger animations when parent card becomes visible */
.reveal.vis .treat-icon {
  opacity: 1;
  transform: scale(1);
}

.reveal.vis .treat-icon path,
.reveal.vis .treat-icon line,
.reveal.vis .treat-icon rect,
.reveal.vis .treat-icon circle {
  stroke-dashoffset: 0;
}

/* Hover pulse */
.treat-card:hover .treat-icon,
.treat-card-wide:hover .treat-icon {
  animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18) rotate(5deg); }
}

.treatments-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.treat-card-wide {
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.treat-card-wide:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}

.treat-card-wide .treat-card-img {
  height: 100%;
  min-height: 260px;
}

.treat-card-wide .treat-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.treat-card-wide:hover .treat-card-img img {
  transform: scale(1.06);
}

/* ===== AGE CARDS ===== */
.ages-trio {
  padding: 140px 0;
}

.ages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.age-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.age-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}

.age-card-img {
  height: 300px;
  overflow: hidden;
}

.age-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.age-card:hover .age-card-img img {
  transform: scale(1.06);
}

.age-card-body {
  padding: 32px 28px;
}

.age-card-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.age-card-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.age-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.age-card-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--coral);
  transition: all 0.3s;
}

.age-card-link:hover {
  color: var(--charcoal);
}

/* ===== TEAM BANNER ===== */
.team-banner {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.team-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42,42,42,0.7) 0%, rgba(42,42,42,0.1) 50%, rgba(42,42,42,0) 100%);
}

.team-banner-content {
  position: absolute;
  bottom: 60px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.team-banner-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -1px;
}

.team-banner-content h2 em { color: var(--coral-light); }

.team-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
  line-height: 1.7;
  text-align: right;
}

/* ===== SHOWCASE (Technology) ===== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.showcase-img {
  overflow: hidden;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.showcase:hover .showcase-img img { transform: scale(1.04); }

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  background: var(--charcoal);
  color: var(--white);
}

.showcase-content .section-tag { color: var(--coral-light); }

.showcase-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: var(--white);
}

.showcase-content h2 em { color: var(--coral-light); }

.showcase-list {
  list-style: none;
  margin-bottom: 40px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.showcase-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ===== TESTIMONIALS ===== */
/* ===== GOOGLE REVIEWS WIDGET ===== */
.google-reviews {
  padding: 120px 0;
  background: var(--warm-white);
}

.gr-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.gr-header-text {
  text-align: center;
}

.gr-header-text .section-tag {
  margin-bottom: 8px;
}

.gr-header-text .section-heading {
  font-size: 2rem;
}

/* Multi-platform badges */
.gr-platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gr-platform-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 200px;
}

.gr-platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.gr-platform-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.gr-platform-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gr-platform-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gr-platform-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.gr-platform-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gr-platform-count {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* Legacy single badge (unused, kept for compat) */
.gr-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.gr-google-icon {
  width: 40px;
  height: 40px;
}

.gr-rating-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.gr-rating-stars {
  display: flex;
  gap: 2px;
  margin: 4px 0;
}

.gr-star {
  color: #FBBC05;
  font-size: 1rem;
}

.gr-rating-count {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.gr-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gr-footer-links .gr-see-all {
  font-size: 0.88rem;
}

/* Carousel */
.gr-carousel {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.gr-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}

.gr-track::-webkit-scrollbar {
  display: none;
}

.gr-card {
  flex: 0 0 320px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

.gr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.gr-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.gr-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.gr-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.gr-g-small {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

.gr-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gr-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Arrows */
.gr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.gr-arrow:hover {
  background: var(--teal, #0D8E93);
  color: white;
  border-color: var(--teal, #0D8E93);
}

.gr-arrow-left { left: 0; }
.gr-arrow-right { right: 0; }

/* Footer */
.gr-footer {
  text-align: center;
  margin-top: 40px;
}

.gr-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: white;
  border: 2px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.3s;
}

.gr-see-all:hover {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,0.15);
}

/* ===== CLINICS ===== */
.clinics {
  padding: 140px 0;
}

.clinic-main {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-top: 72px;
  transition: all 0.4s;
}

.clinic-main:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.clinic-main-img {
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.clinic-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.clinic-main:hover .clinic-main-img img { transform: scale(1.04); }

.clinic-main-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinic-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.clinic-card-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.clinic-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.clinic-icon { color: var(--coral); flex-shrink: 0; }

.clinic-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}

.clinic-hour-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.clinic-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 4px 0;
}

.clinic-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--warm-white);
  transition: all 0.3s;
}

.clinic-secondary:hover {
  border-color: rgba(0,0,0,0.1);
}

.clinic-secondary-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
}

.clinic-secondary-info {
  flex: 1;
}

.clinic-secondary-info h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.clinic-secondary-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.clinic-secondary-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  white-space: nowrap;
  transition: color 0.3s;
}

.clinic-secondary-phone:hover {
  color: var(--charcoal);
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  padding: 64px 0;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
  align-items: start;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}

.faq-item.open {
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--coral); }

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
  opacity: 1;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  padding: 0 24px;
  margin: 0;
  visibility: hidden;
}

.faq-item.open .faq-answer p {
  visibility: visible;
}

.faq-item.open .faq-answer p {
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin: 0 24px;
  padding: 12px 0 0;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}
.feature-grid > * {
  flex: 1 1 280px;
  max-width: calc(33.333% - 16px);
  min-width: 0;
}

.feature-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  transition: all 0.4s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  border-color: transparent;
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}

.feature-card ul li {
  padding: 8px 12px;
  background: var(--warm-white);
  border-radius: 8px;
  border-left: 3px solid var(--coral);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.feature-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* ── Trust Bar (Affiliations) ── */
.trust-bar {
  padding: 40px 0 32px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
}

.trust-bar-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar-logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 28px 0 20px;
  }
  .trust-bar-logos {
    gap: 24px;
  }
  .trust-bar-logos img {
    height: 48px;
  }
}

/* ===== DOCTOR BIO ===== */
.doctor-bio {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.doctor-bio-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.doctor-bio-text .section-heading {
  margin-bottom: 20px;
}

.doctor-bio-text > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.doctor-bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.doctor-bio-credentials span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

.doctor-bio-photo {
  position: relative;
}

.doctor-bio-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.doctor-bio-photo::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid var(--coral);
  opacity: 0.15;
  z-index: 0;
}

@media (max-width: 768px) {
  .doctor-bio {
    padding: 60px 0;
  }
  .doctor-bio-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doctor-bio-photo {
    max-width: 320px;
    margin: 0 auto;
  }
}



/* ===== SEARCH ===== */
.search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.search-trigger:hover { color: var(--coral); }

.mob-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: none;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--coral);
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.mob-search-trigger:hover { background: rgba(0,0,0,0.02); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 39, 34, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: searchFadeIn 0.2s ease;
}

.search-modal {
  position: relative;
  width: 90%;
  max-width: 680px;
  max-height: 70vh;
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: searchSlideDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.search-modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
}

.search-input-icon {
  flex-shrink: 0;
  color: #aaa;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--charcoal);
  background: none;
}
.search-input::placeholder { color: #bbb; }

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #aaa;
  transition: color 0.3s;
  flex-shrink: 0;
}
.search-close-btn:hover { color: var(--charcoal); }

.search-results {
  overflow-y: auto;
  padding: 16px 24px 24px;
  flex: 1;
}

.search-hint {
  text-align: center;
  padding: 32px 0;
}
.search-hint p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 24px;
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.search-popular-label {
  font-size: 0.78rem;
  color: #999;
  font-weight: 500;
  margin-right: 4px;
}

.search-tag {
  padding: 6px 16px;
  border-radius: 100px;
  background: #f0fafa;
  color: #0D8E93;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.search-tag:hover { background: #0D8E93; color: white; }

.search-group { margin-bottom: 24px; }

.search-group-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.2s;
  margin-bottom: 4px;
  text-decoration: none;
  color: inherit;
}
.search-result:hover { background: #f0fafa; }

.search-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-result-title mark {
  background: rgba(13, 142, 147, 0.15);
  color: #0D8E93;
  padding: 0 2px;
  border-radius: 2px;
}

.search-result-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  margin-left: auto;
}

.search-result-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}
.search-result-desc mark {
  background: rgba(13, 142, 147, 0.10);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}

.search-no-results {
  text-align: center;
  padding: 40px 0;
}
.search-no-results p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 8px;
}
.search-suggestion { font-size: 0.85rem; color: #aaa; }

.search-loading {
  text-align: center;
  padding: 32px 0;
  color: #aaa;
  font-size: 0.9rem;
}

@keyframes searchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes searchSlideDown {
  from { opacity: 0; transform: translateY(-20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


/* ===== ORPHAN GRID ITEM FIX ===== */
/* Flexbox with justify-content: center handles orphan centering automatically */

/* Botox BA grid orphan fix */
.botox-ba-grid {
  justify-items: center;
}
.botox-ba-grid .botox-ba-card:last-child:nth-child(odd) {
  max-width: 400px;
  justify-self: center;
}
@media (min-width: 700px) {
  .botox-ba-grid .botox-ba-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
  }
}

/* Process steps: no orphan fix needed (sequential numbered steps) */


/* Split CTA Button */
.nav-cta-split {
  display: flex !important;
  gap: 0;
  margin-left: 8px;
}
.nav-cta-ref, .nav-cta-rdv {
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.nav-cta-ref {
  background: #fff;
  color: var(--coral, #0D8E93);
  border: 2px solid var(--coral, #0D8E93);
  border-radius: 8px 0 0 8px;
  border-right: 1px solid var(--coral, #0D8E93);
}
.nav-cta-rdv {
  background: var(--coral, #0D8E93);
  color: #fff;
  border: 2px solid var(--coral, #0D8E93);
  border-radius: 0 8px 8px 0;
  border-left: 1px solid rgba(255,255,255,0.3);
}
.nav-cta-ref:hover {
  background: rgba(13,142,147,0.08);
}
.nav-cta-rdv:hover {
  background: #0a7377;
}


/* Mobile table fix */
@media (max-width: 768px) {
  table { font-size: 0.85rem; }
  td, th { padding: 8px 10px !important; }
  .feature-grid { gap: 16px; }
  .feature-card img { height: 160px; object-fit: cover; }
  .content-section { padding: 48px 16px; }
  .process-steps { grid-template-columns: 1fr !important; }
}
/* table-mobile-fix */

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  gap: 0.75rem;
  align-items: center;
}
.mobile-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-cta-btn {
  flex: 1;
  text-align: center;
  background: #0D8E93;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* Animated underline on content links */
.content-text a:not(.btn-fill):not(.btn-ghost):not(.btn-coral) {
  text-decoration: none;
  background-image: linear-gradient(var(--coral), var(--coral));
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.content-text a:not(.btn-fill):not(.btn-ghost):not(.btn-coral):hover {
  background-size: 100% 2px;
}
