.btn-booking {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 300;
  font-size: 1.375rem;
  color: white;
  text-decoration: none;
}

#moveToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #216ab3;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#moveToTop i {
  font-size: 1.125rem;
}

#moveToTop:hover {
  transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(3, 180, 199, 0.25);
  outline: 0;
}

.contact-form .form-label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.contact-form select.form-control {
  cursor: pointer;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
}