/* Floating Appointment Button */
.floating-appointment-btn {
  position: fixed !important;
  bottom: 40px;
  right: 30px !important;
  z-index: 1061 !important;
  background: #0062cc !important;
  color: white !important;
  padding: 15px 25px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(0,98,204,0.4) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  border: none !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.floating-appointment-btn:hover {
  background: #0052a8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,98,204,0.5);
  color: white;
}

.floating-appointment-btn i {
  font-size: 18px;
}

/* Appointment Modal */
.modal-backdrop {
  z-index: 1070 !important;
  background: #0b0b0b !important;
}

.modal-backdrop.show {
  opacity: 0.8 !important;
}

.appointment-modal {
  z-index: 1080 !important;
}

.appointment-modal .modal-dialog {
  max-width: 600px;
}

.appointment-modal .modal-header {
  background: var(--global--color-primary);
  color: white;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.appointment-modal .modal-header .close {
  color: white;
  opacity: 0.8;
  text-shadow: none;
}

.appointment-modal .modal-header .close:hover {
  opacity: 1;
}

.appointment-modal .modal-body {
  padding: 0px;
  background: #f9f9f9;
}

.appointment-modal .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.appointment-modal .contact-card {
  background: transparent;
  box-shadow: none;
  margin: 0;
}

.appointment-modal .card-heading {
  margin-bottom: 10px;
  color: #0062cc;
}

.appointment-modal .card-desc {
  margin-bottom: 25px;
  color: #666;
}



/* Responsive */
@media only screen and (max-width: 992px) {
  .floating-appointment-btn {
    bottom: 30px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .appointment-modal .modal-dialog {
    margin: 10px;
  }

  .appointment-modal .modal-body {
    padding: 20px;
  }
}
