/* أزرار الطلب */
.btn-booking {
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
  text-decoration: none;
  min-width: 180px;
  margin: 5px;
  text-align: center;
}

.btn-booking i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.btn-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
  background: linear-gradient(135deg, #1a73e8, #0d5bb8);
}

.btn-booking:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.4);
}

/* تأثير النقر */
.btn-booking::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn-booking:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* تأثير التحديد */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
  }
}

.btn-booking.pulse {
  animation: pulse 2s infinite;
}

/* تأثير التمرير للنموذج */
.highlight-form {
  animation: highlight 2s ease-in-out;
  position: relative;
}

@keyframes highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(26, 115, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
  }
}

/* رسائل الحالة */
.form-status {
  padding: 12px 20px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 0.95rem;
  text-align: center;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.form-status.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* تحسينات للهواتف */
@media (max-width: 768px) {
  .btn-booking {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 150px;
  }
}

/* أزرار إضافية */
.btn-outline {
  background: transparent;
  border: 2px solid #1a73e8;
  color: #1a73e8;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #1a73e8;
  color: white;
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-icon:hover i {
  transform: translateX(-3px);
}
