.book-now-btn {
  background: linear-gradient(
    135deg,
    #48bb78 0%,
    #38a169 100%
  ); /* Green gradient for action */
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-now-btn:hover {
  background: linear-gradient(
    135deg,
    #38a169 0%,
    #2f855a 100%
  ); /* Darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

/* =========================
           MODAL STYLES
           ========================= */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  z-index: 2000; /* Above everything else */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px); /* Modern blur effect */
}

.modal-overlay.active {
  display: flex; /* Show when active class is added */
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8); /* Start smaller for animation */
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1); /* Scale to full size when active */
}

/* Close button (X) */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

/* Modal header */
.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-logo {
  width: 120px;
  height: 120px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 10px 0;
}

.modal-subtitle {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* Form styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 100px; /* Fixed width for country code */
}

.phone-number {
  flex: 1; /* Take remaining space */
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success message */
.success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  border-radius: 8px;
  margin-bottom: 20px;
}

.success-message.show {
  display: block;
}
