
/* Booking section refined layout */
#book-now {
  margin: 48px auto;
  max-width: 960px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
#book-now .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#book-now h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
#book-now p.desc {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}
.booking-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  padding: 14px;
  transform: scale(0.9);
  transform-origin: top;
}
.booking-fallback {
  text-align: center;
  margin-top: 8px;
  font-size: 0.9rem;
}
.booking-fallback a { color: #0ea5e9; text-decoration: none; border-bottom: 1px dotted #0ea5e9; }
.booking-fallback a:hover { text-decoration: underline; }
#book-now img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  #book-now { grid-template-columns: 1fr; gap: 20px; }
  .booking-card { transform: scale(1); }
}


/* Fade-in animation for the appointments photo */
.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 900ms ease-out;
}
.fade-in.is-visible {
  opacity: 1;
}
