/* Navbar Call Button Styles */

.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px !important;
  background: #f4d03f !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: none !important;
}

.btn-call-now:hover {
  background: #f39c12 !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 208, 63, 0.3) !important;
}

.btn-call-now i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .btn-call-now {
    padding: 8px 15px !important;
    font-size: 12px;
  }
  
  .btn-call-now i {
    font-size: 14px;
  }
}
