/* Booking Page Styles */

/* Shared Label */
.booking-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--pastelgreen);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Hero Section */
.booking-hero {
  background: linear-gradient(135deg, rgba(52, 78, 65, 0.92), rgba(0, 0, 0, 0.85)),
    url('../assets/images/VAs.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 10px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-hero-overlay {
  text-align: center;
  padding: 200px 60px 80px 60px;
  max-width: 750px;
}

.booking-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: bookingFadeUp 1s ease;
}

.booking-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.7;
  animation: bookingFadeUp 1.3s ease;
}

@keyframes bookingFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Booking Section */
.booking-section {
  padding: 60px 80px 80px 80px;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Info Column */
.booking-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  text-align: start;
  margin-bottom: 25px;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.booking-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--lightgreen), var(--green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}

.booking-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.booking-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
}

.booking-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 20px;
  background: rgba(88, 129, 87, 0.08);
  border-radius: 10px;
}

.booking-guarantee svg {
  width: 22px;
  height: 22px;
  color: var(--lightgreen);
  flex-shrink: 0;
}

.booking-guarantee p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #444;
}

/* Calendar Column */
.booking-calendar-wrapper {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 10px;
  min-height: 600px;
}

.booking-calendar-wrapper iframe {
  min-height: 600px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 40px;
  }
}

@media screen and (max-width: 675px) {
  .booking-hero-overlay {
    padding: 150px 20px 60px 20px;
  }

  .booking-hero h1 {
    font-size: 2rem;
  }

  .booking-section {
    padding: 30px 15px;
  }

  .booking-calendar-wrapper {
    padding: 5px;
  }
}

@media screen and (max-width: 400px) {
  .booking-hero h1 {
    font-size: 1.6rem;
  }

  .booking-hero-overlay {
    padding: 130px 15px 50px 15px;
  }
}
