.consultation-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
/*  background: rgba(64, 61, 51);*/
  background: rgba(83, 12, 89);
  color: white;
  overflow: hidden;
}

.consultation-content {
  max-width: 500px;
}

.consultation-content h1 {
  font-size: 38px;
  margin-bottom: 15px;
  color: white;
}

.consultation-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: grey;
}

.consultation-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.consultation-content li {
  margin: 8px 0;
  font-size: 16px;
  color: ghostwhite;
}

.book-btn {
  background: white;
  color: #0b3d91;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ffd700;
  color: #000;
}

/* Image */
.consultation-image img {
  margin: 20px 0px 0px 0px;
  width: 820px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.delay1 { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
.delay3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pulse Button */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Modal */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.booking-box {
  background: white;
  color: #222;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: fadeUp 0.5s forwards;
}

.booking-box input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

.booking-box button {
  background: #0b3d91;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
.booking-select{
  float: left;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}
.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .consultation-section {
    flex-direction: column;
    text-align: center;
  }
}
