/* ============================================
   BOOK APPOINTMENT PAGE STYLES
   Uses book- prefix — warm palette applied
   ============================================ */

/* Shimmer animation */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   HERO SECTION — Warm Cream + Terracotta Palette
   Matches homepage hero design language
   ============================================ */
.book-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  overflow: hidden;
  background: #FDF6F3;
}

/* Background — warm cream (repurposed from purple gradient) */
.book-hero-gradient {
  position: absolute;
  inset: 0;
  background: #FDF6F3;
  z-index: 0;
}

/* Hide dot pattern — homepage hero doesn't use it */
.book-hero-dots {
  display: none;
}

/* Decorative blobs — terracotta tints with floating animation */
.book-hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: rgba(196, 122, 101, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.book-hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(212, 144, 124, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Grid layout */
.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .book-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Content */
.book-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .book-hero-content {
    text-align: left;
  }
}

/* Badge — premium glassmorphic with warm border (matches homepage hero-badge) */
.book-hero-section .section-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 8px 30px rgba(196, 122, 101, 0.10),
              0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 0.75rem 1.75rem;
}

.book-hero-section .section-badge-text {
  color: #2D1B4E;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.book-hero-section .pulse-dot span:first-child {
  background: #6B4FA0;
}

.book-hero-section .pulse-dot span:last-child {
  background: #6B4FA0;
}

/* Title — dark purple text */
.book-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Let gradient-text show the purple gradient on cream background */
.book-hero-title .gradient-text {
  background: linear-gradient(to right, #6B4FA0, #8B6BBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .book-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .book-hero-title {
    font-size: 4rem;
  }
}

/* Description — dark text */
.book-hero-description {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 1023px) {
  .book-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .book-hero-description {
    font-size: 1.25rem;
  }
}

/* CTA buttons */
.book-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .book-hero-actions {
    flex-direction: row;
  }
}

@media (max-width: 1023px) {
  .book-hero-actions {
    justify-content: center;
  }
}

/* Primary CTA — terracotta gradient */
.book-hero-actions .primary-cta {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35),
              0 4px 10px -2px rgba(196, 122, 101, 0.15);
}

.book-hero-actions .primary-cta:hover {
  background: linear-gradient(135deg, #D4907C, #C47A65);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 20px 35px -5px rgba(196, 122, 101, 0.4),
              0 8px 15px -3px rgba(196, 122, 101, 0.2);
  transform: scale(1.05);
}

/* Secondary CTA — deep purple with warm border */
.book-hero-actions .secondary-cta {
  color: #6B4FA0;
  border: 2px solid rgba(196, 122, 101, 0.25);
  background: transparent;
}

.book-hero-actions .secondary-cta:hover {
  border-color: #C47A65;
  color: #C47A65;
  background: transparent;
}

/* Trust Pills — warm glassmorphic with sage green icons */
.book-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .book-hero-trust-row {
    justify-content: flex-start;
  }
}

.book-hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 4px 15px rgba(196, 122, 101, 0.08);
  transition: all 0.3s ease;
}

.book-hero-trust-pill:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 25px rgba(196, 122, 101, 0.15);
  transform: translateY(-2px);
}

.book-hero-trust-pill i {
  color: #7A9E7E;
  font-size: 1rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.book-hero-trust-pill:hover i {
  opacity: 1;
}

.book-hero-trust-pill span {
  color: #2D1B4E;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Right Visual */
.book-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* ---- Quick Book Card ---- */
.book-hero-quick-book {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 2rem;
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 30px 80px -10px rgba(196, 122, 101, 0.22),
              0 8px 20px -4px rgba(196, 122, 101, 0.08);
  padding: 2.5rem;
  transform: rotate(-1deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 10;
}

.book-hero-quick-book:hover {
  transform: rotate(0deg);
  box-shadow: 0 35px 90px -10px rgba(196, 122, 101, 0.28),
              0 12px 25px -4px rgba(196, 122, 101, 0.12);
}

/* Terracotta accent bar at top */
.book-hero-quick-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, #C47A65, #D4907C, #C47A65);
  border-radius: 0 0 4px 4px;
}

/* ---- Header ---- */
.book-qb-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.book-qb-icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(196, 122, 101, 0.35);
}

.book-qb-heading {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: #2D1B4E;
  line-height: 1.2;
  margin: 0;
}

.book-qb-available {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.book-qb-available .pulse-dot span:first-child {
  background: #7A9E7E;
}

.book-qb-available .pulse-dot span:last-child {
  background: #7A9E7E;
}

.book-qb-available > span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7A9E7E;
}

/* ---- Divider ---- */
.book-qb-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 122, 101, 0.2), transparent);
  margin-bottom: 1.5rem;
}

/* ---- Services Label ---- */
.book-qb-services-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2D1B4E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ---- Service Grid ---- */
.book-qb-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.book-qb-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(196, 122, 101, 0.12);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: var(--font-primary);
}

.book-qb-service:hover {
  border-color: #C47A65;
  background: rgba(196, 122, 101, 0.04);
  box-shadow: 0 6px 20px rgba(196, 122, 101, 0.15);
  transform: translateY(-2px);
}

.book-qb-service-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.12), rgba(196, 122, 101, 0.05));
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B4FA0;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.book-qb-service:hover .book-qb-service-icon {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
}

.book-qb-service > span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D1B4E;
  line-height: 1.3;
}

/* ---- Main CTA ---- */
.book-qb-cta {
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.4),
              0 4px 10px -2px rgba(196, 122, 101, 0.15);
  margin-bottom: 1.5rem;
}

.book-qb-cta:hover {
  background: linear-gradient(135deg, #D4907C, #C47A65);
  box-shadow: 0 15px 35px -5px rgba(196, 122, 101, 0.5),
              0 8px 15px -3px rgba(196, 122, 101, 0.2);
}

/* ---- Footer ---- */
.book-qb-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.book-qb-footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.book-qb-footer-item i {
  color: #7A9E7E;
  font-size: 0.875rem;
}

.book-qb-footer-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a5568;
}

/* ---- Floating Trust Badge ---- */
.book-qb-floating-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 12px 35px rgba(196, 122, 101, 0.18);
  z-index: 20;
  transition: transform 0.4s ease;
  animation: float 5s ease-in-out infinite;
}

.book-qb-floating-badge:hover {
  transform: translateY(-3px);
}

.book-qb-floating-badge i {
  color: #7A9E7E;
  font-size: 1.125rem;
}

.book-qb-floating-badge span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2D1B4E;
}

/* ---- Quick Book Responsive ---- */
@media (max-width: 1023px) {
  .book-hero-quick-book {
    transform: rotate(0deg);
    max-width: 500px;
  }

  .book-qb-floating-badge {
    display: none;
  }
}

@media (max-width: 639px) {
  .book-hero-quick-book {
    padding: 1.75rem;
  }

  .book-qb-service-grid {
    grid-template-columns: 1fr;
  }
}

/* Star row (shared across hero testimonial and testimonial cards) */
.star-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-row i {
  color: #f59e0b;
  font-size: 0.875rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.book-process-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.book-process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 122, 101, 0.3), transparent);
  z-index: 0;
}

.book-process-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.book-process-title {
  font-size: 2rem;
  font-weight: 900;
  color: #2D1B4E;
  background: var(--white);
  display: inline-block;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .book-process-title {
    font-size: 2.5rem;
  }
}

.book-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .book-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-process-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(196, 122, 101, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.book-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.2);
  border-color: rgba(196, 122, 101, 0.3);
}

.book-process-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, var(--brand-purple), var(--brand-dark));
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.3);
}

.book-process-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.1), rgba(196, 122, 101, 0.05));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--brand-purple);
  font-size: 2rem;
  transition: transform 0.4s ease;
}

.book-process-card:hover .book-process-icon {
  transform: scale(1.1);
}

.book-process-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.book-process-card-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.book-process-arrow {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  color: rgba(196, 122, 101, 0.2);
  font-size: 1.5rem;
  z-index: 0;
}

/* ============================================
   SOCIAL PROOF SECTION - GOOGLE RATING
   ============================================ */
.book-social-proof-section {
  background: #f8f6fb;
  padding: 60px 0;
}

.book-social-proof-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .book-social-proof-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}

/* Override homepage rating badge positioning for inline use */
.book-social-proof-wrapper .rating-badge {
  position: static;
  flex-shrink: 0;
  min-width: 260px;
}

.book-social-proof-content {
  flex: 1;
}

@media (max-width: 767px) {
  .book-social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .book-social-proof-wrapper .rating-badge {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}

.book-social-proof-eyebrow {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--brand-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.book-social-proof-headline {
  font-size: 2.5rem;
  font-weight: 900;
  color: #374151;
  line-height: 1.15;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (max-width: 767px) {
  .book-social-proof-headline {
    font-size: 1.75rem;
  }
}

.book-social-proof-subtext {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .book-social-proof-subtext {
    font-size: 1rem;
  }

  .book-social-proof-section {
    padding: 40px 0;
  }
}

/* ============================================
   PRIORITY SERVICES
   ============================================ */
.book-services-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.book-services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.book-services-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
  margin-top: 0;
}

.book-services-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #C47A65, #D4907C);
  margin: 0 auto;
}

.book-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .book-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-service-card-featured {
  background: var(--white);
  border: 2px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.book-service-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(196, 122, 101, 0.2);
  border-color: rgba(196, 122, 101, 0.3);
}

.book-service-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.book-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.book-service-card-featured:hover .book-service-image {
  transform: scale(1.1);
}

.book-service-badge-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.3);
}

/* Inline POPULAR badge — used when no image is present */
.book-service-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.25);
  margin-bottom: 1rem;
}

.book-service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.book-service-icon-floating {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-top: -3.75rem;
  margin-bottom: 1.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(196, 122, 101, 0.3);
  position: relative;
  z-index: 10;
}

/* When card has no image, don't pull the icon up into clipped area */
.book-service-content:first-child .book-service-icon-floating {
  margin-top: 0;
}

.book-service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D1B4E;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.book-service-card-featured:hover .book-service-title {
  color: #C47A65;
}

.book-service-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.book-service-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.book-service-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #C47A65;
  line-height: 1;
}

.book-service-price-label {
  font-size: 0.875rem;
  color: var(--text-slate);
}

.book-service-refund-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: -1.5rem;
}

.book-service-btn {
  width: 100%;
  background: linear-gradient(135deg, #C47A65, #B8694F);
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35),
              0 4px 10px -2px rgba(196, 122, 101, 0.15);
}

.book-service-btn:hover {
  background: linear-gradient(135deg, #D4907C, #C47A65);
  box-shadow: 0 15px 35px -5px rgba(196, 122, 101, 0.4),
              0 8px 15px -3px rgba(196, 122, 101, 0.2);
}

/* ============================================
   ADDITIONAL SERVICES
   ============================================ */
.book-services-additional-section {
  padding: 6rem 0;
  background: var(--white);
}

.book-services-additional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .book-services-additional-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-service-card {
  background: var(--white);
  border: 2px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(196, 122, 101, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.book-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.15);
  border-color: rgba(196, 122, 101, 0.3);
}

.book-service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.book-service-icon-small {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.15), rgba(196, 122, 101, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  font-size: 1.5rem;
}

.book-service-price-badge {
  background: rgba(196, 122, 101, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.book-service-btn-small {
  width: 100%;
  margin-top: auto;
}

/* ============================================
   AMELIA SECTION
   ============================================ */
.book-amelia-section {
  padding: 4rem 0;
  background: rgba(196, 122, 101, 0.05);
  position: relative;
  overflow: hidden;
}

.book-amelia-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(196, 122, 101, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.book-amelia-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(196, 122, 101, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.book-amelia-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.book-amelia-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .book-amelia-title {
    font-size: 3rem;
  }
}

.book-amelia-description {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.book-amelia-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.12);
  border: 1px solid rgba(196, 122, 101, 0.1);
  padding: 1.5rem;
  position: relative;
  z-index: 10;
}

.book-amelia-placeholder {
  text-align: center;
  color: rgba(196, 122, 101, 0.5);
}

.book-amelia-placeholder i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.book-amelia-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-purple);
}

.book-amelia-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--text-gray);
  position: relative;
  z-index: 10;
}

.book-amelia-footer a {
  color: var(--brand-purple);
  font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.book-testimonials-section {
  padding: 6rem 0;
  background: var(--white);
}

.book-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.book-testimonials-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.book-testimonials-divider {
  width: 80px;
  height: 4px;
  background: var(--brand-purple);
  margin: 0 auto;
  border-radius: 9999px;
}

.book-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .book-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-testimonial-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(196, 122, 101, 0.08);
  transition: all 0.3s ease;
}

.book-testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.15);
  transform: translateY(-4px);
}

.book-testimonial-quote {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.book-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}

.book-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.2);
}

.book-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-testimonial-info {
  display: flex;
  flex-direction: column;
}

.book-testimonial-name {
  font-weight: 700;
  color: #2D1B4E;
  font-size: 0.9375rem;
}

.book-testimonial-service {
  font-size: 0.75rem;
  color: var(--text-slate);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.book-faq-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--white), rgba(196, 122, 101, 0.03), var(--white));
}

.book-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.book-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.book-faq-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.book-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.book-faq-item {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.book-faq-item:hover {
  border-color: rgba(196, 122, 101, 0.4);
  box-shadow: 0 10px 30px rgba(196, 122, 101, 0.1);
}

.book-faq-item.active {
  border-color: var(--brand-purple);
  box-shadow: 0 10px 30px rgba(196, 122, 101, 0.15);
}

.book-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.book-faq-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.book-faq-number {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--terracotta, #C47A65), var(--terracotta-dark, #B8694F));
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-faq-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D1B4E;
}

.book-faq-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(196, 122, 101, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  transition: all 0.3s ease;
}

.book-faq-item.active .book-faq-icon {
  background: var(--brand-purple);
  color: var(--white);
  transform: rotate(45deg);
}

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

.book-faq-item.active .book-faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.75rem 5rem;
}

.book-faq-answer p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   FINAL CTA — Premium pattern (matches Hair Loss)
   Purple gradient + terracotta primary CTA + trust checks
   ============================================ */
.book-cta-section {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  padding: 5rem 0;
  text-align: center;
}

.book-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.book-cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.book-cta-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.book-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.book-cta-section .primary-cta {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.book-cta-section .primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.book-cta-section .secondary-cta {
  color: #2D1B4E;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.book-cta-section .secondary-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.book-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.book-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.book-cta-trust-item i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 640px) {
  .book-cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .book-cta-title {
    font-size: 2.6rem;
  }
}

/* ============================================
   AMELIA BOOKING PLUGIN — THEME OVERRIDE FIXES
   The theme's global reset (* { margin: 0; padding: 0 })
   and display overrides break Amelia's internal calendar
   layout. These scoped rules restore proper rendering.
   ============================================ */

/* ---- Reset box model for all Amelia elements ---- */
.book-amelia-container *,
.book-amelia-container *::before,
.book-amelia-container *::after {
  box-sizing: border-box;
}

/* ---- Restore default spacing inside Amelia widget ---- */
.book-amelia-container .amelia-app-booking,
.book-amelia-container [id^="amelia-step-booking"],
.book-amelia-container [id^="amelia-catalog-booking"],
.book-amelia-container [id^="amelia-booking"],
.book-amelia-container .amelia-v2-booking {
  font-family: var(--font-primary);
  line-height: 1.5;
  text-align: left;
}

/* ---- Headings inside Amelia should use its own styles ---- */
.book-amelia-container .amelia-app-booking h1,
.book-amelia-container .amelia-app-booking h2,
.book-amelia-container .amelia-app-booking h3,
.book-amelia-container .amelia-app-booking h4,
.book-amelia-container .amelia-app-booking h5,
.book-amelia-container .amelia-app-booking h6,
.book-amelia-container [id^="amelia-step-booking"] h1,
.book-amelia-container [id^="amelia-step-booking"] h2,
.book-amelia-container [id^="amelia-step-booking"] h3,
.book-amelia-container [id^="amelia-step-booking"] h4,
.book-amelia-container [id^="amelia-step-booking"] h5,
.book-amelia-container [id^="amelia-step-booking"] h6 {
  font-family: inherit;
  line-height: 1.4;
  margin: 0;
}

/* ---- Restore img display for Amelia icons/images ---- */
/* Note: height:auto removed — it conflicts with explicit sizing on V2 step booking images */
.book-amelia-container .amelia-app-booking img,
.book-amelia-container [id^="amelia-catalog-booking"] img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---- Amelia catalog service card images — fill the card ---- */
/* Only target catalog booking forms, not step booking forms */
.book-amelia-container [id^="amelia-catalog-booking"] img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px 8px 0 0 !important;
}

/* ---- Restore list styles inside Amelia ---- */
.book-amelia-container .amelia-app-booking ul,
.book-amelia-container [id^="amelia-step-booking"] ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Link styling reset inside Amelia ---- */
.book-amelia-container .amelia-app-booking a,
.book-amelia-container [id^="amelia-step-booking"] a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   AMELIA CALENDAR GRID FIX
   The calendar renders as a table/grid that needs
   proper cell sizing. Theme resets strip the spacing.
   ============================================ */

/* Target Amelia's calendar table elements */
.book-amelia-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.book-amelia-container table th,
.book-amelia-container table td {
  padding: 8px 4px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.4;
}

.book-amelia-container table th {
  font-weight: 600;
  color: #6b7280;
  font-size: 13px;
  padding-bottom: 12px;
}

/* ---- Element UI date picker overrides (Amelia uses Element UI) ---- */
.book-amelia-container .el-date-table,
.book-amelia-container .el-calendar-table {
  width: 100% !important;
  table-layout: fixed !important;
}

.book-amelia-container .el-date-table td,
.book-amelia-container .el-calendar-table td {
  padding: 4px !important;
  text-align: center !important;
  width: 14.285% !important;
  height: auto !important;
}

.book-amelia-container .el-date-table th,
.book-amelia-container .el-calendar-table th {
  padding: 8px 4px !important;
  text-align: center !important;
  min-width: 0 !important;
}

.book-amelia-container .el-date-table td .el-date-table-cell,
.book-amelia-container .el-date-table td div {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ---- Amelia V2 calendar day cells ---- */
.book-amelia-container .am-calendar-picker__body table {
  width: 100% !important;
  table-layout: fixed !important;
}

.book-amelia-container .am-calendar-picker__body td,
.book-amelia-container .am-calendar-picker__body th {
  padding: 4px !important;
  text-align: center !important;
}

/* ---- Amelia date picker wrapper (Vue-based) ---- */
.book-amelia-container .am-date-picker,
.book-amelia-container .am-calendar-picker {
  width: 100%;
}

.book-amelia-container .am-date-picker table,
.book-amelia-container .am-calendar-picker table {
  width: 100% !important;
  table-layout: fixed !important;
}

/* ---- Day header row (Mo Tu We Th Fr Sa Su) ---- */
.book-amelia-container .am-calendar-picker__header,
.book-amelia-container .am-date-picker__header {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

/* ---- Individual day cells in Amelia's calendar ---- */
.book-amelia-container .am-calendar-picker__day,
.book-amelia-container .am-date-picker__day {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  margin: 2px auto !important;
  border-radius: 50% !important;
  cursor: pointer;
  font-size: 14px !important;
}

/* ---- Amelia V2 step booking specific calendar fixes ---- */
.book-amelia-container .amelia-v2-booking .am-fs__calendar,
.book-amelia-container [id^="amelia-step-booking"] .am-fs__calendar {
  width: 100%;
}

.book-amelia-container .am-fs__calendar .am-adp__calendar,
.book-amelia-container .am-fs__calendar .am-adp {
  width: 100%;
}

/* Calendar weekday header row */
.book-amelia-container .am-adp__week-days,
.book-amelia-container .am-adp__weekdays {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  text-align: center !important;
  gap: 0 !important;
  margin-bottom: 4px !important;
}

.book-amelia-container .am-adp__week-days span,
.book-amelia-container .am-adp__weekdays span,
.book-amelia-container .am-adp__week-days div,
.book-amelia-container .am-adp__weekdays div {
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  padding: 4px 0 !important;
}

/* Calendar date grid rows */
.book-amelia-container .am-adp__days,
.book-amelia-container .am-adp__body {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 0 !important;
}

.book-amelia-container .am-adp__days .am-adp__day,
.book-amelia-container .am-adp__body .am-adp__day,
.book-amelia-container .am-adp__day-cell,
.book-amelia-container .am-adp__days > div,
.book-amelia-container .am-adp__body > div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1 !important;
  padding: 2px !important;
  text-align: center !important;
  font-size: 14px !important;
  cursor: pointer;
}

.book-amelia-container .am-adp__day-cell button,
.book-amelia-container .am-adp__day button,
.book-amelia-container .am-adp__days button,
.book-amelia-container .am-adp__body button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

/* Selected / active day */
.book-amelia-container .am-adp__day--selected button,
.book-amelia-container .am-adp__day.selected button,
.book-amelia-container .am-adp__day.am-adp__day--selected button {
  background: var(--brand-purple, #a39ee3) !important;
  color: #fff !important;
}

/* Today indicator */
.book-amelia-container .am-adp__day--today button,
.book-amelia-container .am-adp__day.today button {
  border: 2px solid var(--brand-purple, #a39ee3) !important;
}

/* Disabled/unavailable days */
.book-amelia-container .am-adp__day--disabled,
.book-amelia-container .am-adp__day.disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ---- Amelia input fields inside booking form ---- */
.book-amelia-container input[type="text"],
.book-amelia-container input[type="email"],
.book-amelia-container input[type="tel"],
.book-amelia-container input[type="number"],
.book-amelia-container select,
.book-amelia-container textarea {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.5;
}

/* ---- Amelia buttons should not inherit theme CTA styles ---- */
.book-amelia-container .amelia-app-booking button:not(.cta-button),
.book-amelia-container [id^="amelia-step-booking"] button:not(.cta-button) {
  font-family: var(--font-primary);
}

/* ---- Ensure Amelia container is centered when empty (placeholder) ---- */
.book-amelia-container:empty,
.book-amelia-container:has(.book-amelia-placeholder) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   AMELIA CALENDAR — RESPONSIVE
   ============================================ */
@media (max-width: 639px) {
  .book-amelia-container {
    padding: 0.75rem;
    border-radius: 1rem;
  }

  .book-amelia-container .am-adp__day-cell button,
  .book-amelia-container .am-adp__day button,
  .book-amelia-container .am-adp__days button,
  .book-amelia-container .am-adp__body button {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }

  .book-amelia-container .am-adp__week-days span,
  .book-amelia-container .am-adp__weekdays span,
  .book-amelia-container .am-adp__week-days div,
  .book-amelia-container .am-adp__weekdays div {
    font-size: 11px !important;
  }

  .book-amelia-container table th {
    font-size: 11px;
    padding: 4px 2px;
  }

  .book-amelia-container table td {
    padding: 4px 2px;
    font-size: 13px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .book-amelia-container {
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .book-amelia-container {
    padding: 1.5rem;
  }
}

/* ============================================
   AMELIA STEP BOOKING (layout=2) — SERVICE SELECTION
   Uses confirmed Amelia V2 selectors:
   .amelia-v2-booking #amelia-container
   .am-fs__wrapper, .am-fs__main, .am-fs-sb__step
   ============================================ */

/* ---- Amelia wrapper — fill container width ---- */
.book-amelia-container .amelia-v2-booking {
  width: 100% !important;
  max-width: 100% !important;
}

.book-amelia-container .amelia-v2-booking #amelia-container {
  width: 100% !important;
  max-width: 100% !important;
  box-shadow: none !important;
  border: none !important;
}

/* ---- Main content area — fill available space ---- */
.book-amelia-container .amelia-v2-booking .am-fs__main {
  width: 100% !important;
  max-width: 100% !important;
}

/* ---- Hide "Learn More" links via text content match ---- */
.book-amelia-container .amelia-v2-booking a[href*="learn"],
.book-amelia-container .amelia-v2-booking a[href*="more"] {
  display: none !important;
}

/* Broader fallback: hide any element whose text says "Learn More" */
.book-amelia-container .amelia-v2-booking [class*="learn"],
.book-amelia-container .amelia-v2-booking [class*="Learn"] {
  display: none !important;
}

/* ---- Ensure all inputs/selects respect container width ---- */
.book-amelia-container .amelia-v2-booking input,
.book-amelia-container .amelia-v2-booking select,
.book-amelia-container .amelia-v2-booking .el-input,
.book-amelia-container .amelia-v2-booking .el-select {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ---- Service card circular images ---- */
/* Amelia wraps each employee/service photo in a container div.
   Both the wrapper AND the img must be identically sized with
   overflow:hidden on the wrapper so object-fit:cover fills the circle. */
.book-amelia-container .amelia-v2-booking img {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  flex-shrink: 0 !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ---- Image wrapper — aggressively match img size ---- */
/* Target every possible wrapper Amelia might use around the <img> */
.book-amelia-container .amelia-v2-booking img + *,
.book-amelia-container .amelia-v2-booking * > img:only-child,
.book-amelia-container .amelia-v2-booking [class*="image"],
.book-amelia-container .amelia-v2-booking [class*="Image"],
.book-amelia-container .amelia-v2-booking [class*="photo"],
.book-amelia-container .amelia-v2-booking [class*="avatar"],
.book-amelia-container .amelia-v2-booking [class*="thumb"],
.book-amelia-container .am-fs__service-card__image,
.book-amelia-container .am-fs-sb__service__image,
.book-amelia-container .am-fs__service__image {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Also target the direct parent of any img inside Amelia V2 */
.book-amelia-container .amelia-v2-booking div:has(> img) {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* ---- Mobile: fix sidebar, container, and white space ---- */
@media (max-width: 639px) {
  /* Remove white space above form */
  .book-amelia-container {
    padding: 0 !important;
    border-radius: 1rem;
    overflow: hidden;
  }

  /* Form wrapper fills mobile screen */
  .book-amelia-container .amelia-v2-booking,
  .book-amelia-container .amelia-v2-booking #amelia-container {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  /* Sidebar steps — collapse to compact horizontal row */
  .book-amelia-container .amelia-v2-booking .am-fs-sb__step {
    font-size: 12px !important;
    padding: 8px 10px !important;
    white-space: nowrap !important;
  }

  /* Main content area — no overflow */
  .book-amelia-container .amelia-v2-booking .am-fs__main {
    overflow-x: hidden !important;
    padding: 12px !important;
  }

  /* Smaller circular images on mobile */
  .book-amelia-container .amelia-v2-booking img,
  .book-amelia-container .amelia-v2-booking div:has(> img),
  .book-amelia-container .amelia-v2-booking [class*="image"],
  .book-amelia-container .amelia-v2-booking [class*="Image"],
  .book-amelia-container .amelia-v2-booking [class*="photo"],
  .book-amelia-container .amelia-v2-booking [class*="avatar"],
  .book-amelia-container .amelia-v2-booking [class*="thumb"] {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
  }
}

/* ---- Tablet ---- */
@media (min-width: 640px) and (max-width: 1023px) {
  .book-amelia-container {
    padding: 0.75rem;
  }

  .book-amelia-container .amelia-v2-booking img,
  .book-amelia-container .amelia-v2-booking div:has(> img),
  .book-amelia-container .amelia-v2-booking [class*="image"],
  .book-amelia-container .amelia-v2-booking [class*="Image"],
  .book-amelia-container .amelia-v2-booking [class*="photo"],
  .book-amelia-container .amelia-v2-booking [class*="avatar"],
  .book-amelia-container .amelia-v2-booking [class*="thumb"] {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }
}

/* ---- Desktop ---- */
@media (min-width: 1024px) {
  .book-amelia-container .amelia-v2-booking img,
  .book-amelia-container .amelia-v2-booking div:has(> img),
  .book-amelia-container .amelia-v2-booking [class*="image"],
  .book-amelia-container .amelia-v2-booking [class*="Image"],
  .book-amelia-container .amelia-v2-booking [class*="photo"],
  .book-amelia-container .amelia-v2-booking [class*="avatar"],
  .book-amelia-container .amelia-v2-booking [class*="thumb"] {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
  }
}

