.booking-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.booking-form-container h1 {
  font-size: 4rem;
  font-family: 'poppin';
}

.booking-form-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 10px rgba(0,0,0,0.4);
  margin-bottom: 100px;
  transform-origin: center;
  transition: transform 0.5s ease 1.5s, opacity 0.5s ease 1.5s; 
  opacity: 0;
  min-height: 600px;
  min-width: 300px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-form-card.active {
  opacity: 1;
}

.booking-form-card img {
  width: 50%;
  padding: 0px;
}

.welcome-heading {
  font-size: 4rem;
}

.booking-form-card h1 { 
  font-size: 1.5rem; 
  margin-bottom: 16px; 
  color: var(--primary); 
  font-family: 'poppins';
}

.booking-form-card h3 { 
  font-size: 1.1rem; 
  font-family: 'poppins';
}

.booking-form-card hr {
  color: var(--primary);
  background-color: var(--primary);
  height: 3px;
  margin-bottom: 20px;
}
.booking-form-card p { 
  color: #4b5563; 
  font-family: 'atkinson';
  font-size: 0.9rem;
}

.booking-form-card .booking-title {
  margin-bottom: 30px;
}
.booking-form-card .booking-content {
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  font-family: 'atkinson';
}

.card-footer-note {
  margin-left: 20vw;
  margin-right: 20vw;
  margin-bottom: 25px;
  font-size: 1.2rem !important;
  font-family: 'nunito' !important;
  line-height: 2rem;
  color: var(--primary) !important;
  text-align: center;
}

.booking-button-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.booking-form-card button {
  background: var(--orange);
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 1.1rem;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'poppins';
  opacity: 0.4;
}

#checkAllBtn {
  max-width: 200px !important;
  background: var(--primary);
  border-radius: 10px;
}

.booking-form-card button.enabled {
  opacity: 1;
  cursor: pointer;
}

.booking-form-card button:hover {
  background: #5c9991;
  transform: scale(1.03);
}

.booking-form-card input[type="checkbox"] {
  accent-color: var(--primary);
  transform:  scale(1.1);
  margin-right: 10px;
}

#employeeProfileSection {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#bookNowSection {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}


@keyframes pulseGlow {
  0% {
    transform: scale(1) translateY(0px);
  }
  70% {
    transform: scale(1.02) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0px);
  }
}

.book-now-img.pulse {
  cursor: pointer;
  animation: pulseGlow 1.8s ease-out infinite;
}

.employee-title {
  margin-bottom: 10px;
}

.employee-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.employee-name {
  text-align: center;
}
.employee-img {

}
.employee-img img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.booking-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.booking-complete-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Tablet Responsive Styles */
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .booking-form-card {
    min-width: 700px;
    max-width: 700px;
    padding: 24px;
  }

  .booking-form-card img {
      width: 75%
  }

  #bookNowSection img {
    width: 50%;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

  .booking-form-card {
    max-width: 95vw;
    min-width: 95vw;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

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

  .booking-form-card h1 { 
    font-size: 1.25rem; 
  }
  .booking-form-card hr {
    height: 3px;
  }

  .booking-form-card #startBtn {
    font-size: 1.5rem;
  }

  .booking-form-card .input-label {
    font-size: 0.85rem;
  }

  .booking-form-card img {
    width: 75%;
  }

  .booking-form-card img {
    width: 75%
  }
  #bookNowSection img {
    width: 75%;
  }
}