/* ============================================
   BOOK APPOINTMENT PAGE STYLES
   Uses book- prefix — Bowland blue palette
   ============================================ */

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

/* ============================================
   HERO SECTION — Pattern B (Dark/Gradient)
   Purple gradient background, white text
   ============================================ */
.book-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 40px 0 80px;
  overflow: hidden;
  /* Pull hero up under fixed nav to eliminate white gap */
  margin-top: -112px;
  padding-top: calc(112px + 40px);
}

/* Adjust for desktop nav heights */
@media (min-width: 1024px) and (max-width: 1279px) {
  .book-hero-section {
    margin-top: -188px;
    padding-top: calc(188px + 40px);
  }
}

@media (min-width: 1280px) {
  .book-hero-section {
    margin-top: -200px;
    padding-top: calc(200px + 40px);
  }
}

.book-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary), var(--brand-dark));
  z-index: 0;
  pointer-events: none;
}

.book-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

.book-hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.book-hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  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 on dark hero */
.book-hero-section .section-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-hero-section .section-badge-text {
  color: var(--white);
}

.book-hero-section .pulse-dot span:first-child,
.book-hero-section .pulse-dot span:last-child {
  background: var(--brand-secondary);
}

/* Title — white on dark gradient */
.book-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.book-hero-title .gradient-text {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

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

/* Description */
.book-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  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;
  }
}

.book-hero-actions .primary-cta {
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-hero-actions .primary-cta:hover {
  border-color: #ffffff;
  background: var(--white);
  color: var(--brand-primary);
}

.book-hero-actions .secondary-cta {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.book-hero-actions .secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
}

/* Trust Pills — glassmorphic on dark */
.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.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.book-hero-trust-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.book-hero-trust-pill i {
  color: var(--white);
  font-size: 1rem;
}

.book-hero-trust-pill span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

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

.book-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 600px;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 6px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.book-hero-image-inner {
  position: absolute;
  inset: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  z-index: 0;
}

.book-hero-image-card:hover {
  transform: rotate(0deg);
}

.book-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

/* Floating Testimonial */
.book-hero-testimonial-card {
  position: absolute;
  bottom: 3rem;
  left: -4rem;
  width: 340px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.5s ease;
  z-index: 20;
}

.book-hero-image-card:hover .book-hero-testimonial-card {
  transform: translateY(-8px);
}

@media (max-width: 1023px) {
  .book-hero-testimonial-card {
    left: -2rem;
    bottom: 2rem;
  }
}

@media (max-width: 639px) {
  .book-hero-image-card {
    height: 450px;
    max-width: 360px;
  }

  .book-hero-testimonial-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: 90%;
    max-width: 340px;
  }

  .book-hero-image-card:hover .book-hero-testimonial-card {
    transform: translateX(-50%) translateY(-5px);
  }
}

.book-hero-quote-icon {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(63, 115, 174, 0.4);
}

.book-hero-quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.book-hero-quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.book-hero-name {
  font-weight: 700;
  color: #111827;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.125rem;
}

.book-hero-result-badge {
  background: var(--brand-primary);
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(63, 115, 174, 0.3);
}

/* ============================================
   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(63, 115, 174, 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: #111827;
  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(63, 115, 174, 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(63, 115, 174, 0.2);
  border-color: rgba(63, 115, 174, 0.3);
}

.book-process-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--brand-primary), 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(63, 115, 174, 0.3);
}

.book-process-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgba(63, 115, 174, 0.1), rgba(42, 80, 122, 0.05));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--brand-primary);
  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: #111827;
  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(63, 115, 174, 0.2);
  font-size: 1.5rem;
  z-index: 0;
}

/* ============================================
   STATS BAR
   ============================================ */
.book-stats-section {
  position: relative;
  background: var(--brand-primary);
  padding: 1.5rem 0;
  overflow: hidden;
}

.book-stats-shimmer {
  display: none;
}

.book-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .book-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.book-stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .book-stat-item {
    justify-content: flex-start;
  }
}

.book-stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.book-stat-item:hover .book-stat-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.book-stat-content {
  display: flex;
  flex-direction: column;
}

.book-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.book-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   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: #111827;
  margin-bottom: 1rem;
  margin-top: 0;
}

.book-services-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-dark));
  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);
  }
}

/* Featured services cards share .book-service-card base (see Additional Services).
   The .featured modifier adds no extra style — just used for the badge. */
.book-services-section .book-service-card {
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(63, 115, 174, 0.12);
}

/* "Most Popular" badge — plain text label (matches reference) */
.book-service-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

/* Service icon — simple inline icon (matches reference) */
.book-service-icon-wrap {
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.book-service-icon-wrap.teal {
  color: var(--brand-accent);
}

.book-service-icon-wrap.purple {
  color: var(--brand-purple);
}

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

.book-service-card:hover .book-service-title {
  color: var(--brand-primary);
}

.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: var(--brand-primary);
  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%;
}

/* ============================================
   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(163, 158, 227, 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(163, 158, 227, 0.15);
  border-color: rgba(163, 158, 227, 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(163, 158, 227, 0.15), rgba(109, 104, 181, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.book-service-price-badge {
  background: rgba(163, 158, 227, 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: 6rem 0;
  background: rgba(63, 115, 174, 0.05);
  position: relative;
  overflow: hidden;
}

.book-amelia-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(63, 115, 174, 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(42, 80, 122, 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: #111827;
  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: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 25px 60px rgba(63, 115, 174, 0.15);
  border: 1px solid rgba(63, 115, 174, 0.1);
  padding: 3rem;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .book-amelia-container {
    padding: 1.25rem 0;
    border-radius: 1.25rem;
  }

  .booking-calendar-wrapper {
    border-radius: 1rem;
    overflow: hidden;
  }
}

.book-amelia-placeholder {
  text-align: center;
  color: rgba(63, 115, 174, 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-primary);
}

.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-primary);
  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: #111827;
  margin-bottom: 1rem;
}

.book-testimonials-divider {
  width: 80px;
  height: 4px;
  background: var(--brand-primary);
  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(63, 115, 174, 0.08);
  transition: all 0.3s ease;
}

.book-testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(63, 115, 174, 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(63, 115, 174, 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: #111827;
  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(63, 115, 174, 0.03), var(--white));
}

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

.book-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  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(63, 115, 174, 0.4);
  box-shadow: 0 10px 30px rgba(63, 115, 174, 0.1);
}

.book-faq-item.active {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 30px rgba(63, 115, 174, 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;
  font-family: var(--font-primary);
}

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

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

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

.book-faq-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(63, 115, 174, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.book-faq-item.active .book-faq-icon {
  background: var(--brand-primary);
  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 SECTION
   ============================================ */
.book-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary), var(--brand-dark));
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.book-cta-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.book-cta-bg-blobs {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.book-cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.book-cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.book-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.book-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.book-cta-phone {
  background: var(--white);
  color: var(--brand-dark);
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.book-cta-phone:hover {
  transform: scale(1.05);
}

.book-cta-hours {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  color: var(--white);
  font-weight: 600;
}

.book-cta-hours i {
  font-size: 1.125rem;
}
